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
815,605
14.05.2019 21:02:40
-28,800
201f3a26bb9e2d775a03af4484cc0e763eb19920
fix: fix NervosDAO calculation logic
[ { "change_type": "MODIFY", "diff": "@@ -227,11 +227,12 @@ impl<CS: ChainStore + 'static> ChainService<CS> {\n.next_epoch_ext(&parent_header_epoch, &parent_header);\nlet new_epoch = next_epoch_ext.is_some();\n- let epoch = next_epoch_ext.unwrap_or(parent_header_epoch);\n+ let epoch = next_epoch_ext.unwrap_or...
Rust
MIT License
nervosnetwork/ckb
fix: fix NervosDAO calculation logic
1
fix
null
815,598
14.05.2019 21:13:36
-28,800
f999171f5f7cf90f856ece15adb1ab7b2d4eca23
chore: bump db version for v0.12.0
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,7 @@ use std::sync::Arc;\n// - If the data can be migrated manually: update \"x.y1.z\" to \"x.y2.0\".\n// - If the data can not be migrated: update \"x1.y.z\" to \"x2.0.0\".\npub(crate) const VERSION_KEY: &str = \"db-version\";\n-pub(crate) const VERSION_VALUE:...
Rust
MIT License
nervosnetwork/ckb
chore: bump db version for v0.12.0
1
chore
null
815,605
14.05.2019 21:58:45
-28,800
c690033ce15747341b225a5a691db7caab757f2d
fix: fix NervosDAO calculation logic attempt 2
[ { "change_type": "MODIFY", "diff": "@@ -230,10 +230,9 @@ impl<CS: ChainStore + 'static> ChainService<CS> {\nlet epoch = next_epoch_ext.unwrap_or_else(|| parent_header_epoch.to_owned());\nlet (ar, c) = calculate_dao_data(\n- block.header().number(),\n- &parent_ext.dao_stats,\n+ parent_header.number(),\n&pare...
Rust
MIT License
nervosnetwork/ckb
fix: fix NervosDAO calculation logic attempt 2
1
fix
null
815,595
14.05.2019 22:06:59
-28,800
0cd1ca78284fd8c75882d2790a5b4528e392b81c
test: Add test for block template cache
[ { "change_type": "MODIFY", "diff": "-use crate::{Net, Spec};\n+use crate::{Net, Node, Spec};\nuse ckb_core::block::Block;\n+use ckb_core::header::HeaderBuilder;\nuse ckb_core::transaction::ProposalShortId;\nuse log::info;\nuse std::convert::TryInto;\n+use std::thread::sleep;\n+use std::time::Duration;\npub ...
Rust
MIT License
nervosnetwork/ckb
test: Add test for block template cache
1
test
null
815,595
14.05.2019 22:07:29
-28,800
fd91dd7ce16dc14c2def93797c33037a8937d566
fix: Use hash as one of block template cache
[ { "change_type": "MODIFY", "diff": "@@ -98,7 +98,7 @@ pub struct BlockAssembler<CS> {\nconfig: BlockAssemblerConfig,\nwork_id: AtomicUsize,\nlast_uncles_updated_at: AtomicU64,\n- template_caches: Mutex<LruCache<(Cycle, u64, Version), TemplateCache>>,\n+ template_caches: Mutex<LruCache<(H256, Cycle, u64, Ver...
Rust
MIT License
nervosnetwork/ckb
fix: Use hash as one of block template cache
1
fix
null
815,605
14.05.2019 22:26:05
-28,800
53b1ee01acc9e9c29edbe19539d10b72479edca0
fix: fix NervosDAO calculation logic attempt 3
[ { "change_type": "MODIFY", "diff": "@@ -17,7 +17,7 @@ use ckb_core::extras::{\nuse ckb_core::header::{BlockNumber, Header};\nuse ckb_core::transaction::{CellOutPoint, CellOutput, ProposalShortId, Transaction};\nuse ckb_core::uncle::UncleBlock;\n-use ckb_core::EpochNumber;\n+use ckb_core::{Capacity, EpochNum...
Rust
MIT License
nervosnetwork/ckb
fix: fix NervosDAO calculation logic attempt 3
1
fix
null
815,598
14.05.2019 22:43:44
-28,800
f9179a87e9e67283e9fbfc143bd51e5a2e268671
feat: set testnet gensis timestamp
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,7 @@ cellbase = \"0x1d1d6e4c551e076d5248303bfc1a70b8dd0e82ecf8250c3d50b56aec57325c7e\"\nsystem_cells = []\n[ckb_testnet]\n-genesis = \"0xd8b010a7a5761da720b8d7f574262a53393c6f72a51e03921b82cd870821c7f0\"\n+genesis = \"0xcbdf7ba31715d7269b84d9554b9e1b11ca11cb668...
Rust
MIT License
nervosnetwork/ckb
feat: set testnet gensis timestamp
1
feat
null
815,605
14.05.2019 22:46:15
-28,800
63b1a1e7c1bdd66c00e0506b768285f19b1aa7c7
fix: fix NervosDAO calculation logic attempt 4
[ { "change_type": "MODIFY", "diff": "@@ -188,11 +188,12 @@ impl<T: KeyValueDB> ChainStore for ChainKVStore<T> {\ndao_stats: DaoStats {\naccumulated_rate: DEFAULT_ACCUMULATED_RATE,\naccumulated_capacity: genesis\n- .transactions()\n+ .transactions()[0]\n+ .outputs()\n.iter()\n.skip(1)\n- .try_fold(Capacity::z...
Rust
MIT License
nervosnetwork/ckb
fix: fix NervosDAO calculation logic attempt 4
1
fix
null
815,583
14.05.2019 23:17:22
-28,800
5d345364e33515702cee693ac83288efece17931
docs: fix typo in rpc doc fix typo from `than` to `then`
[ { "change_type": "MODIFY", "diff": "@@ -94,7 +94,7 @@ http://localhost:8114\nDry run transaction and return the execution cycles.\nThis method will not check the transaction validaty, but only run the lock script\n-and type script and than return the execution cycles.\n+and type script and then return the e...
Rust
MIT License
nervosnetwork/ckb
docs: fix typo in rpc doc (#760) fix typo from `than` to `then`
1
docs
null
815,598
14.05.2019 23:45:23
-28,800
18711f796bcb37519caff641279142a9fb95e0fe
docs: update comment in ci local script [skip ci]
[ { "change_type": "MODIFY", "diff": "#!/usr/bin/env bash\n#\n-# Run CI locally for current SHA and submit the result via GitHub statuses API.\n+# Run CI locally for current SHA.\n#\n# Usage:\n# devtools/ci/local.sh [--integration]\n# hub pr checkout <pr_number>\n#\n# When the script completes, please post th...
Rust
MIT License
nervosnetwork/ckb
docs: update comment in ci local script [skip ci] (#764)
1
docs
null
469,438
15.05.2019 04:40:20
0
f0995c6488018b427a62919efe1ca516c931fd53
chore(release): 1.1.9 [skip ci] ## [1.1.9](https://github.com/open-rpc/spec/compare/1.1.8...1.1.9) (2019-05-15) ### Bug Fixes * change type of MethodObject.name to string ([2282b29](https://github.com/open-rpc/spec/commit/2282b29)), closes [#180](https://github.com/open-rpc/spec/issues/180) * typo ([ef7b956](https://gi...
[ { "change_type": "MODIFY", "diff": "+## [1.1.9](https://github.com/open-rpc/spec/compare/1.1.8...1.1.9) (2019-05-15)\n+\n+\n+### Bug Fixes\n+\n+* change type of MethodObject.name to string ([2282b29](https://github.com/open-rpc/spec/commit/2282b29)), closes [#180](https://github.com/open-rpc/spec/issues/180...
JavaScript
Apache License 2.0
open-rpc/spec
chore(release): 1.1.9 [skip ci] ## [1.1.9](https://github.com/open-rpc/spec/compare/1.1.8...1.1.9) (2019-05-15) ### Bug Fixes * change type of MethodObject.name to string ([2282b29](https://github.com/open-rpc/spec/commit/2282b29)), closes [#180](https://github.com/open-rpc/spec/issues/180) * typo ([ef7b956](https:/...
1
chore
release
103,510
15.05.2019 06:54:45
10,800
fb2bacb3ba36d6074036cde0ad3b50e0c5370129
fix: fix bug with applying backgroundColor to DrawerSection
[ { "change_type": "MODIFY", "diff": "import color from 'color';\nimport * as React from 'react';\n-import { View } from 'react-native';\n+import { View, StyleSheet } from 'react-native';\nimport Text from '../Typography/Text';\nimport Divider from '../Divider';\nimport { withTheme } from '../../core/theming'...
TypeScript
MIT License
callstack/react-native-paper
fix: fix bug with applying backgroundColor to DrawerSection (#1063)
1
fix
null
217,922
15.05.2019 07:51:11
-7,200
090d756aa7b455a91409149d5cc59dfb731012ae
chore: reduction data for item pages
[ { "change_type": "MODIFY", "diff": "@@ -41,6 +41,7 @@ export class Item implements I18nData {\nmasterpiece: Masterpiece;\ningredient_of?: { [index: string]: number };\n+ reducesTo?: number[];\ntradeCurrency?: any[];\nloot?: number[];\ntreasure?: number[];\n", "new_path": "apps/client/src/app/model/garla...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: reduction data for item pages
1
chore
null
807,849
15.05.2019 10:52:48
25,200
551e6e4d609e61176d6befbeb0b88c2d2f8ea1c3
fix(collect-uncommitted): Call `git` with correct arguments, test properly Fixes
[ { "change_type": "MODIFY", "diff": "\"version\": \"file:utils/collect-uncommitted\",\n\"requires\": {\n\"@lerna/child-process\": \"file:core/child-process\",\n- \"chalk\": \"^2.3.1\"\n+ \"chalk\": \"^2.3.1\",\n+ \"figgy-pudding\": \"^3.5.1\",\n+ \"npmlog\": \"^4.1.2\"\n}\n},\n\"@lerna/collect-updates\": {\n...
JavaScript
MIT License
lerna/lerna
fix(collect-uncommitted): Call `git` with correct arguments, test properly Fixes #2091
1
fix
collect-uncommitted
807,849
15.05.2019 11:02:08
25,200
d87a67bf2beb1ac9558e0c1adfd47d937f5240f3
chore(release): v3.14.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+## [3.14.1](https://github.com/lerna/lerna/compare/v3.14.0...v3.14.1) (2019-05-15)\n+\n+\n+### Bug Fixes\n+\n+* **col...
JavaScript
MIT License
lerna/lerna
chore(release): v3.14.1
1
chore
release
306,423
15.05.2019 11:14:17
-7,200
f2c44331389d2bf485471752a6613d63dcf9ab74
fix(form): native submit event should not trigger an error
[ { "change_type": "MODIFY", "diff": "\"@lion/textarea\": \"^0.1.8\",\n\"@lion/validate\": \"^0.1.8\",\n\"@open-wc/demoing-storybook\": \"^0.2.0\",\n- \"@open-wc/testing\": \"^0.11.1\"\n+ \"@open-wc/testing\": \"^0.11.1\",\n+ \"sinon\": \"^7.2.2\"\n}\n}\n", "new_path": "packages/form/package.json", "o...
JavaScript
MIT License
ing-bank/lion
fix(form): native submit event should not trigger an error
1
fix
form
127,946
15.05.2019 11:34:46
-10,800
a65f719d78f7ae9823fe68abca5ee217ddbf1be0
feat(settings): cursor pointer if onClick prop
[ { "change_type": "MODIFY", "diff": "@@ -22,8 +22,8 @@ export const SettingsSection = styled.section({\n},\n});\n-export const SettingsBlock = styled.div<{ highlight?: boolean }>(\n- ({ highlight = false }) => [\n+export const SettingsBlock = styled.div<{ highlight?: boolean; onClick?: any }>(\n+ ({ highligh...
TypeScript
MIT License
coingaming/moon-design
feat(settings): cursor pointer if onClick prop
1
feat
settings
815,593
15.05.2019 11:58:52
-28,800
7a9da174c84722482b1a488464fa64e0d068c35c
chore: fix integration test issue
[ { "change_type": "MODIFY", "diff": "@@ -64,7 +64,8 @@ impl Spec for ChainFork2 {\nnode0.generate_blocks(2);\ninfo!(\"Connect all nodes\");\n- net.connect_all();\n+ node0.connect(node1);\n+ node0.connect(node2);\nnet.waiting_for_sync(2, 10);\ninfo!(\"Disconnect all nodes\");\nnet.disconnect_all();\n@@ -122,7...
Rust
MIT License
nervosnetwork/ckb
chore: fix integration test issue
1
chore
null
127,946
15.05.2019 12:02:35
-10,800
410b2cf9d7093b9c88a4ff308642d3506d8b3782
feat(icons): update hamburger & logo icons
[ { "change_type": "MODIFY", "diff": "-<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n-<rect y=\"0.09375\" width=\"16\" height=\"2\" rx=\"1\" fill=\"#8697A2\"/>\n-<rect x=\"4\" y=\"6.09375\" width=\"12\" height=\"2\" rx=\"1\" fill=\"#8697A2\"/>\n-<re...
TypeScript
MIT License
coingaming/moon-design
feat(icons): update hamburger & logo icons
1
feat
icons
815,590
15.05.2019 13:05:27
-28,800
3f42f03c6aa583782aaa5f63610d121d8947405a
feat: prof support start from non-zero block
[ { "change_type": "MODIFY", "diff": "use ckb_app_config::{ExitCode, ProfArgs};\n+use ckb_chain::chain::ChainController;\nuse ckb_chain::chain::ChainService;\nuse ckb_db::{CacheDB, DBConfig, RocksDB};\nuse ckb_notify::NotifyService;\n@@ -35,9 +36,18 @@ pub fn profile(args: ProfArgs) -> Result<(), ExitCode> {\...
Rust
MIT License
nervosnetwork/ckb
feat: prof support start from non-zero block
1
feat
null
815,573
15.05.2019 13:21:47
-28,800
bae3db4673f134ea0c36a406802c6a5f8f88cd7b
fix(deps): Upgrade p2p fix gracefully shutdown network service
[ { "change_type": "MODIFY", "diff": "@@ -564,7 +564,7 @@ dependencies = [\n\"snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"stop-handler 0.12.0-pre\",\n\"tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)\",\n- \"tentacle 0.2.0-alpha.14 (registry+https://github.c...
Rust
MIT License
nervosnetwork/ckb
fix(deps): Upgrade p2p fix gracefully shutdown network service
1
fix
deps
807,955
15.05.2019 13:36:00
18,000
9dc2bc5a9e200de3e8b5e83bbd8cec1fddfc2916
docs: Indicate that even single-use deps are hoisted [skip ci]
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,7 @@ exacerbate this problem.\nFortunately, Lerna also offers a feature to improve the situation -\nLerna can reduce the time and space requirements for numerous copies of\n-packages in development and build environments, by \"hoisting\" shared\n+packages in ...
JavaScript
MIT License
lerna/lerna
docs: Indicate that even single-use deps are hoisted (#2090) [skip ci]
1
docs
null
815,601
15.05.2019 13:57:30
-28,800
a2a1dbdac194d55bf1267c42ae9efbb3978d8977
feat: tweak max block cycles limit
[ { "change_type": "MODIFY", "diff": "@@ -33,7 +33,7 @@ args = []\n[params]\nepoch_reward = 5_000_000_000_000_000\nsecondary_epoch_reward = 5_000_000_000\n-max_block_cycles = 20_000_000_000\n+max_block_cycles = 10_000_000_000\ncellbase_maturity = 0\n[pow]\n", "new_path": "resource/specs/dev.toml", "ol...
Rust
MIT License
nervosnetwork/ckb
feat: tweak max block cycles limit
1
feat
null
815,601
15.05.2019 14:14:45
-28,800
b48e439748cc5b3746dcb8812105be932da3ebac
chore: bump rust-toolchain to 1.34.2
[ { "change_type": "MODIFY", "diff": "@@ -16,10 +16,10 @@ env:\nmatrix:\ninclude:\n- - rust: 1.34.1\n+ - rust: 1.34.2\nos: osx\nenv: REL_PKG=darwin_amd64.zip\n- - rust: 1.34.1\n+ - rust: 1.34.2\nos: linux\nenv: REL_PKG=linux_amd64.tar.gz\n", "new_path": ".travis.yml", "old_path": ".travis.yml" }, ...
Rust
MIT License
nervosnetwork/ckb
chore: bump rust-toolchain to 1.34.2 (#769)
1
chore
null
127,946
15.05.2019 14:21:28
-10,800
bf6b6f17c5c2403ab6a6b69e46a97d06832ef4a9
feat(nav): hamburger menu
[ { "change_type": "MODIFY", "diff": "@@ -67,6 +67,27 @@ const Close = styled.div({\njustifyContent: 'center',\n});\n+const SummaryHamburgerMenu = styled.div({\n+ display: 'flex',\n+ flexDirection: 'row',\n+ marginLeft: spacing(),\n+ [mq(breakpoints.small)]: {\n+ marginLeft: 0,\n+ },\n+ color: colors.neutral[...
TypeScript
MIT License
coingaming/moon-design
feat(nav): hamburger menu
1
feat
nav
67,476
15.05.2019 14:37:01
-7,200
b8869b59e0c8245a6467fa81e4ba028ac79d3b5c
feat(testing): implement simple spy
[ { "change_type": "MODIFY", "diff": "@@ -101,4 +101,6 @@ export {\n} from './tracing';\nexport {\ntrimFull,\n+ createSpy,\n+ ISpy,\n} from './util';\n", "new_path": "packages/testing/src/index.ts", "old_path": "packages/testing/src/index.ts" }, { "change_type": "MODIFY", "diff": "import {...
TypeScript
MIT License
aurelia/aurelia
feat(testing): implement simple spy
1
feat
testing
67,476
15.05.2019 14:37:47
-7,200
62e511bcacfed25f05685b17ca1128efae8e28e1
feat(testing): add more assertions
[ { "change_type": "MODIFY", "diff": "@@ -27,6 +27,10 @@ import {\nIIndexable,\n} from '@aurelia/kernel';\n+import {\n+ CompositionRoot,\n+} from '@aurelia/runtime';\n+\nimport {\nisDeepEqual,\nisDeepStrictEqual,\n@@ -36,6 +40,7 @@ import {\nIAssertionErrorOpts,\ninspect,\n} from './inspect';\n+import { getVi...
TypeScript
MIT License
aurelia/aurelia
feat(testing): add more assertions
1
feat
testing
127,946
15.05.2019 14:38:30
-10,800
9e7b8829d0e2acac748bf3711319ae5ee70607c7
feat(nav): mybets mobile hidden
[ { "change_type": "MODIFY", "diff": "@@ -3,10 +3,12 @@ import * as React from 'react';\nimport { jsx } from '@emotion/core';\nimport rem from 'polished/lib/helpers/rem';\nimport styled from '@emotion/styled';\n-import { spacing } from '@heathmont/sportsbet-utils';\n-import { colors, border } from '@heathmont...
TypeScript
MIT License
coingaming/moon-design
feat(nav): mybets mobile hidden
1
feat
nav
807,833
15.05.2019 14:38:43
14,400
c4d165a81a691965337028392c3cab906ecc7cb4
docs: Add disclaimer that Lerna is not a deployment tool [skip ci] Fixes
[ { "change_type": "MODIFY", "diff": "@@ -76,6 +76,10 @@ The two primary commands in Lerna are `lerna bootstrap` and `lerna publish`.\n`bootstrap` will link dependencies in the repo together.\n`publish` will help publish any updated packages.\n+### What can't Lerna do?\n+\n+Lerna is not a deployment tool for ...
JavaScript
MIT License
lerna/lerna
docs: Add disclaimer that Lerna is not a deployment tool (#2089) [skip ci] Fixes #2077
1
docs
null
67,476
15.05.2019 14:39:21
-7,200
25148d0a59c1d7dcea8c6efc723dd0a309a2c077
fix(debug): add missing error codes and fix a few reporting issues
[ { "change_type": "MODIFY", "diff": "-import { Reporter as RuntimeReporter } from '@aurelia/kernel';\n+import { LogLevel, Reporter as RuntimeReporter } from '@aurelia/kernel';\ndeclare var console: {\nlog(...args: unknown[]): void;\n@@ -8,42 +8,42 @@ declare var console: {\nerror(...args: unknown[]): void;\n...
TypeScript
MIT License
aurelia/aurelia
fix(debug): add missing error codes and fix a few reporting issues
1
fix
debug
730,413
15.05.2019 14:43:27
14,400
6593ed5523e525efe96b6cb406a69bb78c6071bf
feat(widget-recents): remove extendedLoad
[ { "change_type": "MODIFY", "diff": "@@ -59,7 +59,6 @@ class DemoWidget extends Component {\ndestinationId,\ninitialActivity: isMeetOnly ? 'meet' : cookies.get('initialActivity') || 'message',\nenableSpaceListFilter: cookies.get('enableSpaceListFilter') === undefined ? true : cookies.get('enableSpaceListFilt...
JavaScript
MIT License
webex/react-widgets
feat(widget-recents): remove extendedLoad
1
feat
widget-recents
273,672
15.05.2019 14:53:57
-7,200
3d2fd2c57b07956dd88b08573c0cca80ca81e5e3
feat(sitemap): add support for static urls
[ { "change_type": "MODIFY", "diff": "@@ -35,4 +35,39 @@ module.exports = {\n}\n```\n+### Adding static urls\n+```js\n+module.exports = {\n+ plugins: [\n+ {\n+ use: '@gridsome/plugin-sitemap',\n+ options: {\n+ staticUrls: [\n+ {\n+ url: '/images/',\n+ img: [\n+ {\n+ url: '/images/img1.jpg',\n+ caption: 'Image...
JavaScript
MIT License
gridsome/gridsome
feat(sitemap): add support for static urls (#392)
1
feat
sitemap
815,595
15.05.2019 15:04:25
-28,800
bfa2b3c10a8e9c0271de37798d20cf0c7a218d52
feat: Add rpc compute_code_hash, compute_script_hash
[ { "change_type": "MODIFY", "diff": "@@ -648,6 +648,7 @@ dependencies = [\n\"ckb-util 0.12.0-pre\",\n\"ckb-verification 0.12.0-pre\",\n\"dao 0.12.0-pre\",\n+ \"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"faketime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)\",...
Rust
MIT License
nervosnetwork/ckb
feat: Add rpc compute_code_hash, compute_script_hash
1
feat
null
67,476
15.05.2019 15:04:45
-7,200
edb93d986a568c69d7a4a279ccedd6bd48270dcb
chore(all): remove sinon + chai
[ { "change_type": "MODIFY", "diff": "\"url-template\": \"^2.0.8\"\n}\n},\n- \"@sinonjs/commons\": {\n- \"version\": \"1.4.0\",\n- \"resolved\": \"https://registry.npmjs.org/@sinonjs/commons/-/commons-1.4.0.tgz\",\n- \"integrity\": \"sha512-9jHK3YF/8HtJ9wCAbG+j8cD0i0+ATS9A7gXFqS36TblLPNy6rEEc+SB0imo91eCboGaBY...
TypeScript
MIT License
aurelia/aurelia
chore(all): remove sinon + chai
1
chore
all
67,476
15.05.2019 15:05:11
-7,200
8a291d2610c424c223abc001cb0f3e56e5883240
chore(tslint): disable useless rule
[ { "change_type": "MODIFY", "diff": "\"allow-mix\"\n],\n\"switch-default\": false,\n- \"switch-final-break\": true,\n+ \"switch-final-break\": false,\n\"triple-equals\": [false],\n\"use-isnan\": true,\n\"use-named-parameter\": true,\n", "new_path": "tslint.json", "old_path": "tslint.json" } ]
TypeScript
MIT License
aurelia/aurelia
chore(tslint): disable useless rule
1
chore
tslint
815,601
15.05.2019 15:05:41
-28,800
ad072c48c1933bb0756d561ed2ae1364aec98516
feat: using jemalloc as the global allocator on unix
[ { "change_type": "MODIFY", "diff": "@@ -329,6 +329,7 @@ dependencies = [\n\"ctrlc 3.1.2 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"hash 0.12.0-pre\",\n+ \"jemallocator 0.3.0 (registry+https://github.com/rust-lang...
Rust
MIT License
nervosnetwork/ckb
feat: using jemalloc as the global allocator on unix
1
feat
null
722,013
15.05.2019 15:10:37
18,000
a4eed8452ab9b571d58c1beeaa5b8a63dfcb0d82
fix(docgen): fix node_modules mixins parsing Closes
[ { "change_type": "MODIFY", "diff": "},\n\"devDependencies\": {\n\"vue-class-component\": \"^7.0.2\",\n- \"vue-property-decorator\": \"^7.3.0\"\n+ \"vue-property-decorator\": \"^7.3.0\",\n+ \"vue-clickaway\": \"^2.2.2\"\n}\n}\n", "new_path": "packages/vue-docgen-api/package.json", "old_path": "packag...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix(docgen): fix node_modules mixins parsing Closes #416
1
fix
docgen
722,013
15.05.2019 15:34:08
18,000
7a1092a3a636c302a6b83a7446da1d86b49cb593
fix: make sure node_module resolved path ignored
[ { "change_type": "MODIFY", "diff": "@@ -36,18 +36,17 @@ export default function extendsHandler(\nresolveImmediatelyExportedRequire(pathResolver, extendsFilePath)\n// only look for documentation in the current project not in node_modules\n- if (/^\\./.test(extendsFilePath[extendsVariableName].filePath)) {\nc...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix: make sure node_module resolved path ignored
1
fix
null
104,827
15.05.2019 15:37:17
18,000
80236aac46f30605f5af592e8e3640d3cc5483c2
feat(table): add optional filtering actions by instance id
[ { "change_type": "MODIFY", "diff": "@@ -38,12 +38,14 @@ describe('StatefulTable tests with Mock reducer', () => {\n// First we're called by empty array\nexpect(mockDispatch).toHaveBeenCalledWith({\npayload: { data: [], isLoading: undefined },\n+ instanceId: null,\ntype: 'TABLE_REGISTER',\n});\nstatefulTable...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(table): add optional filtering actions by instance id
1
feat
table
603,467
15.05.2019 15:39:29
-3,600
42c28a6e8444fc146e184773cbe3940e3ed5d696
fix(jasmine): Jasmine scenarios synchronise with Serenity/JS
[ { "change_type": "MODIFY", "diff": "import { expect } from '@integration/testing-tools';\n+import * as sinon from 'sinon';\nimport serenityReporterForJasmine = require('../src');\ndescribe('@serenity-js/jasmine', () => {\nbeforeEach(() => {\n+ const env = {\n+ afterEach: sinon.spy(),\n+ };\n+\n(global as an...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(jasmine): Jasmine scenarios synchronise with Serenity/JS
1
fix
jasmine
503,950
15.05.2019 15:42:11
-10,800
a149e52f390213dd74220173dc830bd68d4f383a
feat(LoginPage): support array of alerts
[ { "change_type": "MODIFY", "diff": "+.login-pf-page {\n+ .alert {\n+ margin-bottom: 0;\n+ }\n+\n.login-form-error {\ncolor: @color-pf-red-100;\nmargin-bottom: 10px;\n}\n+\n+ .login-pf-input-warning {\n+ margin-top: 5px;\n+ }\n+}\n", "new_path": "packages/patternfly-3/patternfly-react/less/login-page.les...
TypeScript
MIT License
patternfly/patternfly-react
feat(LoginPage): support array of alerts (#1974)
1
feat
LoginPage
722,013
15.05.2019 15:46:41
18,000
03d098624aa79c094aebec2cec958497c694ee64
test: add unit test for mixin node_modules
[ { "change_type": "MODIFY", "diff": "@@ -30,6 +30,7 @@ describe('mixinsHandler', () => {\nmockResolvePathFrom.mockReturnValue('./component/full/path')\nmockParse = parseFile as jest.Mock\n+ mockParse.mockReset()\nmockParse.mockReturnValue({ component: 'documentation' })\n})\n@@ -58,7 +59,7 @@ describe('mixin...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
test: add unit test for mixin node_modules
1
test
null
503,950
15.05.2019 15:50:37
-10,800
85ab2c9b0d82ba177b07e5b514c72bb1f825658e
fix(DualList): The component shouldn't count, toggle or filter hidden items.
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,9 @@ export const filterByHiding = (list, value) => {\nif (isItemHiddenByFilter(item)) {\nlet childrenIncludedAmount = 0;\nitem.children.forEach(childItem => {\n+ if(childItem.hidden){\n+ return;\n+ }\nconst childLabel = childItem.label.toLowerCase();\nconst ...
TypeScript
MIT License
patternfly/patternfly-react
fix(DualList): The component shouldn't count, toggle or filter hidden items. (#1930)
1
fix
DualList
815,598
15.05.2019 16:13:05
-28,800
deafcf387c065d469e1f393fe56ef15297c7e1fb
feat: add secp256k1 in dev chainspec
[ { "change_type": "MODIFY", "diff": "# Generated by: ckb cli hashes -b\n[ckb_dev]\n-genesis = \"0x22fdc49ddbae1b3c9658121363cb26dc8faeb89424b176df16fc59e8b8de57eb\"\n-cellbase = \"0x1d1d6e4c551e076d5248303bfc1a70b8dd0e82ecf8250c3d50b56aec57325c7e\"\n-system_cells = []\n+genesis = \"0x92968288728fc0901b2ed946...
Rust
MIT License
nervosnetwork/ckb
feat: add secp256k1 in dev chainspec
1
feat
null
503,950
15.05.2019 16:16:01
-10,800
16ac9c2ceaf7959adeb0f506368e282cbd82b0aa
fix(DualList): add callbacks to Controlled Dual List methods
[ { "change_type": "MODIFY", "diff": "import React from 'react';\n+import PropTypes from 'prop-types';\nimport { isEqual } from 'lodash';\nimport { DualList } from './index';\nimport { adjustProps } from './helpers';\n+import { noop } from '../../common/helpers';\nclass DualListControlled extends React.Compon...
TypeScript
MIT License
patternfly/patternfly-react
fix(DualList): add callbacks to Controlled Dual List methods (#1901)
1
fix
DualList
815,601
15.05.2019 16:26:03
-28,800
38557dcec18902358a590aec56ec7671bdf1e886
feat: simple metrics log
[ { "change_type": "MODIFY", "diff": "@@ -545,7 +545,7 @@ impl<CS: ChainStore + 'static> ChainService<CS> {\nb,\ntxs_verify_cache,\n) {\n- Ok(_) => {\n+ Ok(cycles) => {\ncell_set_diff.push_new(b);\noutputs.extend(\nb.transactions()\n@@ -553,6 +553,19 @@ impl<CS: ChainStore + 'static> ChainService<CS> {\n.map(...
Rust
MIT License
nervosnetwork/ckb
feat: simple metrics log
1
feat
null
273,683
15.05.2019 16:40:09
-7,200
88c7e2b0140042cfaa38480d437af38e3607a1fd
feat(filesystem): pathPrefix option
[ { "change_type": "MODIFY", "diff": "@@ -41,19 +41,39 @@ Where to look for files. Should be a [glob](https://en.wikipedia.org/wiki/Glob_(\nThe GraphQL type and template name. A `.vue` file in `src/templates` must match the `typeName` to have a template for it.\n+#### baseDir\n+\n+- Type: `string`\n+\n+The ba...
JavaScript
MIT License
gridsome/gridsome
feat(filesystem): pathPrefix option
1
feat
filesystem
815,595
15.05.2019 16:43:28
-28,800
a5a383bd8beb9524353dde08becbba32394472bc
feat: Return rpc parse error detail
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,7 @@ use ckb_core::transaction::ProposalShortId;\nuse ckb_shared::shared::Shared;\nuse ckb_store::ChainStore;\nuse ckb_traits::ChainProvider;\n+use failure::Error as FailureError;\nuse jsonrpc_core::{Error, Result};\nuse jsonrpc_derive::rpc;\nuse jsonrpc_types:...
Rust
MIT License
nervosnetwork/ckb
feat: Return rpc parse error detail
1
feat
null
815,590
15.05.2019 16:46:35
-28,800
7088a63ac4c139b4f8a5a8ca6a7fe91830c60ff0
perf: delay acquire chain_state lock until tried cache
[ { "change_type": "MODIFY", "diff": "@@ -32,6 +32,7 @@ use numext_fixed_hash::H256;\nuse std::cmp;\nuse std::sync::{atomic::AtomicU64, atomic::AtomicUsize, atomic::Ordering, Arc};\nuse std::thread;\n+use std::time::Duration;\nuse stop_handler::{SignalSender, StopHandler};\nconst MAX_CANDIDATE_UNCLES: usize =...
Rust
MIT License
nervosnetwork/ckb
perf: delay acquire chain_state lock until tried cache
1
perf
null
815,598
15.05.2019 16:50:57
-28,800
84fe5637de5cdface12f41445cfd29b9fb6a8d79
chore: use UTC time in version info
[ { "change_type": "MODIFY", "diff": "@@ -69,7 +69,8 @@ pub fn get_commit_describe() -> Option<String> {\npub fn get_commit_date() -> Option<String> {\nstd::process::Command::new(\"git\")\n- .args(&[\"log\", \"-1\", \"--date=short\", \"--pretty=format:%cd\"])\n+ .env(\"TZ\", \"UTC\")\n+ .args(&[\"log\", \"-1\...
Rust
MIT License
nervosnetwork/ckb
chore: use UTC time in version info (#780)
1
chore
null
273,683
15.05.2019 16:51:13
-7,200
308beffd5813e291e80dea554b58e486220cf2db
fix(store): do not slugify id in routes
[ { "change_type": "MODIFY", "diff": "@@ -194,7 +194,8 @@ class ContentType {\nconst field = get(node, path, fieldName)\n- if (fieldName === 'year') params.year = date.format('YYYY')\n+ if (fieldName === 'id') params.id = node.id\n+ else if (fieldName === 'year') params.year = date.format('YYYY')\nelse if (fi...
JavaScript
MIT License
gridsome/gridsome
fix(store): do not slugify id in routes (#429)
1
fix
store
306,421
15.05.2019 16:51:22
-7,200
4ee8b8f0df7b52be927dff67718bd90550c6b998
feat(validate): added isValidatorApplied util
[ { "change_type": "ADD", "diff": "+/**\n+ * TODO: refactor validators to classes, putting needed meta info on instance.\n+ * Note that direct function comparison (Validator[0] === minDate) doesn't work when code\n+ * is transpiled\n+ * @param {String} name - a name like minDate, maxDate, minMaxDate\n+ * @par...
JavaScript
MIT License
ing-bank/lion
feat(validate): added isValidatorApplied util
1
feat
validate
306,421
15.05.2019 16:59:34
-7,200
6cfa301d1cd0aa06a5fd946f6ea2e2429fd0a56a
fix(localize): empty dates should be formatted as empty string
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ import { normalizeDate } from './normalizeDate.js';\n*/\nexport function formatDate(date, options) {\nif (!(date instanceof Date)) {\n- return '0000-00-00';\n+ return '';\n}\nconst formatOptions = options || {};\n// make sure months and days are always 2...
JavaScript
MIT License
ing-bank/lion
fix(localize): empty dates should be formatted as empty string
1
fix
localize
306,421
15.05.2019 17:00:37
-7,200
144ebceb37450521d68d92aeac1dcf6908e7648c
feat(localize): allow long/short/narrow param getMonthNames
[ { "change_type": "MODIFY", "diff": "@@ -2,8 +2,14 @@ import { normalizeDate } from './normalizeDate.js';\nconst monthsLocaleCache = {};\n-export function getMonthNames({ locale }) {\n- let months = monthsLocaleCache[locale];\n+/**\n+ * @desc Returns month names for locale\n+ * @param {string} options.locale...
JavaScript
MIT License
ing-bank/lion
feat(localize): allow long/short/narrow param getMonthNames
1
feat
localize
306,421
15.05.2019 17:05:10
-7,200
73ad0bdebb3fad68a2d51978ba5c5d535c6f9131
chore: added yarn-error.log to .gitignore
[ { "change_type": "MODIFY", "diff": "## system files\n.DS_Store\n-## npm\n+## npm/yarn\nnode_modules/\nnpm-debug.log\n+yarn-error.log\n# we do prefer yarn.lock so we do not want npms version of it\n/package-lock.json\n", "new_path": ".gitignore", "old_path": ".gitignore" }, { "change_type": "...
JavaScript
MIT License
ing-bank/lion
chore: added yarn-error.log to .gitignore
1
chore
null
127,946
15.05.2019 17:17:50
-10,800
ac6fdfb70bc1e447486acf1d2b6025498f06769e
feat(nav): nav layout adjusments
[ { "change_type": "ADD", "diff": "+<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n+<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.50233 9.91795C9.04669 9.60366 9.23493 8.90113 8.92064 8.35677L6.94116 9.49963C7.25544 10.044 7.95797 10.2322 ...
TypeScript
MIT License
coingaming/moon-design
feat(nav): nav layout adjusments
1
feat
nav
815,601
15.05.2019 17:19:16
-28,800
6d4faefc665dfae03cff06a1ce719c32a9eec50c
fix: clippy lint
[ { "change_type": "MODIFY", "diff": "@@ -310,7 +310,7 @@ impl<CS: ChainStore + 'static> BlockAssembler<CS> {\nlet txs_cycles_limit = cycles_limit - cellbase_cycle;\nlet (entries, size, cycles) =\nchain_state.get_proposed_txs(txs_size_limit, txs_cycles_limit);\n- if entries.len() > 0 {\n+ if !entries.is_empty...
Rust
MIT License
nervosnetwork/ckb
fix: clippy lint
1
fix
null
103,468
15.05.2019 17:29:17
-7,200
45b86446e36d1d38bdd0ab0151628be485ca8575
fix: remove duplicate type import
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,6 @@ import { withTheme } from '../../core/theming';\nimport Caption from './../Typography/Caption';\nimport Title from './../Typography/Title';\nimport type { Theme } from '../../types';\n-import type { ViewStyleProp } from 'react-native/Libraries/StyleSheet...
TypeScript
MIT License
callstack/react-native-paper
fix: remove duplicate type import
1
fix
null
67,476
15.05.2019 17:38:43
-7,200
f0e0201c2a53a34487e18ede99a9c5321d7092c7
feat(testing): add match asserts
[ { "change_type": "MODIFY", "diff": "@@ -594,6 +594,30 @@ export function notStrictEqual(actual: any, expected: any, message?: string): vo\n}\n}\n+export function match(actual: any, regex: RegExp, message?: string): void {\n+ if (!regex.test(actual)) {\n+ innerFail({\n+ actual,\n+ expected: regex,\n+ message...
TypeScript
MIT License
aurelia/aurelia
feat(testing): add match asserts
1
feat
testing
815,590
15.05.2019 17:40:17
-28,800
ab0c480ebef946ab56e50d02dbd657bc014d9dc5
fix: force invalid template cache when tip changed
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ use ckb_core::transaction::{\nCapacity, CellInput, CellOutput, ProposalShortId, Transaction, TransactionBuilder,\n};\nuse ckb_core::uncle::UncleBlock;\n-use ckb_core::{BlockNumber, Bytes, Cycle, Version};\n+use ckb_core::{Bytes, Cycle, Version};\nuse ckb...
Rust
MIT License
nervosnetwork/ckb
fix: force invalid template cache when tip changed
1
fix
null
273,683
15.05.2019 17:43:10
-7,200
a03531198366ea8542337d7b64979a1ef09ea95a
fix(app): resolve pagination with trailing slash
[ { "change_type": "MODIFY", "diff": "@@ -17,9 +17,12 @@ export function url (string) {\n}\nexport function stripPageParam (route) {\n- return route.params.page && /^\\d+$/.test(route.params.page)\n- ? route.path.split('/').slice(0, -1).join('/') || '/'\n- : unslashEnd(route.path) || '/'\n+ const { path, para...
JavaScript
MIT License
gridsome/gridsome
fix(app): resolve pagination with trailing slash (#430)
1
fix
app
127,946
15.05.2019 17:48:22
-10,800
c669ed95d1e043b3217f1dc4f43827dbe4def5c2
fix(nav): add icon
[ { "change_type": "MODIFY", "diff": "@@ -18,13 +18,26 @@ import {\nUserhubIconProfile,\nUserhubInfoBalance,\n} from '../components/username/username';\n-import { spacing } from '@heathmont/sportsbet-utils';\n+import { IconLogo } from '../components/logo/icon-logo';\n+import { mq, spacing } from '@heathmont/s...
TypeScript
MIT License
coingaming/moon-design
fix(nav): add icon
1
fix
nav
815,595
15.05.2019 17:48:51
-28,800
4c72c69da9e5a11c5d63f87a455c7e67e4f1d6cf
fix: correct block_median_count
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,7 @@ pub trait BlockMedianTimeContext {\n/// ancestor timestamps from a block\nfn ancestor_timestamps(&self, block_number: BlockNumber) -> Vec<u64> {\nlet count = self.median_block_count();\n- (block_number.saturating_sub(count)..=block_number)\n+ (block_number...
Rust
MIT License
nervosnetwork/ckb
fix: correct block_median_count
1
fix
null
67,476
15.05.2019 19:31:02
-7,200
b7f300a4838e033027d9ccc6c4066b30452fa590
test(runtime): fix observer-locator tests
[ { "change_type": "MODIFY", "diff": "-// import {\n-// ObserverLocator,\n-// DOM,\n-// ILifecycle,\n-// IEventManager,\n-// IDirtyChecker,\n-// ISVGAnalyzer,\n-// DataAttributeAccessor,\n-// PrimitiveObserver,\n-// ClassAttributeAccessor,\n-// StyleAttributeAccessor,\n-// SelectValueObserver,\n-// ValueAttri...
TypeScript
MIT License
aurelia/aurelia
test(runtime): fix observer-locator tests
1
test
runtime
815,598
15.05.2019 20:23:29
-28,800
f32248007c09fab835a2f8c3264cd04175d058c9
chore: fix scope parsing when generating changelog
[ { "change_type": "MODIFY", "diff": "@@ -30,7 +30,7 @@ logs = _str(subprocess.check_output(\n['git', 'log', '--merges', '--first-parent', '--pretty=tformat:%s', '{}...HEAD'.format(since)]))\nPR_NUMBER_RE = re.compile(r'\\s*Merge pull request #(\\d+) from')\n-PR_TITLE_RE = re.compile(r'(?:\\[[^]+]\\]\\s*)*(?:...
Rust
MIT License
nervosnetwork/ckb
chore: fix scope parsing when generating changelog
1
chore
null
815,598
15.05.2019 20:35:08
-28,800
f6e4928fcfc960971b5b1fb5ac7f7f8992797cfd
chore: reverse PRs in changelog
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,7 @@ else:\n['git', 'describe', '--tags', tag_rev]).strip())\nlogs = _str(subprocess.check_output(\n- ['git', 'log', '--merges', '--first-parent', '--pretty=tformat:%s', '{}...HEAD'.format(since)]))\n+ ['git', 'log', '--reverse', '--merges', '--first-parent',...
Rust
MIT License
nervosnetwork/ckb
chore: reverse PRs in changelog
1
chore
null
815,605
15.05.2019 21:20:45
-28,800
696ebefc215aacf9f3bb2f991a6146809f58db05
feat: upgrade CKB VM to W^X version NOTE: this is a breaking change since it changes VM behavior.
[ { "change_type": "MODIFY", "diff": "@@ -682,7 +682,7 @@ dependencies = [\n\"ckb-protocol 0.12.0-pre\",\n\"ckb-resource 0.12.0-pre\",\n\"ckb-store 0.12.0-pre\",\n- \"ckb-vm 0.9.0-pre (git+https://github.com/nervosnetwork/ckb-vm?rev=17addb5)\",\n+ \"ckb-vm 0.12.0-pre (git+https://github.com/nervosnetwork/ckb-...
Rust
MIT License
nervosnetwork/ckb
feat: upgrade CKB VM to W^X version NOTE: this is a breaking change since it changes VM behavior.
1
feat
null
722,013
15.05.2019 22:08:35
18,000
bbd5f4dcb3fb7581fd481230bd9dc3d4f87f3c9d
docs: fix ackage name of router example
[ { "change_type": "MODIFY", "diff": "{\n- \"name\": \"vue-styleguidist-router\",\n+ \"name\": \"vue-styleguidist-example-router\",\n\"description\": \"Here we experiment how to mock the router in your showcases\",\n\"version\": \"3.10.1\",\n\"keywords\": [\n", "new_path": "examples/router/package.json", ...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
docs: fix ackage name of router example
1
docs
null
217,922
15.05.2019 22:10:28
-7,200
896497a17587bb2d356353f705d24acae436ac30
chore: first try at cache population script
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/apps/client/src/assets/icons/hunta.png differ\n", "new_path": "apps/client/src/assets/icons/hunta.png", "old_path": "apps/client/src/assets/icons/hunta.png" }, { "change_type": "ADD", "diff": "Binary files /dev/null and b/apps...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: first try at cache population script
1
chore
null
273,713
15.05.2019 22:50:34
-36,000
2dd1d2215ac921c993b3b335c1ec42dc7aa86e55
feat(datocms): add model.apiKey to nodes
[ { "change_type": "MODIFY", "diff": "@@ -107,6 +107,11 @@ class DatoCmsSource {\nupdated: new Date(item.updatedAt),\nfields: item.itemType.fields.reduce((fields, field) => {\nconst val = item.readAttribute(field)\n+\n+ if (item.itemType.hasOwnProperty('apiKey')) {\n+ fields.model = { apiKey: item.itemType.ap...
JavaScript
MIT License
gridsome/gridsome
feat(datocms): add model.apiKey to nodes (#369)
1
feat
datocms
815,598
15.05.2019 23:25:17
-28,800
efc2f5d4aac908e4dba7998b12173cd2ff3f4fed
chore: print warning about default miner key Print the warning when running `ckb init`. Remind user to change the default block assembler config before mining.
[ { "change_type": "MODIFY", "diff": "@@ -46,5 +46,11 @@ pub fn init(args: InitArgs) -> Result<(), ExitCode> {\nargs.locator.export_specs()?;\n}\n+ eprintln!(\n+ \"**Notice**: \\\n+ If you want to mine CKB, please make sure to create your own \\\n+ private key and change the block_assembler config in ckb.toml...
Rust
MIT License
nervosnetwork/ckb
chore: print warning about default miner key Print the warning when running `ckb init`. Remind user to change the default block assembler config before mining.
1
chore
null
815,573
16.05.2019 00:44:09
-28,800
5bb61bde531286b838109e5864f74a7aa4157e92
fix: Outbound peer service may trigger too many dial actions
[ { "change_type": "MODIFY", "diff": "@@ -729,7 +729,7 @@ impl NetworkService {\nlet bg_services = vec![\nBox::new(ping_service.for_each(|_| Ok(()))) as Box<_>,\nBox::new(disc_service.for_each(|_| Ok(()))) as Box<_>,\n- Box::new(outbound_peer_service.for_each(|_| Ok(()))) as Box<_>,\n+ Box::new(outbound_peer_...
Rust
MIT License
nervosnetwork/ckb
fix: Outbound peer service may trigger too many dial actions
1
fix
null
815,573
16.05.2019 01:19:47
-28,800
a98424c323f9de2d246e4dec3c139cb3c370d8b0
chore: Default filter out local address in discovery service
[ { "change_type": "MODIFY", "diff": "@@ -22,6 +22,9 @@ pub struct NetworkConfig {\npub path: PathBuf,\n#[serde(default)]\npub dns_seeds: Vec<String>,\n+ // Set if discovery add local address to peer store\n+ #[serde(default)]\n+ pub discovery_local_address: bool,\npub ping_interval_secs: u64,\npub ping_timeo...
Rust
MIT License
nervosnetwork/ckb
chore: Default filter out local address in discovery service
1
chore
null
724,236
16.05.2019 07:06:31
14,400
2a4c6ef41dfc47c8fe71e0b90b65511dbe7f8c28
fix(types): allow `false` as a component stub value
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ type VueClass<V extends Vue> = (new (...args: any[]) => V) & typeof Vue\n* If it is an array of string, the specified children are replaced by blank components\n*/\ntype Stubs = {\n- [key: string]: Component | string | true\n+ [key: string]: Component | ...
JavaScript
MIT License
vuejs/vue-test-utils
fix(types): allow `false` as a component stub value (#1231)
1
fix
types
306,423
16.05.2019 08:19:49
-7,200
76ccb9443524ecfcdf38292a5258aa189ba0e0a3
fix(button): do not override user provided tabindex
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,14 @@ export class LionButton extends DelegateMixin(SlotMixin(LionLitElement)) {\ntype: Boolean,\nreflect: true,\n},\n+ role: {\n+ type: String,\n+ reflect: true,\n+ },\n+ tabindex: {\n+ type: Number,\n+ reflect: true,\n+ },\n};\n}\n@@ -93,10 +101,10 @@ export ...
JavaScript
MIT License
ing-bank/lion
fix(button): do not override user provided tabindex
1
fix
button
217,922
16.05.2019 08:24:07
-7,200
e4ad3bb025de1c1da1b3708197db2eecf41f8e84
chore: proper cache update system now done
[ { "change_type": "MODIFY", "diff": "-const { getAllPages } = require('../tools.js');\n-const { switchMap } = require('rxjs/operators');\n-const { combineLatest, concat } = require('rxjs');\n+const { getAllPages, get } = require('../tools.js');\n+const { switchMap, bufferCount, map, tap, mergeMap, takeUntil,...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: proper cache update system now done
1
chore
null
217,922
16.05.2019 08:24:59
-7,200
9b532a9913e6703c7b189d7c98db67e691bb0251
chore: forgot a console.log ><
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,6 @@ function prepareCache(sheet, pageName) {\nfirst(),\nmap(buffered => [].concat.apply([], buffered)),\nswitchMap(urls => {\n- console.log(urls.length);\n// create a new progress bar instance and use shades_classic theme\nconst progress = new _cliProgress.B...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: forgot a console.log ><
1
chore
null
722,013
16.05.2019 09:00:43
18,000
ed8577b1befbc503b29e510d0178343ebfd22139
docs: enhance router cookbook with example
[ { "change_type": "MODIFY", "diff": "@@ -311,7 +311,7 @@ const StyleGuideRenderer = ({\n)\n```\n-NOTA: If you need to reference the original component, you can do so by importing the `rsg-components-default` version. Checkout the [customised](https://github.com/vue-styleguidist/vue-styleguidist/tree/master/e...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
docs: enhance router cookbook with example
1
docs
null
103,468
16.05.2019 09:35:07
-7,200
6a37dc9982477436a604c5aaa44149612519b840
fix: fix editable disable props on TextInput
[ { "change_type": "MODIFY", "diff": "@@ -296,7 +296,7 @@ class TextInput extends React.Component<TextInputProps, State> {\n}).start();\n_handleFocus = (...args) => {\n- if (this.props.disabled) {\n+ if (this.props.disabled || !this.props.editable) {\nreturn;\n}\n@@ -308,7 +308,7 @@ class TextInput extends Re...
TypeScript
MIT License
callstack/react-native-paper
fix: fix editable disable props on TextInput (#1069)
1
fix
null
217,922
16.05.2019 09:39:50
-7,200
43cfb54c9f2aba9689b78288a5db0002b8321516
chore: added a 2 hours cache to most of the resources for better perfs
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,9 @@ function prepareCache(sheet, pageName) {\nreturn getAllPages(`https://xivapi.com/${sheet}?columns=ID,Name_*`).pipe(\nmap(page => {\nreturn [].concat.apply([],\n- page.Results.map(item => {\n+ page.Results\n+ .filter(i => i.Name_en !== '')\n+ .map(item =>...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: added a 2 hours cache to most of the resources for better perfs
1
chore
null
103,468
16.05.2019 09:42:56
-7,200
327749f0374eeb0947252bef27ffd5882cc9ca14
feat: allow to make inputs uncontrolled with defaultValue
[ { "change_type": "MODIFY", "diff": "@@ -174,7 +174,7 @@ class TextInput extends React.Component<TextInputProps, State> {\nerror: new Animated.Value(this.props.error ? 1 : 0),\nfocused: false,\nplaceholder: this.props.error ? this.props.placeholder : '',\n- value: this.props.value,\n+ value: this.props.value...
TypeScript
MIT License
callstack/react-native-paper
feat: allow to make inputs uncontrolled with defaultValue (#1068)
1
feat
null
815,595
16.05.2019 10:02:05
-28,800
03dac77958d15eec1ef4aafc6d8f02a0cc5c7830
feat: Group rpc apis by module
[ { "change_type": "MODIFY", "diff": "@@ -70,9 +70,13 @@ def print_result(case):\ndef print_toc(cases):\nprint(\"## JSON-RPC\")\nnewline(1)\n+ module = \"\"\nfor case in cases:\nmethod = case[\"method\"]\n- print('* [`{}`](#{})'.format(method, method))\n+ if case[\"module\"] != module:\n+ module = case[\"modu...
Rust
MIT License
nervosnetwork/ckb
feat: Group rpc apis by module (#789)
1
feat
null
217,922
16.05.2019 10:18:45
-7,200
1293ccb634c130e63729a46757ca3807a6c576dd
chore: fix for SEO prerenderer
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,7 @@ import { TeamcraftComponent } from '../../../core/component/teamcraft-component'\nimport { map, takeUntil } from 'rxjs/operators';\nimport { SettingsService } from '../../../modules/settings/settings.service';\nimport { TranslateService } from '@ngx-transl...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix for SEO prerenderer
1
chore
null
104,827
16.05.2019 10:18:57
18,000
cc038545d282fe1c40eea51874289406951ee74c
chore(table): remove comment
[ { "change_type": "MODIFY", "diff": "@@ -18,7 +18,6 @@ export const TABLE_SEARCH_APPLY = 'TABLE_SEARCH_APPLY';\nexport const TABLE_EMPTY_STATE_ACTION = 'TABLE_EMPTY_STATE_ACTION';\nexport const TABLE_LOADING_SET = 'TABLE_LOADING_SET';\n-/** Set initial data and provide instanceId if supporting multiple table...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(table): remove comment
1
chore
table
815,590
16.05.2019 11:12:20
-28,800
34a2ebd16062b0e753161c7ff652bdca7d107bec
fix: block_template_cache inconsistency potential
[ { "change_type": "MODIFY", "diff": "@@ -32,7 +32,6 @@ use numext_fixed_hash::H256;\nuse std::cmp;\nuse std::sync::{atomic::AtomicU64, atomic::AtomicUsize, atomic::Ordering, Arc};\nuse std::thread;\n-use std::time::Duration;\nuse stop_handler::{SignalSender, StopHandler};\nconst MAX_CANDIDATE_UNCLES: usize =...
Rust
MIT License
nervosnetwork/ckb
fix: block_template_cache inconsistency potential
1
fix
null
749,516
16.05.2019 11:19:20
25,200
fb7a398f1a0d75bca8a7571d4b1c88427bb2bd8f
fix(docs): remove invalid deprecation warning
[ { "change_type": "MODIFY", "diff": "This package includes components and render prop containers relating to\nbuttons within the Garden Design System.\n-## DEPRECATION WARNING\n-\n-This package has been deprecated in favor of the API provided in the\n-[@zendeskgarden/react-dropdowns](https://garden.zendesk.c...
TypeScript
Apache License 2.0
zendeskgarden/react-components
fix(docs): remove invalid deprecation warning (#338)
1
fix
docs
730,429
16.05.2019 11:22:27
14,400
535e3b61ddba355e7e667ab69f91c55ec5641b03
chore(webpack): change style loader sass files loaded with CssExtract were not loading on IE.
[ { "change_type": "MODIFY", "diff": "@@ -68,7 +68,6 @@ export default (options, env) => {\ntest: /\\.js$/,\ninclude: [\npath.resolve(__dirname, '..', '..', 'packages', 'node_modules'),\n- path.resolve(__dirname, '..', '..', 'src'),\npath.resolve(__dirname, '..', '..', 'samples')\n],\nexclude: [\n@@ -80,11 +7...
JavaScript
MIT License
webex/react-widgets
chore(webpack): change style loader sass files loaded with CssExtract were not loading on IE.
1
chore
webpack
730,429
16.05.2019 11:39:11
14,400
a4bf7ff8687aa47e01386b14532881c2204f14dc
style(widget-recents): add material specific class
[ { "change_type": "MODIFY", "diff": "@@ -264,7 +264,7 @@ export class RecentsWidget extends Component {\nif (isReady) {\nreturn (\n- <div className={classNames('ciscospark-recents-widget', styles.recentsWidget)}>\n+ <div className={classNames('ciscospark-recents-widget', 'md', styles.recentsWidget)}>\n{\nerr...
JavaScript
MIT License
webex/react-widgets
style(widget-recents): add material specific class
1
style
widget-recents
730,429
16.05.2019 11:39:40
14,400
42884d1044107c62d0f3251e24f8367a06dab5ad
style(widget-space): add material specific class
[ { "change_type": "MODIFY", "diff": "@@ -162,7 +162,7 @@ export class SpaceWidget extends Component {\n}\nreturn (\n- <div className={classNames('ciscospark-space-widget', styles.spaceWidget)}>\n+ <div className={classNames('ciscospark-space-widget', 'md', styles.spaceWidget)}>\n{ errorElement }\n{\nwidgetSt...
JavaScript
MIT License
webex/react-widgets
style(widget-space): add material specific class
1
style
widget-space
730,429
16.05.2019 11:41:05
14,400
f7517507dbbd05dc05f721df700a368cce14064e
feat(widget-demo): use babel-polyfill directly Needed for IE users to browse the demo page
[ { "change_type": "MODIFY", "diff": "\"version\": \"6.26.0\",\n\"resolved\": \"https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz\",\n\"integrity\": \"sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=\",\n- \"dev\": true,\n\"requires\": {\n\"babel-runtime\": \"^6.26.0\",\n\"core-js\": \"^2.5.0\",\n\"regen...
JavaScript
MIT License
webex/react-widgets
feat(widget-demo): use babel-polyfill directly Needed for IE users to browse the demo page
1
feat
widget-demo
447,451
16.05.2019 11:51:37
18,000
c2c2454a9bcd68be173dba4bc392b5db9967ec84
fix: stop propagation when press esc key
[ { "change_type": "MODIFY", "diff": "@@ -16,7 +16,7 @@ import {\nisOptionVisible,\n} from './helpers';\nimport { uniqueId } from '../../libs/utils';\n-import { UP_KEY, DOWN_KEY, ENTER_KEY } from '../../libs/constants';\n+import { UP_KEY, DOWN_KEY, ENTER_KEY, ESCAPE_KEY } from '../../libs/constants';\nimport ...
JavaScript
MIT License
nexxtway/react-rainbow
fix: stop propagation when press esc key (#740)
1
fix
null
217,922
16.05.2019 11:56:58
-7,200
f1148da1170ff348119a2f855292cfb3526ca388
chore: performance fixes for rendertron SSR
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,7 @@ import { XivapiService } from '@xivapi/angular-client';\nimport { I18nName } from '../../model/common/i18n-name';\nimport { Quest } from '../../pages/db/model/quest/quest';\nimport { Fate } from '../../pages/db/model/fate/fate';\n+import { IS_PRERENDER } f...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: performance fixes for rendertron SSR
1
chore
null
902,122
16.05.2019 11:57:16
-7,200
50663d948d06aba7bedbd520e3c3fbd6b3262395
feat: add cookies and headers support
[ { "change_type": "MODIFY", "diff": "@@ -164,6 +164,18 @@ default: `['image', 'media', 'stylesheet', 'font', 'xhr']`\nA list of `resourceType` requests that can be aborted in order to make the process faster.\n+##### cookies\n+\n+type: `array` </br>\n+\n+A collection of [cookie's object](https://github.com/G...
JavaScript
MIT License
microlinkhq/browserless
feat: add cookies and headers support
1
feat
null
815,599
16.05.2019 12:11:32
-28,800
4013794c005b4227ef45830c3088816be87167f7
docs: update readme for rylai
[ { "change_type": "MODIFY", "diff": "---\n-## About Nervos CKB\n+## About CKB\n-Nervos CKB is the layer 1 of Nervos Network, a public blockchain with PoW and cell model.\n+CKB is the layer 1 of Nervos Network, a public blockchain with PoW, improved Nakamoto concensus, cell model and a new programming model f...
Rust
MIT License
nervosnetwork/ckb
docs: update readme for rylai (#796)
1
docs
null
791,834
16.05.2019 12:20:57
25,200
4a74d1731166985affb35ecdcea9ccf54f3fea19
core(performance-budget): add MP-FID as budget metric
[ { "change_type": "MODIFY", "diff": "@@ -41,7 +41,7 @@ const perfConfig = {\n{metric: 'first-cpu-idle', budget: 2000, tolerance: 100},\n{metric: 'interactive', budget: 2000, tolerance: 100},\n{metric: 'first-meaningful-paint', budget: 2000, tolerance: 100},\n- {metric: 'estimated-input-latency', budget: 2000...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(performance-budget): add MP-FID as budget metric (#8905)
1
core
performance-budget
902,122
16.05.2019 12:26:12
-7,200
4d1d520ff4e41694a85fb3c2170278ee7d4a387a
chore(release): v5.4.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.4.0](https://github.com/kikobeats/browserless/compare/v5.3.3...v5.4.0) (2019-05-16)\n+\n+\n+### Features\n+\n+* ...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v5.4.0
1
chore
release
807,849
16.05.2019 13:17:18
25,200
5a101464278b28d56e2bf9d1b7afedf158613db2
fix(child-process): Ensure adjacent prefixes are always a different color Validated manually with this command: ``` npx lerna exec --stream --concurrency 1 -- 'echo $PWD' ```
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,9 @@ let children = 0;\nconst colorWheel = [\"cyan\", \"magenta\", \"blue\", \"yellow\", \"green\", \"red\"];\nconst NUM_COLORS = colorWheel.length;\n+// ever-increasing index ensures colors are always sequential\n+let currentColor = 0;\n+\nfunction exec(comm...
JavaScript
MIT License
lerna/lerna
fix(child-process): Ensure adjacent prefixes are always a different color Validated manually with this command: ``` npx lerna exec --stream --concurrency 1 -- 'echo $PWD' ```
1
fix
child-process
807,849
16.05.2019 13:27:37
25,200
285bd7e9dbc2ead8a764e2e64fddb866f70fee86
fix(version): Remove unused dependency
[ { "change_type": "MODIFY", "diff": "\"test\": \"echo \\\"Run tests from root\\\" && exit 1\"\n},\n\"dependencies\": {\n- \"@lerna/batch-packages\": \"file:../../utils/batch-packages\",\n\"@lerna/check-working-tree\": \"file:../../utils/check-working-tree\",\n\"@lerna/child-process\": \"file:../../core/child...
JavaScript
MIT License
lerna/lerna
fix(version): Remove unused dependency
1
fix
version
306,421
16.05.2019 13:49:31
-7,200
4e87267f8922099e6466ee658778d4ab2ba905ed
fix(input-datepicker): publish translations to npm
[ { "change_type": "MODIFY", "diff": "\"src\",\n\"stories\",\n\"test\",\n+ \"translations\",\n\"*.js\"\n],\n\"dependencies\": {\n\"@open-wc/testing\": \"^0.11.1\",\n\"@polymer/iron-test-helpers\": \"^3.0.1\"\n}\n+<<<<<<< HEAD\n}\n+=======\n+}\n+>>>>>>> fix(input-datepicker): publish translations to npm\n", ...
JavaScript
MIT License
ing-bank/lion
fix(input-datepicker): publish translations to npm
1
fix
input-datepicker
306,421
16.05.2019 13:57:34
-7,200
3f11b4863cfdb0e49300e4968c79355c14ab745d
chore(input-datepicker): added readme file
[ { "change_type": "ADD", "diff": "+# Input Datepicker\n+\n+`lion-input-datepicker` component is based on the date text input field. Its purpose is to provide a way for users to fill in a date with a datepicker.\n+For an input field with a big range, such as `birthday-input`, a datepicker is not the ultimate ...
JavaScript
MIT License
ing-bank/lion
chore(input-datepicker): added readme file
1
chore
input-datepicker