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
217,922
09.05.2019 22:38:43
-7,200
a361b3f06d6a7ded6b4fd17678598ffc3cc0fad8
chore: SSR is now properly building, needs fix for garland data async JS loading
[ { "change_type": "MODIFY", "diff": "\"version\": \"3.0.0\",\n\"resolved\": \"https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz\",\n\"integrity\": \"sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=\",\n- \"dev\": true\n+ \"dev\": true,\n+ \"optional\": true\n},\n\"async\": {\n\"version\": \"1.0.0\",\n\"version\"...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: SSR is now properly building, needs fix for garland data async JS loading
1
chore
null
815,590
09.05.2019 22:43:49
-28,800
e7663226788e18d1d761fd64bd258bb1dc7c1a7c
fix: respond parse error to miner
[ { "change_type": "MODIFY", "diff": "@@ -61,7 +61,10 @@ impl<CS: ChainStore + 'static> MinerRpc for MinerRpcImpl<CS> {\nself.block_assembler\n.get_block_template(bytes_limit, proposals_limit, max_version)\n- .map_err(|_| Error::internal_error())\n+ .map_err(|err| {\n+ error!(target: \"rpc\", \"get_block_temp...
Rust
MIT License
nervosnetwork/ckb
fix: respond parse error to miner
1
fix
null
531,793
09.05.2019 22:56:27
-3,600
884bbe8398a64b7ff57497893113bf26cc19e8cd
feat(ui): add shadows to dropdown menus
[ { "change_type": "MODIFY", "diff": "@@ -46,7 +46,7 @@ const MenuContent = onClickOutside(\nreturn (\n<FetchPauser>\n<div\n- className=\"dropdown-menu d-block\"\n+ className=\"dropdown-menu d-block shadow\"\nref={popperRef}\nstyle={popperStyle}\ndata-placement={popperPlacement}\n", "new_path": "ui/src/Co...
TypeScript
Apache License 2.0
prymitive/karma
feat(ui): add shadows to dropdown menus
1
feat
ui
469,455
09.05.2019 23:14:29
-7,200
2282b29184d49ecebce5b4765775ac35ff6542e6
fix: change type of MethodObject.name to string fixes
[ { "change_type": "MODIFY", "diff": "@@ -186,7 +186,7 @@ Describes the interface for the given method name. The method name is used as th\nField Name | Type | Description\n---|:---:|---\n-<a name=\"method-name\"></a>name | [`string`] | **REQUIRED**. The cannonical name for the method. The name MUST be unique...
JavaScript
Apache License 2.0
open-rpc/spec
fix: change type of MethodObject.name to string fixes #180
1
fix
null
71,598
10.05.2019 01:35:10
25,200
eb13741c7b1bfb0f4a1ada55f2e4701f69846e42
fix(iam): allow CompositePrincipal construction with spread
[ { "change_type": "MODIFY", "diff": "@@ -287,11 +287,13 @@ export class CompositePrincipal extends PrincipalBase {\npublic readonly assumeRoleAction: string;\nprivate readonly principals = new Array<PrincipalBase>();\n- constructor(principal: PrincipalBase, ...additionalPrincipals: PrincipalBase[]) {\n+ cons...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(iam): allow CompositePrincipal construction with spread (#2507)
1
fix
iam
71,663
10.05.2019 09:35:44
25,200
145da285fbdc3c7783b5068339a211e84f3ce97f
fix(codebuild): correctly pass the VPC subnet IDs to the Policy Statement's condition when using a VPC. Fixes
[ { "change_type": "MODIFY", "diff": "@@ -903,9 +903,9 @@ export class Project extends ProjectBase {\nthis.addToRolePolicy(new iam.PolicyStatement()\n.addResource(`arn:aws:ec2:${Aws.region}:${Aws.accountId}:network-interface/*`)\n.addCondition('StringEquals', {\n- \"ec2:Subnet\": [\n- `arn:aws:ec2:${Aws.regio...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(codebuild): correctly pass the VPC subnet IDs to the Policy Statement's condition when using a VPC. (#2506) Fixes #2335
1
fix
codebuild
815,601
10.05.2019 10:33:03
-28,800
97f1d0c3ad5a1d21be92d65a6baa1bf243d51ae1
fix: metric transaction header mem size
[ { "change_type": "MODIFY", "diff": "@@ -99,7 +99,7 @@ impl RawHeader {\nmem::size_of::<Version>()\n+ H256::size_of() * 5\n+ U256::size_of()\n- + mem::size_of::<u64>() * 2\n+ + mem::size_of::<u64>() * 3\n+ mem::size_of::<u32>()\n}\n}\n", "new_path": "core/src/header.rs", "old_path": "core/src/header....
Rust
MIT License
nervosnetwork/ckb
fix: metric transaction header mem size
1
fix
null
71,371
10.05.2019 10:34:34
-7,200
1feda0c360766abfb50e9521d345eb04f9178977
feat(ecs): allow to specify log retention for aws log driver Allow to specify a log retention when using the AWS Log Driver with an automatically created group. Also add tests for the driver.
[ { "change_type": "MODIFY", "diff": "@@ -27,6 +27,14 @@ export interface AwsLogDriverProps {\n*/\nreadonly logGroup?: logs.ILogGroup;\n+ /**\n+ * The number of days log events are kept in CloudWatch Logs when the log\n+ * group is automatically created by this construct.\n+ *\n+ * @default logs never expire\...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(ecs): allow to specify log retention for aws log driver (#2511) Allow to specify a log retention when using the AWS Log Driver with an automatically created group. Also add tests for the driver.
1
feat
ecs
96,879
10.05.2019 10:48:23
-28,800
43c12d70c685d7917b7d77ce724f5de9f5be3892
fix(properties-panel): translate error messages Closes
[ { "change_type": "MODIFY", "diff": "@@ -140,39 +140,40 @@ module.exports.updateOptionsDropDown = updateOptionsDropDown;\n*\n* @param {ModdleElement} bo\n* @param {String} idValue\n+ * @param {Function} translate\n*\n* @return {String} error message\n*/\n-function isIdValid(bo, idValue) {\n+function isIdVali...
JavaScript
MIT License
bpmn-io/bpmn-js-properties-panel
fix(properties-panel): translate error messages Closes #300
1
fix
properties-panel
815,593
10.05.2019 10:59:02
-28,800
337cbf0a20df2a35c34d31ea12b60f83d0cc272b
chore: store config
[ { "change_type": "MODIFY", "diff": "@@ -355,6 +355,7 @@ dependencies = [\n\"ckb-rpc 0.12.0-pre\",\n\"ckb-script 0.12.0-pre\",\n\"ckb-shared 0.12.0-pre\",\n+ \"ckb-store 0.12.0-pre\",\n\"ckb-sync 0.12.0-pre\",\n\"ckb-verification 0.12.0-pre\",\n\"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-i...
Rust
MIT License
nervosnetwork/ckb
chore: store config
1
chore
null
71,663
10.05.2019 11:35:11
25,200
6fc37189a3deaaff2b9fdf5132b1beaf5e2f742c
fix(codecommit): add a Repository.fromRepositoryName() method. Fixes
[ { "change_type": "MODIFY", "diff": "import events = require('@aws-cdk/aws-events');\n-import { CfnOutput, Construct, IResource, Resource } from '@aws-cdk/cdk';\n+import { CfnOutput, Construct, IConstruct, IResource, Resource, Stack } from '@aws-cdk/cdk';\nimport { CfnRepository } from './codecommit.generate...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(codecommit): add a Repository.fromRepositoryName() method. (#2515) Fixes #2514
1
fix
codecommit
815,590
10.05.2019 11:35:15
-28,800
77fd38665a2f37aeb2f6169c8029088fb47f3d36
fix: TxPoolExecutor panic if inconsistent
[ { "change_type": "MODIFY", "diff": "@@ -85,10 +85,8 @@ impl<CS: ChainStore> TxPoolExecutor<CS> {\n// immediately return if resolved_txs is empty\nif resolved_txs.is_empty() && cached_txs.is_empty() {\n- match unresolvable_txs.get(0) {\n- Some((_tx, err)) => return Err(err.to_owned()),\n- None => return Ok(V...
Rust
MIT License
nervosnetwork/ckb
fix: TxPoolExecutor panic if inconsistent
1
fix
null
127,946
10.05.2019 11:39:30
-10,800
552427c3776b50f18594b75b755ab03e3f2faf16
fix(checkbox): checkbox props type
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,7 @@ import { inputBorder, inputColors } from '../private/input';\n/**\n* Types\n*/\n-type CheckboxProps = {\n+type CheckboxProps = React.InputHTMLAttributes<HTMLInputElement> & {\nlabel: string;\ndisabled?: boolean;\nhiddenLabel?: boolean;\n", "new_path"...
TypeScript
MIT License
coingaming/moon-design
fix(checkbox): checkbox props type
1
fix
checkbox
815,573
10.05.2019 12:00:56
-28,800
d235bc95b6f8b3e8b08c05931ca6c0d0185712c7
test: Fix sync tests
[ { "change_type": "MODIFY", "diff": "@@ -47,7 +47,6 @@ impl Into<ProtocolId> for NetworkProtocol {\n// Timeout = base + per_header * (expected number of headers)\npub const HEADERS_DOWNLOAD_TIMEOUT_BASE: u64 = 6 * 60 * 1000; // 6 minutes\npub const HEADERS_DOWNLOAD_TIMEOUT_PER_HEADER: u64 = 1; // 1ms/header\...
Rust
MIT License
nervosnetwork/ckb
test: Fix sync tests
1
test
null
67,482
10.05.2019 13:18:28
25,200
2df25543dbf670694bb07d18153340f58572eda0
doc(user-docs): small modification to wording
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ Every article has several things in common:\n* **Title** - An article has a clear, short title. The title is not only displayed at the top of the article, but also within the Table of Contents (ToC), index pages, and search results. It's also encoded in ...
TypeScript
MIT License
aurelia/aurelia
doc(user-docs): small modification to wording
1
doc
user-docs
104,818
10.05.2019 13:22:59
-7,200
d9702ec7c38965031e0bed5f472cb98ea31f6f71
fix(table): clear selection when data changes
[ { "change_type": "MODIFY", "diff": "@@ -235,6 +235,16 @@ export const tableReducer = (state = {}, action) => {\nrowCount: updatedData ? updatedData.length : 0,\n},\n},\n+ // Clear selection if the data changes\n+ selectedIds: {\n+ $set: [],\n+ },\n+ isSelectAllIndeterminate: {\n+ $set: false,\n+ },\n+ isSel...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): clear selection when data changes
1
fix
table
127,946
10.05.2019 14:04:34
-10,800
151849be5d55963061d021e8eceaadfe3a743a89
fix(nav): minir adjustments
[ { "change_type": "MODIFY", "diff": "@@ -15,13 +15,11 @@ const tabSkipLinkID = 'tab-skip';\nconst underlineWidth = border.width * 2;\nconst nav: CSSObject = {\n- minWidth: rem(600),\n- height: rem(180),\n- // height: rem(80),\n+ minWidth: rem(660),\n+ height: rem(80),\nbackgroundColor: colors.neutral[90],\n[...
TypeScript
MIT License
coingaming/moon-design
fix(nav): minir adjustments
1
fix
nav
104,818
10.05.2019 14:05:58
-7,200
dfbce1d8a43a65daa032f83a011e830ca18d8b2d
fix(tilecatalog): not generating default selection event
[ { "change_type": "MODIFY", "diff": "@@ -42,6 +42,10 @@ const StatefulTileCatalog = ({\npagination,\n},\n});\n+ // If we totally change the tiles data, we should generate a selection event for the initial default selection\n+ if (onSelection && tilesProp.length > 0 && !selectedTileIdProp) {\n+ onSelection(ti...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(tilecatalog): not generating default selection event
1
fix
tilecatalog
306,423
10.05.2019 14:24:57
-7,200
5ff3da099440df0fb5ec8b04752d1e1cce047b7b
chore: add demos, contact and core info
[ { "change_type": "MODIFY", "diff": "Lion web components is a set of highly performant, accessible and flexible Web Components.\nThey provide an unopinionated, white label layer that can be extended to your own layer of components.\n+## Demos\n+\n+We do have a [live Storybook](http://lion-web-components.netl...
JavaScript
MIT License
ing-bank/lion
chore: add demos, contact and core info
1
chore
null
815,573
10.05.2019 15:07:59
-28,800
552a9e7c4a42151928b21a682008d74a14509068
fix: Update p2p library fix network OOM issue
[ { "change_type": "MODIFY", "diff": "@@ -559,7 +559,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.8 (registry+https://github.co...
Rust
MIT License
nervosnetwork/ckb
fix: Update p2p library fix network OOM issue
1
fix
null
815,601
10.05.2019 15:10:43
-28,800
c90d7eafc0ba6d6317ee6b07c223353b8c5d38c0
fix: blocktemplate size_limit calculate
[ { "change_type": "MODIFY", "diff": "@@ -30,11 +30,11 @@ stop-handler = { path = \"../util/stop-handler\" }\nckb-traits = { path = \"../traits\" }\nfailure = \"0.1.5\"\nsentry = \"^0.15.4\"\n+ckb-verification = { path = \"../verification\" }\n[dev-dependencies]\nproptest = \"0.9\"\nckb-chain = { path = \"../...
Rust
MIT License
nervosnetwork/ckb
fix: blocktemplate size_limit calculate
1
fix
null
815,595
10.05.2019 15:13:18
-28,800
c1bf061fcf2ba3bd0a47d6720b6c8865cc22d164
feat: Add "string" module to deser numbers into string
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,7 @@ mod pool;\nmod proposal_short_id;\nmod sync;\nmod trace;\n+mod string;\npub type BlockNumber = String;\npub type Capacity = String;\n", "new_path": "util/jsonrpc-types/src/lib.rs", "old_path": "util/jsonrpc-types/src/lib.rs" }, { "change_ty...
Rust
MIT License
nervosnetwork/ckb
feat: Add "string" module to deser numbers into string
1
feat
null
217,922
10.05.2019 16:08:26
-7,200
075b77fea9d635a2665dee0643b0f9810d792aa6
chore: fixes for SEO stuff
[ { "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: fixes for SEO stuff
1
chore
null
815,595
10.05.2019 16:10:03
-28,800
428bd21fec54c2a293c100df109edc808c77387b
feat: Stringify core-types numbers
[ { "change_type": "MODIFY", "diff": "@@ -24,6 +24,7 @@ use fnv::FnvHashMap;\nuse fnv::FnvHashSet;\nuse jsonrpc_types::{\nBlockTemplate, CellbaseTemplate, JsonBytes, TransactionTemplate, UncleTemplate,\n+ Cycle as JsonCycle, Version as JsonVersion,\n};\nuse log::error;\nuse lru_cache::LruCache;\n@@ -274,7 +27...
Rust
MIT License
nervosnetwork/ckb
feat: Stringify core-types numbers
1
feat
null
815,573
10.05.2019 16:14:11
-28,800
5c50d38bdd46514f1954e2c7b0d80963d8ffdc8e
perf: Add network quick send message API
[ { "change_type": "MODIFY", "diff": "@@ -560,7 +560,7 @@ dependencies = [\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.10 (registry+https://github.com/rust-lang/crates.io-index)\",\n- \"tentacle-discovery 0.2.2 (registry+ht...
Rust
MIT License
nervosnetwork/ckb
perf: Add network quick send message API
1
perf
null
815,595
10.05.2019 16:20:18
-28,800
9101c8044a1ef9ef08fcefcae170734555b04009
fix: Use random port
[ { "change_type": "MODIFY", "diff": "@@ -31,7 +31,6 @@ use std::path::PathBuf;\nuse std::sync::Arc;\nconst GENESIS_TIMESTAMP: u64 = 1_557_310_743;\n-const URI: &str = \"http://127.0.0.1:8114/\";\n#[derive(Debug, Deserialize)]\npub struct JsonResponse {\n@@ -177,7 +176,7 @@ fn setup_node(\n]))\n.threads(1)\n....
Rust
MIT License
nervosnetwork/ckb
fix: Use random port
1
fix
null
217,922
10.05.2019 16:37:35
-7,200
ef4c6d43f0abc45e0cc3702902d891cad2289b6f
chore: first part of new seo meta management system
[ { "change_type": "MODIFY", "diff": "\"main\": \"index.js\",\n\"scripts\": {\n\"start\": \"node index.js\",\n- \"generate-sitemap\": \"node sitemap-generator.js\"\n+ \"generate-sitemap\": \"node seo/sitemap-generator.js\"\n},\n\"author\": \"\",\n\"license\": \"ISC\",\n", "new_path": "data-extraction/xiva...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: first part of new seo meta management system
1
chore
null
127,946
10.05.2019 16:41:33
-10,800
c07b2131a8c1063637d442da806a96115ec2b50c
feat(nav details): add icons & initial html structure
[ { "change_type": "ADD", "diff": "+<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n+<path d=\"M20.9379 10.1857C20.8586 11.8286 20.5414 13.3893 20.0655 14.5393C19.1138 16.8393 16.8138 17.4143 14.6724 17.5786C13.4034 17.6607 12.2931 17.7429 11.2621 17....
TypeScript
MIT License
coingaming/moon-design
feat(nav details): add icons & initial html structure
1
feat
nav details
815,601
10.05.2019 17:09:40
-28,800
62682e6f97ab693b53ce84377a7bee012f733af9
fix: outpoint memsize
[ { "change_type": "MODIFY", "diff": "@@ -48,6 +48,10 @@ impl CellOutPoint {\nlet CellOutPoint { tx_hash, index } = self;\n(tx_hash, index)\n}\n+\n+ pub const fn serialized_size() -> usize {\n+ H256::size_of() + mem::size_of::<u32>()\n+ }\n}\n#[derive(Clone, Default, Serialize, Deserialize, Eq, PartialEq, Has...
Rust
MIT License
nervosnetwork/ckb
fix: outpoint memsize
1
fix
null
217,922
10.05.2019 18:05:57
-7,200
dc880e939c8cadea162c8d5a8a6d71fce7e15392
chore: metadata generator, might be used some day, idk yet
[ { "change_type": "MODIFY", "diff": "const { getAllPages } = require('../tools.js');\nconst fs = require('fs');\nconst path = require('path');\n+const { map } = require('rxjs/operators');\n+const { combineLatest } = require('rxjs');\n-const metadata = {\n- db: {\n- item: {\n+const itemMeta$ = getAllPages('ht...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: metadata generator, might be used some day, idk yet
1
chore
null
815,595
10.05.2019 18:27:06
-28,800
a7885b69f93cb1c375453f75c3e6d54d37b0eed1
feat: Stingify unsigned numbers
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ use ckb_core::transaction::{\nCapacity, CellInput, CellOutput, OutPoint, ProposalShortId, Transaction, TransactionBuilder,\n};\nuse ckb_core::uncle::UncleBlock;\n-use ckb_core::{Bytes, Cycle, Version};\n+use ckb_core::{BlockNumber, Bytes, Cycle, Version}...
Rust
MIT License
nervosnetwork/ckb
feat: Stingify unsigned numbers
1
feat
null
273,683
10.05.2019 18:34:32
-7,200
e523b0a1f27038ae0b3d60a5114dd0d3c245da7e
fix(filesystem): get ref id from node object
[ { "change_type": "MODIFY", "diff": "@@ -69,8 +69,8 @@ class FilesystemSource {\nfor (const fieldName in this.refs) {\nconst ref = this.refs[fieldName]\n- if (ref.create && node.fields[fieldName]) {\n- const value = node.fields[fieldName]\n+ if (ref.create && node[fieldName]) {\n+ const value = node[fieldNam...
JavaScript
MIT License
gridsome/gridsome
fix(filesystem): get ref id from node object (#415)
1
fix
filesystem
304,907
10.05.2019 19:15:39
-7,200
c6c085b4d87805b87adaa525bed4c812a5524011
docs(grammar): fix typos
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,7 @@ The parser directly implements the following grammar.\nReturnStatement = \"return\" Expression .\nExpressionStatement = Expression .\nExpression = ConditionalExpression .\n- ConditionalExpression = LogicalExpression\n+ ConditionalExpression = LogicalOrEx...
Go
MIT License
influxdata/flux
docs(grammar): fix typos (#1269)
1
docs
grammar
815,595
10.05.2019 19:57:53
-28,800
eefb781acf7b604b81b9b1d71d42ff86159ab3e5
chore: Adjust README.md to stringify numbers
[ { "change_type": "MODIFY", "diff": "@@ -53,7 +53,7 @@ echo '{\n\"previous_output\": {\n\"block_hash\": \"0xca97a033aa9765914bc0b7887ff8723037614df11d06783555ff97e9a0e72b55\",\n\"cell\": {\n- \"index\": 0,\n+ \"index\": \"0\",\n\"tx_hash\": \"0x602b713fac38c0224bc2e8ba0ec9c8363d7d1e508897b33c32f45d7554883c81...
Rust
MIT License
nervosnetwork/ckb
chore: Adjust README.md to stringify numbers
1
chore
null
531,793
10.05.2019 20:06:02
-3,600
f50ac75363d52be22963ba259f6c4ad231d9b3cc
fix(ui): fix alert menu content being under other alert groups Because every alert group uses 'position: absolute' our menu content rendered after clicking on group header or each alert dropdown is hidden under neighbour groups. To fix this we'll add 'z-index: 100' to the group with currently open menu.
[ { "change_type": "MODIFY", "diff": "@@ -95,22 +95,29 @@ const AlertMenu = observer(\ngroup: APIGroup.isRequired,\nalert: APIAlert.isRequired,\nalertStore: PropTypes.instanceOf(AlertStore).isRequired,\n- silenceFormStore: PropTypes.instanceOf(SilenceFormStore).isRequired\n+ silenceFormStore: PropTypes.instan...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): fix alert menu content being under other alert groups Because every alert group uses 'position: absolute' our menu content rendered after clicking on group header or each alert dropdown is hidden under neighbour groups. To fix this we'll add 'z-index: 100' to the group with currently open menu.
1
fix
ui
815,593
10.05.2019 21:01:14
-28,800
b252882e8e95ff9e6bb27c308ffc8b0c0ad44bfe
fix: compact block message flood
[ { "change_type": "MODIFY", "diff": "@@ -81,6 +81,7 @@ impl<'a, CS: ChainStore + 'static> CompactBlockProcess<'a, CS> {\n|| self.relayer.shared.get_block(&block_hash).is_some()\n{\ndebug!(target: \"relay\", \"already processed compact block {}\", block_hash);\n+ return Ok(());\n} else {\nlet resolver = Heade...
Rust
MIT License
nervosnetwork/ckb
fix: compact block message flood
1
fix
null
447,439
10.05.2019 22:51:52
14,400
7d159ab76e1d8188da77a533e344b16c949e73c8
chore: improve canary publishing
[ { "change_type": "MODIFY", "diff": "@@ -89,11 +89,10 @@ jobs:\n- run: git config --global user.name \"TheAdmin\"\n- run: yarn install\n- run:\n- name: Create .npmrc file\n- command: |\n- touch .npmrc;\n- echo \"//registry.npmjs.org/:_authToken=${NPM_TOKEN}\" >> .npmrc\n- - run: yarn publish:canary\n+ name: ...
JavaScript
MIT License
nexxtway/react-rainbow
chore: improve canary publishing
1
chore
null
273,683
11.05.2019 01:25:44
-7,200
81bb04717224204922f161313bd2896ac7d2448f
fix(store): create reference to node instance Eg. `store.createReference(node)`
[ { "change_type": "MODIFY", "diff": "@@ -32,8 +32,10 @@ const nodes = [\nrefList: [\n{ typeName: 'Post1', id: '1' },\n{ typeName: 'Post2', id: '1' },\n- { typeName: 'Post3', id: '1' }\n+ { typeName: 'Post3', id: '1' },\n+ { typeName: undefined, id: '1' }\n],\n+ invalidRef: { typeName: undefined, id: '1' },\n...
JavaScript
MIT License
gridsome/gridsome
fix(store): create reference to node instance Eg. `store.createReference(node)`
1
fix
store
815,593
11.05.2019 10:35:36
-28,800
7c92d300a9fc6b4d3c61e274cc87f4b8c3743818
fix: change default block assembler code hash
[ { "change_type": "MODIFY", "diff": "@@ -82,7 +82,7 @@ txs_verify_cache_size = 100000\n[block_assembler]\n# value is set as always success binary hash\n-code_hash = \"0x0000000000000000000000000000000000000000000000000000000000000001\"\n+code_hash = \"0x28e83a1277d48add8e72fadaa9248559e1b632bab2bd60b27955ebc...
Rust
MIT License
nervosnetwork/ckb
fix: change default block assembler code hash
1
fix
null
273,683
11.05.2019 10:58:26
-7,200
a7a6e17e0d4a66bc04b90b50303a9b78972e7d9b
fix(pages): set page context in dev mode The page context was an empty object if the template had a page-query.
[ { "change_type": "MODIFY", "diff": "@@ -40,9 +40,9 @@ module.exports = async (app, options = {}) => {\nmessage: err.message,\nstringified: err.toString()\n}),\n- extensions ({ variables: { path }}) {\n- if (path) {\n- const page = app.pages.findPage({ path })\n+ extensions ({ variables: { __path }}) {\n+ if...
JavaScript
MIT License
gridsome/gridsome
fix(pages): set page context in dev mode (#417) The page context was an empty object if the template had a page-query.
1
fix
pages
217,922
11.05.2019 12:56:26
-7,200
0373d655257f8c2a23e99139837d16bfeba11370
chore: more data for the item page
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,6 @@ 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: more data for the item page
1
chore
null
815,593
11.05.2019 12:56:59
-28,800
adfa3e8dbf3612e2734e95900360fbc4696540be
test: add transaction_relay_multiple test
[ { "change_type": "MODIFY", "diff": "@@ -26,6 +26,7 @@ bytes = \"0.4.12\"\ncrossbeam-channel = \"0.3\"\nflatbuffers = \"0.6.0\"\nregex = \"1\"\n+rayon = \"1.0\"\n# Prevent this from interfering with workspaces\n[workspace]\n", "new_path": "test/Cargo.toml", "old_path": "test/Cargo.toml" }, { ...
Rust
MIT License
nervosnetwork/ckb
test: add transaction_relay_multiple test
1
test
null
471,517
11.05.2019 12:58:41
-7,200
b943f53c0b30f61ccac595d4b718bae110fdae84
fix: recommend putting index.html into the root folder
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ npm i -D owc-dev-server lit-element\n<!doctype html>\n<html>\n<head>\n- <script type=\"module\" src=\"./my-component.js\"></script>\n+ <script type=\"module\" src=\"./src/my-component.js\"></script>\n</head>\n<body>\n<my-component></my-component>\n", ...
JavaScript
MIT License
open-wc/open-wc
fix: recommend putting index.html into the root folder
1
fix
null
217,922
11.05.2019 13:04:09
-7,200
86b3ebc9e2d435af223d25652339cd644e3f9241
chore: no more timers on non-timed nodes
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import { Pipe, PipeTransform } from '@angular/core';\nimport { AlarmDisplay } from './alarm-display';\nimport { Alarm } from './alarm';\nimport { AlarmsFacade } from './+state/alarms.facade';\n-import { combineLatest, Observable } from 'rxjs';\n+import { c...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: no more timers on non-timed nodes
1
chore
null
807,853
11.05.2019 13:41:43
25,200
6a7448daa8a6737867da5e0cad8c27233f19eb5a
feat(import): Add `--preserve-commit` option
[ { "change_type": "MODIFY", "diff": "@@ -52,3 +52,13 @@ When importing repositories, you can specify the destination directory by the di\n```\n$ lerna import ~/Product --dest=utilities\n```\n+\n+### `--preserve-commit`\n+\n+Each git commit has an **author** and a **committer** (with a separate date for each)...
JavaScript
MIT License
lerna/lerna
feat(import): Add `--preserve-commit` option (#2079)
1
feat
import
807,849
11.05.2019 13:52:38
25,200
e7a6e787f40530f77d608ddd7328e3b077fd6142
chore(deps): Upgrade transitive fsevents to node v12-compatible version
[ { "change_type": "MODIFY", "diff": "\"integrity\": \"sha1-FQStJSMVjKpA20onh8sBQRmU6k8=\"\n},\n\"fsevents\": {\n- \"version\": \"1.2.8\",\n- \"resolved\": \"https://registry.npmjs.org/fsevents/-/fsevents-1.2.8.tgz\",\n- \"integrity\": \"sha512-tPvHgPGB7m40CZ68xqFGkKuzN+RnpGmSV+hgeKxhRpbxdqKXUFJGC3yonBOLzQBcJ...
JavaScript
MIT License
lerna/lerna
chore(deps): Upgrade transitive fsevents to node v12-compatible version
1
chore
deps
815,593
11.05.2019 14:04:58
-28,800
e9fddd2232e4280e3979ad54c85b58701e9d0d9a
chore: rebase and add test helper method
[ { "change_type": "MODIFY", "diff": "@@ -348,4 +348,14 @@ impl Node {\nself.rewrite_spec(&spec_config_path)?;\nOk(())\n}\n+\n+ pub fn assert_tx_pool_size(&self, pending_size: u64, staging_size: u64) {\n+ let tx_pool_info = self\n+ .rpc_client()\n+ .tx_pool_info()\n+ .call()\n+ .expect(\"rpc call tx_pool_info...
Rust
MIT License
nervosnetwork/ckb
chore: rebase and add test helper method
1
chore
null
807,849
11.05.2019 14:09:17
25,200
ea7c20dfc2d65d170e79c0ef86e4ef82cce1a98d
fix(run-lifecycle): Bump `npm-lifecycle` dependency to avoid noisy audit warning
[ { "change_type": "MODIFY", "diff": "\"requires\": {\n\"@lerna/npm-conf\": \"file:utils/npm-conf\",\n\"figgy-pudding\": \"^3.5.1\",\n- \"npm-lifecycle\": \"^2.1.0\",\n+ \"npm-lifecycle\": \"^2.1.1\",\n\"npmlog\": \"^4.1.2\"\n}\n},\n", "new_path": "package-lock.json", "old_path": "package-lock.json" ...
JavaScript
MIT License
lerna/lerna
fix(run-lifecycle): Bump `npm-lifecycle` dependency to avoid noisy audit warning
1
fix
run-lifecycle
807,849
11.05.2019 14:27:52
25,200
98e77cf9752b6d7c8d986877b153bfc5d17bd4bb
refactor(run): Ensure lexical execution respects concurrency and streaming options
[ { "change_type": "MODIFY", "diff": "@@ -187,6 +187,25 @@ describe(\"RunCommand\", () => {\n\"package-standalone\",\n]);\n});\n+\n+ it(\"optionally streams output\", async () => {\n+ const testDir = await initFixture(\"toposort\");\n+\n+ await lernaRun(testDir)(\"env\", \"--no-sort\", \"--stream\");\n+\n+ ex...
JavaScript
MIT License
lerna/lerna
refactor(run): Ensure lexical execution respects concurrency and streaming options
1
refactor
run
815,601
11.05.2019 14:35:03
-28,800
0bedcde8adb06632bbcdd1b07a7454c37732784d
refactor: improve core type fmt debug
[ { "change_type": "MODIFY", "diff": "@@ -302,22 +302,21 @@ impl<CS: ChainStore + 'static> ChainService<CS> {\n}\nnew_best_block = true;\n- total_difficulty = cannon_total_difficulty;\n+ total_difficulty = cannon_total_difficulty.clone();\n} else {\nbatch.insert_block_ext(&block.header().hash(), &ext)?;\n}\nb...
Rust
MIT License
nervosnetwork/ckb
refactor: improve core type fmt debug
1
refactor
null
815,593
11.05.2019 15:22:09
-28,800
d79d0e23c4a6ab791415ff9db114456d83660571
chore: change all hash log output to `{:x}`
[ { "change_type": "MODIFY", "diff": "@@ -198,7 +198,7 @@ impl<CS: ChainStore + 'static> ChainService<CS> {\n// process_block will do block verify\n// but invoker should guarantee block header be verified\npub(crate) fn process_block(&mut self, block: Arc<Block>) -> Result<(), FailureError> {\n- debug!(target...
Rust
MIT License
nervosnetwork/ckb
chore: change all hash log output to `{:x}`
1
chore
null
815,595
11.05.2019 16:11:56
-28,800
9f30c4b0eb0f990c3a2ecb6a6715e847ee53bb58
feat: Check compact block prefill cellbase
[ { "change_type": "MODIFY", "diff": "@@ -35,6 +35,11 @@ impl PrefilledVerifier {\nlet short_ids = &block.short_ids;\nlet txs_len = prefilled_transactions.len() + short_ids.len();\n+ // Check the prefilled_transactions appears to have included the cellbase\n+ if prefilled_transactions.is_empty() || prefilled_...
Rust
MIT License
nervosnetwork/ckb
feat: Check compact block prefill cellbase
1
feat
null
531,793
11.05.2019 18:51:28
-3,600
e2dc16b1b274683e2bcd5473fbc3f4f7cd504daf
fix(ui): remove pointless prop definition It's defined on Tooltip instead of the wrapper and it's not needed
[ { "change_type": "MODIFY", "diff": "import React from \"react\";\n-import PropTypes from \"prop-types\";\nimport { Tooltip } from \"react-tippy\";\n@@ -10,14 +9,11 @@ const TooltipWrapper = ({ children, ...props }) => (\ndelay={[1000, 100]}\nsize=\"small\"\ntouchHold={true}\n- style={{ display: \"inline-blo...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): remove pointless prop definition It's defined on Tooltip instead of the wrapper and it's not needed
1
fix
ui
815,609
11.05.2019 18:53:02
-28,800
3b79ca7988b630d0ce155baadccb7454e8b62f9c
test: add a benchmark for fetch CellOutput
[ { "change_type": "MODIFY", "diff": "@@ -33,3 +33,7 @@ harness = false\n[[bench]]\nname = \"process_block\"\nharness = false\n+\n+[[bench]]\n+name = \"fetch_cell_output\"\n+harness = false\n", "new_path": "benches/Cargo.toml", "old_path": "benches/Cargo.toml" }, { "change_type": "ADD", "d...
Rust
MIT License
nervosnetwork/ckb
test: add a benchmark for fetch CellOutput
1
test
null
531,793
11.05.2019 19:39:45
-3,600
7cb28a3f344db19d900af0ba3f11585d52dc6be1
fix(backend): bump gin-gonic/gin, replace conflicting ugorji/go version
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ require (\ngithub.com/gin-contrib/gzip v0.0.1\ngithub.com/gin-contrib/static v0.0.0-20190511132412-c1cdf9c9ec7b\ngithub.com/gin-gonic/contrib v0.0.0-20190510073033-87e961e51ccc\n- github.com/gin-gonic/gin v1.3.0\n+ github.com/gin-gonic/gin v1.4.0\ngithub...
TypeScript
Apache License 2.0
prymitive/karma
fix(backend): bump gin-gonic/gin, replace conflicting ugorji/go version
1
fix
backend
815,573
11.05.2019 20:03:15
-28,800
5ca709769bfccbaeb85ea3743cdfa503ff3a28e4
fix: Update p2p to 0.2.0-alpha.11 fix send message timeout bug
[ { "change_type": "MODIFY", "diff": "@@ -560,10 +560,10 @@ 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.10 (registry+https://github...
Rust
MIT License
nervosnetwork/ckb
fix: Update p2p to 0.2.0-alpha.11 fix send message timeout bug
1
fix
null
273,683
11.05.2019 20:51:38
-7,200
f2d3acc8e8909166eb970c62dbf65d820a55555f
fix(remark): let plugins set custom stringifier
[ { "change_type": "MODIFY", "diff": "@@ -119,11 +119,13 @@ class RemarkTransformer {\n}\ncreateProcessor (options = {}) {\n- return unified()\n- .data('transformer', this)\n+ const processor = unified().data('transformer', this)\n+ const plugins = createPlugins(this.options, options)\n+\n+ return processor\n...
JavaScript
MIT License
gridsome/gridsome
fix(remark): let plugins set custom stringifier
1
fix
remark
815,601
11.05.2019 21:08:33
-28,800
a27a0f34b22ed06c93cdc62ddbd5209b5d977b24
fix: proposal finalize
[ { "change_type": "MODIFY", "diff": "@@ -222,8 +222,7 @@ impl<CS: ChainStore + 'static> ChainService<CS> {\nlet mut fork = ForkChanges::default();\nlet mut chain_state = self.shared.chain_state().lock();\nlet mut txs_verify_cache = self.shared.txs_verify_cache().lock();\n- let tip_number = chain_state.tip_nu...
Rust
MIT License
nervosnetwork/ckb
fix: proposal finalize
1
fix
null
815,593
11.05.2019 22:34:58
-28,800
72a86425b26e526fe39a7d2905d58abb6f7d097d
test: add more chain fork test and tweak test helper method
[ { "change_type": "MODIFY", "diff": "@@ -51,7 +51,7 @@ fmt: setup-ckb-test ## Check Rust source code format to keep to the same style.\nclippy: setup-ckb-test ## Run linter to examine Rust source codes.\ncargo clippy ${VERBOSE} --all --all-targets --all-features -- -D warnings -D clippy::clone_on_ref_ptr -D ...
Rust
MIT License
nervosnetwork/ckb
test: add more chain fork test and tweak test helper method
1
test
null
815,601
11.05.2019 22:46:38
-28,800
18e0a795724cc082d7684257bc7bde0c7a54db13
feat: enforce resolve txs by order
[ { "change_type": "MODIFY", "diff": "@@ -549,7 +549,14 @@ impl<CS: ChainStore + 'static> ChainService<CS> {\nlet mut seen_inputs = FnvHashSet::default();\nlet cell_set_overlay =\nchain_state.new_cell_set_overlay(&cell_set_diff, &outputs);\n- let block_cp = BlockCellProvider::new(b);\n+ let block_cp = match B...
Rust
MIT License
nervosnetwork/ckb
feat: enforce resolve txs by order
1
feat
null
531,793
11.05.2019 22:51:13
-3,600
c374d627e639df83c3b4978d0eb9f04e30ccaa76
fix(ui): matcher badge and close icon css fixes Counter badge is misaligned, fix it by setting line-height. Close icon border padding is different than parent, ensure it's inherited to avoid mismatch
[ { "change_type": "MODIFY", "diff": "@@ -275,7 +275,7 @@ exports[`<CustomMultiSelect /> matches snapshot with isMulti=true and a value 1`\n<div class=\\\\\"css-xbn6jz react-select__multi-value__label\\\\\">\nfoo\n</div>\n- <div class=\\\\\"css-n82uvk react-select__multi-value__remove\\\\\">\n+ <div class=\\\...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): matcher badge and close icon css fixes Counter badge is misaligned, fix it by setting line-height. Close icon border padding is different than parent, ensure it's inherited to avoid mismatch
1
fix
ui
447,440
11.05.2019 23:21:12
18,000
6be44b0d3a0c4a61c62641ef39a821af5c6927ef
docs: update sketch file of components design
[ { "change_type": "MODIFY", "diff": "@@ -8,12 +8,10 @@ export default function RainbowComponents() {\ncategory=\"library\"\ntitle=\"Rainbow Components\"\ndescription=\"Rainbow Components is a customizable and very easy to use library with more than 40 fully tested components.\"\n- viewsAmount=\"20\"\n- downl...
JavaScript
MIT License
nexxtway/react-rainbow
docs: update sketch file of components design (#731)
1
docs
null
531,793
11.05.2019 23:48:10
-3,600
5180461ed3ec34c5c03d7ee20f484517b06c2fea
chore(backend): add test coverage for metrics handler
[ { "change_type": "MODIFY", "diff": "@@ -100,6 +100,12 @@ func setupRouter(router *gin.Engine) {\nrouter.NoRoute(notFound)\n}\n+func setupMetrics(router *gin.Engine) {\n+ prom := ginprometheus.NewPrometheus(\"gin\")\n+ prom.MetricsPath = getViewURL(\"/metrics\")\n+ prom.Use(router)\n+}\n+\nfunc setupUpstream...
TypeScript
Apache License 2.0
prymitive/karma
chore(backend): add test coverage for metrics handler
1
chore
backend
531,793
12.05.2019 09:03:08
-3,600
d76862fce9cefca61a54691a28cc33a24e1c4114
fix(docs): use consistent style for code blocks
[ { "change_type": "MODIFY", "diff": "@@ -12,11 +12,15 @@ environment variables:\nExample with flags:\n+```shell\nkarma --config.file docs/example.yaml\n+```\nExample with environment variables:\n+```shell\nCONFIG_FILE=\"docs/example.yaml\"\n+```\n### Alertmanagers\n@@ -705,8 +709,10 @@ To set the `uri` key f...
TypeScript
Apache License 2.0
prymitive/karma
fix(docs): use consistent style for code blocks
1
fix
docs
815,595
12.05.2019 10:20:35
-28,800
03ccb8463831a275c54244f0061f2a74591c6cf3
feat: Move DryRunResult to jsonrpc-types
[ { "change_type": "MODIFY", "diff": "@@ -7,9 +7,8 @@ use ckb_store::ChainStore;\nuse ckb_verification::ScriptVerifier;\nuse jsonrpc_core::{Error, Result};\nuse jsonrpc_derive::rpc;\n-use jsonrpc_types::Transaction;\n+use jsonrpc_types::{Cycle, DryRunResult, Transaction};\nuse numext_fixed_hash::H256;\n-use s...
Rust
MIT License
nervosnetwork/ckb
feat: Move DryRunResult to jsonrpc-types
1
feat
null
815,595
12.05.2019 10:43:24
-28,800
168792ac3f3268bda64343f6a492287cb79503e6
test: complete rpc-client
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ use ckb_core::script::Script;\nuse ckb_core::transaction::{CellInput, CellOutput, OutPoint, Transaction, TransactionBuilder};\nuse ckb_core::{capacity_bytes, BlockNumber, Bytes, Capacity};\nuse jsonrpc_client_http::{HttpHandle, HttpTransport};\n-use jsonrp...
Rust
MIT License
nervosnetwork/ckb
test: complete rpc-client
1
test
null
531,793
12.05.2019 11:09:34
-3,600
78660cd3746a6d91acce1e6a08fcdc49b781b112
feat(ui): animate alert counter on changes
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,8 @@ import ReactResizeDetector from \"react-resize-detector\";\nimport IdleTimer from \"react-idle-timer\";\n+import Flash from \"react-reveal/Flash\";\n+\nimport { AlertStore } from \"Stores/AlertStore\";\nimport { Settings } from \"Stores/Settings\";\nimport...
TypeScript
Apache License 2.0
prymitive/karma
feat(ui): animate alert counter on changes
1
feat
ui
815,595
12.05.2019 11:53:27
-28,800
4b69ff593ae6cb33cb77c990bb00dd76c9c6871c
test: Add compact block tests
[ { "change_type": "MODIFY", "diff": "@@ -6,9 +6,10 @@ use ckb_network::{\nCKBProtocol, CKBProtocolContext, CKBProtocolHandler, NetworkConfig, NetworkController,\nNetworkService, NetworkState, PeerIndex, ProtocolId,\n};\n-use crossbeam_channel::{self, Receiver, Sender};\n+use crossbeam_channel::{self, Receive...
Rust
MIT License
nervosnetwork/ckb
test: Add compact block tests
1
test
null
531,793
12.05.2019 11:53:39
-3,600
fbdd171a85e22fd0215375909832c3cee8dc7f9f
chore(tests): add more asserts in metrics tests
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,7 @@ package main\nimport (\n\"net/http\"\n\"net/http/httptest\"\n+ \"strings\"\n\"testing\"\n\"github.com/prymitive/karma/internal/config\"\n@@ -39,4 +40,15 @@ func TestMetrics(t *testing.T) {\nif resp.Code != http.StatusOK {\nt.Errorf(\"GET /metrics returned ...
TypeScript
Apache License 2.0
prymitive/karma
chore(tests): add more asserts in metrics tests
1
chore
tests
815,598
12.05.2019 11:58:03
-28,800
ed6a61c86e5cefb775b01fabaec61f1457d605b5
chore: ensure license in Cargo.toml
[ { "change_type": "MODIFY", "diff": "@@ -61,7 +61,7 @@ security-audit: ## Use cargo-audit to audit Cargo.lock for crates with security\n##@ Continuous Integration\nci: ## Run recipes for CI.\n-ci: fmt clippy security-audit test\n+ci: cargo-license fmt clippy security-audit test\ngit diff --exit-code Cargo.lo...
Rust
MIT License
nervosnetwork/ckb
chore: ensure license in Cargo.toml
1
chore
null
815,598
12.05.2019 12:02:23
-28,800
bae9a3760ca1089e2ef3ff64d487d05e9cf13cb6
docs: add section about dynamically linking rocksdb
[ { "change_type": "MODIFY", "diff": "@@ -51,6 +51,18 @@ sudo pacman -Sy git gcc pkgconf clang\nbrew install autoconf libtool\n```\n+### Adding Environment Variables\n+\n+If your OS contains pre-compiled `rocksdb` or `snappy` libraries,\n+you may setup `ROCKSDB_LIB_DIR` and/or `SNAPPY_LIB_DIR` environment var...
Rust
MIT License
nervosnetwork/ckb
docs: add section about dynamically linking rocksdb (#719)
1
docs
null
531,793
12.05.2019 12:11:10
-3,600
5dd3b35f358ebdd5f6526aec8849adb36cedcf71
chore(backend): move metrics to the main package
[ { "change_type": "MODIFY", "diff": "@@ -28,8 +28,8 @@ const (\n)\ntype alertmanagerMetrics struct {\n- cycles float64\n- errors map[string]float64\n+ Cycles float64\n+ Errors map[string]float64\n}\ntype alertmanagerStatus struct {\n@@ -61,7 +61,7 @@ type Alertmanager struct {\nlastError string\nstatus alert...
TypeScript
Apache License 2.0
prymitive/karma
chore(backend): move metrics to the main package
1
chore
backend
815,595
12.05.2019 12:23:30
-28,800
f086306b0890ebcedb85f05b737124bbe88e2e80
test: Enable RUST_BACKTRACE
[ { "change_type": "MODIFY", "diff": "@@ -61,6 +61,7 @@ impl Node {\nself.init_config_file().expect(\"failed to init config file\");\nlet child_process = Command::new(self.binary.to_owned())\n+ .env(\"RUST_BACKTRACE\", \"full\")\n.args(&[\"-C\", &self.dir, \"run\"])\n.stdin(Stdio::null())\n.stdout(Stdio::null...
Rust
MIT License
nervosnetwork/ckb
test: Enable RUST_BACKTRACE
1
test
null
815,595
12.05.2019 13:06:24
-28,800
09c2508ab455951d781607d14bdfcf3cbef4cf90
refactor: Replace sleep with wait_until
[ { "change_type": "MODIFY", "diff": "@@ -3,7 +3,6 @@ mod node;\nmod rpc;\npub mod specs;\nmod utils;\n-mod utils;\nuse ckb_core::BlockNumber;\nuse regex::Regex;\n", "new_path": "test/src/lib.rs", "old_path": "test/src/lib.rs" }, { "change_type": "MODIFY", "diff": "use crate::specs::TestPr...
Rust
MIT License
nervosnetwork/ckb
refactor: Replace sleep with wait_until
1
refactor
null
815,605
12.05.2019 13:16:19
-28,800
fc76c7e15c2a6a7cd95d694392b02ea05d7a64a6
fix: fix cycle costs
[ { "change_type": "MODIFY", "diff": "@@ -144,12 +144,12 @@ impl<'a, Mac: SupportMachine, CS: LazyLoadCellOutput> Syscalls<Mac> for LoadCell\n}\nfn ecall(&mut self, machine: &mut Mac) -> Result<bool, VMError> {\n- let load_by_field = match machine.registers()[A7].to_u64() {\n- LOAD_CELL_SYSCALL_NUMBER => fals...
Rust
MIT License
nervosnetwork/ckb
fix: fix cycle costs
1
fix
null
531,793
12.05.2019 13:19:24
-3,600
2efa67ebd3f4d5004422d7c3a87cda9203bf8aad
chore(tests): add more backend test coverage
[ { "change_type": "MODIFY", "diff": "@@ -132,3 +132,70 @@ func TestStripReceivers(t *testing.T) {\nt.Errorf(\"Expected no alerts after stripping all receivers, got %d\", len(alerts))\n}\n}\n+\n+func TestClearData(t *testing.T) {\n+ log.SetLevel(log.PanicLevel)\n+ httpmock.Activate()\n+ for _, version := rang...
TypeScript
Apache License 2.0
prymitive/karma
chore(tests): add more backend test coverage
1
chore
tests
217,922
12.05.2019 13:29:12
-7,200
d92ccb2fbb3a0082f9ef34773b5439400b22c73d
chore: more details for item pages
[ { "change_type": "MODIFY", "diff": "@@ -47,6 +47,8 @@ export class Item implements I18nData {\nfates?: number[];\nquests?: number[];\nleves?: number[];\n+ requiredByLeves?: number[];\n+ usedInQuest?: number[];\nsupply?: {\ncount: number;\nxp: number;\n", "new_path": "apps/client/src/app/model/garland-to...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: more details for item pages
1
chore
null
815,601
12.05.2019 13:33:45
-28,800
d58623822d6da7f135dbba6534e035b0af01d238
refactor: don't repeat resolve tx when calculate fee
[ { "change_type": "MODIFY", "diff": "@@ -711,6 +711,7 @@ dependencies = [\n\"lru-cache 0.1.0 (git+https://github.com/nervosnetwork/lru-cache?rev=b36a4d1)\",\n\"numext-fixed-hash 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"numext-fixed-uint 0.1.4 (registry+https://github.com/rust-lang/...
Rust
MIT License
nervosnetwork/ckb
refactor: don't repeat resolve tx when calculate fee
1
refactor
null
815,605
12.05.2019 14:50:37
-28,800
3df23119fa845ae248f22679e313369e550289d1
feat: update default lock script Included secp lock script is compiled from
[ { "change_type": "MODIFY", "diff": "@@ -9,10 +9,10 @@ code_hash = \"0x28e83a1277d48add8e72fadaa9248559e1b632bab2bd60b27955ebc4c03800a5\"\nscript_hash = \"0x9a9a6bdbc38d4905eace1822f85237e3a1e238bb3f277aa7b7c8903441123510\"\n[ckb_testnet]\n-genesis = \"0x89c2752ee8583cfc7342e906e624c1fe15d74e9b5dfd587024302f...
Rust
MIT License
nervosnetwork/ckb
feat: update default lock script Included secp lock script is compiled from https://github.com/nervosnetwork/ckb-system-scripts/blob/f39b01aa8329594b0dea48abbec81176bb55a130/c/secp256k1_blake160_sighash_all.c
1
feat
null
531,793
12.05.2019 15:18:50
-3,600
20e58f06839966a5acf4bfed7420dae47f712463
feat(backend): graceful shutdown support
[ { "change_type": "MODIFY", "diff": "package main\nimport (\n+ \"context\"\n\"fmt\"\n\"html/template\"\n\"net/http\"\n+ \"os\"\n+ \"os/signal\"\n\"path\"\n\"strings\"\n+ \"syscall\"\n\"time\"\n\"github.com/prymitive/karma/internal/alertmanager\"\n@@ -231,10 +235,28 @@ func main() {\nlog.Fatalf(\"Failed to se...
TypeScript
Apache License 2.0
prymitive/karma
feat(backend): graceful shutdown support
1
feat
backend
815,595
12.05.2019 15:53:11
-28,800
fcc03e636177af07fee33c50b3da9b3304cde62b
test: Add utils module
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,8 @@ mod net;\nmod node;\nmod rpc;\npub mod specs;\n+mod utils;\n+mod utils;\nuse ckb_core::BlockNumber;\nuse regex::Regex;\n", "new_path": "test/src/lib.rs", "old_path": "test/src/lib.rs" }, { "change_type": "MODIFY", "diff": "@@ -49,8 +49,...
Rust
MIT License
nervosnetwork/ckb
test: Add utils module
1
test
null
815,573
12.05.2019 16:12:22
-28,800
726ae380393fe2649836ed8efcd8f87451b9334c
perf: Upgrade p2p version to alpha 12 Change tokio run threads to 4
[ { "change_type": "MODIFY", "diff": "@@ -560,7 +560,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.11 (registry+https://github.c...
Rust
MIT License
nervosnetwork/ckb
perf: Upgrade p2p version to alpha 12 Change tokio run threads to 4
1
perf
null
127,946
12.05.2019 16:23:34
-10,800
b6ec1a253dadb28bbadd0b37bb6837943729de98
fix(nav): nav details adjusments
[ { "change_type": "RENAME", "diff": "", "new_path": "design/assets/src/icons/svg/icon-live-chat.svg", "old_path": "design/assets/src/icons/svg/icon-left-chat.svg" }, { "change_type": "MODIFY", "diff": "-<svg width=\"17\" height=\"19\" viewBox=\"0 0 17 19\" fill=\"none\" xmlns=\"http://www...
TypeScript
MIT License
coingaming/moon-design
fix(nav): nav details adjusments
1
fix
nav
447,440
12.05.2019 17:06:09
18,000
65ac07ee881fd0dd7535bbc6a5efa8ceb9629e5a
fix: fix pull request template
[ { "change_type": "RENAME", "diff": "@@ -5,10 +5,11 @@ Please begin the title with `type: [ imperative message ]`\nfix: #\nChanges proposed in this PR:\n+\n-\n-\n-\n-- [ ] I have followed (at least) the [PR section of the contributing guide](https://github.com/90milesbridge/react-rainbow/blob/master/CONTRIBU...
JavaScript
MIT License
nexxtway/react-rainbow
fix: fix pull request template (#732)
1
fix
null
217,922
12.05.2019 19:06:01
-7,200
fa70820d302e7df5ce3e9ad81fabbee7b36bf9ef
chore: missing translation fix
[ { "change_type": "MODIFY", "diff": "\"Default_talk\": \"Base dialogues\",\n\"Quests\": \"Quests\",\n\"Shops\": \"Shops\",\n- \"Leves\": \"Leves\"\n+ \"Leves\": \"Leves\",\n+ \"Trades\": \"Trades\"\n},\n\"FIGHT_TYPE\": {\n\"Boss\": \"Boss\",\n", "new_path": "apps/client/src/assets/i18n/en.json", "old...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: missing translation fix
1
chore
null
471,470
12.05.2019 20:35:05
-7,200
7d8716ca0cf65b6f5546c0bd861037c13fc7600d
docs: add lit-plugin ide extension
[ { "change_type": "MODIFY", "diff": "@@ -35,5 +35,7 @@ We recommend the following plugins:\nGet ESLint feedback directly in your IDE => more details under [Linting](./guide/linting)\n* [lit-html](https://marketplace.visualstudio.com/items?itemName=bierner.lit-html)\nHighlights all your html tagged template l...
JavaScript
MIT License
open-wc/open-wc
docs: add lit-plugin ide extension (#449)
1
docs
null
743,863
12.05.2019 21:03:12
25,200
fc134766d33681c319e48de1259ca12acf18735e
chore: update standard-verison dependency
[ { "change_type": "MODIFY", "diff": "\"nyc\": \"^14.1.0\",\n\"rimraf\": \"^2.6.3\",\n\"standard\": \"^12.0.1\",\n- \"standard-version\": \"^6.0.0\",\n+ \"standard-version\": \"^6.0.1\",\n\"which\": \"^1.3.1\",\n\"yargs-test-extends\": \"^1.0.1\"\n},\n", "new_path": "package.json", "old_path": "packag...
JavaScript
MIT License
yargs/yargs
chore: update standard-verison dependency
1
chore
null
743,863
12.05.2019 21:04:57
25,200
a6e67f15a61558d0ba28bfe53385332f0ce5d431
chore(release): 13.2.4
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+### [13.2.4](https://github.com/yargs/yargs/compare/v13.2.3...v13.2.4) (2019-05-13)\n+\n+\n+###...
JavaScript
MIT License
yargs/yargs
chore(release): 13.2.4
1
chore
release
815,601
12.05.2019 21:24:18
-28,800
48e937b32209499bb1e268ad12ddc6b4a8fe5930
chore: lock parking_lot version
[ { "change_type": "MODIFY", "diff": "@@ -1797,7 +1797,7 @@ dependencies = [\n\"env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)\",\n-...
Rust
MIT License
nervosnetwork/ckb
chore: lock parking_lot version
1
chore
null
67,476
12.05.2019 22:56:40
-7,200
76a18beaf15dfc6a9e2399d8840fdeef43d50715
test(if): fix/update integration tests
[ { "change_type": "MODIFY", "diff": "import {\nWritable\n} from '@aurelia/kernel';\n-import { expect } from 'chai';\nimport {\nAccessScope,\naddBinding,\n@@ -9,7 +8,6 @@ import {\nBindingContext,\nBindingMode,\nBindingStrategy,\n- CompositionCoordinator,\nElse,\nIDOM,\nIf,\n@@ -20,7 +18,9 @@ import {\nLifecy...
TypeScript
MIT License
aurelia/aurelia
test(if): fix/update integration tests
1
test
if
67,476
12.05.2019 22:59:58
-7,200
09443b463a6d73464b92e48e852fdbb80ae241fd
chore(array-observer): small test cleanup
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,6 @@ import {\nILifecycle,\ncopyIndexMap,\nICollectionSubscriber,\n- LifecycleFlags,\n} from '@aurelia/runtime';\nimport {\nSpySubscriber,\n@@ -30,7 +29,7 @@ export class SynchronizingCollectionSubscriber implements ICollectionSubscriber\nthis.newArr = newArr;\...
TypeScript
MIT License
aurelia/aurelia
chore(array-observer): small test cleanup
1
chore
array-observer
71,267
12.05.2019 23:55:45
25,200
7863ad329f42c67e847ab0b4c7b5a6e26a9e6940
refactor: L2 constructs should not use TypeScript unions (awslint:props-no-unions) Adds a new awslint:props-no-unions rule which valides that props for L2 constructs do not use TypeScript unions. This is in accordance with the new AWS Construct Library guidelines.
[ { "change_type": "MODIFY", "diff": "@@ -80,7 +80,7 @@ export class ConstructReflection {\n}\nif (!found.isInterfaceType()) {\n- throw new Error(`Expecrting props struct ${this.propsFqn} to be an interface`);\n+ throw new Error(`Expecting props struct ${this.propsFqn} to be an interface`);\n}\nreturn found;\...
TypeScript
Apache License 2.0
aws/aws-cdk
refactor: L2 constructs should not use TypeScript unions (awslint:props-no-unions) (#2430) (#2509) Adds a new awslint:props-no-unions rule which valides that props for L2 constructs do not use TypeScript unions. This is in accordance with the new AWS Construct Library guidelines.
1
refactor
null
815,593
13.05.2019 00:07:13
-28,800
b3d79032a9e69021e54f469869ce424f1f642e83
refactor: stop process relay message on IBD mod
[ { "change_type": "MODIFY", "diff": "@@ -59,9 +59,6 @@ impl<'a, CS: ChainStore + 'static> CompactBlockProcess<'a, CS> {\n);\nreturn Ok(());\n}\n- } else if self.relayer.shared.is_initial_block_download() {\n- // If self is in the IBD state, do nothing\n- return Ok(());\n} else {\ndebug!(target: \"relay\", \"...
Rust
MIT License
nervosnetwork/ckb
refactor: stop process relay message on IBD mod
1
refactor
null
815,593
13.05.2019 00:45:56
-28,800
e52f3a35c65523f7f005bf58da0f6720a703083e
fix: avoiding compact block message flood
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,7 @@ impl<'a, CS: ChainStore> BlockProposalProcess<'a, CS> {\n.into_iter()\n.filter_map(|tx| {\nlet tx_hash = tx.hash();\n- if self.relayer.state.already_known(&tx_hash) {\n+ if self.relayer.state.already_known_tx(&tx_hash) {\nNone\n} else {\nSome((tx_hash.to...
Rust
MIT License
nervosnetwork/ckb
fix: avoiding compact block message flood
1
fix
null
722,013
13.05.2019 10:07:55
18,000
d52feea91f2f2ef93e35b2bd9a430f84df97e258
fix(core): fix Preview.js with pure md files When loading pure markdown files, the system was trying to load the current components module and name which did not exist => fail Closes
[ { "change_type": "MODIFY", "diff": "@@ -76,9 +76,6 @@ class Preview extends Component {\n})\nconst { code, vuex, component, renderRootJsx } = this.props\n-\n- const documentedComponent = component.module.default || component.module\n- component.displayName = cleanComponentName(this.props.component.name)\nif...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix(core): fix Preview.js with pure md files When loading pure markdown files, the system was trying to load the current components module and name which did not exist => fail Closes #411
1
fix
core
306,484
13.05.2019 10:29:57
-7,200
043106c1cfebb8fbae4e03faf5b23df5458bf1c9
feat(localize): add reusable generators for month and weekday names
[ { "change_type": "MODIFY", "diff": "export { formatDate } from './src/date/formatDate.js';\nexport { getDateFormatBasedOnLocale } from './src/date/getDateFormatBasedOnLocale.js';\n+export { getMonthNames } from './src/date/getMonthNames.js';\n+export { getWeekdayNames } from './src/date/getWeekdayNames.js';...
JavaScript
MIT License
ing-bank/lion
feat(localize): add reusable generators for month and weekday names
1
feat
localize
815,605
13.05.2019 10:32:12
-28,800
f8fd67cc83eb851f0834289f4168ac08b97a98d7
feat: upgrade database version This is due to a breaking change in
[ { "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
feat: upgrade database version This is due to a breaking change in #718
1
feat
null
815,605
13.05.2019 10:49:58
-28,800
465924a19fd3782d0e2d6b3680d0fc296bc02f34
fix: fix tests that get broken by rebase
[ { "change_type": "MODIFY", "diff": "@@ -1194,9 +1194,7 @@ mod tests {\n.build()\n.hash()\n.to_owned();\n- let signature = privkey\n- .sign_recoverable(&blake2b_256(transaction_hash).into())\n- .unwrap();\n+ let signature = privkey.sign_recoverable(&transaction_hash).unwrap();\nlet signature_der = signature....
Rust
MIT License
nervosnetwork/ckb
fix: fix tests that get broken by rebase
1
fix
null
815,590
13.05.2019 11:44:29
-28,800
e5e807bf06a90967e6fd9b5fa882cd94838a5a5d
feat: use future_task to avoid blocking
[ { "change_type": "MODIFY", "diff": "@@ -759,13 +759,13 @@ dependencies = [\n\"faketime 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)\",\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+ \...
Rust
MIT License
nervosnetwork/ckb
feat: use future_task to avoid blocking
1
feat
null
807,969
13.05.2019 12:39:07
25,200
c56bda18bd0fd8b36d5dbdba6949d7c0c4692086
feat(publish): Add OTP prompt during publish Fixes
[ { "change_type": "MODIFY", "diff": "@@ -176,7 +176,8 @@ Map {\nexpect(npmPublish).toHaveBeenCalledWith(\nexpect.objectContaining({ name: \"package-1\" }),\n\"/TEMP_DIR/package-1-MOCKED.tgz\",\n- expect.objectContaining({ registry })\n+ expect.objectContaining({ registry }),\n+ expect.objectContaining({ otp:...
JavaScript
MIT License
lerna/lerna
feat(publish): Add OTP prompt during publish (#2084) Fixes #1091
1
feat
publish