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
67,476
22.12.2018 22:31:01
-3,600
8ab6884b43bdc8970d6d4aef006cfca478762068
chore(all): fixup a few references
[ { "change_type": "MODIFY", "diff": "-import { Class, Constructable, IContainer, IRegistry, PLATFORM, Registration, Writable } from '@aurelia/kernel';\n+import {\n+ Class,\n+ Constructable,\n+ IContainer,\n+ IRegistry,\n+ IResourceDefinition,\n+ IResourceKind,\n+ IResourceType,\n+ PLATFORM,\n+ Registration,\...
TypeScript
MIT License
aurelia/aurelia
chore(all): fixup a few references
1
chore
all
471,527
23.12.2018 00:21:10
-3,600
fb1b2485e6507f4323032b4ffd3272f7ca03288a
chore: add contact information
[ { "change_type": "MODIFY", "diff": "> open-wc is still in an early stage - pls review our recommendations and test our tools! we are eager to get feedback\n# Open Web Component Recommendations\n-\nWe want to provide a good set of default on how to facilitate your web component.\n[![CircleCI](https://circlec...
JavaScript
MIT License
open-wc/open-wc
chore: add contact information
1
chore
null
67,476
23.12.2018 00:41:42
-3,600
750e32f2b438c568108351b74f6cc71deba85f08
refactor(runtime): move binding-context to observation
[ { "change_type": "MODIFY", "diff": "import { IIndexable, IServiceLocator, PLATFORM, Reporter, StrictPrimitive } from '@aurelia/kernel';\nimport { IBindScope } from '../lifecycle';\nimport { Collection, IBindingContext, IOverrideContext, IScope, LifecycleFlags, ObservedCollection } from '../observation';\n+i...
TypeScript
MIT License
aurelia/aurelia
refactor(runtime): move binding-context to observation
1
refactor
runtime
471,527
23.12.2018 00:50:02
-3,600
c62b684d8ded721cbb6fc3e148f244f6ecb95090
fix(testing-helpers): on IE set timeout to 2ms for blur/focus trigger
[ { "change_type": "MODIFY", "diff": "@@ -51,7 +51,7 @@ export function aTimeout(ms) {\nexport async function triggerBlurFor(element) {\nelement.blur();\nif (isIE()) {\n- await aTimeout();\n+ await aTimeout(2); // it's 2ms to be extra save as IE otherwise very rarely randomly fails\n}\n}\n@@ -64,7 +64,7 @@ ex...
JavaScript
MIT License
open-wc/open-wc
fix(testing-helpers): on IE set timeout to 2ms for blur/focus trigger
1
fix
testing-helpers
67,476
23.12.2018 00:51:09
-3,600
4c71bac8a9b75f5a9fcbfd9d1f59e7433972bc23
refactor(signaler): move signaler to observation
[ { "change_type": "MODIFY", "diff": "@@ -2,11 +2,11 @@ import { IIndexable, IServiceLocator, PLATFORM, Reporter, StrictPrimitive } from\nimport { IBindScope } from '../lifecycle';\nimport { Collection, IBindingContext, IOverrideContext, IScope, LifecycleFlags, ObservedCollection } from '../observation';\nimp...
TypeScript
MIT License
aurelia/aurelia
refactor(signaler): move signaler to observation
1
refactor
signaler
67,476
23.12.2018 01:45:54
-3,600
5fbcd66b0f0f6722c38b91f7ecf4e36ad7d99074
chore(test): fix signaler path
[ { "change_type": "MODIFY", "diff": "-import { Signaler } from './../../../src/binding/signaler';\n-import { ISignaler, LifecycleFlags } from '../../../src/index';\n+import { ISignaler, LifecycleFlags, Signaler } from '../../../src/index';\nimport { expect } from 'chai';\nimport { eachCartesianJoinFactory } ...
TypeScript
MIT License
aurelia/aurelia
chore(test): fix signaler path
1
chore
test
67,476
23.12.2018 01:53:49
-3,600
7000b9aafc98464c5810a2705c70212ab8682aa0
fix(custom-element): use the correct $bind interface
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ import { INode } from '../dom.interfaces';\nimport {\nHooks,\nIAttach,\n- IBindScope,\n+ IBind,\nILifecycleHooks,\nILifecycleUnbindAfterDetach,\nIMountable,\n@@ -62,7 +62,7 @@ export interface ICustomElement extends\nPartial<IChangeTracker>,\nILifecycleH...
TypeScript
MIT License
aurelia/aurelia
fix(custom-element): use the correct $bind interface
1
fix
custom-element
531,793
23.12.2018 08:11:26
0
3ab6d149fb1d1d05d588544c1ca978e0f3bf6b8e
fix(ci): drop go module tidy check from travis go modules leave checksums of old releases which gets removed when tidy is run, so the diff check is likely to pick us something every time a go module was bumped. Can't have it on CI this way as it will keep failing jobs
[ { "change_type": "MODIFY", "diff": "@@ -77,8 +77,6 @@ jobs:\n- export GO111MODULE=on\n# compile assets via webpack and build those into bindata_assetfs.go file\n- make bindata_assetfs.go\n- # tidy module deps to ensure we only have what we needed (git diff will pick it up)\n- - go mod tidy -v\n# verify that...
TypeScript
Apache License 2.0
prymitive/karma
fix(ci): drop go module tidy check from travis go modules leave checksums of old releases which gets removed when tidy is run, so the diff check is likely to pick us something every time a go module was bumped. Can't have it on CI this way as it will keep failing jobs
1
fix
ci
531,793
23.12.2018 08:29:56
0
d4a11d19e94f7fa1bccbfa430bb70b441a66edd9
fix(ci): pre-download go modules before running concurrent jobs Go modules can run into races when concurrently downloading packages
[ { "change_type": "MODIFY", "diff": "@@ -42,6 +42,8 @@ jobs:\n- DESC=\"Lint Go code\"\nbefore_script:\n- make mock-assets\n+ # https://github.com/golang/go/issues/26794\n+ - GO111MODULE=on go mod download\nscript: make lint-go\n- stage: Lint\n@@ -75,6 +77,8 @@ jobs:\n- nvm install $(< .nvmrc)\nscript:\n- exp...
TypeScript
Apache License 2.0
prymitive/karma
fix(ci): pre-download go modules before running concurrent jobs Go modules can run into races when concurrently downloading packages
1
fix
ci
531,793
23.12.2018 11:18:07
0
d2af0f2b21e02579c1ccc7687822aa079bfde438
chore(ci): cache Go modules dirs on Travis
[ { "change_type": "MODIFY", "diff": "defaults_go: &DEFAULTS_GO\nlanguage: go\ngo: \"1.11.4\"\n+ cache:\n+ directories:\n+ # https://restic.net/blog/2018-09-02/travis-build-cache\n+ - $HOME/.cache/go-build\n+ - $HOME/gopath/pkg/mod\ndefaults_js: &DEFAULTS_JS\nlanguage: node_js\n", "new_path": ".travis.yml...
TypeScript
Apache License 2.0
prymitive/karma
chore(ci): cache Go modules dirs on Travis
1
chore
ci
531,793
23.12.2018 11:19:44
0
ef7cb267886f0095b54ace3ab6df8be3bc86fecc
fix(build): rebuild binary on go.mod changes
[ { "change_type": "MODIFY", "diff": "@@ -51,7 +51,7 @@ endif\nbindata_assetfs.go: .build/deps-build-go.ok .build/artifacts-bindata_assetfs.$(GO_BINDATA_MODE) .build/artifacts-ui.ok\ngo-bindata-assetfs -o bindata_assetfs.go -nometadata ui/build/... ui/src/...\n-$(NAME): .build/deps-build-go.ok bindata_assetfs...
TypeScript
Apache License 2.0
prymitive/karma
fix(build): rebuild binary on go.mod changes
1
fix
build
531,793
23.12.2018 12:18:28
0
f3085619dfab67e63de895c63dfdce675c41edd6
chore(build): add missing lines to go.sum Running build locally adds those, push it to git
[ { "change_type": "MODIFY", "diff": "@@ -9,6 +9,7 @@ github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdn\ngithub.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk=\ngithub.com/certifi/gocertifi v0.0.0-20180118203423-deb3ae2ef261 h1:6/yVvBs...
TypeScript
Apache License 2.0
prymitive/karma
chore(build): add missing lines to go.sum Running build locally adds those, push it to git
1
chore
build
531,793
23.12.2018 12:20:21
0
0be0d44350417fe6007e1fc540bdcea04d51c313
chore(go): run go mod tidy to cleanup go.sum
[ { "change_type": "MODIFY", "diff": "@@ -7,8 +7,6 @@ github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 h1:xJ4a3vCFaGF/jqvzLM\ngithub.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=\ngithub.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8...
TypeScript
Apache License 2.0
prymitive/karma
chore(go): run go mod tidy to cleanup go.sum
1
chore
go
217,922
23.12.2018 13:10:32
-3,600
fd0fe773087140ca72db9f3631f285f851a02459
fix: fixed an issue with maps loading inside alarms page
[ { "change_type": "MODIFY", "diff": "@@ -46,6 +46,7 @@ import { TranslationsLoaderFactory } from './translations-loader';\nimport { RotationsModule } from './modules/rotations/rotations.module';\nimport { CustomLinksModule } from './modules/custom-links/custom-links.module';\nimport { PageLoaderModule } from...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: fixed an issue with maps loading inside alarms page
1
fix
null
217,922
23.12.2018 13:32:31
-3,600
ff9942bc1f596bb5e564eac369a9a290ad72e09f
feat: now showing a warning if results.length >= 50 in search page
[ { "change_type": "MODIFY", "diff": "translate}}</label>\n<button nz-button (click)=\"addSelectedItemsToList(results)\">{{'LISTS.Add_selection' | translate}}</button>\n</div>\n+ <nz-alert nzType=\"warning\" [nzMessage]=\"'ITEMS.Too_many_results_warning' | translate\" nzShowIcon\n+ *ngIf=\"results.length >= 5...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: now showing a warning if results.length >= 50 in search page
1
feat
null
217,922
23.12.2018 13:37:46
-3,600
eb07a251b0bc3faa64146eaa611281a5b3b12b0e
fix: removed useless margin under the notification box
[ { "change_type": "MODIFY", "diff": "@@ -126,6 +126,10 @@ nz-select {\n}\n}\n+ .ant-notification-notice {\n+ margin-bottom: 0 !important;\n+ }\n+\n.ant-list-item-content {\n@media @mobile {\njustify-content: center;\n", "new_path": "apps/client/src/app/pages/search/search/search.component.less", "old...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: removed useless margin under the notification box
1
fix
null
217,922
23.12.2018 13:38:18
-3,600
dcece3dd599bbb2f49b4b89f2678d886a94aeaec
feat: added a reset password button inside the login box
[ { "change_type": "MODIFY", "diff": "@@ -121,6 +121,10 @@ export class AuthFacade {\nprivate oauthService: OauthService) {\n}\n+ resetPassword(email: string): void {\n+ this.af.auth.sendPasswordResetEmail(email);\n+ }\n+\npublic addCharacter(useAsDefault = false, disableClose = false): void {\nthis.dialog.cr...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: added a reset password button inside the login box
1
feat
null
217,922
23.12.2018 14:14:25
-3,600
05e46b9a8ba0024aecd77ab841b3cf8427817a6d
fix: fixed an issue with first time login and character association
[ { "change_type": "MODIFY", "diff": "@@ -114,7 +114,7 @@ export class AuthEffects {\nfilter(action => action.type !== AuthActionTypes.NoLinkedCharacter && action.type !== AuthActionTypes.LinkingCharacter),\nwithLatestFrom(this.store),\nfilter(([action, state]) => !state.auth.loading && state.auth.loggedIn &&...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: fixed an issue with first time login and character association
1
fix
null
217,922
23.12.2018 14:21:26
-3,600
b73f2271878ec8eb8244efd705bb91e41748c2f2
chore: better fix for first time character association
[ { "change_type": "MODIFY", "diff": "@@ -80,7 +80,14 @@ export class CharacterLinkPopupComponent {\nselectCharacter(character: CharacterSearchResultRow): void {\nthis.store.dispatch(new AddCharacter(character.ID, this.useAsDefault));\n+ if (this.mandatory) {\n+ // Hotfix for first login character addition.\n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: better fix for first time character association
1
chore
null
531,793
23.12.2018 14:56:09
0
feb9ebacfc89afc01979513ebb1dc592bbf1d32a
fix(ci): move git diff check to the end of job run Go modules might trigger some changes now, ensure that we check for diff after building everything
[ { "change_type": "MODIFY", "diff": "@@ -86,9 +86,6 @@ jobs:\n- go mod download\n# compile assets via webpack and build those into bindata_assetfs.go file\n- make bindata_assetfs.go\n- # verify that there are no uncommited changes from (re)compiling sass\n- # assets\n- - git diff --exit-code\n# install bakel...
TypeScript
Apache License 2.0
prymitive/karma
fix(ci): move git diff check to the end of job run Go modules might trigger some changes now, ensure that we check for diff after building everything
1
fix
ci
217,922
23.12.2018 15:04:06
-3,600
fa785088ec3dec49fb9d578019c27ce96db0bcdd
chore: fix for crowdin
[ { "change_type": "MODIFY", "diff": "\"SIMULATOR\": {\n\"Fixed_notification_number\": \"Konstanter Klangeffekt\",\n\"Starting_echo_number\": \"Klangeffekt #\",\n- \"Break_on_reclaim\": \"Split macros on Reclaim point-of-no-return\",\n\"Extra_wait\": \"Extra Wartezeit\",\n\"Import_macro\": \"Von Spiel-Makro i...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix for crowdin
1
chore
null
217,922
23.12.2018 15:12:44
-3,600
10e55666459915d1e0590f47868c672ba655d601
fix: fixed change detector inside list rows
[ { "change_type": "MODIFY", "diff": "@@ -51,6 +51,7 @@ export class ItemRowComponent implements OnInit {\n@Input()\npublic set item(item: ListRow) {\nthis._item = item;\n+ this.cdRef.detectChanges();\nthis.item$.next(item);\n}\n", "new_path": "apps/client/src/app/pages/list-details/item-row/item-row.comp...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: fixed change detector inside list rows
1
fix
null
679,913
23.12.2018 16:12:16
0
a5d2f98ede236bbe6939d20fdb7d63657d2092b9
feat(color): add Porter-Duff ops, pre/post-multiply, update types
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,10 @@ This project is part of the\n<!-- TOC depthFrom:2 depthTo:3 -->\n- [About](#about)\n+ - [Color spaces](#color-spaces)\n+ - [RGBA transformations](#rgba-transformations)\n+ - [RGBA Porter-Duff compositing](#rgba-porter-duff-compositing)\n+ - [Cosine grad...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(color): add Porter-Duff ops, pre/post-multiply, update types
1
feat
color
679,913
24.12.2018 01:41:15
0
404ac54b9365ef553d3a90f4d50658ad3058c4a7
feat(color): add HSI converters, add clampH(), minor refactors
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ This project is part of the\n<!-- TOC depthFrom:2 depthTo:3 -->\n- [About](#about)\n- - [Color spaces](#color-spaces)\n+ - [Color modes](#color-modes)\n- [RGBA transformations](#rgba-transformations)\n- [RGBA Porter-Duff compositing](#rgba-porter-duff-co...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(color): add HSI converters, add clampH(), minor refactors
1
feat
color
67,476
24.12.2018 02:12:16
-3,600
2089dcb3b3a45a31b5cca23b012593b155f53c7b
feat(aurelia): implement API to provide a DOM instance to the runtime
[ { "change_type": "MODIFY", "diff": "-import { DI, IContainer, IRegistry, PLATFORM, Registration } from '@aurelia/kernel';\n+import { DI, IContainer, IRegistry, PLATFORM, Registration, Reporter } from '@aurelia/kernel';\nimport { DOM } from './dom';\nimport { IDocument, INode } from './dom.interfaces';\nimpo...
TypeScript
MIT License
aurelia/aurelia
feat(aurelia): implement API to provide a DOM instance to the runtime
1
feat
aurelia
67,476
24.12.2018 02:18:27
-3,600
376137933e42075bdee4976a553b1d077fddae58
chore(all): fix missing DOM injects
[ { "change_type": "MODIFY", "diff": "-import { DI } from '@aurelia/kernel';\n+import { DI, inject } from '@aurelia/kernel';\nimport { DOM, IElement, IHTMLTemplateElement, INode } from '@aurelia/runtime';\n/**\n@@ -38,6 +38,7 @@ export const ITemplateFactory = DI.createInterface<ITemplateFactory>()\n*\n* @int...
TypeScript
MIT License
aurelia/aurelia
chore(all): fix missing DOM injects
1
chore
all
67,476
24.12.2018 02:19:06
-3,600
c1eb5c756dba91c95905b381d379c524855c693c
chore(test): fix generated jit tests
[ { "change_type": "MODIFY", "diff": "import { expect } from \"chai\";\nimport { DI } from \"../../../kernel/src/index\";\n-import { CustomElementResource, DOM, Aurelia, BindingMode, ILifecycle } from \"../../../runtime/src/index\";\n+import { CustomElementResource, Aurelia, BindingMode, ILifecycle } from \"....
TypeScript
MIT License
aurelia/aurelia
chore(test): fix generated jit tests
1
chore
test
67,476
24.12.2018 02:30:58
-3,600
c1927f4d7334e72ab4f2469ab280b17d35dd52df
refactor(dom): remove unused methods
[ { "change_type": "MODIFY", "diff": "@@ -118,16 +118,6 @@ export class DOM {\npublic getAttribute(node: IHTMLElement, name: string): string {\nreturn node.getAttribute(name);\n}\n- public getChildNodes(node: INode): ReadonlyArray<INode> {\n- if (node.childNodes.length) {\n- return PLATFORM.toArray(node.child...
TypeScript
MIT License
aurelia/aurelia
refactor(dom): remove unused methods
1
refactor
dom
67,476
24.12.2018 02:44:58
-3,600
52427aaa8af3f3055036c3dedd8bba8f8e8bbab0
refactor(svg-analyzer): use document instead of DOM for html browser specific code
[ { "change_type": "MODIFY", "diff": "@@ -205,7 +205,7 @@ function createElement(html: string): Element {\n// Using very HTML-specific code here since you won't install this module\n// unless you are actually running in a browser, using HTML,\n// and dealing with browser inconsistencies.\n- const div = DOM.cr...
TypeScript
MIT License
aurelia/aurelia
refactor(svg-analyzer): use document instead of DOM for html browser specific code
1
refactor
svg-analyzer
67,476
24.12.2018 02:47:10
-3,600
8f6983364edc2f7ac319aa334c280c333cbecca9
refactor(router): pass DOM to hydrate
[ { "change_type": "MODIFY", "diff": "-import { CustomElementResource, ICustomElement, ICustomElementType, INode, IRenderingEngine, LifecycleFlags } from '@aurelia/runtime';\n+import { CustomElementResource, ICustomElement, ICustomElementType, IDOM, INode, IRenderingEngine, LifecycleFlags } from '@aurelia/run...
TypeScript
MIT License
aurelia/aurelia
refactor(router): pass DOM to hydrate
1
refactor
router
67,476
24.12.2018 03:57:59
-3,600
22137041ce3963aa8615cc4c1ebcb7c6fe9965c5
chore(jit): fix the jit tests
[ { "change_type": "MODIFY", "diff": "import { BasicConfiguration } from \"../../src\";\nimport { expect } from \"chai\";\n-import { valueConverter, customElement, bindable, CustomElementResource, IObserverLocator, Aurelia, Lifecycle, ILifecycle, INode, IElement } from \"../../../runtime/src/index\";\n-import...
TypeScript
MIT License
aurelia/aurelia
chore(jit): fix the jit tests
1
chore
jit
67,476
24.12.2018 05:18:22
-3,600
3f4751c3bd35ebcb31e61ae7aa746e07e93299f6
chore(runtime): add a todo / clarifying comment for domStub
[ { "change_type": "MODIFY", "diff": "@@ -84,6 +84,10 @@ export function collectionObserver(kind: CollectionKind.array | CollectionKind.s\nexport interface CollectionLengthObserver extends IBindingTargetObserver<Collection, string> {}\n+/**\n+ * Temporary shortcut to let the @targetObserver decorator know tha...
TypeScript
MIT License
aurelia/aurelia
chore(runtime): add a todo / clarifying comment for domStub
1
chore
runtime
67,476
24.12.2018 06:06:20
-3,600
0ea88418dc5504fce601b7bf1bf27f24b0f19322
chore(runtime): fix typing issues
[ { "change_type": "MODIFY", "diff": "@@ -130,7 +130,7 @@ export class BindingContext implements IBindingContext {\nif (Tracer.enabled) { Tracer.enter('BindingContext.getObservers', slice.call(arguments)); }\nlet observers = this.$observers;\nif (observers === undefined) {\n- this.$observers = observers = new...
TypeScript
MIT License
aurelia/aurelia
chore(runtime): fix typing issues
1
chore
runtime
815,601
24.12.2018 10:19:07
-28,800
f348821a122e218c61684365b598486364193f26
refactor: rename OutofBound -> OutOfBound
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ impl From<CrypError> for Error {\n#[derive(Debug, PartialEq, Eq)]\npub enum TxError {\n- OutofBound,\n+ OutOfBound,\nNotMatch,\nEmptyGroup,\nWrongFormat,\n", "new_path": "core/src/error.rs", "old_path": "core/src/error.rs" }, { "change_ty...
Rust
MIT License
nervosnetwork/ckb
refactor: rename OutofBound -> OutOfBound
1
refactor
null
815,601
24.12.2018 11:44:17
-28,800
6e128c1114f5109919ac768e830a29994b133d49
refactor: rename CellOutput#contract to CellOutput#_type
[ { "change_type": "MODIFY", "diff": "@@ -217,7 +217,7 @@ mod tests {\ncapacity: 2,\ndata: vec![],\nlock: H256::default(),\n- contract: None,\n+ type_: None,\n};\ndb.cells.insert(p1.clone(), Some(o.clone()));\n", "new_path": "core/src/cell.rs", "old_path": "core/src/cell.rs" }, { "change_type"...
Rust
MIT License
nervosnetwork/ckb
refactor: rename CellOutput#contract to CellOutput#_type
1
refactor
null
679,913
24.12.2018 15:38:30
0
610699ab93dd8d6b1bf663d2e7d641cb0e14b916
feat(color): add RGBA/HSLA wrapper types, update convert
[ { "change_type": "MODIFY", "diff": "@@ -25,6 +25,10 @@ export enum ColorMode {\nCSS,\n}\n+export interface IColor {\n+ readonly mode: ColorMode;\n+}\n+\n// RGBA constants\nexport const BLACK = Object.freeze([0, 0, 0, 1]);\n", "new_path": "packages/color/src/api.ts", "old_path": "packages/color/src/a...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(color): add RGBA/HSLA wrapper types, update convert
1
feat
color
679,913
24.12.2018 15:40:51
0
c2556c2ecc868792a309fa5c67103014e43dc749
refactor(vectors): update declareIndices, extract single declareIndex fn
[ { "change_type": "MODIFY", "diff": "-export const declareIndices = (\n+export const declareIndex = (\nproto: any,\n- props: string[],\n+ id: string,\n+ i: number,\nstrided = true,\n- defNumeric = true) => {\n-\n- const get = (i: number) =>\n- strided ?\n+ defNumeric = true\n+) => {\n+ const get = strided ?\...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(vectors): update declareIndices, extract single declareIndex fn
1
refactor
vectors
679,913
24.12.2018 15:41:49
0
6e6a33ce30e97b71949652d03bb6756a928933b2
refactor(vectors): update IVector (rename fields), add ICopyView
[ { "change_type": "MODIFY", "diff": "@@ -20,18 +20,23 @@ export interface ReadonlyVec extends\nexport interface StridedVec {\nbuf: Vec;\n- i: number;\n- s: number;\n+ offset: number;\n+ stride: number;\n}\nexport interface IVector<T> extends\nVec,\nICopy<T>,\n+ ICopyView<T>,\nIEmpty<T>,\nIEqualsDelta<T>,\nSt...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(vectors): update IVector (rename fields), add ICopyView
1
refactor
vectors
679,913
24.12.2018 15:45:25
0
0c0fce6ace29fa7b77e9f6b8dba8a6dffd8fe97f
feat(vectors): update gvec, add generic setS() add gvec copyView() gvec copy() returns new gvec() memoize ownKeys() intern strings
[ { "change_type": "MODIFY", "diff": "+import { memoize1 } from \"@thi.ng/memoize/memoize1\";\nimport { range } from \"@thi.ng/transducers/iter/range\";\nimport { map } from \"@thi.ng/transducers/xform/map\";\nimport { Vec, IVector } from \"./api\";\nimport { zeroes } from \"./setn\";\nimport { eqDeltaS } fro...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): update gvec, add generic setS() - add gvec copyView() - gvec copy() returns new gvec() - memoize ownKeys() - intern strings
1
feat
vectors
679,913
24.12.2018 15:50:45
0
5620483b1412aa95d80a4a80510d8314e9175f00
refactor(vector-pools): update IVector refs (new field names)
[ { "change_type": "MODIFY", "diff": "@@ -64,11 +64,11 @@ export abstract class AVecList<T extends StridedVec> {\nconst estride = this.estride;\nif (local) {\nfor (let v of this) {\n- res[i++] = (v.i - start) / estride;\n+ res[i++] = (v.offset - start) / estride;\n}\n} else {\nfor (let v of this) {\n- res[i++...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(vector-pools): update IVector refs (new field names)
1
refactor
vector-pools
679,913
24.12.2018 16:07:31
0
aa5ad9762280e468f22f743d677051822aceea22
fix(vectors): update field names in declareIndex()
[ { "change_type": "MODIFY", "diff": "export const declareIndex = (\nproto: any,\nid: string,\n- i: number,\n+ idx: number,\nstrided = true,\ndefNumeric = true\n) => {\nconst get = strided ?\n- function () { return this.buf[this.i + i * this.s]; } :\n- function () { return this.buf[this.i + i]; };\n+ function...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(vectors): update field names in declareIndex()
1
fix
vectors
815,601
24.12.2018 21:15:58
-28,800
ede5108c6c2b5c64142083f64fd315233eeb0b5a
refactor: rename CellStatus old -> dead, current -> live
[ { "change_type": "MODIFY", "diff": "@@ -535,7 +535,7 @@ pub mod test {\nlet out_point = OutPoint::new(root_hash, 0);\nlet state = shared.cell(&out_point);\n- assert!(state.is_current());\n+ assert!(state.is_live());\n}\n#[test]\n", "new_path": "chain/src/chain.rs", "old_path": "chain/src/chain.rs" ...
Rust
MIT License
nervosnetwork/ckb
refactor: rename CellStatus old -> dead, current -> live
1
refactor
null
679,913
25.12.2018 01:09:28
0
7a735f2d84f071eea182277a730b74893e64c2ad
refactor(vectors): update gvec, Vec2/3/4, extract iterator impl
[ { "change_type": "MODIFY", "diff": "+import { EPS } from \"@thi.ng/math/api\";\nimport { memoize1 } from \"@thi.ng/memoize/memoize1\";\nimport { range } from \"@thi.ng/transducers/iter/range\";\nimport { map } from \"@thi.ng/transducers/xform/map\";\n-import { Vec, IVector } from \"./api\";\n-import { zeroe...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(vectors): update gvec, Vec2/3/4, extract iterator impl
1
refactor
vectors
67,476
25.12.2018 04:09:28
-3,600
74b649af70c4a40c6f8057798fcf87ce86076bb2
perf(runtime-html): remove DOM dependency from DOM target accessors
[ { "change_type": "MODIFY", "diff": "-import { IBindingTargetAccessor, IDOM, ILifecycle, targetObserver } from '@aurelia/runtime';\n+import { IBindingTargetAccessor, ILifecycle, targetObserver } from '@aurelia/runtime';\nexport interface AttributeNSAccessor extends IBindingTargetAccessor<HTMLElement, string,...
TypeScript
MIT License
aurelia/aurelia
perf(runtime-html): remove DOM dependency from DOM target accessors
1
perf
runtime-html
67,476
25.12.2018 04:14:35
-3,600
a37a375d6062a4d8cac3e0a9e5215a244faeb844
feat(runtime): expose RuntimeConfiguration api
[ { "change_type": "ADD", "diff": "+import { DI, IContainer, IRegistry, Registration } from '@aurelia/kernel';\n+import { ILifecycle, Lifecycle } from './lifecycle';\n+import { IObserverLocator, ObserverLocator } from './observation/observer-locator';\n+import { BasicRenderer } from './renderer';\n+import { F...
TypeScript
MIT License
aurelia/aurelia
feat(runtime): expose RuntimeConfiguration api
1
feat
runtime
67,476
25.12.2018 04:22:04
-3,600
389ac478ff6c0bf9186d4f925192a2f8172ae73c
refactor(observation): make isDOMObserver property optional
[ { "change_type": "MODIFY", "diff": "@@ -112,7 +112,7 @@ export interface IBindingTargetAccessor<\nextends IDisposable,\nIAccessor<TValue>,\nIPropertyChangeTracker<TObj, TProp> {\n- isDOMObserver: boolean;\n+ isDOMObserver?: boolean;\n}\n/**\n", "new_path": "packages/runtime/src/observation.ts", "old...
TypeScript
MIT License
aurelia/aurelia
refactor(observation): make isDOMObserver property optional
1
refactor
observation
67,476
25.12.2018 04:48:38
-3,600
1d2b457b04ee66605404480b414bb9654ea74c87
feat(runtime-html): implement DI configurations and expose configuration API
[ { "change_type": "ADD", "diff": "+import { DI, IContainer, IRegistry, Registration } from '@aurelia/kernel';\n+import {\n+ IDOMInitializer,\n+ IProjectorLocator,\n+ ITargetAccessorLocator,\n+ ITargetObserverLocator,\n+ ITemplateFactory,\n+ RuntimeConfiguration\n+} from '@aurelia/runtime';\n+import { HTMLDOM...
TypeScript
MIT License
aurelia/aurelia
feat(runtime-html): implement DI configurations and expose configuration API
1
feat
runtime-html
67,476
25.12.2018 05:05:04
-3,600
5512c647a418c51a5b7c6631532d0a4d8775e0ec
refactor(runtime): reduce DOM API surface and dependencies on it
[ { "change_type": "MODIFY", "diff": "@@ -4,7 +4,6 @@ import {\nHydrateElementInstruction,\nICustomElementType,\nIDOM,\n- INode,\nIRenderContext,\nIRenderingEngine,\nITemplate,\n@@ -30,11 +29,11 @@ export class RenderPlan {\nprivate readonly dom: IDOM;\nprivate readonly dependencies: ReadonlyArray<IRegistry>;...
TypeScript
MIT License
aurelia/aurelia
refactor(runtime): reduce DOM API surface and dependencies on it
1
refactor
runtime
67,476
25.12.2018 08:39:41
-3,600
6e60798142ea30a92bad084068b2499cd8746279
fix(svg-analyzer): fix runtime reference
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@aurelia/kernel\": \"0.3.0\",\n- \"@aurelia/runtime\": \"0.3.0\"\n+ \"@aurelia/runtime\": \"0.3.0\",\n+ \"@aurelia/runtime-html\": \"0.3.0\"\n},\n\"devDependencies\": {\n\"@types/chai\": \"^4.1.7\",\n", "new_path": "packages/plugin-svg/packa...
TypeScript
MIT License
aurelia/aurelia
fix(svg-analyzer): fix runtime reference
1
fix
svg-analyzer
67,476
25.12.2018 08:45:41
-3,600
104e47b3ad8fbd15b3962bb5b27b13d9e9864277
refactor(router): adapt to new runtime-html
[ { "change_type": "MODIFY", "diff": "-import { CustomElementResource, ICustomElement, ICustomElementType, IDOM, INode, IRenderingEngine, LifecycleFlags } from '@aurelia/runtime';\n+import { CustomElementResource, ICustomElement, ICustomElementType, IDOM, INode, IProjectorLocator, IRenderingEngine, LifecycleF...
TypeScript
MIT License
aurelia/aurelia
refactor(router): adapt to new runtime-html
1
refactor
router
67,476
25.12.2018 10:17:42
-3,600
1c0fb8353a4a6be50763bfa5e35d1846921bb72b
feat(di): add tracing to get and construct methods
[ { "change_type": "MODIFY", "diff": "/// <reference types=\"reflect-metadata\" />\nimport { Constructable, IIndexable, Injectable, Primitive } from './interfaces';\nimport { PLATFORM } from './platform';\n-import { Reporter } from './reporter';\n+import { Reporter, Tracer } from './reporter';\n+\n+const slic...
TypeScript
MIT License
aurelia/aurelia
feat(di): add tracing to get and construct methods
1
feat
di
67,476
25.12.2018 10:18:20
-3,600
c301823ea301c487be15378e082184026156a70b
fix(runtime): add missing renderer registrations
[ { "change_type": "MODIFY", "diff": "-import { Constructable, IContainer, IResolver, PLATFORM, Reporter, Writable } from '@aurelia/kernel';\n+import { Constructable, IContainer, IResolver, PLATFORM, Registration, Reporter, Writable } from '@aurelia/kernel';\nimport { CompiledTemplate, IDOM, IDOMInitializer, ...
TypeScript
MIT License
aurelia/aurelia
fix(runtime): add missing renderer registrations
1
fix
runtime
67,476
25.12.2018 10:18:42
-3,600
848881dda2bcb1169530d1f44bf8dcc1b6517a88
fix(jit): add missing registrations
[ { "change_type": "MODIFY", "diff": "import { JitConfiguration } from '@aurelia/jit';\nimport { DI, IContainer, IRegistry, Registration } from '@aurelia/kernel';\nimport { ITemplateCompiler } from '@aurelia/runtime';\n+import { HTMLRuntimeConfiguration } from '@aurelia/runtime-html';\nimport {\nCaptureBindin...
TypeScript
MIT License
aurelia/aurelia
fix(jit): add missing registrations
1
fix
jit
67,476
25.12.2018 10:29:30
-3,600
24beabf886b72f84c1f39ffa1353a171d4ab57c3
refactor(observation): move observers to own files and rename Observer to SelfObserver
[ { "change_type": "MODIFY", "diff": "@@ -41,10 +41,12 @@ export * from './observation/collection-observer';\nexport * from './observation/computed-observer';\nexport * from './observation/dirty-checker';\nexport * from './observation/observer-locator';\n-export * from './observation/property-observation';\n+...
TypeScript
MIT License
aurelia/aurelia
refactor(observation): move observers to own files and rename Observer to SelfObserver
1
refactor
observation
67,476
25.12.2018 10:42:44
-3,600
fa3bda3cb12ae1f0709889df11df9d70acafdfd5
refactor(all): move timer globals to PLATFORM
[ { "change_type": "MODIFY", "diff": "+import { PLATFORM } from '@aurelia/kernel';\nimport { CustomElementResource, ICustomElement, ICustomElementType, IDOM, INode, IProjectorLocator, IRenderingEngine, LifecycleFlags } from '@aurelia/runtime';\nimport { INavigationInstruction } from './history-browser';\nimpo...
TypeScript
MIT License
aurelia/aurelia
refactor(all): move timer globals to PLATFORM
1
refactor
all
67,476
25.12.2018 11:00:05
-3,600
04f7c9e15693d8e6e609a00b818c4ce27227670c
chore(runtime): fix aurelia global typing
[ { "change_type": "MODIFY", "diff": "@@ -98,7 +98,7 @@ export class Aurelia {\nreturn this;\n}\n}\n-(PLATFORM.global as {Aurelia: unknown}).Aurelia = Aurelia;\n+(PLATFORM.global as typeof PLATFORM.global & {Aurelia: unknown}).Aurelia = Aurelia;\nexport const IDOMInitializer = DI.createInterface<IDOMInitializ...
TypeScript
MIT License
aurelia/aurelia
chore(runtime): fix aurelia global typing
1
chore
runtime
67,476
25.12.2018 11:32:09
-3,600
bae4817f7d06f57a3bfa4a04f5fd0544182647b3
chore(event-manager): cleanup unused registration extension point
[ { "change_type": "MODIFY", "diff": "@@ -213,8 +213,6 @@ export class EventSubscriber implements IEventSubscriber {\nexport type EventSubscription = DelegateOrCaptureSubscription | TriggerSubscription;\nexport interface IEventManager {\n- registerElementConfiguration(config: IElementConfiguration): void;\n- ...
TypeScript
MIT License
aurelia/aurelia
chore(event-manager): cleanup unused registration extension point
1
chore
event-manager
815,593
25.12.2018 13:23:25
-28,800
4ecf813cc30dd085d0740ddd82a8e6059d732dc1
feat: add rpc max_request_body_size config
[ { "change_type": "MODIFY", "diff": "\"rpc modules\": [\n\"List of API modules\",\n[\"Net\", \"Pool\", \"Miner\", \"Chain\"]\n- ]\n+ ],\n+ \"rpc max_request_body_size\": \"Default is 10MiB = 10 * 1024 * 1024\"\n},\n\"data_dir\": \"default\",\n},\n\"rpc\": {\n\"listen_address\": \"0.0.0.0:8114\",\n- \"modules...
Rust
MIT License
nervosnetwork/ckb
feat: add rpc max_request_body_size config
1
feat
null
815,598
25.12.2018 14:06:45
-28,800
42736d98b0e4ff375520ed0c89904e718020a386
chore: CHANGELOG for v0.3.0
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,42 @@ All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+# [v0.3.0](https://github.com/nervosnetwork/ckb/compare/v0.2.0...v0.3.0) (2019-01-02)\n+\n+\n+### Bu...
Rust
MIT License
nervosnetwork/ckb
chore: CHANGELOG for v0.3.0
1
chore
null
67,476
25.12.2018 15:13:32
-3,600
4a10d772187a12161e4f8436b6a738de1d47bca0
feat(kernel): make everything work correctly in node env
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,7 @@ export interface IPerformance {\nexport type ITimerHandler = string | Function;\nexport interface IWindowOrWorkerGlobalScope {\n+ process?: NodeJS.Process;\nreadonly performance: IPerformance;\nclearInterval(handle?: number): void;\nclearTimeout(handle?: n...
TypeScript
MIT License
aurelia/aurelia
feat(kernel): make everything work correctly in node env
1
feat
kernel
67,476
25.12.2018 15:13:48
-3,600
f4e93f9d8a50be65110ab62e76569f424388783b
chore(kernel): add nodejs runtime tests
[ { "change_type": "MODIFY", "diff": "\"scripts\": {\n\"lint\": \"cross-env tslint --project tsconfig-test.json -e \\\"test/**\\\" -t stylish\",\n\"test\": \"cross-env TS_NODE_PROJECT=\\\"../../scripts/tsconfig.json\\\" karma start ../../scripts/karma.conf.ts --package=kernel --browsers=ChromeHeadlessOpt --si...
TypeScript
MIT License
aurelia/aurelia
chore(kernel): add nodejs runtime tests
1
chore
kernel
815,569
25.12.2018 17:25:53
-28,800
18d1d8eeabcc2d02052eb11e92f9c79e3d13ca36
refactor: use derive clone
[ { "change_type": "MODIFY", "diff": "@@ -15,6 +15,7 @@ use rayon::iter::{IndexedParallelIterator, IntoParallelRefIterator, ParallelIter\nuse std::collections::HashSet;\n//TODO: cellbase, witness\n+#[derive(Clone)]\npub struct BlockVerifier<P> {\n// Verify if the committed transactions is empty\nempty: EmptyV...
Rust
MIT License
nervosnetwork/ckb
refactor: use derive clone
1
refactor
null
815,593
25.12.2018 18:50:29
-28,800
2107d3b0bdfa97d351585c264e812f3fddc70384
fix: remove unused file
[ { "change_type": "DELETE", "diff": "-use ckb_core::header::{BlockNumber, Header};\n-use numext_fixed_hash::H256;\n-use numext_fixed_uint::U256;\n-\n-#[derive(Clone, Debug, Default, PartialEq, Eq)]\n-pub struct HeaderView {\n- inner: Header,\n- total_difficulty: U256,\n- total_uncles_count: u64,\n-}\n-\n-imp...
Rust
MIT License
nervosnetwork/ckb
fix: remove unused file
1
fix
null
67,476
25.12.2018 21:24:31
-3,600
094cd92bb732031430d650792becd4a396448314
chore(all): add path aliases for test libs
[ { "change_type": "MODIFY", "diff": "import * as karma from 'karma';\nimport * as webpack from 'webpack';\nimport project from './project';\n+import * as path from 'path';\nexport interface IKarmaConfig extends karma.Config, IKarmaConfigOptions {\ntranspileOnly?: boolean;\n@@ -77,13 +78,18 @@ export default ...
TypeScript
MIT License
aurelia/aurelia
chore(all): add path aliases for test libs
1
chore
all
815,590
25.12.2018 21:53:02
-28,800
f2d86ba84d854431c6d92cfb167da9a41b4e7b9a
refactor: remove broken kad discovery protocol
[ { "change_type": "MODIFY", "diff": "@@ -12,24 +12,19 @@ use faketime::unix_time_as_millis;\nuse futures::future::{self, Future};\nuse futures::Stream;\nuse libp2p::core::{Endpoint, Multiaddr, UniqueConnecState};\n-use libp2p::kad;\nuse log::{error, info};\nuse std::boxed::Box;\nuse std::io::{Error as IoErro...
Rust
MIT License
nervosnetwork/ckb
refactor: remove broken kad discovery protocol
1
refactor
null
815,590
25.12.2018 22:36:41
-28,800
5afccd65333a7d904380a2b592949d96f9a3b27f
fix: add index on peer_store tables
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ pub fn create_tables(conn: &Connection) {\nlet sql = r#\"\nCREATE TABLE IF NOT EXISTS peer_info (\nid INTEGER PRIMARY KEY NOT NULL,\n- peer_id BINARY NOT NULL,\n+ peer_id BINARY UNIQUE NOT NULL,\nconnected_addr BINARY NOT NULL,\nnetwork_group BINARY NOT ...
Rust
MIT License
nervosnetwork/ckb
fix: add index on peer_store tables
1
fix
null
67,476
25.12.2018 23:41:43
-3,600
cae595957915a25c82143c323a0cf8136a2edc8c
feat(runtime): expose mixed decorator api's
[ { "change_type": "MODIFY", "diff": "@@ -80,6 +80,7 @@ export function registerAttribute(this: ICustomAttributeType, container: IContai\n*/\nexport function customAttribute(name: string): CustomAttributeDecorator;\nexport function customAttribute(definition: IAttributeDefinition): CustomAttributeDecorator;\n...
TypeScript
MIT License
aurelia/aurelia
feat(runtime): expose mixed decorator api's
1
feat
runtime
217,922
26.12.2018 09:18:03
-3,600
f434bcd2c94af293a81e5efad04e7d796a091f93
fix: fixed missing icon issue with some gathering cards
[ { "change_type": "MODIFY", "diff": "@@ -59,12 +59,12 @@ export class GatheringLocationComponent {\nconst bellNode = this.bell.getNode(+node.nodeId);\nnode.timed = bellNode !== undefined;\nnode.itemId = node.obj.i;\n+ node.icon = item.obj.c;\nif (node.timed) {\nnode.type = ['Rocky Outcropping', 'Mineral Depo...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: fixed missing icon issue with some gathering cards
1
fix
null
217,922
26.12.2018 10:11:05
-3,600
a7abccf3dee2002d3a11869651be1209f67e11f7
feat: copy button for earning category in pricing closes
[ { "change_type": "MODIFY", "diff": "</nz-card>\n<nz-card>\n- <nz-card-meta [nzTitle]=\"'Earning' | translate\"\n+ <nz-card-meta [nzTitle]=\"title\"\nnzDescription=\"{{getTotalEarnings(list.finalItems, list) | number:'1.0-0'}} gil\"></nz-card-meta>\n+ <ng-template #title>\n+ <div fxLayout=\"row\" fxLayoutAli...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: copy button for earning category in pricing closes #545
1
feat
null
815,598
26.12.2018 12:57:05
-28,800
a7cadea4d8f34913dcf102deca98b1fb10c82c87
doc: add mailing list address to CONTRIBUTING
[ { "change_type": "MODIFY", "diff": "# Contributing\nWhen contributing to this repository, please first discuss the change you wish to make via issue,\n-email, or any other method with the community before making a change.\n+email, or any other method with the community before making a change. The developer ...
Rust
MIT License
nervosnetwork/ckb
doc: add mailing list address to CONTRIBUTING
1
doc
null
815,569
26.12.2018 13:51:33
-28,800
8206b98a219d2c821c4d679641a64086d42bb7a9
refactor: use derive clone and some tiny improvements
[ { "change_type": "MODIFY", "diff": "@@ -68,6 +68,7 @@ pub struct Shared<CI> {\nconsensus: Consensus,\n}\n+// https://github.com/rust-lang/rust/issues/40754\nimpl<CI: ChainIndex> ::std::clone::Clone for Shared<CI> {\nfn clone(&self) -> Self {\nShared {\n", "new_path": "shared/src/shared.rs", "old_pat...
Rust
MIT License
nervosnetwork/ckb
refactor: use derive clone and some tiny improvements
1
refactor
null
531,793
26.12.2018 14:22:59
-3,600
3e2683502cb19ab9d321884e2b2bc7bb86aa96d9
fix(deps): re-create Go module files Getting a diff in CI (https://travis-ci.com/prymitive/karma/jobs/167035075) as some deps are removed from go.mod Re-create both files (go.mod & go.sum) to ensure we don't have any orphaned indirect deps there
[ { "change_type": "MODIFY", "diff": "@@ -4,20 +4,17 @@ require (\ngithub.com/BurntSushi/toml v0.3.1 // indirect\ngithub.com/DeanThompson/ginpprof v0.0.0-20170218162546-8c0e31bfeaa8\ngithub.com/blang/semver v3.5.1+incompatible\n- github.com/certifi/gocertifi v0.0.0-20181223090118-ee1a9a0726d2 // indirect\n+ g...
TypeScript
Apache License 2.0
prymitive/karma
fix(deps): re-create Go module files Getting a diff in CI (https://travis-ci.com/prymitive/karma/jobs/167035075) as some deps are removed from go.mod Re-create both files (go.mod & go.sum) to ensure we don't have any orphaned indirect deps there
1
fix
deps
815,601
26.12.2018 15:31:44
-28,800
58cb857b9fb2135caded3ea3c5c76c9624d6f60b
refactor: rename ambiguous tx error Revert "refactor: rename Cellbase -> CellBase" This reverts commit
[ { "change_type": "MODIFY", "diff": "@@ -114,10 +114,12 @@ pub enum DifficultyError {\n#[derive(Debug, PartialEq, Clone, Copy, Eq)]\npub enum TransactionError {\nNullInput,\n- OutOfBound,\n+ /// Occur output's bytes_len exceed capacity\n+ CapacityOverflow,\nDuplicateInputs,\nEmpty,\n- InvalidCapacity,\n+ ///...
Rust
MIT License
nervosnetwork/ckb
refactor: rename ambiguous tx error Revert "refactor: rename Cellbase -> CellBase" This reverts commit 8de3ae7b07e0894bcdeb133b65cbbd1f4ce9af36.
1
refactor
null
807,849
26.12.2018 17:23:07
28,800
baec1bc32def21563e5f8bc1fff02adb10f1c8b8
chore(github): Add probot/stale config
[ { "change_type": "ADD", "diff": "+# Configuration for probot-stale - https://github.com/probot/stale\n+\n+# Number of days of inactivity before an Issue or Pull Request becomes stale\n+daysUntilStale: 60\n+\n+# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.\n+# ...
JavaScript
MIT License
lerna/lerna
chore(github): Add probot/stale config
1
chore
github
807,849
26.12.2018 17:27:57
28,800
95d9dddc433758767402ec6baffa7a005c810cdb
chore(github): Add dessant/lock-threads config
[ { "change_type": "ADD", "diff": "+# Configuration for lock-threads - https://github.com/dessant/lock-threads\n+\n+# Number of days of inactivity before a closed issue or pull request is locked\n+daysUntilLock: 60\n+\n+# Skip issues and pull requests created before a given timestamp. Timestamp must\n+# follo...
JavaScript
MIT License
lerna/lerna
chore(github): Add dessant/lock-threads config
1
chore
github
67,476
26.12.2018 17:37:42
-3,600
f47d3356b0f4e23c4f486b38e14b986f4206da04
feat(jit): expose parseExpression method
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,7 @@ import { Access, Char, Precedence, Token, unescapeCode } from './common';\nexport const ParserRegistration: IRegistry = {\nregister(container: IContainer): void {\ncontainer.registerTransformer(IExpressionParser, parser => {\n- parser['parseCore'] = pars...
TypeScript
MIT License
aurelia/aurelia
feat(jit): expose parseExpression method
1
feat
jit
67,476
26.12.2018 17:38:23
-3,600
c686718bfd8217fea1321d66b2513265d5a6dadf
chore(instructions): format imports
[ { "change_type": "MODIFY", "diff": "-import { ForOfStatement, Interpolation, IsBindingBehavior } from './binding/ast';\n+import { AccessScope, BindingIdentifier, ForOfStatement, Interpolation, IsBindingBehavior } from './binding/ast';\nimport { BindingMode } from './binding/binding-mode';\nimport {\nICallBi...
TypeScript
MIT License
aurelia/aurelia
chore(instructions): format imports
1
chore
instructions
67,476
26.12.2018 17:38:56
-3,600
8ef28299c28478c6d0dc70ddfebb9f969646be55
chore(runtime): move test-builder and runtime spec to runtime-html tests
[ { "change_type": "ADD", "diff": "+// import { TestBuilder as Test, DefinitionBuilder as D, InstructionBuilder as I } from './test-builder';\n+\n+// describe('runtime', () => {\n+// it('1', () => {\n+// const appState = { show: true };\n+// const definition =\n+// D.if(\n+// I.toView('show'),\n+// D.interpol...
TypeScript
MIT License
aurelia/aurelia
chore(runtime): move test-builder and runtime spec to runtime-html tests
1
chore
runtime
815,601
26.12.2018 17:39:23
-28,800
71dec8b582e69fd2e4b64d1b5a615da9ad4a573b
refactor: unify Cellbase style
[ { "change_type": "MODIFY", "diff": "@@ -415,7 +415,7 @@ where\nself.is_acceptable()?;\nif tx.is_cellbase() {\n- return Err(PoolError::CellBase);\n+ return Err(PoolError::Cellbase);\n}\nself.check_duplicate(&tx)?;\n", "new_path": "pool/src/txs_pool/pool.rs", "old_path": "pool/src/txs_pool/pool.rs" ...
Rust
MIT License
nervosnetwork/ckb
refactor: unify Cellbase style
1
refactor
null
67,476
26.12.2018 18:01:33
-3,600
d3d49e2ce6d75c7e64ce09f1d705e67db87d4aa2
chore(jit): return the correct AST types from parseExpression
[ { "change_type": "MODIFY", "diff": "@@ -80,7 +80,11 @@ const enum SemanticError {\nUnexpectedForOf = 151\n}\n-export function parseExpression(input: string, bindingType?: BindingType): IExpression {\n+export function parseExpression<TType extends BindingType = BindingType.BindCommand>(input: string, binding...
TypeScript
MIT License
aurelia/aurelia
chore(jit): return the correct AST types from parseExpression
1
chore
jit
67,476
26.12.2018 18:30:20
-3,600
1e6dadb25a3ca2d3586a4b283a398f7243a951ca
fix(jit-html): rename TemplateFactory to TemplateElementFactory due to name conflict
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ import {\nTriggerBindingCommand\n} from './binding-command';\nimport { TemplateCompiler } from './template-compiler';\n-import { HTMLTemplateFactory, ITemplateFactory } from './template-factory';\n+import { HTMLTemplateElementFactory, ITemplateElementFacto...
TypeScript
MIT License
aurelia/aurelia
fix(jit-html): rename TemplateFactory to TemplateElementFactory due to name conflict
1
fix
jit-html
217,922
26.12.2018 18:41:25
-3,600
84a0cbf7c8a2df4108161d3a9dca580d1ede1567
chore: final prep for rc.0
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,7 @@ import { HttpClient } from '@angular/common/http';\nimport { UserCredential } from '@firebase/auth-types';\nimport { from, Observable, Subject } from 'rxjs';\nimport { switchMap } from 'rxjs/operators';\n+import { environment } from '../../../environment...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: final prep for rc.0
1
chore
null
217,922
26.12.2018 19:05:48
-3,600
3a29e990277642391b3f03483d71ab849bee56cc
chore: fix for desktop app build
[ { "change_type": "MODIFY", "diff": "{\n- \"name\": \"ffxiv-teamcraft-beta\",\n+ \"name\": \"ffxiv-teamcraft\",\n\"version\": \"5.0.0-rc.0\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n}\n},\n\"builder-util-runtime\": {\n- \"version\": \"7.1.0\",\n- \"resolved\": \"https://registry.npmjs.org/builder-util...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix for desktop app build
1
chore
null
679,913
26.12.2018 19:33:27
0
0061b21f9ef0025dd866f966e617e661d5f22611
feat(compose): add threadFirst/Last, rename compI => compL
[ { "change_type": "MODIFY", "diff": "@@ -23,9 +23,11 @@ This project is part of the\nFunctional composition helpers:\n- [comp()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/comp.ts)\n-- [compI()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/comp.ts)\n+- [compL()...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(compose): add threadFirst/Last, rename compI => compL
1
feat
compose
67,476
26.12.2018 19:38:33
-3,600
dfd0761f5d2957836c61eb657be2b503d460bfd1
chore(bundle): automatically sort dependencies for bundling
[ { "change_type": "MODIFY", "diff": "@@ -5,35 +5,49 @@ import typescript2 from 'rollup-plugin-typescript2';\nimport ts from 'typescript';\nimport { c, createLogger } from './logger';\nimport project from './project';\n+import { loadPackageJson } from './package.json';\nconst log = createLogger('bundle');\n+/...
TypeScript
MIT License
aurelia/aurelia
chore(bundle): automatically sort dependencies for bundling
1
chore
bundle
67,476
26.12.2018 19:45:12
-3,600
bab19cc573f8a58f4c5bbe8bf018dafb28f1553a
chore(jit-html): fix build error
[ { "change_type": "MODIFY", "diff": "-import { DI, inject } from '@aurelia/kernel';\n+import { DI, inject, InterfaceSymbol } from '@aurelia/kernel';\nimport { IDOM, INode } from '@aurelia/runtime';\n/**\n@@ -30,7 +30,10 @@ export interface ITemplateElementFactory {\ncreateTemplate(input: unknown): INode;\n}\...
TypeScript
MIT License
aurelia/aurelia
chore(jit-html): fix build error
1
chore
jit-html
67,476
26.12.2018 20:28:18
-3,600
70301d438e464e16408145b1db5909923256f0ef
chore(runtime): implement a simple js dom for testing
[ { "change_type": "ADD", "diff": "+import { expect } from 'chai';\n+import { CustomElementResource, LifecycleFlags } from '../src/index';\n+import { AuDOMTest as AU } from './au-dom';\n+\n+describe('AuDOM', () => {\n+ it('works', () => {\n+ const { au, host, lifecycle } = AU.setup();\n+\n+ const definition =...
TypeScript
MIT License
aurelia/aurelia
chore(runtime): implement a simple js dom for testing
1
chore
runtime
679,913
26.12.2018 21:41:58
0
1ebfea9509a5be9fbb1fc1f4f560a4502a70b6b5
fix(compose): fix comp() for arities >10
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,7 @@ This project is part of the\nFunctional composition helpers:\n- [comp()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/comp.ts)\n-- [compL()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/comp.ts)\n+- [compL()]...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(compose): fix comp() for arities >10
1
fix
compose
67,476
26.12.2018 22:57:05
-3,600
e1630844bcb1d8c8dd8303c6f3a0a120eb58b33a
docs(binding-context): add some clarifying api comments
[ { "change_type": "MODIFY", "diff": "@@ -60,8 +60,24 @@ export class BindingContext implements IBindingContext {\n}\n}\n+ /**\n+ * Create a new synthetic `BindingContext` for use in a `Scope`.\n+ * @param obj Optional. An existing object or `BindingContext` to (shallow) clone (own) properties from.\n+ */\npu...
TypeScript
MIT License
aurelia/aurelia
docs(binding-context): add some clarifying api comments
1
docs
binding-context
217,922
26.12.2018 23:52:11
-3,600
a4d5e2051cfdef396e064f4dbcdfce136f2b577f
chore: disabled community lists for rc.0
[ { "change_type": "MODIFY", "diff": "<span class=\"nav-text\">{{'SIMULATOR.Rotations' | translate}}</span>\n</span>\n</a>\n- <a nz-menu-item class=\"menu-link\" routerLinkActive=\"ant-menu-item-selected\" routerLink=\"/community-lists\">\n+ <a nz-menu-item class=\"menu-link\" nzDisabled routerLinkActive=\"an...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: disabled community lists for rc.0
1
chore
null
67,476
27.12.2018 00:12:28
-3,600
b825ac398099ce4c58d372a8982611b81c8a723e
docs(scope): add some clarifying api comments
[ { "change_type": "MODIFY", "diff": "@@ -166,7 +166,35 @@ export class Scope implements IScope {\nthis.parentScope = null;\n}\n- public static create(bc: IBindingContext | IBindScope, oc: IOverrideContext | null): Scope {\n+ /**\n+ * Create a new `Scope` backed by the provided `BindingContext` and a new stan...
TypeScript
MIT License
aurelia/aurelia
docs(scope): add some clarifying api comments
1
docs
scope
67,476
27.12.2018 00:13:42
-3,600
c374f9eb37a81f692584982cb390eb94739f881b
chore(runtime): add generic INode type argument for several API surface types
[ { "change_type": "MODIFY", "diff": "@@ -5,34 +5,34 @@ export interface INode extends Object {}\nexport const INode = DI.createInterface<INode>().noDefault();\nexport const IRenderLocation = DI.createInterface<IRenderLocation>().noDefault();\n-export interface IRenderLocation extends INode {\n- $start?: IRen...
TypeScript
MIT License
aurelia/aurelia
chore(runtime): add generic INode type argument for several API surface types
1
chore
runtime
67,476
27.12.2018 00:43:33
-3,600
58495a5feb07d4912ce2cb67bcbbbe3d7b5a35cb
docs(view): add some clarifying api comments
[ { "change_type": "MODIFY", "diff": "@@ -113,7 +113,25 @@ export interface IView<T extends INode = INode> extends IBindScope, IRenderable<\nreadonly isFree: boolean;\nreadonly location: IRenderLocation<T>;\n- hold(location: IRenderLocation<T>, flags: LifecycleFlags): void;\n+ /**\n+ * Reserves this `IView` f...
TypeScript
MIT License
aurelia/aurelia
docs(view): add some clarifying api comments
1
docs
view
67,476
27.12.2018 05:42:25
-3,600
10fba964fcbf01d9acf6686fb27c1fd96e07d1b1
chore(runtime): add watch mode for nodejs tests
[ { "change_type": "MODIFY", "diff": "\"lint\": \"cross-env tslint --project tsconfig-test.json -e \\\"test/**\\\" -t stylish\",\n\"test\": \"cross-env TS_NODE_PROJECT=\\\"../../scripts/tsconfig.json\\\" karma start ../../scripts/karma.conf.ts --package=runtime --browsers=ChromeHeadlessOpt --single-run --cove...
TypeScript
MIT License
aurelia/aurelia
chore(runtime): add watch mode for nodejs tests
1
chore
runtime
67,476
27.12.2018 05:43:08
-3,600
364b55e07b773adbdbde63e0e801c3fb6fb3fb63
test(runtime): rewrite view.spec unit tests from scratch with new AuDOM
[ { "change_type": "MODIFY", "diff": "-import { spy } from 'sinon';\n-import { PLATFORM, Writable, DI, Registration } from '@aurelia/kernel';\nimport {\n- noViewTemplate,\n- ITemplate,\n- IScope,\n+ Writable\n+} from '@aurelia/kernel';\n+import { expect } from 'chai';\n+import {\n+ eachCartesianJoin\n+} from ...
TypeScript
MIT License
aurelia/aurelia
test(runtime): rewrite view.spec unit tests from scratch with new AuDOM
1
test
runtime
67,476
27.12.2018 05:43:52
-3,600
bba81cad02510d2d336aea2c7742ba9a7751497f
fix(view): also use lockedUnbind on lockScope
[ { "change_type": "MODIFY", "diff": "@@ -117,6 +117,7 @@ export class View<T extends INode = INode> implements IView<T> {\nif (Tracer.enabled) { Tracer.enter('View.lockScope', slice.call(arguments)); }\nthis.$scope = scope;\nthis.$bind = lockedBind;\n+ this.$unbind = lockedUnbind;\nif (Tracer.enabled) { Trac...
TypeScript
MIT License
aurelia/aurelia
fix(view): also use lockedUnbind on lockScope
1
fix
view
67,476
27.12.2018 05:46:18
-3,600
e4647f6a946fed4e3fdebfa1b5ab2387824cc22c
chore(au-dom): add dom registration
[ { "change_type": "MODIFY", "diff": "@@ -606,6 +606,7 @@ export const AuDOMConfiguration = {\ncontainer.register(\nRuntimeConfiguration,\nAuTextRenderer as unknown as IRegistry,\n+ Registration.singleton(IDOM, AuDOM),\nRegistration.singleton(IDOMInitializer, AuDOMInitializer),\nRegistration.singleton(IProjec...
TypeScript
MIT License
aurelia/aurelia
chore(au-dom): add dom registration
1
chore
au-dom
67,476
27.12.2018 05:50:28
-3,600
c96025121061e374a59634b0450099f7d99ffbb3
chore(observation): remove unused fromCreate flag
[ { "change_type": "MODIFY", "diff": "@@ -2,40 +2,39 @@ import { IDisposable, IIndexable } from '@aurelia/kernel';\nimport { ILifecycle } from './lifecycle';\nexport enum LifecycleFlags {\n- none = 0b0_0000_00000000000000_000_00,\n- mustEvaluate = 0b0_0001_00000000000000_000_00,\n- mutation = 0b0_0000_0000000...
TypeScript
MIT License
aurelia/aurelia
chore(observation): remove unused fromCreate flag
1
chore
observation
67,476
27.12.2018 05:51:16
-3,600
6451b1ded3c3075fdc26b8432d0e8759375135ee
chore(resources): cleanup usages of removed hold flag
[ { "change_type": "MODIFY", "diff": "@@ -96,7 +96,7 @@ export class If {\nview = factory.create();\n}\n- view.hold(this.location, flags);\n+ view.hold(this.location);\nreturn view;\n}\n", "new_path": "packages/runtime/src/resources/custom-attributes/if.ts", "old_path": "packages/runtime/src/resources...
TypeScript
MIT License
aurelia/aurelia
chore(resources): cleanup usages of removed hold flag
1
chore
resources
67,476
27.12.2018 06:13:51
-3,600
fac19f526e073a8c8a6da0c44c17d6665a8a854f
test(runtime): fix CompiledTemplate tests
[ { "change_type": "MODIFY", "diff": "-import { IContainer, Registration, DI } from '@aurelia/kernel';\n-import { MockRenderingEngine } from \"../mock\";\n+import { IContainer, Registration } from '@aurelia/kernel';\n+import { expect } from 'chai';\nimport {\n- Renderer,\nCompiledTemplate,\n- ViewFactory,\n- ...
TypeScript
MIT License
aurelia/aurelia
test(runtime): fix CompiledTemplate tests
1
test
runtime