author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
815,745
18.05.2019 17:01:13
-10,800
e99493774205edc2b1cfd496c04d9d7ebe77c175
fix: remove unnecessary stopPropagation calls closes
[ { "change_type": "MODIFY", "diff": "@@ -105,7 +105,6 @@ export class NgDropdownPanelComponent implements OnInit, OnChanges, OnDestroy, A\nreturn;\n}\n$event.preventDefault();\n- $event.stopPropagation();\n}\nngOnInit() {\n", "new_path": "src/ng-select/ng-dropdown-panel.component.ts", "old_path": "sr...
TypeScript
MIT License
ng-select/ng-select
fix: remove unnecessary stopPropagation calls closes #1169
1
fix
null
815,745
18.05.2019 17:50:00
-10,800
0afa9c180aedcf8d8474dc2defd7804b1b44d51c
feat(trackByFn): allow to provide custom trackBy function closes
[ { "change_type": "MODIFY", "diff": "@@ -144,6 +144,7 @@ map: {\n| placeholder | `string` | `-` | no | Placeholder text. |\n| [searchable] | `boolean` | `true` | no | Allow to search for value. Default `true`|\n| [searchFn] | `(term: string, item: any) => boolean` | `null` | no | Allow to filter by custom se...
TypeScript
MIT License
ng-select/ng-select
feat(trackByFn): allow to provide custom trackBy function closes #1134
1
feat
trackByFn
815,745
18.05.2019 17:56:12
-10,800
240f4b5da7c2725b0b12dd490141abdbd1205bf6
fix: disable input when max items is selected closes
[ { "change_type": "MODIFY", "diff": "[attr.tabindex]=\"tabIndex\"\n[attr.autocorrect]=\"autoCorrect\"\n[attr.autocapitalize]=\"autoCapitalize\"\n- [readOnly]=\"!searchable\"\n+ [readOnly]=\"!searchable || itemsList.maxItemsSelected\"\n[disabled]=\"disabled\"\n[value]=\"filterValue ? filterValue : ''\"\n(inpu...
TypeScript
MIT License
ng-select/ng-select
fix: disable input when max items is selected closes #1168
1
fix
null
815,745
18.05.2019 18:13:30
-10,800
941217fd7d75eefce3a496461c8c3fdc1820f45e
fix: take into account bindValue if groupValue is used closes
[ { "change_type": "MODIFY", "diff": "@@ -697,7 +697,8 @@ export class NgSelectComponent implements OnDestroy, OnChanges, AfterViewInit, C\nif (this.bindValue) {\nlet value = null;\nif (item.children) {\n- value = item.value[<string>this.groupBy];\n+ const groupKey = this.groupValue ? this.bindValue : <string...
TypeScript
MIT License
ng-select/ng-select
fix: take into account bindValue if groupValue is used closes #1161
1
fix
null
815,745
18.05.2019 18:19:58
-10,800
ab8b661a6b0f484031da30e3b27a09be9e7c4ce2
fix: add tag on tab when isOpen = false closes
[ { "change_type": "MODIFY", "diff": "@@ -53,6 +53,7 @@ import { Component, ChangeDetectionStrategy } from '@angular/core';\n<ng-select [items]=\"[]\"\n[addTag]=\"true\"\n[multiple]=\"true\"\n+ [selectOnTab]=\"true\"\n[isOpen]=\"false\">\n</ng-select>\n---\n", "new_path": "demo/app/examples/tags.component...
TypeScript
MIT License
ng-select/ng-select
fix: add tag on tab when isOpen = false closes #1159
1
fix
null
815,598
18.05.2019 18:37:55
-28,800
1a1e6fa9ee298594dc356eca70c0844fa484fc8c
feat: limit name in chainspec Only `ckb_dev` is allowed in the chainspec loaded from file.
[ { "change_type": "MODIFY", "diff": "@@ -87,49 +87,44 @@ pub struct IssuedCell {\n}\n#[derive(Debug)]\n-pub struct FileNotFoundError;\n-\n-impl FileNotFoundError {\n- fn boxed() -> Box<Self> {\n- Box::new(FileNotFoundError)\n- }\n+pub enum SpecLoadError {\n+ FileNotFound,\n+ ChainNameNotAllowed(String),\n+ G...
Rust
MIT License
nervosnetwork/ckb
feat: limit name in chainspec Only `ckb_dev` is allowed in the chainspec loaded from file.
1
feat
null
815,745
18.05.2019 18:45:21
-10,800
36bc0d236663cf93bb46bcd04fe6b61d1cd36f72
fix: take into account bindLabel when adding tag closes
[ { "change_type": "MODIFY", "diff": "@@ -181,7 +181,7 @@ export class NgSelectComponent implements OnDestroy, OnChanges, AfterViewInit, C\nprivate _items = [];\nprivate _itemsAreUsed: boolean;\nprivate _defaultLabel = 'label';\n- private _primitive = true;\n+ private _primitive;\nprivate _manualOpen: boolean...
TypeScript
MIT License
ng-select/ng-select
fix: take into account bindLabel when adding tag closes #1141
1
fix
null
217,922
18.05.2019 18:49:12
-7,200
6c0753bff15c1a2dd39d2c31de616e9d00d03c2f
fix(db): fixed empty notification when adding an item to a list
[ { "change_type": "MODIFY", "diff": "<ng-template #loader>\n<app-page-loader></app-page-loader>\n</ng-template>\n+\n+<ng-template #notificationRef let-notification>\n+ <div class=\"ant-notification-notice-content ant-notification-notice-with-icon\">\n+ <span class=\"ant-notification-notice-icon\"><i nz-icon ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): fixed empty notification when adding an item to a list
1
fix
db
815,745
18.05.2019 18:53:54
-10,800
b481b4493e60ab97a653a8d7ef690d52ff5e4f97
ref: check if addTag is defined instead
[ { "change_type": "MODIFY", "diff": "@@ -744,7 +744,7 @@ export class NgSelectComponent implements OnDestroy, OnChanges, AfterViewInit, C\n}\nprivate _handleTab($event: KeyboardEvent) {\n- if (this.isOpen === false && this._manualOpen === false) {\n+ if (this.isOpen === false && !isDefined(this.addTag)) {\nr...
TypeScript
MIT License
ng-select/ng-select
ref: check if addTag is defined instead
1
ref
null
217,922
18.05.2019 18:57:36
-7,200
8bc4646f08261cf6702d0ee48fcfd6e44cb131a4
fix(db): better number format for npc positions
[ { "change_type": "MODIFY", "diff": "*ngIf=\"(xivapiNpc.ID | npcName)?.position as npcPosition\">\n<ng-template #title>\n<div fxLayout=\"row\" fxLayoutAlign=\"flex-start center\" fxLayoutGap=\"5px\" class=\"card-header\">\n- {{npcPosition.zoneid | placeName |i18n}} - X:{{npcPosition.x}} Y:{{npcPosition.y}}\n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): better number format for npc positions
1
fix
db
815,745
18.05.2019 19:03:33
-10,800
7ab88cb379e5ab9854452f0f41fb007ad0e30fe9
chore(release): 2.20.0
[ { "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+<a name=\"2.20.0\"></a>\n+# [2.20.0](https://github.com/ng-select/ng-select/compare/v2.19.0...v...
TypeScript
MIT License
ng-select/ng-select
chore(release): 2.20.0
1
chore
release
815,598
18.05.2019 19:28:49
-28,800
7458d7b542b5c01debffdc815c56f4ab29e5deb3
feat: modify subcommand `ckb init`. Export `specs/dev.toml` when init for dev chain. Deprecate option `--export-specs`. Rename `spec` to `chain` in options. - Add option `--chain` and deprecate `--spec` - Add option `--list-chains` and deprecate `--list-specs` Rename `export` to `create` in messages.
[ { "change_type": "MODIFY", "diff": "@@ -22,7 +22,7 @@ Setup the directories and generate config files for testnet.\n```bash\nsudo mkdir /var/lib/ckb\n-sudo /usr/local/bin/ckb init -C /var/lib/ckb --spec testnet --log-to stdout\n+sudo /usr/local/bin/ckb init -C /var/lib/ckb --chain testnet --log-to stdout\n`...
Rust
MIT License
nervosnetwork/ckb
feat: modify subcommand `ckb init`. - Export `specs/dev.toml` when init for dev chain. - Deprecate option `--export-specs`. - Rename `spec` to `chain` in options. - Add option `--chain` and deprecate `--spec` - Add option `--list-chains` and deprecate `--list-specs` - Rename `export` to `create` in messages.
1
feat
null
217,922
18.05.2019 20:24:33
-7,200
8985c4f107359d04045de3e50f9500f2a94fdcc5
fix(teams): fixed an issue preventing team members to input progression on lists
[ { "change_type": "MODIFY", "diff": "@@ -21,11 +21,25 @@ export class Team extends DataModel {\nreturn { name: <WebhookSettingType>type, value: true };\n});\n+ constructor() {\n+ super();\n+ if (!this.webhookSettings.some(setting => setting.name === WebhookSettingType.FINAL_LIST_PROGRESSION)) {\n+ this.webho...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(teams): fixed an issue preventing team members to input progression on lists
1
fix
teams
815,598
18.05.2019 21:06:21
-28,800
7197d86fb7aa53c6e7ebc9a65751ff3526c38e66
chore: CHANGELOG for v0.12.1
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n-# [v0.12.0](https://github.com/nervosnetwork/ckb/compare/v0.11.0...v0.12.0) (2019-05-18)\n+# [v0.12.1](https://github...
Rust
MIT License
nervosnetwork/ckb
chore: CHANGELOG for v0.12.1
1
chore
null
217,922
18.05.2019 21:50:54
-7,200
768da976ba9b48ab2427dc62b550c9ea37d012aa
feat(map): added position on map markers hover
[ { "change_type": "MODIFY", "diff": "@@ -32,6 +32,12 @@ export class MapPositionComponent {\n}\ngetMarker(): Vector2 {\n+ if (!this.marker) {\n+ return {\n+ x: 0,\n+ y: 0\n+ };\n+ }\nreturn {\nx: Math.round(this.marker.x),\ny: Math.round(this.marker.y)\n", "new_path": "apps/client/src/app/modules/map/map...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(map): added position on map markers hover
1
feat
map
815,599
19.05.2019 10:21:19
-28,800
ed7cf894456e9e753e35e70165e880239b011f74
docs: add nervos talk badge
[ { "change_type": "MODIFY", "diff": "# [Nervos CKB](https://www.nervos.org/) - The Common Knowledge Base\n[![TravisCI](https://travis-ci.com/nervosnetwork/ckb.svg?token=y9uR6ygmT3geQaMJ4jpJ&branch=develop)](https://travis-ci.com/nervosnetwork/ckb)\n-[![Telegram Group](https://cdn.rawgit.com/Patrolavia/telegr...
Rust
MIT License
nervosnetwork/ckb
docs: add nervos talk badge (#836)
1
docs
null
217,922
19.05.2019 11:36:19
-7,200
bf3712c54f8763832cece612a568de216ca6ec0e
fix(map-page): removed nodes with inexistant items (event items)
[ { "change_type": "MODIFY", "diff": "@@ -277,7 +277,7 @@ export class MapPageComponent extends TeamcraftPageComponent {\n.map(key => {\nreturn { ...nodePositions[key], id: +key };\n})\n- .filter(node => node !== null && node.zoneid === placeNameId)\n+ .filter(node => node !== null && node.zoneid === placeNam...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(map-page): removed nodes with inexistant items (event items)
1
fix
map-page
273,645
19.05.2019 12:42:40
14,400
bd5905c57a9a0d389e93e4cf5513358b683a4e5c
feat(contentful): rich text support
[ { "change_type": "MODIFY", "diff": "API might change before v1 is released.\n## Install\n+\n- `yarn add @gridsome/source-contentful`\n- `npm install @gridsome/source-contentful`\n@@ -27,50 +28,144 @@ module.exports = {\n```\n## Contentful Content Types\n-@gridsome/souce-contentful currently works with all C...
JavaScript
MIT License
gridsome/gridsome
feat(contentful): rich text support (#354)
1
feat
contentful
815,609
19.05.2019 13:05:40
-28,800
2b332844453908233d5341d05e6faf0e15a68af4
refactor: loading CellSet do not have to load all blocks
[ { "change_type": "MODIFY", "diff": "@@ -124,6 +124,10 @@ impl CellSet {\nself.inner.get(h)\n}\n+ pub(crate) fn put(&mut self, tx_hash: H256, tx_meta: TransactionMeta) {\n+ self.inner.insert(tx_hash, tx_meta);\n+ }\n+\npub(crate) fn insert(\n&mut self,\ntx_hash: H256,\n", "new_path": "shared/src/cell_set...
Rust
MIT License
nervosnetwork/ckb
refactor: loading CellSet do not have to load all blocks
1
refactor
null
815,609
19.05.2019 14:13:00
-28,800
51bbbb7f9eb6aa9ffc638b26ab63db2ccb3abf6d
perf: delete transactions whose all cells are dead
[ { "change_type": "MODIFY", "diff": "@@ -22,36 +22,47 @@ impl From<BitVecSerde> for BitVec {\npub struct TransactionMeta {\nblock_number: u64,\nepoch_number: u64,\n- /// first bit indicate if transaction is a cellbase transaction\n- /// next bits indicate if transaction has dead cells\n+ cellbase: bool,\n+ /...
Rust
MIT License
nervosnetwork/ckb
perf: delete transactions whose all cells are dead
1
perf
null
815,598
19.05.2019 14:18:33
-28,800
6809b1ba04ce7725e78219aa68acd25a97502d01
feat: remove the default block assembler config If user want to mine, they must configure it.
[ { "change_type": "MODIFY", "diff": "@@ -41,7 +41,12 @@ curl -d '{\"id\": 1, \"jsonrpc\": \"2.0\", \"method\":\"get_tip_header\",\"params\": []}' \\\n## Run Miner\n-Run miner, gets a block template to mine.\n+Miner is disabled by default, unless you have setup the miner lock\n+to keep your mined CKB safe. Se...
Rust
MIT License
nervosnetwork/ckb
feat: remove the default block assembler config If user want to mine, they must configure it.
1
feat
null
815,598
19.05.2019 14:31:42
-28,800
ff7f3d2e7a217ea1893676bbfdaeb550ecee52dd
docs: metion docs versions in README
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,8 @@ the option `dsn` to empty in the config file.\n## Testnet Rylai\n-CKB Testnet *Rylai* is the testing network before its mainnet launch.\n+CKB Testnet *Rylai* is the testing network before its mainnet launch. Switch\n+to branch [rylai] to see the document...
Rust
MIT License
nervosnetwork/ckb
docs: metion docs versions in README (#839)
1
docs
null
815,595
19.05.2019 16:29:11
-28,800
cda5bc892f19f3958b91241a026aca1a76d4deba
test: [all tests] Share one rpc client in tests
[ { "change_type": "MODIFY", "diff": "@@ -22,7 +22,7 @@ fn main() {\nlet mut specs: HashMap<&str, Box<dyn Spec>> = HashMap::new();\nspecs.insert(\"block_relay_basic\", Box::new(BlockRelayBasic));\nspecs.insert(\"block_sync_basic\", Box::new(BlockSyncBasic));\n- // specs.insert(\"sync_timeout\", Box::new(SyncT...
Rust
MIT License
nervosnetwork/ckb
test: [all tests] Share one rpc client in tests
1
test
null
815,598
19.05.2019 17:06:41
-28,800
25cb4468c5df0c31b396752960fbafd1520b9d9c
feat: ckb cli secp256k1 Generate config to use secp256k1 in block assembler
[ { "change_type": "MODIFY", "diff": "@@ -327,6 +327,7 @@ dependencies = [\n\"crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"crypto 0.12.1\",\n\"ctrlc 3.1.2 (registry+https://github.com/rust-lang/crates.io-index)\",\n+ \"faster-hex 0.3.1 (registry+https://github.com/rust...
Rust
MIT License
nervosnetwork/ckb
feat: ckb cli secp256k1 Generate config to use secp256k1 in block assembler
1
feat
null
815,593
19.05.2019 17:40:43
-28,800
5656a115d736303957629ac8c5c978256447fba5
feat: add IterableKeyValueDB trait and remove unused CacheDB
[ { "change_type": "MODIFY", "diff": "@@ -150,7 +150,7 @@ name = \"bindgen\"\nversion = \"0.47.3\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\ndependencies = [\n- \"bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n+ \"bitflags 1.0.4 (registry+https://github.c...
Rust
MIT License
nervosnetwork/ckb
feat: add IterableKeyValueDB trait and remove unused CacheDB
1
feat
null
815,598
19.05.2019 18:52:53
-28,800
f22502f206d51f0d29f59375014824d2a80eeaa7
chore: enforce prettier on rpc.json
[ { "change_type": "MODIFY", "diff": "@@ -16,13 +16,23 @@ env:\nmatrix:\ninclude:\n- - rust: 1.34.2\n+ - name: macOS\n+ rust: 1.34.2\nos: osx\nenv: REL_PKG=darwin_amd64.zip\n- - rust: 1.34.2\n+ - name: Linux\n+ rust: 1.34.2\nos: linux\ndist: xenial\nenv: REL_PKG=linux_amd64.tar.gz\n+ - name: Quick Check\n+ ca...
Rust
MIT License
nervosnetwork/ckb
chore: enforce prettier on rpc.json (#844)
1
chore
null
815,609
19.05.2019 18:53:15
-28,800
347b65bae8804136375c1c2ef58edae09a35f08e
fix: the order to apply CellSetDiff is very important
[ { "change_type": "MODIFY", "diff": "@@ -236,10 +236,7 @@ impl<CS: ChainStore> ChainState<CS> {\nnew_outputs,\n} = txo_diff;\n- let removed_old_outputs = old_outputs\n- .into_iter()\n- .filter_map(|tx_hash| self.cell_set.remove(&tx_hash).map(|_| tx_hash))\n- .collect::<Vec<_>>();\n+ // The order is important...
Rust
MIT License
nervosnetwork/ckb
fix: the order to apply CellSetDiff is very important
1
fix
null
815,601
19.05.2019 19:07:57
-28,800
b90d92cffe3b72884964352f535519b55a8ea9e7
feat: apply tx_pool limit
[ { "change_type": "MODIFY", "diff": "@@ -71,9 +71,9 @@ modules = [\"Net\", \"Pool\", \"Miner\", \"Chain\", \"Stats\", \"Experiment\"] # {{\norphan_block_limit = 1024\n[tx_pool]\n-max_mem_szie = 20_000_000 # 20mb\n+max_mem_size = 20_000_000 # 20mb\nmax_cycles = 200_000_000_000\n-max_cache_size = 100_000\n+max...
Rust
MIT License
nervosnetwork/ckb
feat: apply tx_pool limit
1
feat
null
447,451
19.05.2019 19:18:49
18,000
ed54ba9712717f30ad8885362e9f57e460130b9c
feat: access data with dot notation in field
[ { "change_type": "MODIFY", "diff": "@@ -53,15 +53,58 @@ describe('<Row />', () => {\nexpect(cell.at(0).prop('isFirst')).toBe(true);\nexpect(cell.at(1).prop('isFirst')).toBe(false);\n});\n- it('should set null to value prop in Cell component when the column field does not exists', () => {\n- const wrongColum...
JavaScript
MIT License
nexxtway/react-rainbow
feat: access data with dot notation in field (#750)
1
feat
null
217,922
19.05.2019 19:44:28
-7,200
d5f0a2528a646211b827654e9c6980cbddf9a9af
chore: small fix for gathering extractor
[ { "change_type": "MODIFY", "diff": "@@ -34,7 +34,7 @@ export class GatheredByExtractor extends AbstractExtractor<GatheredBy> {\n}\nprotected doExtract(item: Item, itemData: ItemData): GatheredBy {\n- const gatheringItem = Object.keys(gatheringItems).map(key => gatheringItems[key]).find(g => g.itemId);\n+ co...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small fix for gathering extractor
1
chore
null
273,683
19.05.2019 19:58:44
-7,200
91728ef1237fcb4db032ef0bd8d99604f86e7f61
fix(store): use custom year, month or day fields if they exist
[ { "change_type": "MODIFY", "diff": "@@ -195,9 +195,9 @@ class ContentType {\nconst field = get(node, path, fieldName)\nif (fieldName === 'id') params.id = node.id\n- else if (fieldName === 'year') params.year = date.format('YYYY')\n- else if (fieldName === 'month') params.month = date.format('MM')\n- else i...
JavaScript
MIT License
gridsome/gridsome
fix(store): use custom year, month or day fields if they exist
1
fix
store
217,922
19.05.2019 20:13:49
-7,200
42f5faf7dbe764039cf3eb9cbb77549766e907a9
fix(list): fixed an issue with amount input on crafts not applying properly to mats
[ { "change_type": "MODIFY", "diff": "@@ -231,7 +231,7 @@ export class List extends DataWithPermissions {\nif (item.done < 0) {\nitem.done = 0;\n}\n- amount = MathTools.absoluteFloor(amount / item.yield);\n+ amount = MathTools.absoluteCeil(amount / item.yield);\nconst newDone = MathTools.absoluteFloor(item.do...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list): fixed an issue with amount input on crafts not applying properly to mats
1
fix
list
273,683
19.05.2019 21:15:52
-7,200
7c443c66efddfbb7c1818766d222dafd1e434729
refactor(filesystem): pathPrefix fix
[ { "change_type": "MODIFY", "diff": "const path = require('path')\nconst fs = require('fs-extra')\n+const slash = require('slash')\nconst { mapValues } = require('lodash')\nconst isDev = process.env.NODE_ENV === 'development'\n@@ -86,7 +87,6 @@ class FilesystemSource {\n}\nwatchFiles () {\n- const slash = re...
JavaScript
MIT License
gridsome/gridsome
refactor(filesystem): pathPrefix fix
1
refactor
filesystem
217,922
19.05.2019 21:28:33
-7,200
956bcd2dd603d023cd44f653852956ec234dc2f7
fix(simulator): fixed an issue with recipe changes resetting stats in custom mode
[ { "change_type": "MODIFY", "diff": "@@ -176,6 +176,8 @@ export class SimulatorComponent implements OnInit, OnDestroy {\npublic startingQuality$: BehaviorSubject<number> = new BehaviorSubject<number>(0);\n+ private job$: Observable<any>;\n+\n// Regex stuff for macro import\nprivate findActionsRegex: RegExp =...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(simulator): fixed an issue with recipe changes resetting stats in custom mode
1
fix
simulator
217,922
19.05.2019 21:34:59
-7,200
7332dcd94e0066f1380dd1a5fe6aefaaffcddcd4
feat(desynth): added database link to desynth item results
[ { "change_type": "MODIFY", "diff": "<div fxLayout=\"row\" fxLayoutGap=\"5px\">\n<div>{{+row.itemId | itemName | i18n}}</div>\n<app-marketboard-icon [itemId]=\"+row.itemId\" [showHistory]=\"true\"></app-marketboard-icon>\n+ <app-db-button type=\"item\" [id]=\"+row.itemId\"></app-db-button>\n</div>\n<div>\n<n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(desynth): added database link to desynth item results
1
feat
desynth
217,922
19.05.2019 21:37:40
-7,200
699bf9ba98874a1eb6a63d8ac65171d9ec948b99
chore: changed debounce on recipe search for better speed on loading state
[ { "change_type": "MODIFY", "diff": "</nz-list>\n<div *ngIf=\"showCustom\">\n<nz-divider [nzText]=\"'Or' | translate\"></nz-divider>\n- <a nz-button [nzType]=\"'primary'\" class=\"new-list-button\" nzBlock (click)=\"close()\"\n+ <a nz-button class=\"new-list-button\" nzBlock (click)=\"close()\"\nrouterLink=\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: changed debounce on recipe search for better speed on loading state
1
chore
null
127,946
19.05.2019 22:39:57
-10,800
81258618018623f87c1fc1ad1f9c040875a0e497
fix(settings): change backgroung linear gradient color
[ { "change_type": "MODIFY", "diff": "@@ -39,7 +39,7 @@ export const SettingsBlock = styled.div<{ highlight?: boolean; onClick?: any }>(\nhighlight && {\nposition: 'relative',\nbackground: `linear-gradient(90deg, ${colors.neutral[90]} 0%, ${\n- colors.neutral[80]\n+ colors.neutral[70]\n} 100%)`,\n},\nonClick ...
TypeScript
MIT License
coingaming/moon-design
fix(settings): change backgroung linear gradient color
1
fix
settings
217,922
19.05.2019 22:44:36
-7,200
89217743a4e483fb281cf1e8934b1f8797d59382
fix(desktop): fixed broken language icons on db pages
[ { "change_type": "MODIFY", "diff": "</div>\n<div fxLayout=\"column\" fxLayoutGap=\"5px\" fxFlex.lt-md=\"1 1 auto\" fxFlex=\"0 0 300px\">\n<div fxLayout=\"row\" fxLayoutGap=\"5px\" fxLayoutAlign=\"flex-start center\">\n- <img src=\"/assets/icons/english.png\" class=\"language-flag\" alt=\"EN\">\n+ <img src=\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(desktop): fixed broken language icons on db pages
1
fix
desktop
217,922
19.05.2019 23:13:13
-7,200
4ce18f0fdd05a54f4efffe9889f86791c240f845
feat(db): UX improvements on map page
[ { "change_type": "MODIFY", "diff": "@@ -8,4 +8,5 @@ export interface MapMarker extends Vector2 {\nmaterialIcon?: string;\ntooltip?: string;\nzIndex?: number;\n+ link?: string;\n}\n", "new_path": "apps/client/src/app/modules/map/map-marker.ts", "old_path": "apps/client/src/app/modules/map/map-marker....
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(db): UX improvements on map page
1
feat
db
71,169
20.05.2019 06:13:42
25,200
584579e80bdc0cb4d5288b19920feffd490afbbb
fix(lambda): compare Runtimes by value instead of identity Different Runtime objects that represent the same runtime now compare as equal. This is important when using Layers, which declare compatible runtimes.
[ { "change_type": "MODIFY", "diff": "@@ -479,7 +479,7 @@ export class Function extends FunctionBase {\nif (this.layers.length === 5) {\nthrow new Error('Unable to add layer: this lambda function already uses 5 layers.');\n}\n- if (layer.compatibleRuntimes && layer.compatibleRuntimes.indexOf(this.runtime) ===...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(lambda): compare Runtimes by value instead of identity (#2543) Different Runtime objects that represent the same runtime now compare as equal. This is important when using Layers, which declare compatible runtimes.
1
fix
lambda
749,516
20.05.2019 10:28:43
25,200
01e0b1ee217f0db0f838f3bbbce1a44b34eab472
fix(forms): allow disabled styling with MediaInputs
[ { "change_type": "MODIFY", "diff": "* found at http://www.apache.org/licenses/LICENSE-2.0.\n*/\n+/* eslint-disable react/prop-types */\n+\nimport React, { useRef } from 'react';\nimport PropTypes from 'prop-types';\nimport { composeEventHandlers } from '@zendeskgarden/container-utilities';\n@@ -15,7 +17,7 @...
TypeScript
Apache License 2.0
zendeskgarden/react-components
fix(forms): allow disabled styling with MediaInputs (#339)
1
fix
forms
815,598
20.05.2019 11:27:27
-28,800
677dfd950a0454bd33556fe5209e3249dd22ec01
chore: better support for CentOS Add tutorial how to build in CentOS Static link openssl in Linux packages.
[ { "change_type": "MODIFY", "diff": "@@ -18,16 +18,17 @@ matrix:\ninclude:\n- rust: 1.34.2\nos: osx\n- env: REL_PKG=darwin_amd64.zip\n+ env: REL_PKG=x86_64-apple-darwin.zip\n- rust: 1.34.2\nos: linux\ndist: xenial\n- env: REL_PKG=linux_amd64.tar.gz\n+ env: REL_PKG=x86_64-unknown-linux-gnu.tar.gz\naddons:\nap...
Rust
MIT License
nervosnetwork/ckb
chore: better support for CentOS (#847) - Add tutorial how to build in CentOS - Static link openssl in Linux packages.
1
chore
null
815,605
20.05.2019 12:19:14
-28,800
0b835026d7f7dcbd90f73a49cea8da5292d5ddf7
fix: ensure EBREAK has proper cycle set
[ { "change_type": "MODIFY", "diff": "}\n],\n\"result\": {\n- \"cycles\": \"2\"\n+ \"cycles\": \"12\"\n}\n},\n{\n", "new_path": "rpc/json/rpc.json", "old_path": "rpc/json/rpc.json" }, { "change_type": "MODIFY", "diff": "@@ -23,8 +23,8 @@ pub fn instruction_cycles(i: Instruction) -> u64 {\n...
Rust
MIT License
nervosnetwork/ckb
fix: ensure EBREAK has proper cycle set
1
fix
null
273,643
20.05.2019 13:06:17
-7,200
ccf78bc03086eccad319b6eaf8e4609697a8f424
docs(remark): improve readme docs
[ { "change_type": "MODIFY", "diff": "# @gridsome/transformer-remark\n-> Markdown transformer for Gridsome\n+> Markdown transformer for Gridsome with [Remark](https://remark.js.org/).\n## Install\n+\n- `yarn add @gridsome/transformer-remark`\n- `npm install @gridsome/transformer-remark`\n-## Usage\n+## Basic ...
JavaScript
MIT License
gridsome/gridsome
docs(remark): improve readme docs (#447)
1
docs
remark
471,455
20.05.2019 13:16:17
-3,600
73cc787f0c94f72ded413b409e9df80cf3e03f1e
fix(create): in wc-lit-element use correct attribute name in demo
[ { "change_type": "MODIFY", "diff": "@@ -3,7 +3,7 @@ import '../src/<%= tagName %>.js';\nconst title = 'test';\nrender(html`\n- <<%= tagName %> .header=${title}>\n+ <<%= tagName %> .heading=${title}>\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has\nbeen the industr...
JavaScript
MIT License
open-wc/open-wc
fix(create): in wc-lit-element use correct attribute name in demo
1
fix
create
791,690
20.05.2019 13:35:16
18,000
0b96e7af1a73e34e84b6a17e5a69f1d77a12698a
misc: update minify-trace scripts; extract to lib/
[ { "change_type": "ADD", "diff": "+/**\n+ * @license Copyright 2019 Google Inc. All Rights Reserved.\n+ * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/L...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc: update minify-trace scripts; extract to lib/ (#8968)
1
misc
null
503,993
20.05.2019 13:47:03
-10,800
a42090b7ef96d72db113dd5e7c7aef0bf07eb3d2
perf(react-wooden-tree): major version bump
[ { "change_type": "MODIFY", "diff": "\"build:babel:esm\": \"cross-env BABEL_ENV=production:esm babel src --out-dir dist/esm -q\"\n},\n\"dependencies\": {\n- \"react-wooden-tree\": \"^1.1.2\"\n+ \"react-wooden-tree\": \"^2.0.1\"\n},\n\"peerDependencies\": {\n\"prop-types\": \"^15.6.1\",\n", "new_path": "p...
TypeScript
MIT License
patternfly/patternfly-react
perf(react-wooden-tree): major version bump (#2001)
1
perf
react-wooden-tree
902,122
20.05.2019 13:49:14
-7,200
275c15e1caded980897c9ffe8367d3a9928e15f8
build: improve automation
[ { "change_type": "MODIFY", "diff": "\"postrelease\": \"cd packages && eachdir \\\"npx ci-publish\\\"\",\n\"prerelease\": \"npm run update:check\",\n\"pretest\": \"npm run lint\",\n- \"preversion\": \"lerna exec npx finepack && git-authors-cli && finepack\",\n+ \"preversion\": \"npx lerna exec \\\"npx git-au...
JavaScript
MIT License
microlinkhq/browserless
build: improve automation
1
build
null
815,598
20.05.2019 14:04:05
-28,800
ba6862dd586e209fbd92f47307e21a6bd35917da
chore: make ci scripts runnable locally
[ { "change_type": "ADD", "diff": "+#!/bin/bash\n+set -eu\n+\n+TRAVIS_TAG=\"${TRAVIS_TAG:-\"$(git describe)\"}\"\n+if [ -z \"${REL_PKG:-}\" ]; then\n+ if [ \"$(uname)\" = Darwin ]; then\n+ REL_PKG=x86_64-apple-darwin.zip\n+ else\n+ REL_PKG=x86_64-unknown-linux-gnu.tar.gz\n+ fi\n+fi\n+\n+PKG_NAME=\"ckb_${TRAVI...
Rust
MIT License
nervosnetwork/ckb
chore: make ci scripts runnable locally
1
chore
null
273,683
20.05.2019 14:16:09
-7,200
f0b162eb176648b17673cce1a100aa1c3338e058
fix(app): include query params in html links
[ { "change_type": "MODIFY", "diff": "@@ -34,7 +34,9 @@ document.addEventListener('click', event => {\n) return\nconst path = stripPathPrefix($el.pathname)\n- const { route, location } = router.resolve({ path, hash: $el.hash })\n+ const { route, location } = router.resolve({\n+ path: path + ($el.search || '')...
JavaScript
MIT License
gridsome/gridsome
fix(app): include query params in html links
1
fix
app
447,451
20.05.2019 14:58:52
18,000
d3851bf94747f6e1b459c3dd93e8d63638ce74a9
fix: add dot notation to keyField
[ { "change_type": "MODIFY", "diff": "@@ -2,22 +2,10 @@ import React from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\nimport { SELECTABLE_CHECKBOX } from '../helpers/columns';\n+import { getFieldValue } from '../helpers/rows';\nimport Cell from './cell';\nimport Loadin...
JavaScript
MIT License
nexxtway/react-rainbow
fix: add dot notation to keyField (#752)
1
fix
null
791,834
20.05.2019 15:34:40
25,200
5fc10187c6fd7c4ebc61915f6fe7408e1af0d8e6
misc: remove unneeded reportCategories from LH.ReportResult
[ { "change_type": "MODIFY", "diff": "@@ -43,7 +43,7 @@ function prepareLabData(LHResult, document) {\ndom.resetTemplates();\nconst reportLHR = Util.prepareReportResult(lhResult);\n- const perfCategory = reportLHR.reportCategories.find(cat => cat.id === 'performance');\n+ const perfCategory = reportLHR.catego...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc: remove unneeded reportCategories from LH.ReportResult (#9001)
1
misc
null
730,420
20.05.2019 15:55:22
25,200
4e8edff75df1a5c3779854ca8e5b8eac1131e656
fix(widget-demo): spaceLoadCount empty value is now converted to default value
[ { "change_type": "MODIFY", "diff": "@@ -68,7 +68,7 @@ class DemoWidget extends Component {\nrecentsWidgetProps: {},\nsecondaryActivitiesFullWidth: false,\nsetCurrentActivity: '',\n- spaceLoadCount: Number(cookies.get('spaceLoadCount')) || 25,\n+ spaceLoadCount: cookies.get('spaceLoadCount') || '25',\nspaceR...
JavaScript
MIT License
webex/react-widgets
fix(widget-demo): spaceLoadCount empty value is now converted to default value
1
fix
widget-demo
815,582
20.05.2019 16:34:20
-32,400
5ec16a1357d1a86e07ca4f935b5dff499696f7a8
fix: Typo in the init subcommand help message
[ { "change_type": "MODIFY", "diff": "@@ -167,7 +167,7 @@ fn init() -> App<'static, 'static> {\nArg::with_name(ARG_FORCE)\n.short(\"f\")\n.long(ARG_FORCE)\n- .help(\"Force overwrits existing files\"),\n+ .help(\"Forces overwriting existing files\"),\n)\n.arg(\nArg::with_name(ARG_RPC_PORT)\n", "new_path": ...
Rust
MIT License
nervosnetwork/ckb
fix: Typo in the init subcommand help message
1
fix
null
730,429
20.05.2019 16:38:08
14,400
7a049620778ad3ee5b5e00523b04f46a7525313c
chore(Jenkins): add gitcommit file to archives
[ { "change_type": "MODIFY", "diff": "@@ -158,6 +158,7 @@ ansiColor('xterm') {\nnpm run release -- --release-as patch --no-verify\nversion=`grep \"version\" package.json | head -1 | awk -F: '{ print $2 }' | sed 's/[\", ]//g'`\necho $version > .version\n+ git rev-parse HEAD > gitcommit\n'''\npackageJsonVersion...
JavaScript
MIT License
webex/react-widgets
chore(Jenkins): add gitcommit file to archives
1
chore
Jenkins
730,420
20.05.2019 16:51:36
25,200
11843359b591a9ee14c0832e08ec196713aea825
feat(widget-recent): Setting spaceLoadcount to total number of the rooms
[ { "change_type": "MODIFY", "diff": "@@ -148,7 +148,7 @@ function getInitialSpaces(props) {\n* and decrypt individually to give a good initial user experience.\n*/\nprops.fetchSpacesEncrypted(sparkInstance, {\n- conversationsLimit: props.spaceLoadCount\n+ conversationsLimit: 25\n})\n.then((encryptedSpaces) =...
JavaScript
MIT License
webex/react-widgets
feat(widget-recent): Setting spaceLoadcount to total number of the rooms
1
feat
widget-recent
815,609
20.05.2019 17:23:20
-28,800
1346475749e703929ba492e27bec398da6e05bb4
chore: more pretty log output
[ { "change_type": "MODIFY", "diff": "@@ -557,7 +557,8 @@ impl<CS: ChainStore + 'static> ChainService<CS> {\nself.shared.consensus().pow_engine().proof_size();\nif b.transactions().len() > 1 {\ninfo!(\n- \"[block_verifier] block number: {}, hash: {:x}, size:{}/{}, cycles: {}/{}\",\n+ target: \"chain\",\n+ \"[...
Rust
MIT License
nervosnetwork/ckb
chore: more pretty log output (#851)
1
chore
null
815,598
20.05.2019 17:42:53
-28,800
7eaa42e55fc2f0091bd4b76470e72aff9c8f2fef
chore: use sha3 only in test
[ { "change_type": "MODIFY", "diff": "@@ -696,6 +696,7 @@ dependencies = [\n\"serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"test-chain-utils 0.13.0-pre\",\n+ \"tiny-keccak 1.4.2 (registry+https://git...
Rust
MIT License
nervosnetwork/ckb
chore: use sha3 only in test
1
chore
null
217,922
20.05.2019 18:39:57
-7,200
11e4c277c624341eeeaf098dac479252e0adb06d
fix(list): fixed an issue with progression not applied properly in some cases closes
[ { "change_type": "MODIFY", "diff": "@@ -232,7 +232,10 @@ export class List extends DataWithPermissions {\nitem.done = 0;\n}\namount = MathTools.absoluteCeil(amount / item.yield);\n- const newDone = MathTools.absoluteFloor(item.done / item.yield);\n+ let newDone = MathTools.absoluteFloor(item.done / item.yie...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list): fixed an issue with progression not applied properly in some cases closes #920
1
fix
list
217,922
20.05.2019 19:11:03
-7,200
a7a241fe59fe0ffff97457a0bdd6106bb63a7a08
chore: special label in "used for" section of crystals
[ { "change_type": "MODIFY", "diff": "</div>\n<div *ngIf=\"usedFor$ | async as usedFor\">\n<nz-divider [nzText]=\"'DB.Used_for' | translate\" nzOrientation=\"left\"></nz-divider>\n- <app-fullpage-message height=\"300px\" *ngIf=\"usedFor.length === 0\">\n+ <app-fullpage-message height=\"300px\" *ngIf=\"usedFor...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: special label in "used for" section of crystals
1
chore
null
503,998
20.05.2019 20:18:18
-7,200
2b04c0471cc9bab9218b027832bcc61dee3523e4
fix(HorizontalNav): Horizontal nav is not exported for build. fix
[ { "change_type": "MODIFY", "diff": "@@ -17,6 +17,7 @@ export * from './components/Filter';\nexport * from './components/Form';\nexport * from './components/Grid';\nexport * from './components/HintBlock';\n+export * from './components/HorizontalNav';\nexport * from './components/Icon';\nexport * from './comp...
TypeScript
MIT License
patternfly/patternfly-react
fix(HorizontalNav): Horizontal nav is not exported for build. (#2041) fix #2040
1
fix
HorizontalNav
815,598
20.05.2019 20:18:42
-28,800
8e85d4798abe1eddc2e153f0f7a73787d0e3f015
feat: revamp the secp256k1 support in CKB CKB does not provide key generation feature. Add `ckb cli blake160` and `ckb cli blake256` utilities to compute hash. Add `ckb cli secp256k1-lock` to print block assembler config from a secp256k1 pubkey.
[ { "change_type": "MODIFY", "diff": "@@ -88,16 +88,37 @@ cell_output_cache_size = 128\n# Set the lock script to protect mined CKB.\n#\n+# CKB uses CS architecture for miner. Miner process (ckb miner) gets block\n+# template from the Node process (ckb run) via RPC. Thus the lock script is\n+# configured in ck...
Rust
MIT License
nervosnetwork/ckb
feat: revamp the secp256k1 support in CKB - CKB does not provide key generation feature. - Add `ckb cli blake160` and `ckb cli blake256` utilities to compute hash. - Add `ckb cli secp256k1-lock` to print block assembler config from a secp256k1 pubkey.
1
feat
null
815,598
20.05.2019 21:25:35
-28,800
ba58a1b410f0ee84d344801739fba3c04891fc4e
chore: create centos package in travis-ci
[ { "change_type": "MODIFY", "diff": "@@ -23,6 +23,15 @@ matrix:\nos: linux\ndist: xenial\nenv: REL_PKG=x86_64-unknown-linux-gnu.tar.gz\n+ - name: Centos Package\n+ if: 'repo = nervosnetwork/ckb AND tag IS present'\n+ language: ruby\n+ addons:\n+ apt:\n+ packages: []\n+ install: echo install\n+ script: devtoo...
Rust
MIT License
nervosnetwork/ckb
chore: create centos package in travis-ci
1
chore
null
815,598
20.05.2019 21:38:12
-28,800
cb55bb75cb0d1c8b547c5ebabd7efd70a40488d7
docs: clarify the pubkey hash is from compressed pubkey
[ { "change_type": "MODIFY", "diff": "@@ -96,9 +96,9 @@ cell_output_cache_size = 128\n# The `code_hash` identifies different cryptography algorithm. Read the manual\n# of the lock script provider about how to generate this config.\n#\n-# CKB provides an secp256k1 implementation, it requires a public key hash ...
Rust
MIT License
nervosnetwork/ckb
docs: clarify the pubkey hash is from compressed pubkey
1
docs
null
815,598
20.05.2019 21:43:49
-28,800
89bb69549c47e98916d2cd7e790b36d78a1d3d48
chore: CHANGELOG for v0.12.2
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+# [v0.12.2](https://github.com/nervosnetwork/ckb/compare/v0.12.1...v0.12.2) (2019-05-20)\n+\n+### Features\n+\n+* #83...
Rust
MIT License
nervosnetwork/ckb
chore: CHANGELOG for v0.12.2
1
chore
null
815,598
20.05.2019 21:51:02
-28,800
fccd3048694d8540ff7ec56cf1c65f5462e6691a
docs: improve block_assember docs
[ { "change_type": "MODIFY", "diff": "@@ -100,11 +100,11 @@ cell_output_cache_size = 128\n# compressed public key. The hash algorithm is blake2b, with personal\n# \"ckb-default-hash\". The first 160 bits (20 bytes) are used as the only arg.\n#\n-# The public key is compatible with Bitcoin, use any tool you tr...
Rust
MIT License
nervosnetwork/ckb
docs: improve block_assember docs
1
docs
null
503,918
20.05.2019 22:56:03
-10,800
1e9698e2db4e9743257b788f8f54d3e4361d172d
fix(wizard): wizards props extends div element props
[ { "change_type": "MODIFY", "diff": "@@ -42,7 +42,7 @@ export interface WizardStep {\nexport type WizardStepFunctionType = (newStep: { id?: string | number; name: string; }, prevStep: { prevId?: string | number; prevName: string; }) => void;\n-export interface WizardProps {\n+export interface WizardProps ext...
TypeScript
MIT License
patternfly/patternfly-react
fix(wizard): wizards props extends div element props (#1993) Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com>
1
fix
wizard
71,543
20.05.2019 23:32:30
-36,000
67960f8c6567375b2ce621bc05f37229d48c38ef
feat(cli): add javascript init-templates 'sample-app'
[ { "change_type": "MODIFY", "diff": "*.js\n*.js.map\n*.d.ts\n-!lib/init-templates/app/javascript/**/*\n+!lib/init-templates/**/javascript/**/*\nnode_modules\ndist\n", "new_path": "packages/aws-cdk/.gitignore", "old_path": "packages/aws-cdk/.gitignore" }, { "change_type": "MODIFY", "diff":...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(cli): add javascript init-templates 'sample-app' (#2535)
1
feat
cli
815,598
21.05.2019 00:43:58
-28,800
7a0c0b7fa6be02df59b43726ddf54a3ade8833ba
chore: fix ci scripts
[ { "change_type": "MODIFY", "diff": "if [ \"$1\" = run ]; then\ndocker run --rm -it -v $(pwd):/ckb centos:7 bash /ckb/devtools/ci/centos-docker.sh\ndevtools/ci/package.sh target/release/ckb\n+ exit 0\nfi\ncd /ckb\n", "new_path": "devtools/ci/centos-docker.sh", "old_path": "devtools/ci/centos-docker.s...
Rust
MIT License
nervosnetwork/ckb
chore: fix ci scripts
1
chore
null
71,123
21.05.2019 01:13:27
25,200
99e173eb2c3aa6b3d076d277d0021c5a919da826
fix(aws-glue): fix glue tableArn and integer schema name
[ { "change_type": "MODIFY", "diff": "@@ -72,7 +72,7 @@ export class Schema {\n*/\npublic static readonly integer: Type = {\nisPrimitive: true,\n- inputString: 'integer'\n+ inputString: 'int'\n};\n/**\n", "new_path": "packages/@aws-cdk/aws-glue/lib/schema.ts", "old_path": "packages/@aws-cdk/aws-glue/l...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(aws-glue): fix glue tableArn and integer schema name (#2585)
1
fix
aws-glue
71,313
21.05.2019 02:15:28
21,600
aec8ec2f4c96a02622bdb953daf28c691deb7677
fix(ec2): fix VPC endpoint name for SageMaker Notebooks The service name was incorrect as per
[ { "change_type": "MODIFY", "diff": "@@ -205,7 +205,7 @@ export interface IInterfaceVpcEndpointService {\n* An AWS service for an interface VPC endpoint.\n*/\nexport class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointService {\n- public static readonly SageMakerNotebook = new InterfaceVpcEn...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(ec2): fix VPC endpoint name for SageMaker Notebooks (#2598) The service name was incorrect as per https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-interface-endpoint.html
1
fix
ec2
71,105
21.05.2019 02:17:54
21,600
20f4ec1adfdeaeb2141a7e5860eaf118de13c230
fix(lambda): deprecate old Lambda runtimes Add deprecation warnings for lambda runtimes
[ { "change_type": "MODIFY", "diff": "@@ -23,11 +23,14 @@ export enum RuntimeFamily {\n* can instantiate a `Runtime` object, e.g: `new Runtime('nodejs99.99')`.\n*/\nexport class Runtime {\n- /** A list of all the know ``Runtime``s. */\n+ /** A list of all known `Runtime`'s. */\npublic static readonly All = ne...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(lambda): deprecate old Lambda runtimes (#2594) Add deprecation warnings for lambda runtimes
1
fix
lambda
815,598
21.05.2019 02:26:21
-28,800
e9922c09629bec876b3bb9806748ec2466b8271b
docs: update get-ckb.md
[ { "change_type": "MODIFY", "diff": "## Download from Releases\n-We will publish binaries for each release via [Github Releases](https://github.com/nervosnetwork/ckb/releases). If your system\n+We will publish binaries for each release via [Github Releases]. If your system\nis listed there, you can download ...
Rust
MIT License
nervosnetwork/ckb
docs: update get-ckb.md
1
docs
null
311,007
21.05.2019 02:57:51
-32,400
c06857f92ef1a71a0d26cbb70549d11e2de98967
fix(react): support react git repo
[ { "change_type": "MODIFY", "diff": "@@ -216,7 +216,7 @@ Use the ${input('--type')} option to start projects using older versions of Ioni\ninputs[1] = template;\n}\n- const starterTemplate = STARTER_TEMPLATES.find(t => t.name === inputs[1]);\n+ const starterTemplate = STARTER_TEMPLATES.find(t => t.name === i...
TypeScript
MIT License
ionic-team/ionic-cli
fix(react): support react git repo (#3982)
1
fix
react
815,598
21.05.2019 02:59:07
-28,800
bb808fd5480b90abecc892cce42f6d8035fa2ec6
chore: cleanup rylai from .travis.yml
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ git:\ndepth: 2\nsubmodules: false\n-if: 'branch IN (master, develop, rylai) OR branch =~ /^rc\\// OR type != push OR repo != nervosnetwork/ckb OR tag IS present'\n+if: 'branch IN (master, develop) OR branch =~ /^rc\\// OR type != push OR repo != nervosnetw...
Rust
MIT License
nervosnetwork/ckb
chore: cleanup rylai from .travis.yml
1
chore
null
815,598
21.05.2019 03:33:38
-28,800
77a3220087a4c774aa6c7bb8fc245bcbad888f5e
docs: add version badge
[ { "change_type": "MODIFY", "diff": "@@ -327,6 +327,7 @@ dependencies = [\n\"crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"crypto 0.13.0-pre\",\n\"ctrlc 3.1.2 (registry+https://github.com/rust-lang/crates.io-index)\",\n+ \"faster-hex 0.3.1 (registry+https://github.com/...
Rust
MIT License
nervosnetwork/ckb
docs: add version badge
1
docs
null
815,598
21.05.2019 03:37:17
-28,800
da9c85b068d3987d40324a3d10b1a08423a25249
docs: disable click on version badge
[ { "change_type": "MODIFY", "diff": "# [Nervos CKB](https://www.nervos.org/) - The Common Knowledge Base\n-![Version](https://img.shields.io/badge/version-0.13.0--pre-orange.svg)\n+[![Version](https://img.shields.io/badge/version-0.13.0--pre-orange.svg)](#readme)\n[![TravisCI](https://travis-ci.com/nervosnet...
Rust
MIT License
nervosnetwork/ckb
docs: disable click on version badge
1
docs
null
273,706
21.05.2019 06:13:51
18,000
1e64dc6a620f7f0ef7c36f33e6f3d29d73592d5d
feat(ghost): initial ghost source
[ { "change_type": "ADD", "diff": "", "new_path": "packages/source-ghost/CHANGELOG.md", "old_path": "packages/source-ghost/CHANGELOG.md" }, { "change_type": "ADD", "diff": "+# @gridsome/source-ghost\n+\n+> Ghost source for Gridsome. This package is under development and API might change be...
JavaScript
MIT License
gridsome/gridsome
feat(ghost): initial ghost source (#318)
1
feat
ghost
71,138
21.05.2019 09:12:10
-3,600
eb358072a69598f425008d21a1188965a3559e78
feat(aws-codepipeline): Pipeline now accepts existing IAM role Fixes
[ { "change_type": "MODIFY", "diff": "@@ -68,6 +68,13 @@ export interface PipelineProps {\n*/\nreadonly artifactBucket?: s3.IBucket;\n+ /**\n+ * The IAM role to be assumed by this Pipeline.\n+ *\n+ * @default a new IAM role will be created.\n+ */\n+ readonly role?: iam.IRole;\n+\n/**\n* Indicates whether to r...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(aws-codepipeline): Pipeline now accepts existing IAM role (#2587) Fixes #2572.
1
feat
aws-codepipeline
815,573
21.05.2019 09:44:07
-28,800
f1c8d9950d510330ea0b4dfd6be53be2cd4d8e1e
chore: Send dailing hang message to sentry
[ { "change_type": "MODIFY", "diff": "@@ -561,6 +561,7 @@ dependencies = [\n\"resolve 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"rusqlite 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)\",\n+...
Rust
MIT License
nervosnetwork/ckb
chore: Send dailing hang message to sentry
1
chore
null
815,573
21.05.2019 09:51:31
-28,800
b07aec6405d42cf78c6a04e37b3bc209166e7303
chore: Decrease network error log level or send to sentry
[ { "change_type": "MODIFY", "diff": "@@ -431,7 +431,7 @@ impl ServiceHandle for EventHandler {\nref address,\nref error,\n} => {\n- warn!(target: \"network\", \"DialerError({}) {}\", address, error);\n+ debug!(target: \"network\", \"DialerError({}) {}\", address, error);\nif error == &P2pError::ConnectSelf {...
Rust
MIT License
nervosnetwork/ckb
chore: Decrease network error log level or send to sentry
1
chore
null
815,573
21.05.2019 10:12:47
-28,800
7e6b1904e1be06c950fa426a6bc0ffd14656eb6e
chore: Decrease error log level for can not send message to network service
[ { "change_type": "MODIFY", "diff": "@@ -78,7 +78,7 @@ impl ServiceProtocol for DiscoveryProtocol {\npeer_id: session.remote_pubkey.clone().map(|pubkey| pubkey.peer_id()),\n};\nif self.event_sender.unbounded_send(event).is_err() {\n- warn!(target: \"network\", \"receiver maybe dropped!\");\n+ debug!(target: ...
Rust
MIT License
nervosnetwork/ckb
chore: Decrease error log level for can not send message to network service
1
chore
null
104,874
21.05.2019 12:00:54
-3,600
1e4ae31903579151dbed449be2bf3f8f68fced9b
fix(table): honour FilterHeaderRow's column.isFilterable property
[ { "change_type": "MODIFY", "diff": "@@ -185,12 +185,14 @@ class FilterHeaderRow extends Component {\n.map(c => {\nconst column = columns.find(i => c.columnId === i.id);\nconst columnStateValue = this.state[column.id]; // eslint-disable-line\n- return (\n- <StyledTableHeader\n- data-column={column.id}\n- key...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): honour FilterHeaderRow's column.isFilterable property
1
fix
table
104,874
21.05.2019 12:03:40
-3,600
cc0da5961857e241a7f21a9b08a5bee2d604c7bc
fix(table): missed snapshot updates in last commit
[ { "change_type": "MODIFY", "diff": "@@ -58131,64 +58131,14 @@ exports[`Storybook Snapshot tests and console checks Storyshots Table Custom too\ndata-column=\"secretField\"\nscope=\"col\"\n>\n- <div\n- className=\"bx--form-item c7\"\n- >\n- <div\n- className=\"bx--form-item\"\n- >\n- <label\n- className=\"bx...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): missed snapshot updates in last commit
1
fix
table
217,922
21.05.2019 12:20:45
-7,200
ebad648a8bdd340bab3c127d13b6264429b3a241
feat(layout): default layout now uses reversed tiers for vendors panel
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,7 @@ export class LayoutService extends FirestoreRelationalStorage<ListLayout> {\nnew LayoutRow('Timed nodes', 'NAME', LayoutRowOrder.DESC, LayoutRowFilter.IS_TIMED.name,\n0, true, false, false, true, false, false, true),\nnew LayoutRow('Vendors ', 'NAME', La...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(layout): default layout now uses reversed tiers for vendors panel
1
feat
layout
815,573
21.05.2019 12:51:43
-28,800
704c6a86e2b8d6b6301012b6769a7ca942139344
fix: Remove dialing address when dial failed
[ { "change_type": "MODIFY", "diff": "@@ -32,6 +32,7 @@ use p2p::{\nTargetSession,\n},\ntraits::ServiceHandle,\n+ utils::extract_peer_id,\nSessionId,\n};\nuse p2p_identify::IdentifyProtocol;\n@@ -374,6 +375,13 @@ impl NetworkState {\nself.dialing_addrs.write().remove(peer_id);\n}\n+ pub(crate) fn dial_failed(...
Rust
MIT License
nervosnetwork/ckb
fix: Remove dialing address when dial failed
1
fix
null
679,913
21.05.2019 13:08:58
-3,600
3f085a34f2099eb79b2dbaa26cd0011871ba4667
feat(math): add sigmoid / sigmoid11 fns
[ { "change_type": "MODIFY", "diff": "-import { PI, HALF_PI } from \"./api\";\n+import { HALF_PI, PI } from \"./api\";\nexport const mix = (a: number, b: number, t: number) => a + (b - a) * t;\n@@ -59,7 +59,7 @@ export const circular = (t: number) => {\nreturn Math.sqrt(1 - t * t);\n};\n-export const cosine =...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(math): add sigmoid / sigmoid11 fns
1
feat
math
471,462
21.05.2019 13:16:46
14,400
ccf22010e03f85d60a16e63b71549c621eac8e50
docs: add "Ink Components" to component list
[ { "change_type": "MODIFY", "diff": "@@ -17,6 +17,9 @@ The hardest part of any project is often getting content onto that first blank p\n- [Helix UI](https://rackerlabs.github.io/helix-ui/)\nThe HelixUI library provides front-end developers a set of reusable CSS classes and HTML Custom Elements that adhere t...
JavaScript
MIT License
open-wc/open-wc
docs: add "Ink Components" to component list
1
docs
null
104,874
21.05.2019 14:28:20
-3,600
6e1b42ffaa637da7ee5ed05a24ffaea5ed0f412c
chore(table): refactoring (OAO)
[ { "change_type": "MODIFY", "diff": "@@ -186,13 +186,12 @@ class FilterHeaderRow extends Component {\nconst column = columns.find(i => c.columnId === i.id);\nconst columnStateValue = this.state[column.id]; // eslint-disable-line\n- let child;\n// undefined check has the effect of making isFilterable default ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(table): refactoring (OAO)
1
chore
table
306,484
21.05.2019 14:45:28
-7,200
c6556ce0560c3746ec23fd186fe5b07db6a7222e
chore: make test date independent
[ { "change_type": "MODIFY", "diff": "@@ -815,7 +815,10 @@ describe('<lion-calendar>', () => {\nit('is on day closest to today, if today (and surrounding dates) is/are disabled', async () => {\nconst el = await fixture(html`\n- <lion-calendar .disableDates=\"${d => d.getDate() <= 16}\"></lion-calendar>\n+ <li...
JavaScript
MIT License
ing-bank/lion
chore: make test date independent
1
chore
null
791,834
21.05.2019 15:06:13
25,200
41cb977e03b1483df36e51e7259c4a56bc774415
misc(assets): remove outdated extension screenshots
[ { "change_type": "DELETE", "diff": "Binary files a/assets/crx/crx_screenshot1.jpg and /dev/null differ\n", "new_path": "assets/crx/crx_screenshot1.jpg", "old_path": "assets/crx/crx_screenshot1.jpg" }, { "change_type": "DELETE", "diff": "Binary files a/assets/crx/crx_screenshot2.jpg and /...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(assets): remove outdated extension screenshots (#9015)
1
misc
assets
273,739
21.05.2019 15:29:51
14,400
3fe38c5e0e250d237052976086cc127e43bc78cc
refactor(app): fix typo in file
[ { "change_type": "MODIFY", "diff": "@@ -6,14 +6,14 @@ import head from './head'\nimport router from './router'\nimport fetchPath from './fetchPath'\nimport { url } from './utils/helpers'\n-import gaphqlGuard from './graphql/guard'\n-import graphlMixin from './graphql/mixin'\n+import graphqlGuard from './gra...
JavaScript
MIT License
gridsome/gridsome
refactor(app): fix typo in file (#448)
1
refactor
app
730,429
21.05.2019 15:38:01
14,400
3a0cd41d0d5c60915b3f78016edd5adcaf0d1a2f
chore(tab/tap): removing npm credentials/git checkout NPM test users is no longer private and we do not need to add the npm token.
[ { "change_type": "MODIFY", "diff": "@@ -10,19 +10,8 @@ pipeline {\n}\nstages {\n- stage('Checkout') {\n- steps{\n- checkout poll: false, scm: [$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [],\n- submoduleCfg: [], userRemoteConfigs: [[credentialsId: ...
JavaScript
MIT License
webex/react-widgets
chore(tab/tap): removing npm credentials/git checkout NPM test users is no longer private and we do not need to add the npm token.
1
chore
tab/tap
217,922
21.05.2019 15:57:28
-7,200
d68cb35eb6a5e88dd56ad7c61d08345f48bd4253
fix(auth): added a security to avoid user data loss on network error
[ { "change_type": "MODIFY", "diff": "@@ -206,7 +206,7 @@ export class AuthEffects {\nif (missingCharacters.length === 0) {\nreturn of(new CharactersLoaded([]));\n}\n- return combineLatest(...getMissingCharacters$)\n+ return combineLatest(getMissingCharacters$)\n.pipe(\nmap(characters => new CharactersLoaded(...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(auth): added a security to avoid user data loss on network error
1
fix
auth
815,577
21.05.2019 16:24:13
-28,800
3500b5eccf0fe2f397c070b0fc85c62e6a12a9a3
feat: Use snappy to compress large messages BREAKING CHANGE: protocol communication break
[ { "change_type": "ADD", "diff": "+use bytes::{Bytes, BytesMut};\n+use snap::{Decoder as SnapDecoder, Encoder as SnapEncoder};\n+use tokio::codec::{Decoder, Encoder, LengthDelimitedCodec};\n+\n+use std::io;\n+\n+const SKIP_COMPRESS_SIZE: usize = 40 * 1024;\n+\n+/// Compressed decompression structure\n+///\n+...
Rust
MIT License
nervosnetwork/ckb
feat: Use snappy to compress large messages BREAKING CHANGE: protocol communication break
1
feat
null
217,922
21.05.2019 17:28:55
-7,200
100f7b2a50e15875de461b166f3a285663b3d68a
chore(release): 5.4.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+<a name=\"5.4.4\"></a>\n+## [5.4.4](https://github.com/ffxiv-teamcraft/ffxiv-teamcraft/compare/...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(release): 5.4.4
1
chore
release
217,922
21.05.2019 17:32:37
-7,200
0c03b13e701193768aa8ba1d18800a9712c04721
chore: fixed leve icon in "used for" category
[ { "change_type": "MODIFY", "diff": "<ng-template #leveAvatar>\n<a routerLink=\"/db/{{translate.currentLang}}/leve/{{leve.leveId}}\">\n<img class=\"img-icon round-icon\"\n- src=\"https://garlandtools.org/db/images/{{(leve.job | jobAbbr)?.en}}.png\">\n+ src=\"./assets/icons/leve.png\">\n</a>\n<a\nrouterLink=\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fixed leve icon in "used for" category
1
chore
null
503,952
21.05.2019 19:22:46
-7,200
c9eb042e43372fcf2bcba594a4277c29a34dde79
fix(Select): changed prop TypeScript definitions
[ { "change_type": "MODIFY", "diff": "@@ -11,9 +11,10 @@ export interface SelectProps extends HTMLProps<HTMLOptionElement> {\nisExpanded?: boolean;\nisGrouped?: boolean;\nonToggle(value: boolean): void;\n+ onSelect(event: ReactEventHandler<HTMLOptionElement, Event>, element: string, isPlaceholder: boolean): v...
TypeScript
MIT License
patternfly/patternfly-react
fix(Select): changed prop TypeScript definitions (#2047)
1
fix
Select
711,597
21.05.2019 20:48:23
-7,200
d8290b3e22e79362d67607d8115beb744e3ff8e5
chore: Switch Lerna to fixed mode
[ { "change_type": "ADD", "diff": "", "new_path": "CHANGELOG.md", "old_path": "CHANGELOG.md" }, { "change_type": "MODIFY", "diff": "\"packages\": [\n\"packages/*\"\n],\n- \"version\": \"independent\",\n+ \"version\": \"0.1.1\",\n\"npmClient\": \"yarn\",\n\"useWorkspaces\": true\n}\n", ...
TypeScript
MIT License
vendure-ecommerce/vendure
chore: Switch Lerna to fixed mode
1
chore
null
603,467
21.05.2019 21:59:38
-3,600
90630b4c40c99e191a1b6066def43408f72d3f6b
chore(lerna): Corrected the version of which Lerna must have missed ou
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"@documentation/esdoc-template\",\n- \"version\": \"2.0.1-alpha.64\",\n+ \"version\": \"2.0.1-alpha.65\",\n\"description\": \"Serenity/JS API documentation template\",\n\"author\": {\n\"name\": \"Jan Molak\",\n", "new_path": "documentation/esdoc-template...
TypeScript
Apache License 2.0
serenity-js/serenity-js
chore(lerna): Corrected the version of @documentation/esdoc-template which Lerna must have missed ou
1
chore
lerna