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
469,438
27.04.2019 08:47:21
0
31617fe7d8227fec9698dc2e0c48c95bd8091959
chore(release): 1.1.8 [skip ci] ## [1.1.8](https://github.com/open-rpc/spec/compare/1.1.7...1.1.8) (2019-04-27) ### Bug Fixes * **methodObject:** optional params recommendation ([5d614b2](https://github.com/open-rpc/spec/commit/5d614b2)), closes [#138](https://github.com/open-rpc/spec/issues/138)
[ { "change_type": "MODIFY", "diff": "+## [1.1.8](https://github.com/open-rpc/spec/compare/1.1.7...1.1.8) (2019-04-27)\n+\n+\n+### Bug Fixes\n+\n+* **methodObject:** optional params recommendation ([5d614b2](https://github.com/open-rpc/spec/commit/5d614b2)), closes [#138](https://github.com/open-rpc/spec/issu...
JavaScript
Apache License 2.0
open-rpc/spec
chore(release): 1.1.8 [skip ci] ## [1.1.8](https://github.com/open-rpc/spec/compare/1.1.7...1.1.8) (2019-04-27) ### Bug Fixes * **methodObject:** optional params recommendation ([5d614b2](https://github.com/open-rpc/spec/commit/5d614b2)), closes [#138](https://github.com/open-rpc/spec/issues/138)
1
chore
release
815,598
27.04.2019 09:40:59
-28,800
33178292621b40d2085bef696b36676f98ee3efb
chore: enable sentry only in testnet
[ { "change_type": "MODIFY", "diff": "@@ -28,8 +28,8 @@ log_to_stdout = true # {{\n[sentry]\n# set to blank to disable sentry error collection\n-dsn = \"https://48c6a88d92e246478e2d53b5917a887c@sentry.io/1422795\" # {{\n-# integration => dsn = \"\"\n+dsn = \"\" # {{\n+# testnet => dsn = \"https://48c6a88d92e2...
Rust
MIT License
nervosnetwork/ckb
chore: enable sentry only in testnet
1
chore
null
217,922
27.04.2019 10:04:51
-7,200
48c8312205cb1db64ef1b1092c8676814b245a3d
fix(translation): fixed a wrong translation label
[ { "change_type": "MODIFY", "diff": "<nz-dropdown *ngIf=\"layouts.length > 1\">\n<button nz-button nz-dropdown nz-tooltip\nnzShape=\"circle\"\n- [nzTitle]=\"'LIST_DETAILS.Quick_layout_swap' | translate\">\n+ [nzTitle]=\"'LIST.Quick_layout_swap' | translate\">\n<i nz-icon type=\"interation\"></i>\n</button>\n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(translation): fixed a wrong translation label
1
fix
translation
217,922
27.04.2019 10:09:20
-7,200
5106776b854dd445d0cc5c222609b1d9dc7ac1a8
fix(simulator): tablets will now use mobile display too
[ { "change_type": "MODIFY", "diff": "<ng-container *ngIf=\"rotation$ | async as rotation\">\n- <div fxLayout=\"row\" fxLayoutGap=\"10px\" fxLayout.lt-sm=\"column\" *ngIf=\"!rotation.notFound; else notFound\">\n- <div class=\"buttons\" fxLayout.lt-sm=\"row wrap\" fxLayoutAlign=\"center center\" fxLayout=\"col...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(simulator): tablets will now use mobile display too
1
fix
simulator
103,570
27.04.2019 11:13:35
-10,800
391fe53bab501e843f8e4440b284a859c687d328
fix: typo in menu component
[ { "change_type": "MODIFY", "diff": "@@ -347,7 +347,7 @@ class Menu extends React.Component<Props, State> {\n}\n// Check if menu fits vertically and if not align it to bottom.\n- if (top <= windowLayout.width - menuLayout.height - SCREEN_INDENT) {\n+ if (top <= windowLayout.height - menuLayout.height - SCREE...
TypeScript
MIT License
callstack/react-native-paper
fix: typo in menu component
1
fix
null
815,593
27.04.2019 11:40:40
-32,400
aca4ee938931e2367f2115bbc5b7e28aa550bbe6
chore: avoiding tx clone in BlockAssembler
[ { "change_type": "MODIFY", "diff": "@@ -4,7 +4,9 @@ use ckb_core::block::Block;\nuse ckb_core::header::Header;\nuse ckb_core::script::Script;\nuse ckb_core::service::{Request, DEFAULT_CHANNEL_SIZE, SIGNAL_CHANNEL_SIZE};\n-use ckb_core::transaction::{Capacity, CellInput, CellOutput, Transaction, TransactionB...
Rust
MIT License
nervosnetwork/ckb
chore: avoiding tx clone in BlockAssembler
1
chore
null
815,573
27.04.2019 12:32:33
-28,800
42cfb0278770820f9eba8f2847b96fffd9ec9834
fix: Send message to wrong protocol cause peer banned
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,9 @@ use crate::{Behaviour, NetworkState, Peer, PeerRegistry, ProtocolVersion, MAX_FR\npub trait CKBProtocolContext: Send {\n// Interact with underlying p2p service\nfn set_notify(&self, interval: Duration, token: u64);\n+ fn send_message(&self, proto_id: Pro...
Rust
MIT License
nervosnetwork/ckb
fix: Send message to wrong protocol cause peer banned
1
fix
null
724,009
27.04.2019 12:57:05
-10,800
1701b3041cdfe7c1c7e46296b12fc783018bc83f
refactor(types): use Component definition from Vue core
[ { "change_type": "MODIFY", "diff": "-import Vue, { VNodeData, ComponentOptions, FunctionalComponentOptions } from 'vue'\n-\n-// TODO: use core repo's Component type after https://github.com/vuejs/vue/pull/7369 is released\n-export type Component =\n- | typeof Vue\n- | FunctionalComponentOptions<{}>\n- | Com...
JavaScript
MIT License
vuejs/vue-test-utils
refactor(types): use Component definition from Vue core (#1213)
1
refactor
types
306,423
27.04.2019 13:44:51
-7,200
fff7837522a65c0d805bd2270e88bb702b8246d5
chore: enable publish via CircleCI
[ { "change_type": "MODIFY", "diff": "@@ -35,33 +35,33 @@ jobs:\n- persist_to_workspace:\nroot: ~/repo\npaths: .\n- # deploy:\n- # <<: *defaults\n- # steps:\n- # # will add github as known host\n- # - checkout\n- # - attach_workspace:\n- # at: ~/repo\n- # - add_ssh_keys:\n- # fingerprints:\n- # - \"3f:ea:54:b...
JavaScript
MIT License
ing-bank/lion
chore: enable publish via CircleCI
1
chore
null
306,423
27.04.2019 15:17:39
-7,200
f5fd18cc016c3fa6910323ad6729ba1aaa8a885e
fix: add missing exports to core, input-iban, localize
[ { "change_type": "MODIFY", "diff": "// lit-html\n-export { html, render, nothing, isDirective } from 'lit-html';\n+export {\n+ html,\n+ svg,\n+ render,\n+ noChange,\n+ nothing,\n+ directive,\n+ isDirective,\n+ TemplateResult,\n+ SVGTemplateResult,\n+} from 'lit-html';\nexport { render as renderShady } from ...
JavaScript
MIT License
ing-bank/lion
fix: add missing exports to core, input-iban, localize
1
fix
null
815,609
27.04.2019 16:28:19
-28,800
2ed7e1bffd19afb15778450b852bf15f75f5e547
chore: bump rust toolchain from 1.34.0 to 1.34.1
[ { "change_type": "MODIFY", "diff": "@@ -16,10 +16,10 @@ env:\nmatrix:\ninclude:\n- - rust: 1.34.0\n+ - rust: 1.34.1\nos: osx\nenv: FMT=true CHECK=true TEST=true REL_PKG=darwin_amd64.zip\n- - rust: 1.34.0\n+ - rust: 1.34.1\nos: linux\nenv: TEST=true REL_PKG=linux_amd64.tar.gz\n", "new_path": ".travis.yml...
Rust
MIT License
nervosnetwork/ckb
chore: bump rust toolchain from 1.34.0 to 1.34.1
1
chore
null
815,577
27.04.2019 16:41:52
-28,800
38a83187daebb42fdb714198e24a28d6a40340e8
chore: make block hash always exist
[ { "change_type": "MODIFY", "diff": "@@ -218,9 +218,26 @@ curl -H 'content-type:application/json' \\\n#### `tx_status` Possible Values\n```\n-tx_status: { status: \"pending\" }\n-tx_status: { status: \"proposed\" }\n-tx_status: { status: \"committed\", block_hash = \"0xef285e5da29247ce39385cbd8dc36535f7ea1b5...
Rust
MIT License
nervosnetwork/ckb
chore: make block hash always exist
1
chore
null
815,593
27.04.2019 17:45:44
-32,400
38abd4acc4a8b93e2355c271f2bd062dd12bc5e3
refactor: add lifetime to ResolvedTransaction
[ { "change_type": "MODIFY", "diff": "@@ -88,8 +88,8 @@ impl CellStatus {\n/// Transaction with resolved input cells.\n#[derive(Debug)]\n-pub struct ResolvedTransaction {\n- pub transaction: Transaction,\n+pub struct ResolvedTransaction<'a> {\n+ pub transaction: &'a Transaction,\npub dep_cells: Vec<CellStatus...
Rust
MIT License
nervosnetwork/ckb
refactor: add lifetime to ResolvedTransaction
1
refactor
null
471,527
27.04.2019 20:40:50
-7,200
b42dabad583ec12bc37f24f29b5779d45dea572a
fix(demoing-storybook): remove warning by setting to use corejs 2
[ { "change_type": "MODIFY", "diff": "[\n\"@babel/preset-env\",\n{\n- \"useBuiltIns\": \"entry\"\n+ \"useBuiltIns\": \"entry\",\n+ \"corejs\": \"2\",\n}\n]\n]\n", "new_path": "packages/create/src/generators/demoing-storybook/templates/static/.storybook/.babelrc", "old_path": "packages/create/src/gener...
JavaScript
MIT License
open-wc/open-wc
fix(demoing-storybook): remove warning by setting to use corejs 2
1
fix
demoing-storybook
815,601
27.04.2019 22:45:39
-28,800
1a5f7aa9a0a239d04ba92ec277497b9be1830ddf
feat: epoch index
[ { "change_type": "MODIFY", "diff": "@@ -209,7 +209,6 @@ impl<CS: ChainStore + 'static> ChainService<CS> {\npub(crate) fn insert_block(&self, block: Arc<Block>) -> Result<(), FailureError> {\nlet mut new_best_block = false;\n- let mut new_epoch = None;\nlet mut total_difficulty = U256::zero();\nlet mut cell_...
Rust
MIT License
nervosnetwork/ckb
feat: epoch index
1
feat
null
217,922
28.04.2019 11:25:09
-7,200
0e366e51510a11648709b7b4c1a03fdc21890db4
feat(requirements): added recipe requirement amount
[ { "change_type": "MODIFY", "diff": "<ng-template #requirement let-req>\n<nz-list-item class=\"item-row\" [class.done]=\"req.amount <= req.done\" [class.craftable]=\"req.canBeCrafted\">\n<nz-list-item-meta [nzAvatar]=\"itemIcon\" [nzTitle]=\"req.id | itemName | i18n\"\n- nzDescription=\"x{{req.reqAmount * ((...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(requirements): added recipe requirement amount
1
feat
requirements
815,573
28.04.2019 11:32:55
-28,800
1d1befe7d373fe02b87ef37db1594d808905e972
fix: Disconnect peer when both side is IBD
[ { "change_type": "MODIFY", "diff": "@@ -290,6 +290,7 @@ where\n// chain. Disconnect peers that are on chains with insufficient work.\nif self.synchronizer.shared.is_initial_block_download() && headers.len() != MAX_HEADERS_LEN\n{\n+ self.nc.disconnect(self.peer);\n}\n// TODO: optimize: if last is an ancestor...
Rust
MIT License
nervosnetwork/ckb
fix: Disconnect peer when both side is IBD
1
fix
null
217,922
28.04.2019 11:37:24
-7,200
df3f42d754156d490edf897c1f6ecc245156020e
fix(alarms): "add all alarms" button now can't add an already registered alarm
[ { "change_type": "MODIFY", "diff": "@@ -492,7 +492,16 @@ export class ItemRowComponent extends TeamcraftComponent implements OnInit {\n}\naddAllAlarms() {\n- this.alarmsFacade.addAlarmsAndGroup(this.item.alarms, this.i18n.getName(this.l12n.getItem(this.item.id)));\n+ this.alarmsFacade.allAlarms$\n+ .pipe(fi...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(alarms): "add all alarms" button now can't add an already registered alarm
1
fix
alarms
217,922
28.04.2019 12:18:56
-7,200
8eb3e7c9553650f498896f618f8fd1a0520ed41c
feat(layout): new dialog box in layout editor to easily reorder panels
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,8 @@ import { ClipboardModule } from 'ngx-clipboard';\nimport { TextQuestionPopupModule } from '../text-question-popup/text-question-popup.module';\nimport { NgSerializerModule } from '@kaiu/ng-serializer';\nimport { LayoutRowDisplayEditorComponent } from './...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(layout): new dialog box in layout editor to easily reorder panels
1
feat
layout
471,527
28.04.2019 14:18:31
-7,200
a407aba2995c5be114db0f5b35f4940acac8d056
fix(eslint-config): do not force use of this in life cycle methods
[ { "change_type": "MODIFY", "diff": "@@ -16,6 +16,25 @@ module.exports = {\ndevDependencies: ['**/test/**/*.js', '**/stories/**/*.js', '**/*.config.js'],\n},\n],\n+ 'class-methods-use-this': [\n+ 'error',\n+ {\n+ exceptMethods: [\n+ // web components life cycle\n+ 'connectedCallback',\n+ 'disconnectedCallbac...
JavaScript
MIT License
open-wc/open-wc
fix(eslint-config): do not force use of this in life cycle methods (#409)
1
fix
eslint-config
815,573
28.04.2019 15:55:59
-28,800
3d0b12102c963c7a5127045d6713f0ea82dd566a
fix: Do not process compact block with less total difficulty
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ use ckb_protocol::{CompactBlock as FbsCompactBlock, RelayMessage};\nuse ckb_shared::shared::Shared;\nuse ckb_shared::store::ChainStore;\nuse ckb_traits::{BlockMedianTimeContext, ChainProvider};\n-use ckb_verification::{Error as VerifyError, HeaderResolverW...
Rust
MIT License
nervosnetwork/ckb
fix: Do not process compact block with less total difficulty
1
fix
null
815,595
28.04.2019 16:38:25
-28,800
500f5e43b93e5c9c6e32918a4b0a3b45910543c4
fix: Verify cellbase occupied_capacity Normal transactions are verified `output.occupied_capacity output.capacity` inside TransactionVerifier, but cellbase transaction is skipped.
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ use bincode::{deserialize, serialize};\nuse faster_hex::hex_string;\nuse hash::blake2b_256;\nuse numext_fixed_hash::H256;\n-use occupied_capacity::HasOccupiedCapacity;\n+use occupied_capacity::{HasOccupiedCapacity, OccupiedCapacity};\nuse serde_derive::{De...
Rust
MIT License
nervosnetwork/ckb
fix: Verify cellbase occupied_capacity Normal transactions are verified `output.occupied_capacity output.capacity` inside TransactionVerifier, but cellbase transaction is skipped.
1
fix
null
815,573
28.04.2019 16:49:52
-28,800
26a09565f02e003929af91b32e8405d496b7ca7b
fix: Remove header view from memory when block accepted
[ { "change_type": "MODIFY", "diff": "@@ -176,6 +176,7 @@ impl<CS: ChainStore> Relayer<CS> {\nif ret.is_ok() {\ndebug!(target: \"relay\", \"[block_relay] relayer accept_block {} {}\", block.header().hash(), unix_time_as_millis());\nlet block_hash = block.header().hash();\n+ self.shared.remove_header_view(&blo...
Rust
MIT License
nervosnetwork/ckb
fix: Remove header view from memory when block accepted
1
fix
null
815,573
28.04.2019 16:54:54
-28,800
d504f7e2ea8812cc9044a303eca70a97f6785446
fix: BlockAssembler hold chain state lock most of the time when cellbase is large
[ { "change_type": "MODIFY", "diff": "@@ -289,7 +289,7 @@ impl<CS: ChainStore + 'static> BlockAssembler<CS> {\nlet chain_state = self.shared.chain_state().lock();\nlet last_txs_updated_at = chain_state.get_last_txs_updated_at();\n- let header = chain_state.tip_header();\n+ let header = chain_state.tip_header(...
Rust
MIT License
nervosnetwork/ckb
fix: BlockAssembler hold chain state lock most of the time when cellbase is large
1
fix
null
722,013
28.04.2019 17:31:35
18,000
0cc76c60d8fb46be4c6ec7f68ecea59a4dfd83df
docs: make svgloder work
[ { "change_type": "MODIFY", "diff": "import HelloWorld from './components/HelloWorld.vue'\nexport default {\n- name: 'app'\n+ name: 'app',\n+ components: {\n+ HelloWorld\n+ }\n}\n</script>\n", "new_path": "examples/svg-loader/src/App.vue", "old_path": "examples/svg-loader/src/App.vue" }, { "c...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
docs: make svgloder work
1
docs
null
531,793
28.04.2019 17:32:39
-3,600
655f244f1b6e594d7d9816d80cbf15164b5c0e55
refactor(ui): use button instead of a badge for filter elements
[ { "change_type": "MODIFY", "diff": "@@ -38,3 +38,6 @@ $nav-tabs-link-active-bg: #fff;\n.cursor-pointer {\ncursor: pointer;\n}\n+.cursor-text {\n+ cursor: text;\n+}\n", "new_path": "ui/src/App.scss", "old_path": "ui/src/App.scss" }, { "change_type": "MODIFY", "diff": "// fallback class fo...
TypeScript
Apache License 2.0
prymitive/karma
refactor(ui): use button instead of a badge for filter elements
1
refactor
ui
217,922
28.04.2019 17:38:40
-7,200
b585b8ca3c21a1c6af8e29b36451d3b37439ce84
fix(simulator): fixed an issue with custom rotations sometimes not user correct stats
[ { "change_type": "MODIFY", "diff": "@@ -289,7 +289,7 @@ export class SimulatorComponent implements OnInit, OnDestroy {\nthis.crafterStats$ = combineLatest(merge(statsFromRecipe$, this.customStats$), statsFromRotation$, this.route.queryParamMap, this.authFacade.userId$, this.rotation$).pipe(\ndebounceTime(10...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(simulator): fixed an issue with custom rotations sometimes not user correct stats
1
fix
simulator
722,013
28.04.2019 17:38:45
18,000
bd8a08571f1b9d8b60052db0598fc03244e07a28
fix: cleanComponentName peace with babel 7
[ { "change_type": "MODIFY", "diff": "@@ -14,7 +14,7 @@ const getImports = require('react-styleguidist/lib/loaders/utils/getImports').de\nconst requireIt = require('react-styleguidist/lib/loaders/utils/requireIt')\nconst getComponentVueDoc = require('./utils/getComponentVueDoc')\nconst { isCodeVueSfc } = requ...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix: cleanComponentName peace with babel 7
1
fix
null
815,601
28.04.2019 17:41:16
-28,800
723f39cc73477f33ad9bafa065a0b3344c183926
feat: epoch verifier
[ { "change_type": "MODIFY", "diff": "@@ -745,6 +745,7 @@ dependencies = [\n\"flatbuffers 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"hash 0.11.0-pre\",\n+ \"hashbrown 0.3.0 (registry+https://github.com/rust-lang/c...
Rust
MIT License
nervosnetwork/ckb
feat: epoch verifier
1
feat
null
217,922
28.04.2019 17:42:55
-7,200
9a0151041ef927337f5b8ba9c77c881f4ec1dec4
chore: small change for custom rotations opened in non custom mode
[ { "change_type": "MODIFY", "diff": "@@ -289,7 +289,7 @@ export class SimulatorComponent implements OnInit, OnDestroy {\nthis.crafterStats$ = combineLatest(merge(statsFromRecipe$, this.customStats$), statsFromRotation$, this.route.queryParamMap, this.authFacade.userId$, this.rotation$).pipe(\ndebounceTime(10...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small change for custom rotations opened in non custom mode
1
chore
null
104,818
28.04.2019 19:22:54
-7,200
52f33b44970df71d92970d7e59ce02486c2dc295
fix(table): row actions style bugs need to show
[ { "change_type": "MODIFY", "diff": "@@ -13,8 +13,15 @@ const RowActionsContainer = styled.div`\ndisplay: flex;\njustify-content: flex-end;\nalign-items: center;\n+\n+ /* Need space between the buttons */\n> * {\nopacity: ${props => (props.visible ? 1 : 0)};\n+ margin-left: 0.75rem;\n+ }\n+ /* If the actions...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): row actions style bugs need to show
1
fix
table
815,573
28.04.2019 19:40:18
-28,800
d3dc88e90db84bb970205c886469a024698892c4
fix: Send network message to wrong protocol
[ { "change_type": "MODIFY", "diff": "@@ -225,10 +225,7 @@ impl CKBProtocolContext for DefaultCKBProtocolContext {\n}\nfn send_message(&self, proto_id: ProtocolId, peer_index: PeerIndex, data: Bytes) {\ntrace!(target: \"network\", \"[send message]: {}, to={}, length={}\", proto_id, peer_index, data.len());\n-...
Rust
MIT License
nervosnetwork/ckb
fix: Send network message to wrong protocol
1
fix
null
815,595
28.04.2019 20:08:25
-28,800
665d4fa7a10d452afc36cfb9d78b998c673f44ba
test: refactor and add uncle tests
[ { "change_type": "MODIFY", "diff": "@@ -76,8 +76,7 @@ impl Node {\ninfo!(\"RPC service ready, {:?}\", result);\nself.node_id = Some(result.node_id);\nbreak;\n- } else {\n- if let Some(ref mut child) = self.guard {\n+ } else if let Some(ref mut child) = self.guard {\nmatch child.0.try_wait() {\nOk(Some(exit)...
Rust
MIT License
nervosnetwork/ckb
test: refactor and add uncle tests
1
test
null
104,818
28.04.2019 20:16:49
-7,200
99f201d5b786639a347c2b84c09ffb7ec6d3d9ad
fix(wizard): hide the cancel button
[ { "change_type": "MODIFY", "diff": "@@ -101,9 +101,9 @@ describe('StatefulWizardInline', () => {\nonBack={mockBack}\n/>\n);\n- const cancelBackAndNextButtons = wrapper.find('.bx--btn');\n- expect(cancelBackAndNextButtons).toHaveLength(3);\n- cancelBackAndNextButtons.at(1).simulate('click');\n+ const backAnd...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(wizard): hide the cancel button
1
fix
wizard
815,595
28.04.2019 20:22:06
-28,800
c595f43095aa6920eae614518c920ddf3cae3e1f
feat: Verify genesis every time starting node We don't insert genesis block into database, but load from specs file every time starting node. It is neccesary to ensure its validity at starting.
[ { "change_type": "MODIFY", "diff": "@@ -13,8 +13,7 @@ use crate::consensus::Consensus;\nuse ckb_core::block::Block;\nuse ckb_core::block::BlockBuilder;\nuse ckb_core::header::HeaderBuilder;\n-use ckb_core::script::Script;\n-use ckb_core::transaction::{CellOutput, Transaction, TransactionBuilder, CellInput};...
Rust
MIT License
nervosnetwork/ckb
feat: Verify genesis every time starting node We don't insert genesis block into database, but load from specs file every time starting node. It is neccesary to ensure its validity at starting.
1
feat
null
815,595
28.04.2019 20:22:29
-28,800
cb5af2a506c0d57299972cf10248331e52c9b7ef
feat: Update genesis hash This is a **BREAKING CHANGE**.
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ parent_hash = \"0x000000000000000000000000000000000000000000000000000000000000000\ntimestamp = 0\ndifficulty = \"0x100\"\nuncles_hash = \"0x0000000000000000000000000000000000000000000000000000000000000000\"\n-hash = \"0xd309fc4215850bfc22869eaedc696dc989d1...
Rust
MIT License
nervosnetwork/ckb
feat: Update genesis hash This is a **BREAKING CHANGE**.
1
feat
null
815,595
28.04.2019 20:42:00
-28,800
aa83374f2a275b713e86d996896d7f8dc1c61c8b
fix: Return early for non-existent block
[ { "change_type": "MODIFY", "diff": "@@ -63,6 +63,7 @@ impl<CS: ChainStore + 'static> ChainRpc for ChainRpcImpl<CS> {\n}\n// TODO: we need to build a proper index instead of scanning every time\n+ // TODO: limit page size\nfn get_cells_by_lock_hash(\n&self,\nlock_hash: H256,\n@@ -78,7 +79,12 @@ impl<CS: Chai...
Rust
MIT License
nervosnetwork/ckb
fix: Return early for non-existent block
1
fix
null
67,476
28.04.2019 20:48:44
-7,200
7e704437b080129125de861d51d3cb02da4d8ec0
feat(lifecycle): add inline method for begin/end pairs
[ { "change_type": "MODIFY", "diff": "@@ -265,7 +265,6 @@ class LinkedCallback {\n}\npublic rotate(): void {\n- //console.log(`rotating`, this);\nif (this.prev === void 0 || this.prev.priority > this.priority) {\nreturn;\n}\n@@ -350,7 +349,8 @@ export interface IProcessingQueue<T> {\nexport interface IAutoPro...
TypeScript
MIT License
aurelia/aurelia
feat(lifecycle): add inline method for begin/end pairs
1
feat
lifecycle
67,476
28.04.2019 20:49:10
-7,200
8811b2c964f074a76a32f9767eb8eb7d99e071d2
chore(1kcomponents): some setup tweaks
[ { "change_type": "MODIFY", "diff": "@@ -258,6 +258,8 @@ const App = CustomElementResource.define(\nnew Aurelia().register(BasicConfiguration, { register }).app(\n{\nhost: document.getElementById('app'),\n- component: App\n+ component: App,\n+ enableTimeSlicing: true,\n+ adaptiveTimeSlicing: true\n}\n).start...
TypeScript
MIT License
aurelia/aurelia
chore(1kcomponents): some setup tweaks
1
chore
1kcomponents
67,476
28.04.2019 20:53:36
-7,200
69d4f6293a3b861fe75da21b87c1ab7e2a8e2c33
chore(examples): add grid example
[ { "change_type": "ADD", "diff": "+dist\n+.cache\n", "new_path": "test/grid/.gitignore", "old_path": null }, { "change_type": "ADD", "diff": "+package-lock=false\n", "new_path": "test/grid/.npmrc", "old_path": null }, { "change_type": "ADD", "diff": "+# grid\n+\n+Basic...
TypeScript
MIT License
aurelia/aurelia
chore(examples): add grid example
1
chore
examples
104,818
28.04.2019 20:56:41
-7,200
d56f82ff1253b558cec1fb03d0f83b06d9f15ce8
fix(table): filter rtl overlaps
[ { "change_type": "MODIFY", "diff": "@@ -52,6 +52,9 @@ const StyledFormItem = styled(FormItem)`\n.bx--list-box__selection {\nright: 0;\n}\n+ .bx--list-box input[role='combobox'] {\n+ padding-right: 3.5rem;\n+ }\n}\n`;\n", "new_path": "src/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.jsx", ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): filter rtl overlaps
1
fix
table
815,595
28.04.2019 20:59:24
-28,800
801810ee291b6e2fccb4281609653aea32cc6a60
feat: Limit page size of get_cells_by_lock_hash
[ { "change_type": "MODIFY", "diff": "+use crate::error::RPCError;\nuse ckb_core::cell::CellProvider;\nuse ckb_core::BlockNumber;\nuse ckb_shared::{shared::Shared, store::ChainStore};\n@@ -8,6 +9,8 @@ use jsonrpc_types::{Block, CellOutputWithOutPoint, CellWithStatus, Header, OutPo\nuse numext_fixed_hash::H256...
Rust
MIT License
nervosnetwork/ckb
feat: Limit page size of get_cells_by_lock_hash
1
feat
null
815,601
28.04.2019 21:14:20
-28,800
6d9bc240b69d281e4b86997cb7e0499479310871
feat: revision block reward
[ { "change_type": "MODIFY", "diff": "@@ -443,6 +443,7 @@ dependencies = [\n\"ckb-util 0.11.0-pre\",\n\"crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"crypto 0.11.0-pre\",\n+ \"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"faster-hex 0.3.1 (...
Rust
MIT License
nervosnetwork/ckb
feat: revision block reward
1
feat
null
67,476
29.04.2019 00:02:14
-7,200
dcfbf62c6070112b1ab7e796d1849d403386c9a5
test(array-observer): fix array observer tests + use new stuff
[ { "change_type": "MODIFY", "diff": "import { expect } from 'chai';\n-import { match } from 'sinon';\nimport {\nArrayObserver,\ndisableArrayObservation,\nenableArrayObservation,\nIndexMap,\nLifecycleFlags as LF,\n- ILifecycle\n+ ILifecycle,\n+ copyIndexMap,\n+ ICollectionSubscriber,\n+ LifecycleFlags,\n} fro...
TypeScript
MIT License
aurelia/aurelia
test(array-observer): fix array observer tests + use new stuff
1
test
array-observer
273,701
29.04.2019 01:34:28
25,200
bfc7146d9a1cea1e5c9b6fca4596e4756f25fc08
chore(drupal): update readme with Contenta CMS section
[ { "change_type": "MODIFY", "diff": "> Drupal source for Gridsome.\n+### Table of Contents\n+* [Install](#install)\n+* [Usage](#usage)\n+* [API Schema to GraphQL Conversion](#api-schema-to-graphql-conversion)\n+* [Contenta CMS](#contenta-cms)\n+* [Routing](#routing)\n+* [Excludes](#excludes)\n+* [Auth](#auth...
JavaScript
MIT License
gridsome/gridsome
chore(drupal): update readme with Contenta CMS section (#360)
1
chore
drupal
722,013
29.04.2019 09:16:58
18,000
9c5c6a25ba9e1de977af65824c7d992369947a0e
docs: display the code for SVG example
[ { "change_type": "MODIFY", "diff": "module.exports = {\n// set your styleguidist configuration here\ntitle: 'Default Style Guide',\n- defaultExample: true,\ncomponents: 'src/components/**/[A-Z]*.vue',\nribbon: {\ntext: 'Back to examples',\nurl: 'https://vue-styleguidist.github.io/Examples.html'\n},\n- style...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
docs: display the code for SVG example
1
docs
null
304,866
29.04.2019 09:47:00
25,200
1a2632079b781e9f6bfd26fcdeccaea764721281
test(execute): add test for memory limits
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,7 @@ import (\n\"context\"\n\"github.com/influxdata/flux/execute\"\n+ \"github.com/influxdata/flux/memory\"\n\"github.com/influxdata/flux/plan\"\nuuid \"github.com/satori/go.uuid\"\n)\n@@ -63,3 +64,45 @@ func (src *FromProcedureSpec) Run(ctx context.Context) {\...
Go
MIT License
influxdata/flux
test(execute): add test for memory limits (#1218)
1
test
execute
306,421
29.04.2019 09:55:49
-7,200
6a0579cd9153d3fde297e963b0c5fb107b12da42
chore(field): custom fields tutorial
[ { "change_type": "MODIFY", "diff": "+\n# Form Fundaments\n[//]: # (AUTO INSERT HEADER PREPUBLISH)\n-Fields are the most fundamental building block of the Form System. They are the basis of\n-both `field`s and `fieldset`s.\n+`Form control`s are the most fundamental building block of the Forms. They are the b...
JavaScript
MIT License
ing-bank/lion
chore(field): custom fields tutorial
1
chore
field
603,467
29.04.2019 10:18:31
-3,600
b704b8dacbf04fe085df505d35fd2278f5b75bf3
chore(deps): Updated package-lock.json files
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"@serenity-js-examples/calculator-app\",\n- \"version\": \"2.0.1-alpha.57\",\n+ \"version\": \"2.0.1-alpha.58\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n", "new_path": "examples/calculator-app/package-lock.json", "old_path...
TypeScript
Apache License 2.0
serenity-js/serenity-js
chore(deps): Updated package-lock.json files
1
chore
deps
273,683
29.04.2019 10:26:06
-7,200
b6994c81101f65aa43c65d3f1b24c27805712554
fix(assets): encode generated urls
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/gridsome/lib/__tests__/assets/folder name/350 250.png differ\n", "new_path": "gridsome/lib/__tests__/assets/folder name/350 250.png", "old_path": "gridsome/lib/__tests__/assets/folder name/350 250.png" }, { "change_type": "ADD", ...
JavaScript
MIT License
gridsome/gridsome
fix(assets): encode generated urls (#393)
1
fix
assets
503,951
29.04.2019 10:37:29
14,400
e3c8d7c164df76ba073913bb251d14be9558baa8
fix(version): bump patternfly version to 2.6.5
[ { "change_type": "MODIFY", "diff": "\"victory-core\": \"^31.1.0\"\n},\n\"devDependencies\": {\n- \"@patternfly/patternfly\": \"2.6.1\",\n+ \"@patternfly/patternfly\": \"2.6.5\",\n\"@patternfly/react-tokens\": \"^2.5.0\",\n\"css\": \"^2.2.3\",\n\"fs-extra\": \"^6.0.1\",\n", "new_path": "packages/patternf...
TypeScript
MIT License
patternfly/patternfly-react
fix(version): bump patternfly version to 2.6.5 (#1874)
1
fix
version
815,573
29.04.2019 11:10:27
-28,800
631d33cacf2d9362548dc08ede713c0d0491aa9e
fix: Disconnect wrong peer when process getheaders message
[ { "change_type": "MODIFY", "diff": "@@ -329,7 +329,7 @@ impl<CS: ChainStore> CKBProtocolHandler for Relayer<CS> {\n}\n};\n- debug!(target: \"relay\", \"msg {:?}\", msg.payload_type());\n+ debug!(target: \"relay\", \"received msg {:?} from {}\", msg.payload_type(), peer_index);\nself.process(nc.as_ref(), pee...
Rust
MIT License
nervosnetwork/ckb
fix: Disconnect wrong peer when process getheaders message
1
fix
null
791,704
29.04.2019 11:14:02
25,200
660cdb5a0fc6970ab68994f2de387127d4337f8e
clients(devtools): remove ascii-encoded asset requirement
[ { "change_type": "MODIFY", "diff": "@@ -17,37 +17,22 @@ const generatorFilename = `./lighthouse-core/report/report-generator.js`;\nconst htmlReportAssets = require('../lighthouse-core/report/html/html-report-assets.js');\n/**\n- * Used to save cached resources (Runtime.cachedResources). Content must be conv...
JavaScript
Apache License 2.0
googlechrome/lighthouse
clients(devtools): remove ascii-encoded asset requirement (#8637)
1
clients
devtools
127,939
29.04.2019 11:21:45
-10,800
3b8a1e8404d8ba857aaddf504af356176c94849a
chore(doposit): fix remamed imports
[ { "change_type": "MODIFY", "diff": "@@ -5,8 +5,8 @@ import { jsx } from '@emotion/core';\nimport {\nIconArrowLeft,\nIconArrowRight,\n- IconArrowTop,\n- IconArrowBottom,\n+ IconArrowDown,\n+ IconArrowUp,\n} from '@heathmont/sportsbet-icons';\nimport {\nButton,\n@@ -109,10 +109,10 @@ export const DepositViewB...
TypeScript
MIT License
coingaming/moon-design
chore(doposit): fix remamed imports
1
chore
doposit
791,704
29.04.2019 11:45:26
25,200
c918225dd0f3fe4709a738701759a35263c6f22a
report(redesign): add dark theme
[ { "change_type": "MODIFY", "diff": "@@ -54,8 +54,11 @@ class ReportUIFeatures {\nthis.onExportButtonClick = this.onExportButtonClick.bind(this);\nthis.onExport = this.onExport.bind(this);\nthis.onKeyDown = this.onKeyDown.bind(this);\n- this.printShortCutDetect = this.printShortCutDetect.bind(this);\n+ this....
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(redesign): add dark theme (#8425)
1
report
redesign
815,593
29.04.2019 11:52:23
-32,400
f5009865930e388160696b54d8faaffc657636ac
refactor: resolve_transaction fn returns UnresolvableError
[ { "change_type": "MODIFY", "diff": "@@ -14,7 +14,7 @@ use ckb_shared::error::SharedError;\nuse ckb_shared::shared::Shared;\nuse ckb_store::{ChainStore, StoreBatch};\nuse ckb_traits::{BlockMedianTimeContext, ChainProvider};\n-use ckb_verification::{BlockVerifier, TransactionsVerifier, Verifier};\n+use ckb_ve...
Rust
MIT License
nervosnetwork/ckb
refactor: resolve_transaction fn returns UnresolvableError
1
refactor
null
603,467
29.04.2019 12:00:39
-3,600
2a088b713e2364aa0d9be5b16aa757cdabba31d7
feat(protractor): Browser.log() allows the actor to read the browser log entries
[ { "change_type": "MODIFY", "diff": "@@ -25,6 +25,10 @@ exports.config = {\ncapabilities: {\nbrowserName: 'chrome',\n+ loggingPrefs: {\n+ browser: 'INFO',\n+ },\n+\nchromeOptions: {\nargs: [\n'--disable-infobars',\n", "new_path": "packages/protractor/spec/protractor.conf.js", "old_path": "packages/pr...
TypeScript
Apache License 2.0
serenity-js/serenity-js
feat(protractor): Browser.log() allows the actor to read the browser log entries
1
feat
protractor
791,760
29.04.2019 12:07:17
25,200
6fae88c585c1eff8cb7083f65f5cdd829a72733a
core(stackpacks): use icon_data_URL in proto; add to dbw smoke test
[ { "change_type": "MODIFY", "diff": "<!-- FAIL(errors-in-console): exception thrown -->\n<script type=\"text/javascript\">throw new Error('An error');</script>\n+<!-- Add non-functional script to appear to be a Wordpress page for Stack Packs. -->\n+<script type=\"example\" src=\"fake-script-wp-includes\"></s...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(stackpacks): use icon_data_URL in proto; add to dbw smoke test (#8536)
1
core
stackpacks
791,704
29.04.2019 12:37:20
25,200
ff3877841b61de7273fb981a9f356fac02c939f5
report(redesign): smooth scroll on category gauge click
[ { "change_type": "MODIFY", "diff": "@@ -72,6 +72,7 @@ class ReportUIFeatures {\nthis.json = report;\nthis._setupMediaQueryListeners();\n+ this._setupSmoothScroll();\nthis._setupExportButton();\nthis._setupStickyHeaderElements();\nthis._setUpCollapseDetailsAfterPrinting();\n@@ -102,6 +103,17 @@ class ReportU...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(redesign): smooth scroll on category gauge click (#8720)
1
report
redesign
791,704
29.04.2019 13:03:58
25,200
333092708faa6dc25a4fa0a6933c705a278094a3
report(redesign): hide sparkline in mobile
[ { "change_type": "MODIFY", "diff": "--topbar-height: 32px;\n--topbar-icon-size: 20px;\n}\n+\n+ /* Not enough space to adequately show the relative savings bars. */\n+ .lh-sparkline {\n+ display: none;\n+ }\n}\n.lh-vars.lh-devtools {\n", "new_path": "lighthouse-core/report/html/report-styles.css", "o...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(redesign): hide sparkline in mobile (#8562)
1
report
redesign
791,704
29.04.2019 13:11:02
25,200
623b789497f6c87f85d366b4038deae5dc701c90
report(redesign): tweak plugin badge placement
[ { "change_type": "MODIFY", "diff": "@@ -563,7 +563,7 @@ limitations under the License.\ncontent: \"\";\nposition: absolute;\nright: -6px;\n- bottom: 5px;\n+ bottom: 0px;\ndisplay: block;\nz-index: 100;\nbox-shadow: 0 0 4px rgba(0,0,0,.2);\n", "new_path": "lighthouse-core/report/html/templates.html", ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(redesign): tweak plugin badge placement (#8722)
1
report
redesign
304,868
29.04.2019 13:12:05
21,600
57759cc0f81a9232c5aa440a7cc8cd5369f122a2
fix(control): fix request results labels to count runtime errors
[ { "change_type": "MODIFY", "diff": "@@ -146,7 +146,6 @@ func (c *Controller) Query(ctx context.Context, compiler flux.Compiler) (flux.Qu\nc.countQueryRequest(q, labelQueueError)\nreturn nil, q.Err()\n}\n- c.countQueryRequest(q, labelSuccess)\nreturn q, nil\n}\n@@ -430,6 +429,13 @@ func (q *Query) Done() {\n...
Go
MIT License
influxdata/flux
fix(control): fix request results labels to count runtime errors
1
fix
control
815,598
29.04.2019 14:48:00
-28,800
afe12df1eda9d59d259ec1da9ec4031db73ef476
chore: run security-audit in CI
[ { "change_type": "MODIFY", "diff": "@@ -41,7 +41,7 @@ clippy:\ncd test && cargo clippy ${VERBOSE} --all --all-targets --all-features -- -D warnings -D clippy::clone_on_ref_ptr -D clippy::enum_glob_use -D clippy::fallible_impl_from\n-ci: fmt clippy test\n+ci: fmt clippy security-audit test\ngit diff --exit-c...
Rust
MIT License
nervosnetwork/ckb
chore: run security-audit in CI
1
chore
null
104,818
29.04.2019 14:58:30
-7,200
4b44bf1d466cd8cca795a76ca196812a3a083e82
fix(tilecatalog): search and paging is not working
[ { "change_type": "MODIFY", "diff": "@@ -110,7 +110,12 @@ const StatefulTileCatalog = ({\n: tilesProp.slice(startingIndex, endingIndex + 1)\n}\nsearch={{ ...search, onSearch: handleSearch, value: searchState }}\n- pagination={{ ...pagination, page, onPage: handlePage, totalItems: tiles ? tiles.length : 0 }}\...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(tilecatalog): search and paging is not working
1
fix
tilecatalog
104,818
29.04.2019 15:30:39
-7,200
816ce918670f2db683fa6c3bafa210332b495fcc
fix(tilecatalog): need to change the page for changed selected
[ { "change_type": "MODIFY", "diff": "@@ -43,7 +43,16 @@ const StatefulTileCatalog = ({\n},\n});\n},\n- [tilesProp.map(tile => omit(tile, 'renderContent')), selectedTileIdProp]\n+ [tilesProp.map(tile => omit(tile, 'renderContent'))]\n+ );\n+\n+ useEffect(\n+ () => {\n+ if (selectedTileIdProp) {\n+ dispatch({ ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(tilecatalog): need to change the page for changed selected
1
fix
tilecatalog
815,590
29.04.2019 15:35:43
-28,800
5c7ceaf7bc2dafefee98c21fe22976990352d11a
fix: cachedb
[ { "change_type": "MODIFY", "diff": "-use crate::{Col, KeyValueDB, Result};\n-use ckb_util::RwLock;\n+use crate::{Col, DbBatch, KeyValueDB, Result};\n+use ckb_util::Mutex;\nuse fnv::FnvHashMap;\nuse lru_cache::LruCache;\nuse std::ops::Range;\n+use std::sync::Arc;\ntype CacheTable = FnvHashMap<Col, LruCache<V...
Rust
MIT License
nervosnetwork/ckb
fix: cachedb
1
fix
null
603,467
29.04.2019 15:36:44
-3,600
2563c5a6d9e2e87f0178ccb9831d5278a0750cf7
fix(cucumber): Corrected how scenario and feature-level and tags are reported
[ { "change_type": "MODIFY", "diff": "@@ -36,8 +36,8 @@ describe('@serenity-js/cucumber', function () {\nPickEvent.from(res.events)\n.next(SceneStarts, event => expect(event.value.name.value).to.equal('A tagged scenario'))\n.next(SceneTagged, event => expect(event.tag).to.equal(new FeatureTag('Serenity/JS rec...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(cucumber): Corrected how scenario and feature-level @issue and @issues tags are reported
1
fix
cucumber
603,467
29.04.2019 15:37:05
-3,600
fcc7ec435621bbeefa3ab51bc9ccf59e59eaaeb5
docs(website): Simplified the navigation
[ { "change_type": "MODIFY", "diff": "<div class=\"web-nav-list\">\n<a href=\"/handbook\" class=\"web-nav-item\">Handbook</a>\n-\n- <div class=\"web-nav-dropdown\">\n- <a href=\"#!\" class=\"web-nav-item web-nav-dropdown-toggle\">Modules<span class=\"fa fa-chevron-right\"></span></a>\n- <div class=\"web-nav-d...
TypeScript
Apache License 2.0
serenity-js/serenity-js
docs(website): Simplified the navigation
1
docs
website
104,818
29.04.2019 15:49:50
-7,200
0e27061a89ce6221b82872f7628221869724df93
docs(test): add test statements to our documentation
[ { "change_type": "ADD", "diff": "+# Component Test Statements\n+\n+For each component, this keeps track of whether formal I18N testing, a11y testing, or left-to-right G11n testing was performed.\n+\n+| Component | I18N Tested | A11y Tested | LtoR Tested |\n+| ----------------- | :---------: | ----------: | ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
docs(test): add test statements to our documentation
1
docs
test
722,081
29.04.2019 15:50:31
-7,200
07539907589c1f4e38f27ae2d290c44e375403f5
docs(examples): added svg inside docs tag.
[ { "change_type": "DELETE", "diff": "-<template>\n- <div id=\"app\">\n- <HelloWorld msg=\"Welcome to Your Vue.js App\"/>\n- </div>\n-</template>\n-\n-<script>\n-import HelloWorld from './components/HelloWorld.vue'\n-\n-export default {\n- name: 'app',\n- components: {\n- HelloWorld\n- }\n-}\n-</script>\n-\n-...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
docs(examples): added svg inside docs tag. (#402)
1
docs
examples
722,013
29.04.2019 15:50:51
18,000
a5aa57f3bc28587ce213d6cc46e70b1f559da10e
build: simplify styleguidist script
[ { "change_type": "MODIFY", "diff": "\"npm\": \">=3\"\n},\n\"devDependencies\": {\n- \"@babel/cli\": \"^7.1.0\",\n- \"@babel/core\": \"^7.1.0\",\n- \"@babel/plugin-proposal-class-properties\": \"^7.1.0\",\n- \"@babel/plugin-proposal-object-rest-spread\": \"^7.0.0\",\n- \"@babel/plugin-syntax-dynamic-import\"...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
build: simplify styleguidist script
1
build
null
815,573
29.04.2019 15:52:35
-28,800
beb2bfa48ca9b32be463c9d411c4373e55ddd205
feat: Relay transaction by hash BREAKING CHANGE: Network protocol changed
[ { "change_type": "MODIFY", "diff": "@@ -4,14 +4,16 @@ use crate::protocol_generated::ckb::protocol::{\nCellOutput as FbsCellOutput, CellOutputBuilder, CompactBlock, CompactBlockBuilder,\nFilteredBlock, FilteredBlockBuilder, GetBlockProposalBuilder, GetBlockTransactionsBuilder,\nGetBlocks as FbsGetBlocks, Ge...
Rust
MIT License
nervosnetwork/ckb
feat: Relay transaction by hash BREAKING CHANGE: Network protocol changed
1
feat
null
815,601
29.04.2019 16:20:36
-28,800
10416c2e807f4d071d62f3249ede5873c8143265
feat: epoch rpc
[ { "change_type": "MODIFY", "diff": "@@ -25,11 +25,11 @@ pub struct TransactionAddress {\npub struct EpochExt {\npub(crate) number: u64,\npub(crate) block_reward: Capacity,\n+ pub(crate) remainder_reward: Capacity,\npub(crate) last_epoch_end_hash: H256,\npub(crate) start_number: BlockNumber,\npub(crate) leng...
Rust
MIT License
nervosnetwork/ckb
feat: epoch rpc
1
feat
null
722,013
29.04.2019 16:26:27
18,000
a6df22b5c2f9bf3e36724bd7f98c09689d2e1b9b
fix: transform import was not working properly
[ { "change_type": "MODIFY", "diff": "<slot name=\"leftIcon\"/>\n</span>\n<!-- @slot Use this slot to place the button content -->\n- <slot>\n- No content provided\n- </slot>\n+ <slot>No content provided</slot>\n</button>\n</template>\n<script>\n-\nexport default {\nname: 'Button',\nmethods: {\n@@ -77,7 +74,7...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix: transform import was not working properly
1
fix
null
722,013
29.04.2019 16:36:04
18,000
3795710e5bee65f76d1039919cc1c2e6312c7991
docs: svg-loader simplify
[ { "change_type": "MODIFY", "diff": "@@ -74,7 +74,7 @@ Icon on the right Side\n</template>\n<script>\n-import { default as TestIcon } from '../../assets/logo.svg'\n+import TestIcon from '../../assets/logo.svg'\n// You can also use 'exports.default = {}' style module exports.\nexport default {\n", "new_pa...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
docs: svg-loader simplify
1
docs
null
815,590
29.04.2019 16:55:50
-28,800
dc06bb3719555627caeccf2ca5e8667d8bcec001
fix: only save operations in cached cols
[ { "change_type": "MODIFY", "diff": "@@ -42,20 +42,24 @@ impl<T: DbBatch> CacheDBBatch<T> {\nimpl<T: DbBatch> DbBatch for CacheDBBatch<T> {\nfn insert(&mut self, col: Col, key: &[u8], value: &[u8]) -> Result<()> {\nself.inner.insert(col, key, value)?;\n+ if self.cache.lock().contains_key(&col) {\nself.operat...
Rust
MIT License
nervosnetwork/ckb
fix: only save operations in cached cols
1
fix
null
791,704
29.04.2019 16:56:03
25,200
0e513a6be983d044e4f3bbc562808dd8c7dbb7a0
report(redesign): remove units from table column headings
[ { "change_type": "MODIFY", "diff": "\"description\": \"Label for the TTL column in data tables, entries will be the time to live value of the cache header on a web resource\"\n},\n\"lighthouse-core/lib/i18n/i18n.js | columnSize\": {\n- \"message\": \"Size (KB)\",\n+ \"message\": \"Size\",\n\"description\": ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(redesign): remove units from table column headings (#8658)
1
report
redesign
722,013
29.04.2019 18:18:36
18,000
d2b60b612a82bc62a934375d2467ed634630ca6f
test: fix example-loader tests
[ { "change_type": "MODIFY", "diff": "@@ -127,7 +127,6 @@ Two:\nexpect(result).toBeTruthy()\nexpect(() => new Function(result)).not.toThrow(SyntaxError)\nexpect(result).toMatch(`'lodash': require('lodash')`)\n- expect(result).toMatch(`'react': require('react')`)\n})\nit('should generate require map when impor...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
test: fix example-loader tests
1
test
null
104,857
29.04.2019 18:50:06
10,800
b466278beda36c15bd23f8931f3da1e3882d897c
feat(detailwizard): new component
[ { "change_type": "ADD", "diff": "+import React, { useState } from 'react';\n+\n+import TableDetailWizard, { propTypes, defaultProps } from './TableDetailWizard';\n+\n+const StatefulTableDetailWizard = ({\n+ currentItemId: currentItemIdProp,\n+ items,\n+ onNext,\n+ onBack,\n+ setItem,\n+ ...other\n+}) => {\n...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(detailwizard): new component
1
feat
detailwizard
104,857
29.04.2019 18:56:17
10,800
1791261b5698a0da399c51670943742a8840f320
fix(list): color from styles.js
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,8 @@ import PropTypes from 'prop-types';\nimport styled from 'styled-components';\nimport Bee32 from '@carbon/icons-react/lib/bee/32';\n+import { COLORS } from '../../styles/styles';\n+\nconst StructuredListWrapperStyled = styled(StructuredListWrapper)`\n{\n&...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(list): color from styles.js
1
fix
list
815,577
29.04.2019 19:25:22
-28,800
99b8c38cb34eaf1e807bd89b65c1e0dc0908702c
fix: Initial block download message storm
[ { "change_type": "MODIFY", "diff": "@@ -59,6 +59,10 @@ impl<'a, CS: ChainStore> CompactBlockProcess<'a, CS> {\nreturn Ok(());\n}\n} else {\n+ // If self is in the IBD state, do nothing\n+ if self.relayer.shared.is_initial_block_download() {\n+ return Ok(());\n+ }\ndebug!(target: \"relay\", \"UnknownParent: ...
Rust
MIT License
nervosnetwork/ckb
fix: Initial block download message storm
1
fix
null
104,857
29.04.2019 19:34:32
10,800
b0726bbb551c03f98f6dcced3cf0adb4d8ced87c
fix(tooltip): add title to cell to render browser tooltip
[ { "change_type": "MODIFY", "diff": "@@ -71,7 +71,7 @@ const StructuredList = ({ columns, data, design, isFixedWidth, onRowClick, loadi\n<StructuredListHead>\n<StructuredListRow head>\n{columns.map(({ id, title, width = undefined }) => (\n- <StyledStructuredListCell key={`${id}-column`} width={width} head>\n...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(tooltip): add title to cell to render browser tooltip
1
fix
tooltip
815,590
29.04.2019 20:11:28
-28,800
bb57d71793509bca5a2035bc8dab55299de14f65
fix: store tx cellbase
[ { "change_type": "MODIFY", "diff": "@@ -305,7 +305,7 @@ impl<B: DbBatch> StoreBatch for DefaultStoreBatch<B> {\n};\nlet tx_hash = tx.hash();\nself.insert_serialize(COLUMN_TRANSACTION_ADDR, tx_hash.as_bytes(), &address)?;\n- let cellbase = tx.inputs().is_empty();\n+ let cellbase = id == 0;\nfor (index, outpu...
Rust
MIT License
nervosnetwork/ckb
fix: store tx cellbase
1
fix
null
815,590
29.04.2019 20:12:03
-28,800
1715cbc95a5655a2bb27d0439a785c273976cc03
fix: json bytes should hexed
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,6 @@ use ckb_core::transaction::{\nTransaction as CoreTransaction, TransactionBuilder, Witness as CoreWitness,\n};\nuse ckb_core::uncle::UncleBlock as CoreUncleBlock;\n-use ckb_core::Bytes;\nuse ckb_core::{BlockNumber as CoreBlockNumber, Capacity as CoreCapacit...
Rust
MIT License
nervosnetwork/ckb
fix: json bytes should hexed
1
fix
null
531,793
29.04.2019 20:17:13
-3,600
1eb1b6736a2e734d9d1935267d41d7353f688222
feat(config): add options for ignoring labels when populating silences
[ { "change_type": "MODIFY", "diff": "@@ -599,6 +599,31 @@ sentry:\npublic: https://<key>:<secret>@sentry.io/<project>\n```\n+## Silence form\n+\n+`silenceForm` section allow customizing silence form behavior.\n+Syntax:\n+\n+```YAML\n+silenceForm:\n+ strip:\n+ labels: list of strings\n+```\n+\n+- `strip:label...
TypeScript
Apache License 2.0
prymitive/karma
feat(config): add options for ignoring labels when populating silences
1
feat
config
531,793
29.04.2019 20:17:40
-3,600
2fea920e57ac41e760d3500f0c338a47a1d919a7
feat(api): expose silenceform:strip:labels settings in the API
[ { "change_type": "MODIFY", "diff": "@@ -66,6 +66,7 @@ run: $(NAME)\nLABELS_COLOR_UNIQUE=\"@receiver instance cluster\" \\\nLABELS_COLOR_STATIC=\"job\" \\\nFILTERS_DEFAULT=\"@state=active @receiver=by-cluster-service\" \\\n+ SILENCEFORM_STRIP_LABELS=\"job\" \\\nPORT=$(PORT) \\\n./$(NAME)\n@@ -86,6 +87,7 @@ r...
TypeScript
Apache License 2.0
prymitive/karma
feat(api): expose silenceform:strip:labels settings in the API
1
feat
api
531,793
29.04.2019 20:54:17
-3,600
8242ec64f8e7646d52b95b367f025db898e42ae9
feat(ui): use silence form settings exposed via the backend API Silence form when populating matchers from alerts or alert groups will now ignore labels listed in silenceForm:strip:labels
[ { "change_type": "MODIFY", "diff": "@@ -17,13 +17,18 @@ import { faBellSlash } from \"@fortawesome/free-solid-svg-icons/faBellSlash\";\nimport { faExternalLinkAlt } from \"@fortawesome/free-solid-svg-icons/faExternalLinkAlt\";\nimport { APIAlert, APIGroup } from \"Models/API\";\n+import { AlertStore } from ...
TypeScript
Apache License 2.0
prymitive/karma
feat(ui): use silence form settings exposed via the backend API Silence form when populating matchers from alerts or alert groups will now ignore labels listed in silenceForm:strip:labels
1
feat
ui
791,760
29.04.2019 21:15:48
25,200
93a8d8ca5f10b338e47e8c12ed848ffeda03e494
report(misc): fix common typos
[ { "change_type": "MODIFY", "diff": "@@ -335,7 +335,7 @@ class DetailsRenderer {\n/**\n* @param {LH.Audit.Details.List} details\n- * @returns {Element}\n+ * @return {Element}\n*/\n_renderList(details) {\nconst listContainer = this._dom.createElement('div', 'lh-list');\n", "new_path": "lighthouse-core/rep...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(misc): fix common typos (#8726)
1
report
misc
815,609
30.04.2019 00:25:44
-28,800
9d5573911cb322b002aca342e60e2cf90419fb22
refactor: specify different structs for JSON-RPC requests and responses Since `Transaction`, `Header`, `Block`, `UncleBlock` are different in JSON-RPC requests and responses, we should not use same structs to present them. BREAKING CHANGE: Redundant fields in JSON-RPC requests are not allowed anymore.
[ { "change_type": "MODIFY", "diff": "@@ -572,7 +572,6 @@ echo '{\n}\n],\n\"witnesses\": [],\n- \"hash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\"\n}\n]\n}' \\\n@@ -666,7 +665,6 @@ echo '{\n}\n],\n\"witnesses\": [],\n- \"hash\": \"0x00000000000000000000000000000000000000000000000...
Rust
MIT License
nervosnetwork/ckb
refactor: specify different structs for JSON-RPC requests and responses Since `Transaction`, `Header`, `Block`, `UncleBlock` are different in JSON-RPC requests and responses, we should not use same structs to present them. BREAKING CHANGE: Redundant fields in JSON-RPC requests are not allowed anymore.
1
refactor
null
679,913
30.04.2019 00:29:50
-3,600
b0c44fe1f3f708b91fe22cc0a7a428902a671592
feat(api): add Type enum, IntArray, UIntArray, FloatArray, SIZEOF
[ { "change_type": "MODIFY", "diff": "@@ -322,6 +322,34 @@ export type TypedArray =\n| Uint16Array\n| Uint32Array;\n+export type IntArray = Int8Array | Int16Array | Int32Array;\n+export type UIntArray = Uint8Array | Uint16Array | Uint32Array;\n+export type FloatArray = Float32Array | Float64Array;\n+\n+export...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(api): add Type enum, IntArray, UIntArray, FloatArray, SIZEOF
1
feat
api
679,913
30.04.2019 00:32:01
-3,600
b26df6d9e6183f2b0608f2619b231092b0ced541
refactor(malloc): remove Type enum, SIZEOF update references & tests BREAKING CHANGE: remove Type enum, SIZEOF, migrated to
[ { "change_type": "MODIFY", "diff": "@@ -63,7 +63,8 @@ yarn add @thi.ng/malloc\n## Usage examples\n```ts\n-import { MemPool, Type } from \"@thi.ng/malloc\";\n+import { Type } from \"@thi.ng/api\";\n+import { MemPool } from \"@thi.ng/malloc\";\n// create memory w/ optional start allocation address\n// (start ...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(malloc): remove Type enum, SIZEOF - update references & tests BREAKING CHANGE: remove Type enum, SIZEOF, migrated to @thi.ng/api
1
refactor
malloc
679,913
30.04.2019 00:34:01
-3,600
a0fab41832cb5911031b9965c8209538e9aaf68f
refactor(vector-pools): update Type imports Type enum now defined in pkg update tests & readme
[ { "change_type": "MODIFY", "diff": "@@ -177,6 +177,8 @@ EMSCRIPTEN_KEEPALIVE int getNumVertices() {\n```\n```ts\n+import { Type } from \"@thi.ng/api\";\n+\n// ... WASM / Emscripten boilerplate omitted\nconst Module = ...\n@@ -190,10 +192,10 @@ const geo = new vp.AttribPool(\n// don't specify attrib defaults...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(vector-pools): update Type imports - Type enum now defined in @thi.ng/api pkg - update tests & readme
1
refactor
vector-pools
679,913
30.04.2019 01:47:54
-3,600
b5994d9ed0304f9593be010add0e4fb5b6237777
feat(associative): add SparseSet8/16/32
[ { "change_type": "MODIFY", "diff": "@@ -17,5 +17,6 @@ export * from \"./rename-keys\";\nexport * from \"./select-keys\";\nexport * from \"./sorted-map\";\nexport * from \"./sorted-set\";\n+export * from \"./sparse-set\";\nexport * from \"./union\";\nexport * from \"./without-keys\";\n", "new_path": "pac...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(associative): add SparseSet8/16/32
1
feat
associative
679,913
30.04.2019 01:48:14
-3,600
c5e2323967ba4961674c9200d3ef761f685e45ee
refactor(associative): minor updates ArraySet
[ { "change_type": "MODIFY", "diff": "@@ -7,12 +7,12 @@ import {\nimport { equiv } from \"@thi.ng/equiv\";\nimport { EquivSetOpts, IEquivSet } from \"./api\";\n-interface SetProps<T> {\n+interface ArraySetProps<T> {\nvals: T[];\nequiv: Predicate2<T>;\n}\n-const __private = new WeakMap<ArraySet<any>, SetProps<...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(associative): minor updates ArraySet
1
refactor
associative
791,676
30.04.2019 02:26:15
-7,200
94800e160b9510e31d3a7f459da81991e500fe9e
report: add table filter for third-party urls
[ { "change_type": "MODIFY", "diff": "@@ -35,19 +35,6 @@ const UIStrings = {\nconst str_ = i18n.createMessageInstanceIdFn(__filename, UIStrings);\n-/**\n- * Returns a primary domain for provided URL (e.g. http://www.example.com -> example.com).\n- * Note that it does not take second-level domains into account...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: add table filter for third-party urls (#6351)
1
report
null
103,510
30.04.2019 08:02:46
10,800
e3dd1abcffeae80d1e9d38fdcb3cfb3f58e59b9f
fix: fix RadioGroup animation
[ { "change_type": "MODIFY", "diff": "import * as React from 'react';\nimport { Platform } from 'react-native';\n-import RadioButtonGroup from './RadioButtonGroup';\n+import RadioButtonGroup, { RadioButtonContext } from './RadioButtonGroup';\nimport RadioButtonAndroid from './RadioButtonAndroid';\nimport Radi...
TypeScript
MIT License
callstack/react-native-paper
fix: fix RadioGroup animation (#982)
1
fix
null
103,510
30.04.2019 08:06:02
10,800
72da47ed2d2aba5696b8ff396d35fef90d013f44
fix: warning in console when running tests
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,8 @@ import * as React from 'react';\nimport renderer from 'react-test-renderer';\nimport BottomNavigation from '../BottomNavigation.tsx';\n+jest.useFakeTimers();\n+\njest.mock('Animated', () => {\nconst ActualAnimated = jest.requireActual('Animated');\n", ...
TypeScript
MIT License
callstack/react-native-paper
fix: warning in console when running tests (#1028)
1
fix
null
104,818
30.04.2019 09:09:04
-7,200
fe2ecb9f0357cce568a49e68ad11640e88d21652
fix(table): header columns overlap buttons
[ { "change_type": "MODIFY", "diff": "@@ -27,6 +27,11 @@ const StyledTableHeader = styled(TableHeader)`\nmin-width: 12.75rem;\n}\n}\n+\n+ .bx--list-box input[role='combobox'] {\n+ /* need to save enough room for clear and dropdown button */\n+ padding-right: 4rem;\n+ }\n${props => {\nconst { width } = props;\...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): header columns overlap buttons
1
fix
table
722,013
30.04.2019 09:18:18
18,000
ca757f341f582df0e82f5c6841713c43dc44e8bc
docs: update broken links
[ { "change_type": "MODIFY", "diff": "@@ -45,7 +45,7 @@ const styleguide = styleguidist({\n})\n```\n-**Note:** any output is disabled by default, you may need to define your own [logger](Configuration.md#logger).\n+**Note:** any output is disabled by default, you may need to define your own [logger](/Configur...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
docs: update broken links
1
docs
null
791,723
30.04.2019 11:15:01
25,200
42a278a7414d059a7766c9fc4dea2921b9d49780
core: filter blob urls from more audits
[ { "change_type": "MODIFY", "diff": "@@ -152,11 +152,12 @@ class CacheHeaders extends Audit {\nNetworkRequest.TYPES.Stylesheet,\n]);\n- const resourceUrl = record.url;\n+ // It's not a request loaded over the network, caching makes no sense\n+ if (URL.NON_NETWORK_PROTOCOLS.includes(record.protocol)) return f...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: filter blob urls from more audits (#8724)
1
core
null