author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
76,605
02.04.2019 08:19:34
-7,200
e45867012d7e7ea82cf53c1c6f2110c3773d3855
feat: Alternative norwegian stopwords
[ { "change_type": "MODIFY", "diff": "const BaseStemmer = require('./base-stemmer');\nconst Among = require('./among');\n+const stopwords = require('../stopwords/stopwords_no.json');\n+\n/**\n* This class was automatically generated by a Snowball to JSX compiler\n@@ -31,7 +33,7 @@ const Among = require('./amo...
JavaScript
MIT License
axa-group/nlp.js
feat: Alternative norwegian stopwords
1
feat
null
76,605
02.04.2019 08:19:55
-7,200
2fb61f2bf80a9c80ddffdee8fd340181b368e2af
feat: Alternative Portuguese stopwords
[ { "change_type": "MODIFY", "diff": "const BaseStemmer = require('./base-stemmer');\nconst Among = require('./among');\n+const stopwords = require('../stopwords/stopwords_pt.json');\n/**\n* This class was automatically generated by a Snowball to JSX compiler\n@@ -31,7 +32,7 @@ const Among = require('./among'...
JavaScript
MIT License
axa-group/nlp.js
feat: Alternative Portuguese stopwords
1
feat
null
76,605
02.04.2019 08:20:16
-7,200
b62db3934eef969ecb38bcfa52409f804fc2cf8d
feat: Alternative russian stopwords
[ { "change_type": "MODIFY", "diff": "const BaseStemmer = require('./base-stemmer');\nconst Among = require('./among');\n+const stopwords = require('../stopwords/stopwords_ru.json');\n+\n/**\n* This class was automatically generated by a Snowball to JSX compiler\n@@ -31,7 +33,7 @@ const Among = require('./amo...
JavaScript
MIT License
axa-group/nlp.js
feat: Alternative russian stopwords
1
feat
null
76,605
02.04.2019 08:20:36
-7,200
cb2bdd80c1864f85fcd55f0969b79a1b715c2a92
feat: Alternative Slovene stopwords
[ { "change_type": "MODIFY", "diff": "const BaseStemmer = require(\"./base-stemmer\");\nconst Among = require(\"./among\");\n+const stopwords = require('../stopwords/stopwords_sv.json');\nclass SloveneStemmer extends BaseStemmer {\nconstructor(tokenizer) {\n- super(tokenizer);\n+ super(tokenizer, stopwords.wo...
JavaScript
MIT License
axa-group/nlp.js
feat: Alternative Slovene stopwords
1
feat
null
217,922
02.04.2019 08:37:06
-7,200
6f7f3cc1581efddc76fa33265fc515cd48284f61
chore: module import fix for build
[ { "change_type": "MODIFY", "diff": "@@ -15,6 +15,7 @@ import { MapPositionComponent } from '../../modules/map/map-position/map-positio\nimport { MapModule } from '../../modules/map/map.module';\nimport { AlarmsModule } from '../../core/alarms/alarms.module';\nimport { FishingBaitModule } from '../../modules...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: module import fix for build
1
chore
null
217,922
02.04.2019 09:03:49
-7,200
c5e93c4d22c75f68133dd0b76c67ee47dd8612c8
feat(fsh): added support for fish eyes duration
[ { "change_type": "MODIFY", "diff": "<img *ngIf=\"node.folklore !== undefined\" src=\"{{node.folklore.icon | icon}}\" nz-tooltip\n[nzTitle]=\"node.folklore.id | itemName | i18n\" alt=\"\" class=\"folklore\">\n<i *ngIf=\"node.hidden\">{{'GATHERING_LOCATIONS.Hidden_item' | translate}}</i>\n- <img *ngIf=\"node....
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(fsh): added support for fish eyes duration #732
1
feat
fsh
815,598
02.04.2019 09:37:00
-28,800
cdd6c9ce9f53ac7a366cddf91c152d95f874b017
chore(deps): bump regex-syntax from 0.6.5 to 0.6.6
[ { "change_type": "MODIFY", "diff": "@@ -2103,7 +2103,7 @@ dependencies = [\n\"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)\"...
Rust
MIT License
nervosnetwork/ckb
chore(deps): bump regex-syntax from 0.6.5 to 0.6.6
1
chore
deps
679,913
02.04.2019 09:38:44
-3,600
f7b9fbd17cc4b8944bafffe4351015f892e8bca2
fix(rstream): fix update StreamSource alias stream source fns don't need to return StreamCancel
[ { "change_type": "MODIFY", "diff": "@@ -64,6 +64,6 @@ export interface IStream<T> extends ISubscriber<T> {\n}\nexport type StreamCancel = () => void;\n-export type StreamSource<T> = (sub: Stream<T>) => StreamCancel;\n+export type StreamSource<T> = (sub: Stream<T>) => StreamCancel | void;\nexport let DEBUG =...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(rstream): fix #80 update StreamSource alias - stream source fns don't need to return StreamCancel
1
fix
rstream
679,913
02.04.2019 10:16:43
-3,600
58f5adfeb03f201d0a1960f4e318c8389608dc8f
docs(associative): fix/update readme examples
[ { "change_type": "MODIFY", "diff": "@@ -185,7 +185,11 @@ map = new assoc.SortedMap([\n]);\n// SortedMap { 'a' => 1, 'b' => 2, 'c' => 3, 'd' => 4 }\n-// forward selection w/ given start key\n+// all entries\n+[...map.entries()]\n+// [ [ 'd', 4 ], [ 'c', 3 ], [ 'b', 2 ], [ 'a', 1 ] ]\n+\n+// range query w/ gi...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(associative): fix/update readme examples
1
docs
associative
127,946
02.04.2019 10:33:23
-10,800
8924e6bff6cb6f69191c9fd8a121c992651b6af7
feat(user-portal): add exports
[ { "change_type": "ADD", "diff": "+import * as React from 'react';\n+import { BrowserRouter, StaticRouter, Switch } from 'react-router-dom';\n+import { UserPortalRoutes } from './routes';\n+\n+export const AppRoutes = () => (\n+ <Switch>\n+ <UserPortalRoutes />\n+ </Switch>\n+);\n+\n+export const ClientSideA...
TypeScript
MIT License
coingaming/moon-design
feat(user-portal): add exports
1
feat
user-portal
127,946
02.04.2019 10:38:14
-10,800
f0ef3eab11e11bf57ca2ee17795230358b37d1bf
fix(wallets): fix button style
[ { "change_type": "MODIFY", "diff": "@@ -35,7 +35,9 @@ export const EuroWallet: React.FC<{}> = () => {\nto={{ currency: 'Dollars', value: 156.72, unit: 'USD' }}\n/>\n<div>\n- <Button modifier=\"primary\">Use wallet</Button>\n+ <Button modifier=\"primary\" outline>\n+ Use wallet\n+ </Button>\n</div>\n</Card>\...
TypeScript
MIT License
coingaming/moon-design
fix(wallets): fix button style
1
fix
wallets
815,573
02.04.2019 10:43:09
-28,800
815fe6b22b7999d047a154f6542fd8d2a598090c
fix: Upgrade p2p fix repeat connection bug
[ { "change_type": "MODIFY", "diff": "@@ -509,11 +509,11 @@ dependencies = [\n\"snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"stop-handler 0.8.0-pre\",\n\"tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)\",\n- \"tentacle 0.2.0-alpha.1 (git+https://github.com/ne...
Rust
MIT License
nervosnetwork/ckb
fix: Upgrade p2p fix repeat connection bug
1
fix
null
304,907
02.04.2019 10:43:49
-7,200
61d0bb92f7d818e93f56eab574800fc69e0c6413
fix(parser): fix logical operators precedence BREAKING CHANGE: this commit changes the logical oprators precedence from `not -> (and, or)` to `not -> and -> or`.
[ { "change_type": "MODIFY", "diff": "@@ -746,7 +746,8 @@ The precedence of the operators is given in the table below. Operators with a lo\n| | `>` `>=` | |\n| |`=~` `!~` | |\n| 5 | `not` | Unary logical expression |\n-| 6 |`and` `or`| Logical AND and OR |\n+| 6 | `and` | Logical AND |\n+| 7 | `or` | Logical ...
Go
MIT License
influxdata/flux
fix(parser): fix logical operators precedence (#1098) BREAKING CHANGE: this commit changes the logical oprators precedence from `not -> (and, or)` to `not -> and -> or`.
1
fix
parser
304,907
02.04.2019 10:53:26
-7,200
f05887bb0c4ce776d2be4ca21c5fe21496e566bb
fix(ast): format AST preserving operator precedence
[ { "change_type": "MODIFY", "diff": "@@ -7,15 +7,12 @@ import (\n\"time\"\n)\n-/*\n-Returns a valid script for a given AST rooted at node `n`.\n-\n-Formatting rules:\n- - In a list of statements, if two statements are of a different type\n- (e.g. an `OptionStatement` followed by an `ExpressionStatement`), th...
Go
MIT License
influxdata/flux
fix(ast): format AST preserving operator precedence (#1078)
1
fix
ast
471,527
02.04.2019 11:04:13
-7,200
cca6eaef612365cbb10770b02609638510450222
fix(building-webpack): support windows file pathes as well
[ { "change_type": "MODIFY", "diff": "@@ -54,6 +54,11 @@ const legacyError = error(\n'You are running webpack-dev-server with a legacy build, run the dev server with the --legacy flag for this browser or run a production build.',\n);\n+function pathJoin(...args) {\n+ // enfore / also on windows => as it is us...
JavaScript
MIT License
open-wc/open-wc
fix(building-webpack): support windows file pathes as well (#344)
1
fix
building-webpack
104,844
02.04.2019 11:29:19
14,400
9996fb14ead9248ec6c83e4ddf4344ab5aeef4ad
feat(sidenav): continue work implementing side nav
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,7 @@ import {\nimport { Icon } from 'carbon-components-react';\n// import { rem } from 'polished';\nimport styled from 'styled-components';\n-// import PropTypes from 'prop-types';\n+import PropTypes from 'prop-types';\nimport React from 'react';\n// import H...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(sidenav): continue work implementing side nav
1
feat
sidenav
679,913
02.04.2019 11:33:38
-3,600
34eab592669b6f7cf73d472c3ca5d506db462576
fix(iges): TS3.4 type inference
[ { "change_type": "MODIFY", "diff": "@@ -158,7 +158,7 @@ const formatDictEntry = (e: DictEntry) =>\ne.index\n)\n),\n- push(),\n+ push<string>(),\n[\ne.type,\ne.param || 0,\n", "new_path": "packages/iges/src/index.ts", "old_path": "packages/iges/src/index.ts" } ]
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(iges): TS3.4 type inference
1
fix
iges
679,913
02.04.2019 11:34:12
-3,600
800c1c719f07cf9a32a0d2d9c06439cd8ba4a869
fix(geom-tesselate): TS3.4 type inference
[ { "change_type": "MODIFY", "diff": "@@ -5,15 +5,15 @@ import {\npartition,\npush,\ntransduce,\n- zip,\n- wrap\n+ wrap,\n+ zip\n} from \"@thi.ng/transducers\";\nimport { mixN, ReadonlyVec, Vec } from \"@thi.ng/vectors\";\nexport const rimTris: Tessellator = (points: ReadonlyVec[]) => {\nconst edgeCentroids =...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(geom-tesselate): TS3.4 type inference
1
fix
geom-tesselate
791,834
02.04.2019 12:50:57
25,200
b8ac22179dbd6e5aec0009a9ffde91d982da7cce
misc: simplifications in simulator/connection-pool
[ { "change_type": "MODIFY", "diff": "@@ -57,7 +57,7 @@ class NetworkAnalysis {\nconst records = await NetworkRecords.request(devtoolsLog, context);\nconst throughput = NetworkAnalyzer.estimateThroughput(records);\nconst rttAndServerResponseTime = NetworkAnalysis.computeRTTAndServerResponseTime(records);\n- r...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc: simplifications in simulator/connection-pool (#7894)
1
misc
null
104,844
02.04.2019 13:25:49
14,400
c9eec5e4e2d5977d23baca878ed1ce072ef73837
refactor(header): removed padding and swapped component
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,7 @@ import {\nHeaderGlobalBar,\nHeaderGlobalAction,\nSkipToContent,\n+ HeaderMenu,\nHeaderMenuItem,\nHeaderNavigation,\n} from 'carbon-components-react//lib/components/UIShell';\n@@ -12,13 +13,12 @@ import styled from 'styled-components';\nimport PropTypes fro...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
refactor(header): removed padding and swapped component
1
refactor
header
217,922
02.04.2019 13:52:11
-7,200
17b762050628b043fb92f51e0164feed45acfd10
chore: changed rotation tips system to make it easier to implement complex tips
[ { "change_type": "MODIFY", "diff": "@@ -184,6 +184,10 @@ export class AppComponent implements OnInit {\n});\nthis.ipc.send('overlay:get-opacity', { uri: this.ipc.overlayUri });\n}\n+ const languageIndex = event.url.indexOf('?lang=');\n+ if (languageIndex > -1) {\n+ this.use(event.url.substr(languageIndex + ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: changed rotation tips system to make it easier to implement complex tips
1
chore
null
217,922
02.04.2019 13:57:00
-7,200
1796c1b4cf227e16ce16fa26d01ca74db454f9ea
chore: added "canBeAppliedTo" in order to be able to avoid a tip if it can't be applied at all
[ { "change_type": "MODIFY", "diff": "@@ -31,6 +31,8 @@ export abstract class RotationTip {\npublic abstract matches(simulationResult: SimulationResult): boolean;\n+ public abstract canBeAppliedTo(simulationResult: SimulationResult): boolean;\n+\npublic messageParams(simulationResult: SimulationResult): any {...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: added "canBeAppliedTo" in order to be able to avoid a tip if it can't be applied at all
1
chore
null
104,857
02.04.2019 14:48:58
10,800
b30cfbcf068911de462132a018aa004fd3785f9f
chore(page): PageHero test
[ { "change_type": "MODIFY", "diff": "@@ -11,10 +11,9 @@ const commonPageHeroProps = {\nrightContent: <div>Right Content</div>,\n};\n-describe('Structured List', () => {\n+describe('Page Hero', () => {\n// handle click function test\n- test('onRowClick', () => {\n- const onClick = jest.fn();\n+ test('onClick ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(page): PageHero test
1
chore
page
815,598
02.04.2019 15:19:17
-28,800
e5c5303cff0fa9326f723377c02de94cca545d46
fix: flatbuffers vtable `num_fields` overflow Refs
[ { "change_type": "MODIFY", "diff": "@@ -52,6 +52,12 @@ pub mod ckb {\nlet vtab = tab.vtable();\nlet vtab_num_bytes = vtab.num_bytes();\n+ let object_inline_num_bytes = vtab.object_inline_num_bytes();\n+ if vtab_num_bytes < flatbuffers::SIZE_VOFFSET + flatbuffers::SIZE_VOFFSET\n+ || object_inline_num_bytes <...
Rust
MIT License
nervosnetwork/ckb
fix: flatbuffers vtable `num_fields` overflow Refs https://github.com/nervosnetwork/cfb/pull/16
1
fix
null
217,922
02.04.2019 15:25:48
-7,200
53335febc3ec02a394adf4abe79bf1d17726ceab
chore: another quick revamp of the rotation tips system, this time it's all good
[ { "change_type": "MODIFY", "diff": "import { SimulationResult } from '../simulation/simulation-result';\n-import { InnerQuiet } from '../model/actions/buff/inner-quiet';\nimport { RotationTipType } from './rotation-tip-type';\n-import { SimpleTip } from './tips/simple-tip';\nexport abstract class RotationTi...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: another quick revamp of the rotation tips system, this time it's all good
1
chore
null
127,939
02.04.2019 15:27:08
-10,800
5bfb9c45bef52e666f8668fda220fab4a5de459c
fix(settings): user detail form layout changes
[ { "change_type": "MODIFY", "diff": "import * as React from 'react';\nimport styled from '@emotion/styled';\nimport rem from 'polished/lib/helpers/rem';\n-import { border, colors } from '@heathmont/sportsbet-tokens';\n-import { spacing } from '@heathmont/sportsbet-utils';\n+import { border, colors, breakpoin...
TypeScript
MIT License
coingaming/moon-design
fix(settings): user detail form layout changes
1
fix
settings
127,946
02.04.2019 15:31:17
-10,800
63539fd214bfd068dcd297f31217ef670327e712
feat(deposit): initial deposit view
[ { "change_type": "ADD", "diff": "+import * as React from 'react';\n+import { Tab, TabItem, CloseButton } from '../../../components/tab/tab';\n+\n+export const CashierNav = () => (\n+ <Tab>\n+ <TabItem active to={'/cashier'}>\n+ Wallet\n+ </TabItem>\n+ <TabItem to={'/my-bets'}>My bets</TabItem>\n+ <TabItem t...
TypeScript
MIT License
coingaming/moon-design
feat(deposit): initial deposit view
1
feat
deposit
217,922
02.04.2019 15:36:28
-7,200
c6ef9578099367e2368a981a30011e45a4baa1f9
chore(rotation-tips): added ingenuity cost optimization tip
[ { "change_type": "MODIFY", "diff": "@@ -3,12 +3,14 @@ import { RotationTip } from './rotation-tip';\nimport { Class } from '@kaiu/serializer';\nimport { UseInnerQuiet } from './tips/use-inner-quiet';\nimport { UseInnerQuietBeforeQuality } from './tips/use-inner-quiet-before-quality';\n+import { UseIngenuity...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(rotation-tips): added ingenuity cost optimization tip
1
chore
rotation-tips
815,598
02.04.2019 15:37:01
-28,800
e1b28e1606522c7aebf62d9f971623a7189071c8
docs: split README
[ { "change_type": "ADD", "diff": "+# CKB Core Development\n+\n+## Running Test\n+\n+Install dependencies\n+\n+```\n+rustup component add rustfmt\n+rustup component add clippy\n+```\n+\n+Run tests\n+\n+```\n+make ci\n+```\n+\n+Run acceptance integration tests\n+\n+\n+```\n+cargo build\n+cd test && cargo run ....
Rust
MIT License
nervosnetwork/ckb
docs: split README
1
docs
null
217,922
02.04.2019 16:02:50
-7,200
961db542c2aa00ebb2e8493ccb286bf579fe667f
chore(rotation-tips): added cz timing tip
[ { "change_type": "MODIFY", "diff": "@@ -4,13 +4,15 @@ import { Class } from '@kaiu/serializer';\nimport { UseInnerQuiet } from './tips/use-inner-quiet';\nimport { UseInnerQuietBeforeQuality } from './tips/use-inner-quiet-before-quality';\nimport { UseIngenuityIInstead } from './tips/use-ingenuity-I-instead'...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(rotation-tips): added cz timing tip
1
chore
rotation-tips
217,922
02.04.2019 16:18:55
-7,200
e46ef3c8cc3add35c6b115b8aefc519fa0dda661
chore(rotation-tips): added reclaim tip
[ { "change_type": "MODIFY", "diff": "<i nz-icon *ngSwitchCase=\"2\" nzType=\"info-circle\" nzTheme=\"twotone\"></i>\n</div>\n</div>\n- <div>{{tip.message | translate: tip.messageParams(result)}}</div>\n+ <div>{{('SIMULATOR.ROTATION_TIPS.' + tip.message) | translate: tip.messageParams(result)}}</div>\n<nz-div...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(rotation-tips): added reclaim tip
1
chore
rotation-tips
67,482
02.04.2019 16:22:51
25,200
c54c3db5b2741c4f3a54949d64e20780efc844a2
doc(readme): working on documentation plan
[ { "change_type": "MODIFY", "diff": "This folder contains documentation targeted at people who are using Aurelia to create applications, component libraries, and plugins. For documentation on how to build or work on Aurelia itself, see our [engineering notes](../engineering-notes/README.md).\n> What you'll l...
TypeScript
MIT License
aurelia/aurelia
doc(readme): working on documentation plan
1
doc
readme
815,598
02.04.2019 16:35:38
-28,800
9849169281deda203c9f9255dfff386d04d6ac3d
docs: how to configure CKB
[ { "change_type": "MODIFY", "diff": "# Build CKB\n-## Build dependencies\n+## Install Build Dependencies\nCKB is currently tested mainly with `stable-1.33.0` on Linux and macOS.\n@@ -9,8 +9,6 @@ We recommend installing Rust through [rustup](https://www.rustup.rs/)\n```bash\n# Get rustup from rustup.rs, then ...
Rust
MIT License
nervosnetwork/ckb
docs: how to configure CKB
1
docs
null
531,793
02.04.2019 17:12:46
25,200
549b5c2310560538fed2f98caeab9e4e1cc46347
feat(ui): show progress indicators for silence form matchers
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,8 @@ import PropTypes from \"prop-types\";\nimport { action } from \"mobx\";\nimport { observer } from \"mobx-react\";\n+import hash from \"object-hash\";\n+\nimport { components } from \"react-select\";\nimport { SilenceFormStore } from \"Stores/SilenceFormSto...
TypeScript
Apache License 2.0
prymitive/karma
feat(ui): show progress indicators for silence form matchers
1
feat
ui
67,482
02.04.2019 17:26:19
25,200
f13a66a72fa1905707643610c629487c48aed42f
doc(readme): working on plan
[ { "change_type": "MODIFY", "diff": "@@ -20,26 +20,28 @@ Every article has several things in common:\n* **Title** - An article has a clear, short title. The title is not only displayed at the top of the article, but also within the Table of Contents (ToC), index pages, and search results. It's also encoded i...
TypeScript
MIT License
aurelia/aurelia
doc(readme): working on plan
1
doc
readme
67,482
02.04.2019 19:04:52
25,200
6538ea7e5b81768aa32644f94cab7d68df0519a1
doc(readme): some clarification around nesting
[ { "change_type": "MODIFY", "diff": "@@ -55,7 +55,7 @@ The documentation is organized into seven major sections, all available through\n* **Contributing** - These articles include our basic contribution guide and code of conduct, along with a version of this doc and a subset of our engineering notes, designe...
TypeScript
MIT License
aurelia/aurelia
doc(readme): some clarification around nesting
1
doc
readme
815,601
02.04.2019 19:18:08
-28,800
b34a0c0067a6171a022e42be82841c96dcb1c9dc
fix: temp fix tx relay flood
[ { "change_type": "MODIFY", "diff": "@@ -47,7 +47,10 @@ impl<CI: ChainIndex + 'static> PoolRpc for PoolRpcImpl<CI> {\nOk(cycles) => Some(cycles),\n};\nlet entry = PoolEntry::new(tx.clone(), 0, cycles);\n- chain_state.mut_tx_pool().enqueue_tx(entry);\n+ if !chain_state.mut_tx_pool().enqueue_tx(entry) {\n+ // ...
Rust
MIT License
nervosnetwork/ckb
fix: temp fix tx relay flood
1
fix
null
679,913
02.04.2019 19:44:53
-3,600
dc5eb755753dc98fc2f82e14c784d9af20a48135
build(webgl): update pkg deps
[ { "change_type": "MODIFY", "diff": "\"pub\": \"yarn build && yarn publish --access public\"\n},\n\"devDependencies\": {\n- \"@types/mocha\": \"^5.2.5\",\n- \"@types/node\": \"^10.12.15\",\n- \"mocha\": \"^5.2.0\",\n- \"nyc\": \"^13.1.0\",\n- \"typedoc\": \"^0.14.0\",\n- \"typescript\": \"^3.2.2\"\n+ \"@type...
TypeScript
Apache License 2.0
thi-ng/umbrella
build(webgl): update pkg deps
1
build
webgl
679,913
02.04.2019 19:57:28
-3,600
e3b84abc129fcac8013712ab413b98e91a8d17b1
feat(associative): add HashMap w/ linear probing, update deps
[ { "change_type": "MODIFY", "diff": "@@ -102,6 +102,16 @@ map.set(a, \"foo\");\nmap.get(b);\n// \"foo\"\n+// Hash map w/ user supplied hash code function\n+// (here using `hash` function for arrays)\n+import { hash } from \"@thi.ng/vectors\"\n+\n+m = new assoc.HashMap([], { hash })\n+m.set([1, 2], \"a\");\n+...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(associative): add HashMap w/ linear probing, update deps
1
feat
associative
679,913
02.04.2019 20:09:23
-3,600
7745c8627a3bc9cc53f3bac3585bac636035c0ec
build: update pkg keywords / desc
[ { "change_type": "MODIFY", "diff": "\"difference\",\n\"equality\",\n\"ES6\",\n+ \"hashmap\",\n\"intersection\",\n\"join\",\n+ \"linear probing\",\n\"map\",\n+ \"open addressing\",\n\"set\",\n\"skiplist\",\n\"sorted map\",\n", "new_path": "packages/associative/package.json", "old_path": "packages/ass...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: update pkg keywords / desc
1
build
null
902,122
02.04.2019 21:49:59
-7,200
e370770f5cc78a57aaeedfefea0b11289b980562
feat: add builtin adblock
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,7 @@ Although you can think [puppeteer](https://github.com/GoogleChrome/puppeteer) co\n- Sensible good defaults, aborting unnecessary requests based of what you are doing (e.g, aborting image request if you just want to get [`.html`](#htmlurl-options) content...
JavaScript
MIT License
microlinkhq/browserless
feat: add builtin adblock
1
feat
null
815,593
02.04.2019 22:38:09
-32,400
2ea661448fadcf2f90184cbc4c30f5bf1de01c8a
chore: rebase and enable assert
[ { "change_type": "MODIFY", "diff": "use crate::{sleep, Net, Spec, TestProtocol};\nuse ckb_network::ProtocolId;\n-use ckb_protocol::{SyncMessage, SyncPayload};\n+use ckb_protocol::{get_root, SyncMessage, SyncPayload};\nuse ckb_sync::NetworkProtocol;\n-use flatbuffers::get_root;\nuse log::info;\npub struct Ma...
Rust
MIT License
nervosnetwork/ckb
chore: rebase and enable assert
1
chore
null
447,440
03.04.2019 00:25:51
21,600
c75d41b991427f145d89ea5b623249622096dfa2
style: fix hover in table
[ { "change_type": "MODIFY", "diff": ".rainbow-table_body-row {\nbox-shadow: 0 1px 0 0 #e3e5ed; }\n.rainbow-table_body-row:hover {\n- background-color: #f4f6f9; }\n+ background-color: rgba(244, 246, 249, 0.4); }\n.rainbow-table_cell-container:focus {\noutline: none; }\n", "new_path": "src/components/Table...
JavaScript
MIT License
nexxtway/react-rainbow
style: fix hover in table (#651)
1
style
null
722,013
03.04.2019 03:38:30
18,000
b5ff60b42be0cb0ea4f042731450ccda805cba23
ci: bring back travis scripts for examples docs
[ { "change_type": "ADD", "diff": "+#!/bin/bash\n+cd examples\n+for D in *; do yarn build \"${D}\"; done\n\\ No newline at end of file\n", "new_path": "travis/build_examples.sh", "old_path": null }, { "change_type": "ADD", "diff": "+#!/bin/bash\n+cd examples\n+for D in *; do mv \"${D}\"/di...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
ci: bring back travis scripts for examples docs
1
ci
null
469,438
03.04.2019 04:58:37
25,200
ce8ecf0e22a52ff0f166b775e8c6ededd79cf5c4
feat: add link for latest version of spec
[ { "change_type": "MODIFY", "diff": "@@ -28,7 +28,6 @@ const build = async () => {\nawait downloadReleases(\"open-rpc\", \"spec\", buildDir, filterRelease, filterAsset, leaveZipped, disableLogging);\n-\nconst previousVersions = await readdir(buildDir);\nawait Promise.all(previousVersions.map(async (previousV...
JavaScript
Apache License 2.0
open-rpc/spec
feat: add link for latest version of spec
1
feat
null
469,438
03.04.2019 05:53:43
25,200
589db4929763ca6266e67ad6d31ae879aeb7b2ae
fix: add success and fail handler to release
[ { "change_type": "MODIFY", "diff": "\"@semantic-release/commit-analyzer\",\n\"@semantic-release/release-notes-generator\",\n\"@semantic-release/changelog\",\n- \"@semantic-release/git\",\n[\n\"@semantic-release/github\",\n{\n\"path\": \"build/markdown/spec.md\",\n\"label\": \"Github Markdown distribution\"\...
JavaScript
Apache License 2.0
open-rpc/spec
fix: add success and fail handler to release
1
fix
null
304,866
03.04.2019 07:14:08
25,200
9e4ab7658ac84fef46689d88d39c99cc69efd3b1
refactor(querytest): remove unneeded ReplaceSpecCompiler
[ { "change_type": "DELETE", "diff": "-package querytest\n-\n-import (\n- \"context\"\n-\n- \"github.com/influxdata/flux\"\n- \"github.com/influxdata/flux/lang\"\n- \"github.com/influxdata/flux/plan\"\n-)\n-\n-// ReplaceSpecCompiler provides a compiler that will produce programs\n-// that are modified my the ...
Go
MIT License
influxdata/flux
refactor(querytest): remove unneeded ReplaceSpecCompiler (#1116)
1
refactor
querytest
76,605
03.04.2019 07:45:04
-7,200
f71c83a60e901b87b23765d86f343a8258d0dc79
feat: Give LRC export/import object
[ { "change_type": "MODIFY", "diff": "@@ -79,6 +79,31 @@ class LogisticRegressionClassifier extends Classifier {\n}\n}\n}\n+\n+ /**\n+ * Gets a copy of the instance properties\n+ */\n+ toObj() {\n+ const result = {};\n+ result.observations = this.observations;\n+ result.labels = this.labels;\n+ result.classif...
JavaScript
MIT License
axa-group/nlp.js
feat: Give LRC export/import object
1
feat
null
76,605
03.04.2019 07:46:33
-7,200
957e68ac7ff35680d2b31d401ce46fa82a99e1c9
feat: add tests for LRC export/import
[ { "change_type": "MODIFY", "diff": "@@ -311,4 +311,55 @@ describe('Logistic Regression Classifier', () => {\nexpect(classification).toBeUndefined();\n});\n});\n+\n+ describe('toObj and fromObj', () => {\n+ test('I can clone by toObj and retrieve with fromObj', async () => {\n+ const classifier = getClassifi...
JavaScript
MIT License
axa-group/nlp.js
feat: add tests for LRC export/import
1
feat
null
67,476
03.04.2019 08:30:25
-7,200
943c0d7e4b9c9897e5fc13f0717db0e48b51d841
feat(observation): implement batching
[ { "change_type": "MODIFY", "diff": "@@ -27,6 +27,7 @@ import {\n} from './flags';\nimport { ILifecycleTask, MaybePromiseOrTask } from './lifecycle-task';\nimport {\n+ IBatchable,\nIBindingTargetAccessor,\nIScope,\n} from './observation';\n@@ -158,6 +159,7 @@ export interface ILifecycle {\nmaxFPS: number;\np...
TypeScript
MIT License
aurelia/aurelia
feat(observation): implement batching
1
feat
observation
902,122
03.04.2019 09:11:24
-7,200
7429507bb992e9eee0dc3bf5c01b67fa19832586
build: remove gnu list it's not working well with some sites, eg taking screenshotting on Twitter
[ { "change_type": "MODIFY", "diff": "@@ -26,8 +26,7 @@ const FILTERS = [\n'http://pgl.yoyo.org/as/serverlist.php?hostformat=adblockplus;showintro=0&mimetype=plaintext',\n'https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/recipes/recipes_en.txt',\n'https://www.i-dont-care-about-cookies.eu/abp/',\n...
JavaScript
MIT License
microlinkhq/browserless
build: remove gnu list it's not working well with some sites, eg taking screenshotting on Twitter
1
build
null
67,476
03.04.2019 09:19:31
-7,200
877fddb4eb195afd0f44348e48ee14bc6cd0ddcf
feat(kernel): move isNumeric utility to platform for now
[ { "change_type": "MODIFY", "diff": "@@ -153,7 +153,7 @@ export type Pick3<T, K1 extends keyof T, K2 extends keyof T[K1], K3 extends keyo\n[P1 in K1]: { [P2 in K2]: { [P3 in K3]: ((T[K1])[K2])[P3] } }\n};\n-export type Primitive = undefined | null | number | boolean | symbol | string;\n+export type Primitive...
TypeScript
MIT License
aurelia/aurelia
feat(kernel): move isNumeric utility to platform for now
1
feat
kernel
67,476
03.04.2019 09:20:29
-7,200
57c4d49a88fbf4b2fffb5bc8f0fdedb2f5143f83
chore(runtime): add new exports
[ { "change_type": "MODIFY", "diff": "@@ -283,7 +283,8 @@ export {\nexport {\nAurelia,\nIDOMInitializer,\n- ISinglePageApp\n+ ISinglePageApp,\n+ CompositionRoot,\n} from './aurelia';\nexport {\nIfRegistration,\n@@ -446,6 +447,7 @@ export {\nICollectionSubscribable,\nISubscriber,\nisIndexMap,\n+ copyIndexMap,\...
TypeScript
MIT License
aurelia/aurelia
chore(runtime): add new exports
1
chore
runtime
902,122
03.04.2019 10:04:36
-7,200
ba167f870d75ba79813e32ee0e62bdc9f3d194ab
chore(release): v5.3.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+# [5.3.0](https://github.com/kikobeats/browserless/compare/v5.2.5...v5.3.0) (2019-04-03)\n+\n+\n+### Features\n+\n+* ...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v5.3.0
1
chore
release
902,122
03.04.2019 10:10:21
-7,200
28f4612ca5be4e2899b74bc2389bb73d917fae0b
chore(release): v5.3.1
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [5.3.1](https://github.com/kikobeats/browserless/compare/v5.3.0...v5.3.1) (2019-04-03)\n+\n+\n+### Bug Fixes\n+\n+...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v5.3.1
1
chore
release
127,946
03.04.2019 10:23:41
-10,800
12e1b08b37f23c9daf96cbfddb41db4a1ea58ca3
feat(deposit): introduce grid for deposit screen
[ { "change_type": "ADD", "diff": "+/** @jsx jsx */ jsx;\n+import * as React from 'react';\n+import { jsx } from '@emotion/core';\n+import rem from 'polished/lib/helpers/rem';\n+import styled from '@emotion/styled';\n+\n+import { mq, spacing, rhythm } from '@heathmont/sportsbet-utils';\n+import { breakpoints ...
TypeScript
MIT License
coingaming/moon-design
feat(deposit): introduce grid for deposit screen
1
feat
deposit
104,818
03.04.2019 10:51:07
18,000
63de560c5c8c3a566f348c5b9cda1dfb9bd83fc4
fix(basemodal): not triggering clear error
[ { "change_type": "MODIFY", "diff": "@@ -142,7 +142,7 @@ export const BaseModalPropTypes = {\n/** Form Error Details */\nerror: PropTypes.string,\n/** Clear the currently shown error, triggered if the user closes the ErrorNotification */\n- onClearErrors: PropTypes.func,\n+ onClearError: PropTypes.func,\n/**...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(basemodal): not triggering clear error
1
fix
basemodal
127,939
03.04.2019 11:01:11
-10,800
bd7b8d50356c735d37cd813c70079f3a7c401957
feat(deposit): deposit view feat(deposit): approve payment method component feat(design): edit icon chore(user-portal): layout changes chore(deposit): changes related to deposit chore(deposit): minor fixes chore(deposit): fix margins colors paddings position in intial deposit fix(icons): rebuild icons
[ { "change_type": "ADD", "diff": "+<?xml version=\"1.0\" encoding=\"utf-8\"?>\n+<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n+<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0...
TypeScript
MIT License
coingaming/moon-design
feat(deposit): deposit view feat(deposit): approve payment method component feat(design): edit icon chore(user-portal): layout changes chore(deposit): changes related to deposit chore(deposit): minor fixes chore(deposit): fix margins colors paddings position in intial deposit fix(icons): rebuild icons Co-authored-by: Karl Kallavus <karl.kallavus@gmail.com>
1
feat
deposit
217,922
03.04.2019 11:02:32
-7,200
192329d0a2dd40a4bbf13fb6155635aa1a636907
feat(list): you can now remove an item from a list directly inside list details page
[ { "change_type": "MODIFY", "diff": "@@ -46,7 +46,8 @@ export class ListLayout extends DataModel {\nItemRowMenuElement.EDIT_AMOUNT,\nItemRowMenuElement.MARK_HQ,\nItemRowMenuElement.ADD_TO_ANOTHER_LIST,\n- ItemRowMenuElement.REQUIREMENTS\n+ ItemRowMenuElement.REQUIREMENTS,\n+ ItemRowMenuElement.REMOVE_ITEM\n]...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(list): you can now remove an item from a list directly inside list details page
1
feat
list
217,922
03.04.2019 11:15:51
-7,200
ca3d09e7c31a83ccd406e043beb24d1c8ac33850
feat(desktop): added context menu on tray icon to open alarm overlay
[ { "change_type": "MODIFY", "diff": "-const { app, ipcMain, BrowserWindow, Tray, nativeImage, dialog, protocol, remote } = require('electron');\n+const { app, ipcMain, BrowserWindow, Tray, nativeImage, dialog, protocol, Menu } = require('electron');\nconst { autoUpdater } = require('electron-updater');\ncons...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(desktop): added context menu on tray icon to open alarm overlay
1
feat
desktop
104,818
03.04.2019 12:22:42
18,000
6b4a58f4cbcc0e136e97c704b35aa0ed5e1ab7a7
test(reducer): add testcases
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,7 @@ import {\nimport { baseTableReducer } from './baseTableReducer';\n// Little utility to filter data\n-const filterData = (data, filters) =>\n+export const filterData = (data, filters) =>\n!filters || filters.length === 0\n? data\n: data.filter(({ values }...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(reducer): add testcases
1
test
reducer
104,818
03.04.2019 12:44:06
18,000
c278f3f3d00479c8d799cb14d8ddbcfff79213cf
fix(table): after initial search table is empty
[ { "change_type": "MODIFY", "diff": "@@ -42,7 +42,6 @@ export const filterData = (data, filters) =>\n// Little utility to search\nexport const searchData = (data, searchString) =>\n- data.length > 0 &&\ndata.filter((\n{ values } // globally check row values for a match\n) =>\n@@ -210,10 +209,10 @@ export con...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): after initial search table is empty
1
fix
table
104,818
03.04.2019 13:44:32
18,000
16e70b3db87b83111234bac4ca2879adde153900
fix(table): should clear both search and filter from empty state
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,7 @@ import merge from 'lodash/merge';\nimport pick from 'lodash/pick';\nimport { PaginationV2, DataTable } from 'carbon-components-react';\nimport get from 'lodash/get';\n+import isNil from 'lodash/isNil';\nimport { defaultFunction } from '../../utils/componen...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): should clear both search and filter from empty state
1
fix
table
531,793
03.04.2019 14:13:57
25,200
2509704190d96abc3cf636d95542fafb162051cd
feat(ui): allow configuring default collapse state for alert groups
[ { "change_type": "MODIFY", "diff": "@@ -61,21 +61,35 @@ const AlertGroup = observer(\nconstructor(props) {\nsuper(props);\n+ const { alertGroupConfig } = props.settingsStore;\n+\nthis.defaultRenderCount = toJS(\n- props.settingsStore.alertGroupConfig.config.defaultRenderCount\n+ alertGroupConfig.config.defa...
TypeScript
Apache License 2.0
prymitive/karma
feat(ui): allow configuring default collapse state for alert groups
1
feat
ui
679,913
03.04.2019 14:14:10
-3,600
8b2f3fe363b1d3196877cc7b71b98d592a4c76f9
fix(transducers): fix update partitionSync required key checks, add tests
[ { "change_type": "MODIFY", "diff": "@@ -19,11 +19,11 @@ export interface PartitionSyncOpts<T> {\n*\n* By default, a new result is only produced once values from **all**\n* given labeled sources have been received. Only labels contained in\n- * the provided key set are allowed, others are skipped. The tuples...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(transducers): fix #82, update partitionSync required key checks, add tests
1
fix
transducers
679,913
03.04.2019 14:15:03
-3,600
4f907f3c156ebca7f469d5e500a65f79b8d3f19a
test(rstream): add sync() test
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,12 @@ import {\npartitionSync,\nTransducer\n} from \"@thi.ng/transducers\";\n-import { CloseMode, ISubscribable, State } from \"./api\";\n+import {\n+ CloseMode,\n+ DEBUG,\n+ ISubscribable,\n+ State\n+} from \"./api\";\nimport { Subscription } from \"./subscrip...
TypeScript
Apache License 2.0
thi-ng/umbrella
test(rstream): add sync() test (#82)
1
test
rstream
531,793
03.04.2019 14:16:23
25,200
dfe9cb14264e9baa904de379eae51429ce7ca80a
fix(tests): mock fetch for LabelValueInput tests Gettings lots of nodejs warnings about unhandled fetch errors due to lack of mocks for suggestion fetch requests, add mocks to supress those
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,10 @@ import { LabelValueInput } from \"./LabelValueInput\";\nlet silenceFormStore;\nlet matcher;\n+beforeAll(() => {\n+ fetch.mockResponse(JSON.stringify([]));\n+});\n+\nbeforeEach(() => {\nsilenceFormStore = new SilenceFormStore();\nmatcher = NewEmptyMatche...
TypeScript
Apache License 2.0
prymitive/karma
fix(tests): mock fetch for LabelValueInput tests Gettings lots of nodejs warnings about unhandled fetch errors due to lack of mocks for suggestion fetch requests, add mocks to supress those
1
fix
tests
815,601
03.04.2019 14:21:32
-28,800
f55cec5eff1166bada042c67408c1d447bb368ce
feat: experimental deadlock detection
[ { "change_type": "MODIFY", "diff": "@@ -1141,6 +1141,11 @@ name = \"faster-hex\"\nversion = \"0.3.1\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\n+[[package]]\n+name = \"fixedbitset\"\n+version = \"0.1.9\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+\n[[pa...
Rust
MIT License
nervosnetwork/ckb
feat: experimental deadlock detection
1
feat
null
217,922
03.04.2019 14:26:06
-7,200
c9b8050c2a992b0f623e8fac1b03a4a81c6555f3
feat(simulator): added durability timing rotation tip
[ { "change_type": "MODIFY", "diff": "@@ -13,6 +13,7 @@ import { UseSh2Instead } from './tips/use-sh2-instead';\nimport { UsePbpFirst } from './tips/use-pbp-first';\nimport { UseMumeIfPbp } from './tips/use-mume-if-pbp';\nimport { UseObserveBeforeFocused } from './tips/use-observe-before-focused';\n+import { ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(simulator): added durability timing rotation tip
1
feat
simulator
217,922
03.04.2019 14:43:59
-7,200
a6341312f45b86dfcb2a561059c86b0452bd1327
feat(simulator): added patient touch timing tip
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,7 @@ import { UsePbpFirst } from './tips/use-pbp-first';\nimport { UseMumeIfPbp } from './tips/use-mume-if-pbp';\nimport { UseObserveBeforeFocused } from './tips/use-observe-before-focused';\nimport { UseDurabilityRestorationLater } from './tips/use-durabilit...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(simulator): added patient touch timing tip
1
feat
simulator
104,857
03.04.2019 15:01:32
10,800
64c7dc40b2d376bf3380e1cdac4813b4a5f56cfa
fix(page): fix margin
[ { "change_type": "MODIFY", "diff": "@@ -4,7 +4,7 @@ import { ContentSwitcher, Switch } from 'carbon-components-react';\nimport styled from 'styled-components';\nconst StyledContentSwitcher = styled(ContentSwitcher)`\n- margin-bottom: 1.875rem;\n+ margin-bottom: 24px;\n`;\nconst propTypes = {\n", "new_pa...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(page): fix margin
1
fix
page
104,818
03.04.2019 15:27:03
18,000
c5f8240b842a2ce91268f823a42d6d74acdd355d
test(progress): add testcases for progress indicator
[ { "change_type": "MODIFY", "diff": "@@ -97,7 +97,7 @@ const StyledPageBlurb = styled.p`\n/**\n* Renders the hero text and styles for the page. Can either render Section and Title with blurb or support a narrow one with breadcrumbs.\n*/\n-const Page = ({ section, title, blurb, className, crumb, rightContent,...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(progress): add testcases for progress indicator
1
test
progress
815,573
03.04.2019 15:30:11
-28,800
9995c5c755411be8585e5b91264663fad0aa4da8
fix: Network error handling
[ { "change_type": "MODIFY", "diff": "@@ -338,13 +338,13 @@ pub struct EventHandler {\n}\nimpl ServiceHandle for EventHandler {\n- fn handle_error(&mut self, _context: &mut ServiceContext, error: ServiceError) {\n+ fn handle_error(&mut self, context: &mut ServiceContext, error: ServiceError) {\nwarn!(target: ...
Rust
MIT License
nervosnetwork/ckb
fix: Network error handling
1
fix
null
127,946
03.04.2019 15:35:39
-10,800
c5355702e786c07d794224ca53b6805eb316e7ab
feat(user-portal): add payment methods assets
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/portals/user-portal/assets/img/payment-logos/AstroPay.png differ\n", "new_path": "portals/user-portal/assets/img/payment-logos/AstroPay.png", "old_path": "portals/user-portal/assets/img/payment-logos/AstroPay.png" }, { "change_typ...
TypeScript
MIT License
coingaming/moon-design
feat(user-portal): add payment methods assets
1
feat
user-portal
104,818
03.04.2019 16:00:39
18,000
de93038f2c77c283f09a9ad589479e4eca20b570
test(table): add more row click tests
[ { "change_type": "MODIFY", "diff": "@@ -20,6 +20,7 @@ const tableRowProps = {\ndescribe('TableBodyRow', () => {\ntest('shouldExpandOnRowClick', () => {\n+ // Should expand\nconst tableRowExpandByDefault = mount(\n<TableBodyRow\noptions={{ hasRowExpansion: true, shouldExpandOnRowClick: true }}\n@@ -29,7 +30,...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(table): add more row click tests
1
test
table
104,818
03.04.2019 16:08:27
18,000
9d2a1e8618afbdc1bf0894f400999b87ba3942d2
fix(index): expose the header component so it can be reused
[ { "change_type": "MODIFY", "diff": "@@ -20,3 +20,4 @@ export PageHero from './components/Page/PageHero';\nexport NavigationBar from './components/NavigationBar/NavigationBar';\nexport StructuredList from './components/StructuredList/StructuredList';\nexport ResourceList from './components/ResourceList/Resou...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(index): expose the header component so it can be reused
1
fix
index
815,573
03.04.2019 16:11:10
-28,800
52c529ecff80fd4051e26a1ab8344a749368c50d
fix: Temporary remove peer eviction logic
[ { "change_type": "MODIFY", "diff": "@@ -629,9 +629,10 @@ impl<CI: ChainIndex> Synchronizer<CI> {\n}\nfor peer in eviction {\nwarn!(target: \"sync\", \"timeout eviction peer={}\", peer);\n- // Do not connect this peer in 3 minutes\n- nc.ban_peer(peer, Duration::from_secs(180));\n- nc.disconnect(peer);\n+\n+ ...
Rust
MIT License
nervosnetwork/ckb
fix: Temporary remove peer eviction logic
1
fix
null
104,818
03.04.2019 16:14:56
18,000
e24a71dfa5315a15180855ed7d7df19af547712b
test(storybook): add rtl support to storybook
[ { "change_type": "MODIFY", "diff": "@@ -2,3 +2,4 @@ import '@storybook/addon-knobs/register';\nimport '@storybook/addon-actions/register';\nimport '@storybook/addon-links/register';\nimport '@storybook/addon-a11y/register';\n+import 'storybook-addon-rtl/register';\n", "new_path": ".storybook/addons.js",...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(storybook): add rtl support to storybook
1
test
storybook
447,447
03.04.2019 16:30:21
14,400
27a5b6948e9a83faf4953355134a4d1090abe396
test: unit testing on tabset component
[ { "change_type": "MODIFY", "diff": "@@ -83,4 +83,25 @@ describe('<Tab />', () => {\nexpect(anchor.prop('aria-controls')).toBe('tab-content-1');\n});\n+ it('should call privateUpdateTab function with right data when a tab is changed', () => {\n+ const privateUpdateTabMockFn = jest.fn();\n+ const component = ...
JavaScript
MIT License
nexxtway/react-rainbow
test: unit testing on tabset component (#650)
1
test
null
471,527
03.04.2019 16:32:26
-7,200
c94408dc7859d13244f44822041357415bbd7015
fix(chai-dom-equals): compare children only via lightDom
[ { "change_type": "MODIFY", "diff": "\"site:build\": \"npm run vuepress:build\",\n\"site:start\": \"npm run vuepress:start\",\n\"test\": \"karma start --coverage\",\n+ \"test:watch\": \"karma start --auto-watch=true --single-run=false\",\n\"test:ci\": \"lerna run test:ci\",\n\"test:legacy\": \"karma start --...
JavaScript
MIT License
open-wc/open-wc
fix(chai-dom-equals): compare children only via lightDom (#346)
1
fix
chai-dom-equals
127,946
03.04.2019 16:35:32
-10,800
c94ed2fce85fd7ef768d5bcf05d150913bee7888
feat(user-portal): image component
[ { "change_type": "MODIFY", "diff": "\"author\": \"mBet Solutions N.V.\",\n\"license\": \"MIT\",\n\"scripts\": {\n- \"build\": \"export NODE_ENV=production && yarn build:client && yarn build:server\",\n+ \"build\": \"export NODE_ENV=production && yarn build:assets && yarn build:client && yarn build:server\",...
TypeScript
MIT License
coingaming/moon-design
feat(user-portal): image component
1
feat
user-portal
127,946
03.04.2019 16:51:19
-10,800
8908036986f458db09eda6ed4a8df67ed373e8fa
fix(user-portal): images component export
[ { "change_type": "MODIFY", "diff": "export * from './add-wallet';\nexport * from './grid';\nexport * from './layout';\n+export * from './payment-method-images';\nexport * from './tab/tab';\nexport * from './transaction-details';\nexport * from './views/wallets';\n", "new_path": "portals/user-portal/src/...
TypeScript
MIT License
coingaming/moon-design
fix(user-portal): images component export
1
fix
user-portal
815,569
03.04.2019 17:00:20
-28,800
c8e5276e86d4389d84c3265a748a2c6b45622b3c
chore: add deserialize for CellWithStatus&CellOutputWithOutPoint
[ { "change_type": "MODIFY", "diff": "@@ -2,19 +2,19 @@ use crate::blockchain::{CellOutput, OutPoint};\nuse ckb_core::cell::CellStatus;\nuse ckb_core::script::Script;\nuse ckb_core::Capacity;\n-use serde_derive::Serialize;\n+use serde_derive::{Deserialize, Serialize};\n// This is used as return value of get_c...
Rust
MIT License
nervosnetwork/ckb
chore: add deserialize for CellWithStatus&CellOutputWithOutPoint
1
chore
null
76,605
03.04.2019 17:10:49
-7,200
a69bfda1d1d9c0fdd64bb095ba6730185eb3c8c1
feat: Add classifier factory in classifier
[ { "change_type": "MODIFY", "diff": "@@ -174,6 +174,14 @@ class Classifier {\n}\nreturn result;\n}\n+\n+ static fromObj(obj) {\n+ const instance = new Classifier.classes[obj.className]();\n+ instance.fromObj(obj);\n+ return instance;\n+ }\n}\n+Classifier.classes = {};\n+\nmodule.exports = Classifier;\n", ...
JavaScript
MIT License
axa-group/nlp.js
feat: Add classifier factory in classifier
1
feat
null
76,605
03.04.2019 17:11:23
-7,200
a7432e1cfb7b6cda088e7bdb5d3a145ac806ab5e
feat: add binary neural network import/export
[ { "change_type": "MODIFY", "diff": "*/\nconst { NeuralNetwork } = require('brain.js');\n+const Classifier = require('./classifier');\n/**\n* Classifier using Brain.js Neural Network\n*/\n-class BinaryNeuralNetworkClassifier {\n+class BinaryNeuralNetworkClassifier extends Classifier {\n/**\n* Constructor of ...
JavaScript
MIT License
axa-group/nlp.js
feat: add binary neural network import/export
1
feat
null
76,605
03.04.2019 17:11:53
-7,200
e05efa8c1d2c895c3395e01e5e24961d5332a424
feat: Add Brain Classifier import/export
[ { "change_type": "MODIFY", "diff": "*/\nconst { NeuralNetwork } = require('brain.js');\n+const Classifier = require('./classifier');\n/**\n* Classifier using Brain.js Neural Network\n*/\n-class BrainClassifier {\n+class BrainClassifier extends Classifier {\n/**\n* Constructor of the class.\n* @param {Object...
JavaScript
MIT License
axa-group/nlp.js
feat: Add Brain Classifier import/export
1
feat
null
67,482
03.04.2019 17:32:24
25,200
ead1c322ab6ac3359a751fb7550a6b9e537b3afe
doc(user-docs): more work on proposed ToC
[ { "change_type": "MODIFY", "diff": "@@ -57,29 +57,59 @@ The documentation is organized into seven major sections, all available through\nEach of these sections is represented in the ToC as a bold section delimiter. Articles and Packages are listed after each section, not nested. When an article is clicked o...
TypeScript
MIT License
aurelia/aurelia
doc(user-docs): more work on proposed ToC
1
doc
user-docs
76,605
03.04.2019 17:41:26
-7,200
82cd0cf8a87bc9764c908614393c0146382add4b
feat: Logistic Regression classifier import/export
[ { "change_type": "MODIFY", "diff": "@@ -85,6 +85,7 @@ class LogisticRegressionClassifier extends Classifier {\n*/\ntoObj() {\nconst result = {};\n+ result.className = 'LogisticRegressionClassifier';\nresult.observations = this.observations;\nresult.labels = this.labels;\nresult.classifications = this.classi...
JavaScript
MIT License
axa-group/nlp.js
feat: Logistic Regression classifier import/export
1
feat
null
67,476
03.04.2019 18:59:18
-7,200
c45d9c43bcd723518c7524806b6d770202ccd683
chore(runtime): fix some types
[ { "change_type": "MODIFY", "diff": "@@ -371,9 +371,9 @@ export class FragmentNodeSequence implements INodeSequence {\nlet current = this.start.nextSibling;\nwhile (current !== end) {\nnext = current!.nextSibling!;\n- // tslint:disable-next-line:no-any\nfragment.appendChild(current!);\n- current = next;\n+ /...
TypeScript
MIT License
aurelia/aurelia
chore(runtime): fix some types
1
chore
runtime
67,476
03.04.2019 19:15:46
-7,200
dc107bef7d80f12d83b5c4ca8eac0d2c626bac64
test(controller): add initial test setup
[ { "change_type": "ADD", "diff": "+import {\n+ Controller,\n+ LifecycleFlags,\n+ ViewFactory,\n+ ITemplateFactory,\n+ createRenderContext,\n+ buildTemplateDefinition,\n+ Scope,\n+ BindingContext,\n+ Interpolation,\n+ AccessScope,\n+} from '@aurelia/runtime';\n+import {\n+ TextBindingInstruction,\n+} from '@a...
TypeScript
MIT License
aurelia/aurelia
test(controller): add initial test setup
1
test
controller
67,476
03.04.2019 19:16:37
-7,200
868ba440a9d32aca83dc55f6be875a06886bcc63
chore(tests): some test setup fixes
[ { "change_type": "MODIFY", "diff": "--colors\n--reporter progress\n--recursive\n+--watch-extensions js\n--timeout 5000\n", "new_path": "packages/__tests__/mocha.opts", "old_path": "packages/__tests__/mocha.opts" }, { "change_type": "MODIFY", "diff": "},\n\"scripts\": {\n\"test-node\": \"...
TypeScript
MIT License
aurelia/aurelia
chore(tests): some test setup fixes
1
chore
tests
531,793
03.04.2019 20:23:06
25,200
ed58c3a1eb9c9a665c16b255f8d39ae51dc67932
fix(ui): reset grid after browser reset Resizing browser window requires reseting the grid, since the number of columns might change. Add event handlers to handle that
[ { "change_type": "MODIFY", "diff": "import React, { Component } from \"react\";\nimport PropTypes from \"prop-types\";\n+import { observable, action } from \"mobx\";\nimport { observer } from \"mobx-react\";\nimport { AlertStore } from \"Stores/AlertStore\";\n@@ -19,6 +20,34 @@ const Grid = observer(\nsilen...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): reset grid after browser reset Resizing browser window requires reseting the grid, since the number of columns might change. Add event handlers to handle that
1
fix
ui
791,690
03.04.2019 20:27:56
18,000
c140802959d3e2bbad44db6af53a408afe9c0518
tests: better fatal trace logic error coverage
[ { "change_type": "MODIFY", "diff": "@@ -148,11 +148,16 @@ class MainThreadTasks {\n/**\n* @param {TaskNode} task\n+ * @param {TaskNode|undefined} parent\n* @return {number}\n*/\n- static _computeRecursiveSelfTime(task) {\n+ static _computeRecursiveSelfTime(task, parent) {\n+ if (parent && task.endTime > par...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests: better fatal trace logic error coverage (#7959)
1
tests
null
531,793
03.04.2019 22:24:23
25,200
942d86a6525739605b3bba2148764d6a7fec2835
fix(ui): redraw alert grid on orientation changes
[ { "change_type": "MODIFY", "diff": "\"react-tippy\": \"1.2.3\",\n\"react-transition-group\": \"2.8.0\",\n\"react-truncate\": \"2.4.0\",\n+ \"screen-orientation\": \"1.0.3\",\n\"whatwg-fetch\": \"3.0.0\"\n},\n\"scripts\": {\n", "new_path": "ui/package.json", "old_path": "ui/package.json" }, { ...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): redraw alert grid on orientation changes
1
fix
ui
471,527
04.04.2019 01:06:30
-7,200
4d15a39d35bbc1b7d686d76cbafc2e74f66ef890
fix: add clone dependency
[ { "change_type": "MODIFY", "diff": "\"@babel/preset-env\": \"^7.0.0\",\n\"@webcomponents/webcomponentsjs\": \"^2.2.0\",\n\"babel-plugin-bundled-import-meta\": \"^0.3.0\",\n- \"clone\": \"2.1.2\",\n+ \"clone\": \"^2.1.2\",\n\"mkdirp\": \"^0.5.1\",\n\"parse5\": \"^5.1.0\",\n\"rollup-plugin-babel\": \"^4.3.2\"...
JavaScript
MIT License
open-wc/open-wc
fix: add clone dependency
1
fix
null
76,605
04.04.2019 02:31:51
-7,200
05e02962356b4e108e61ad8ef010e6854d6b45df
feat: BayesClassifier import/export
[ { "change_type": "MODIFY", "diff": "@@ -82,6 +82,27 @@ class BayesClassifier extends Classifier {\ntrain() {\n// Do nothing\n}\n+\n+ toObj() {\n+ const result = {};\n+ result.className = 'BayesClassifier';\n+ result.settings = this.settings;\n+ result.labels = this.labels;\n+ result.observations = this.obse...
JavaScript
MIT License
axa-group/nlp.js
feat: BayesClassifier import/export
1
feat
null
76,605
04.04.2019 02:32:31
-7,200
eba96ae41370dfb61c432d7b6a8b043df70d127f
fix: Binary Neural save property labels
[ { "change_type": "MODIFY", "diff": "@@ -123,11 +123,13 @@ class BinaryNeuralNetworkClassifier extends Classifier {\nObject.keys(this.classifierMap).forEach(key => {\nresult.classifierMap[key] = this.classifierMap[key].toJSON();\n});\n+ result.labels = this.labels;\nreturn result;\n}\nfromObj(obj) {\nthis.se...
JavaScript
MIT License
axa-group/nlp.js
fix: Binary Neural save property labels
1
fix
null
304,866
04.04.2019 07:23:46
25,200
3b210289dd11f917bede5fa44423637b2a92571d
fix(ast): omit space between unary operator and operand
[ { "change_type": "MODIFY", "diff": "@@ -359,7 +359,10 @@ func (f *formatter) formatFunctionExpression(n *FunctionExpression) {\nfunc (f *formatter) formatUnaryExpression(n *UnaryExpression) {\nf.writeString(n.Operator.String())\n- f.writeRune(' ')\n+ if n.Operator != SubtractionOperator &&\n+ n.Operator != ...
Go
MIT License
influxdata/flux
fix(ast): omit space between unary operator and operand (#1124)
1
fix
ast
103,441
04.04.2019 10:07:21
-7,200
826e7e6200833d4f90a1a8342f3dcbe14d289128
docs: add reactnativepaper.com in the README
[ { "change_type": "MODIFY", "diff": "<img alt=\"react-native-paper\" src=\"docs/assets/images/paper-logo.svg?sanitize=true\" width=\"300\">\n</p>\n<p align=\"center\">\n- Material design for React Native.\n+ Material design for React Native.<br/>\n+ <a href=\"https://reactnativepaper.com\">reactnativepaper.c...
TypeScript
MIT License
callstack/react-native-paper
docs: add reactnativepaper.com in the README (#971)
1
docs
null
603,467
04.04.2019 10:22:27
-3,600
aea17de65b052dd1a700010a1863667b84b25aec
feat(core): Serenity/JS reports are compatible with Serenity BDD CLI 2.1.8
[ { "change_type": "MODIFY", "diff": "\"scripts\": {\n\"clean\": \"rimraf target\",\n\"lint\": \"tslint --project tsconfig-lint.json --config ../../tslint.json --format stylish\",\n- \"test:update-serenity\": \"serenity update --artifact net.serenity-bdd:serenity-cli:jar:all:2.1.5 --repository https://jcenter...
TypeScript
Apache License 2.0
serenity-js/serenity-js
feat(core): Serenity/JS reports are compatible with Serenity BDD CLI 2.1.8
1
feat
core