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
889,138
17.10.2019 16:22:15
25,200
51dd05034abbda44b4781fae1a56c835b8cb8605
refactor: drop dependency on common-grpc
[ { "change_type": "MODIFY", "diff": "\"predocs-test\": \"npm run docs\"\n},\n\"dependencies\": {\n- \"@google-cloud/common-grpc\": \"^1.0.6\",\n+ \"@google-cloud/common\": \"^2.2.2\",\n\"@google-cloud/paginator\": \"^2.0.0\",\n\"@google-cloud/projectify\": \"^1.0.0\",\n\"@google-cloud/promisify\": \"^1.0.0\"...
TypeScript
Apache License 2.0
googleapis/nodejs-logging
refactor: drop dependency on common-grpc (#606)
1
refactor
null
471,495
17.10.2019 16:47:33
14,400
85f53c94f10b4d0c86c8f93da52135654d7821d0
docs: Fix typo in sinon docs
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,7 @@ describe('my component', () => {\nconst myFunctionStub = stub(el, 'myFunction');\n// click a button\n- el.shadowRoot.getElementByid('myButton').click();\n+ el.shadowRoot.getElementById('myButton').click();\n// check if the function was called\nexpect(myF...
JavaScript
MIT License
open-wc/open-wc
docs: Fix typo in sinon docs
1
docs
null
103,440
17.10.2019 16:48:29
-7,200
708fdf3463c676507f64286bbf790f02c5426cf2
fix: BREAKING remove padding prop from TextInput
[ { "change_type": "MODIFY", "diff": "@@ -227,8 +227,7 @@ class TextInputExample extends React.Component<Props, State> {\n<View style={styles.inputContainerStyle}>\n<TextInput\nlabel=\"Input with no padding\"\n- style={{ backgroundColor: 'transparent' }}\n- padding=\"none\"\n+ style={{ backgroundColor: 'trans...
TypeScript
MIT License
callstack/react-native-paper
fix: BREAKING remove padding prop from TextInput (#1394)
1
fix
null
103,440
17.10.2019 16:53:00
-7,200
f43c1a815b10d599bf253fb5e988af34c9f7bd8a
chore: release 3.0.0-alpha.6
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"react-native-paper\",\n- \"version\": \"3.0.0-alpha.5\",\n+ \"version\": \"3.0.0-alpha.6\",\n\"description\": \"Material design for React Native\",\n\"main\": \"lib/module/index.js\",\n\"types\": \"lib/typescript/src/index.d.ts\",\n", "new_path": "packa...
TypeScript
MIT License
callstack/react-native-paper
chore: release 3.0.0-alpha.6
1
chore
null
217,922
17.10.2019 17:58:35
-7,200
8b4484c1e75cb5585f6c01db5e4bb474ec456557
chore: real proper fix for package lock
[ { "change_type": "MODIFY", "diff": "\"resolved\": \"https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz\",\n\"integrity\": \"sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==\",\n\"dev\": true,\n- \"optional\": true,\n\"requires\": {\n\"even...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: real proper fix for package lock
1
chore
null
815,740
17.10.2019 18:07:07
-19,080
6f697451a52a641ce27d12cb97f1e38851e0afc6
fix: don't allow empty space as tag
[ { "change_type": "MODIFY", "diff": "@@ -2258,6 +2258,11 @@ describe('NgSelectComponent', () => {\ntickAndDetectChanges(fixture);\nexpect(select.showAddTag).toBeFalsy();\n}));\n+\n+ it('should be false when there is search term with only empty space', () => {\n+ select.searchTerm = ' ';\n+ expect(select.show...
TypeScript
MIT License
ng-select/ng-select
fix: don't allow empty space as tag (#1383)
1
fix
null
217,922
17.10.2019 18:16:54
-7,200
87f531642cb05df4916914c9bd8549fc8ac87d35
chore(ci): fix for build
[ { "change_type": "MODIFY", "diff": "@@ -351,7 +351,7 @@ export class AppComponent implements OnInit {\nreturn this.translate.getBrowserLang();\n}\n} else {\n- const request: any = this.request;\n+ const request: any = this.injector.get(REQUEST) || {};\nreturn request.lang || 'en';\n}\n}\n", "new_path": ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(ci): fix for build
1
chore
ci
67,476
17.10.2019 18:35:47
-7,200
c84ea69679a2fe1e7e94c40f912cd94e5343c684
refactor(bindable): cleanup decorator signature and definition logic
[ { "change_type": "MODIFY", "diff": "@@ -7,19 +7,26 @@ import {\n} from '@aurelia/kernel';\nimport {\nBindableSource,\n- IBindableDescription,\nfirstDefined,\n} from '../definitions';\nimport {\nBindingMode,\n} from '../flags';\n+export type PartialBindableDefinition = {\n+ mode?: BindingMode;\n+ callback?: ...
TypeScript
MIT License
aurelia/aurelia
refactor(bindable): cleanup decorator signature and definition logic
1
refactor
bindable
67,476
17.10.2019 18:36:10
-7,200
5083b100ce39c980674338c634f41e2813883548
refactor(children): normalize to similar mechanism as bindable
[ { "change_type": "MODIFY", "diff": "-import { Constructable } from '@aurelia/kernel';\n-import { ChildrenObserverSource, IChildrenObserverDescription, ITemplateDefinition } from '../definitions';\n+/* eslint-disable @typescript-eslint/no-use-before-define */\n+import { Constructable, Protocol, Metadata } fr...
TypeScript
MIT License
aurelia/aurelia
refactor(children): normalize to similar mechanism as bindable
1
refactor
children
67,476
17.10.2019 18:37:57
-7,200
3f4973ec2be66b1730bbd804ab8aed5001e06fcb
refactor(custom-element): fixup bindable/children references
[ { "change_type": "MODIFY", "diff": "@@ -15,9 +15,6 @@ import {\nimport {\nregisterAliases,\nITargetedInstruction,\n- IBuildInstruction,\n- IBindableDescription,\n- IChildrenObserverDescription,\nHooksDefinition,\nfirstDefined,\nmergeArrays,\n@@ -34,17 +31,18 @@ import {\nIViewModel,\n} from '../lifecycle';\...
TypeScript
MIT License
aurelia/aurelia
refactor(custom-element): fixup bindable/children references
1
refactor
custom-element
67,476
17.10.2019 18:38:15
-7,200
19ba25dd680694c578928b14d91baffd547ad4c2
refactor(custom-attribute): fixup bindable references
[ { "change_type": "MODIFY", "diff": "@@ -14,7 +14,6 @@ import {\nimport {\nHooksDefinition,\nregisterAliases,\n- IBindableDescription,\nmergeArrays,\nfirstDefined\n} from '../definitions';\n@@ -25,23 +24,23 @@ import {\nimport {\nIViewModel,\n} from '../lifecycle';\n-import { Bindable } from '../templating/b...
TypeScript
MIT License
aurelia/aurelia
refactor(custom-attribute): fixup bindable references
1
refactor
custom-attribute
217,922
17.10.2019 19:48:30
-7,200
4924c354f1af43e0fdf59d0b3a4c0e6a0fd24de6
chore: migrate all dropdown menus to the new API for antd 9.0.0 prevision
[ { "change_type": "MODIFY", "diff": "<nz-tag *ngIf=\"_list.ephemeral\" [nzColor]=\"'volcano'\" nz-tooltip [nzTitle]=\"'Ephemeral_list' | translate\">\n{{'Ephemeral_tag' | translate}}\n</nz-tag>\n- <nz-tag *ngIf=\"_list.offline\" [style.border-color]=\"'#bd0ef2'\" nz-tooltip [nzTitle]=\"'LIST.Offline_help' | ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: migrate all dropdown menus to the new API for antd 9.0.0 prevision
1
chore
null
217,922
17.10.2019 20:13:08
-7,200
3894d2d4b83bcf0b2e1ced4b3f85f3b167bd5a80
chore: 5.0 data mapping for chinese data
[ { "change_type": "MODIFY", "diff": "@@ -25,6 +25,13 @@ export class LazyDataService {\npublic zhItems: any = {};\npublic zhPlaces: any = {};\n+ public zhActions: any = {};\n+ public zhFates: any = {};\n+ public zhGatheringBonuses: any = {};\n+ public zhInstances: any = {};\n+ public zhLeves: any = {};\n+ pu...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: 5.0 data mapping for chinese data
1
chore
null
67,479
17.10.2019 20:28:45
-39,600
537eb97daa12f858113c0c8acbc50b794ae5984f
fix(portal): separate API for hold parent container
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,7 @@ import {\nbindable,\nContinuationTask,\nIController,\n- IControllerHoldOptions,\n+ IControllerHoldParentOptions,\nIDOM,\nILifecycleTask,\nIRenderLocation,\n@@ -37,8 +37,7 @@ function toTask(maybePromiseOrTask: void | Promise<void> | ILifecycleTask): ILif\n...
TypeScript
MIT License
aurelia/aurelia
fix(portal): separate API for hold parent container
1
fix
portal
67,479
17.10.2019 20:31:10
-39,600
223f907e4df7c1673a49203c61de75a32ed1c00f
refactor(inst): move classlist comp to renderer
[ { "change_type": "MODIFY", "diff": "@@ -67,7 +67,6 @@ export interface ISetAttributeInstruction extends ITargetedInstruction {\nexport interface ISetClassAttributeInstruction extends ITargetedInstruction {\ntype: HTMLTargetedInstructionType.setClassAttribute;\nvalue: string;\n- readonly classList: string[];...
TypeScript
MIT License
aurelia/aurelia
refactor(inst): move classlist comp to renderer
1
refactor
inst
67,516
17.10.2019 20:34:58
-7,200
d27f8ed3ebc0f3e86b12669151412a02cf6dac75
chore(test): failing test for checked-observer
[ { "change_type": "MODIFY", "diff": "<!-- <specs-viewer things.bind=\"things\"></specs-viewer> -->\n<user-preference user.bind=\"user\"></user-preference>\n+ <radio-button-list choices.to-view=\"contacts\" chosen.two-way=\"chosenContact\"></radio-button-list>\n</div>\n", "new_path": "packages/__tests__/i...
TypeScript
MIT License
aurelia/aurelia
chore(test): failing test for checked-observer
1
chore
test
67,479
17.10.2019 20:50:07
-39,600
2fc917277ea181e2e900f05d9f11961760c795ca
chore(lint): fix deepscan issues
[ { "change_type": "MODIFY", "diff": "@@ -85,10 +85,6 @@ export class Portal<T extends ParentNode = ParentNode> {\n@IDOM private readonly dom: HTMLDOM,\n) {\nthis.id = nextId('au$component');\n-\n- this.factory = factory;\n- this.originalLoc = originalLoc;\n- this.dom = dom;\n// to make the shape of this obje...
TypeScript
MIT License
aurelia/aurelia
chore(lint): fix deepscan issues
1
chore
lint
67,479
17.10.2019 20:51:32
-39,600
4ebdbe5ef303aa06ecf5676ec1bcc3683111bd0d
chore(lint): remove unused import in test
[ { "change_type": "MODIFY", "diff": "-import { Constructable, IRegistry, PLATFORM } from '@aurelia/kernel';\n+import { Constructable, IRegistry } from '@aurelia/kernel';\nimport { Aurelia, CustomElement } from '@aurelia/runtime';\nimport { assert, eachCartesianJoin, hJsx, HTMLTestContext, TestContext } from ...
TypeScript
MIT License
aurelia/aurelia
chore(lint): remove unused import in test
1
chore
lint
217,922
17.10.2019 21:29:24
-7,200
2b04f020d11a1b6722ceb7548fd75b25badbab15
chore: fix for autofill on empty slot
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,7 @@ export class UserInventory extends DataWithPermissions {\nupdateInventorySlot(packet: any, lastSpawnedRetainer: string): InventoryPatch | null {\nconst isRetainer = packet.containerId >= 10000 && packet.containerId < 20000;\nconst containerKey = isRetain...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix for autofill on empty slot
1
chore
null
67,479
17.10.2019 21:42:41
-39,600
9af1c64d9e1d83b1fccf6f6be4a9376bf02fe022
refactor(html-renderer): follow general theme
[ { "change_type": "MODIFY", "diff": "@@ -96,7 +96,7 @@ export class SetClassAttributeRenderer implements IInstructionRenderer {\npublic static readonly register: IRegistry['register'];\npublic render(flags: LifecycleFlags, dom: IDOM, context: IRenderContext, renderable: IController, target: HTMLElement, inst...
TypeScript
MIT License
aurelia/aurelia
refactor(html-renderer): follow general theme
1
refactor
html-renderer
67,479
17.10.2019 21:44:07
-39,600
5c3d4d1a6988852b9b1c33c106920e6b209cd939
chore(lint): remove unused stuff
[ { "change_type": "MODIFY", "diff": "@@ -159,13 +159,6 @@ export class AttributeBindingRenderer implements IInstructionRenderer {\n}\n}\n-const cachedMapping: Record<string, string[]> = {};\n-function toClassList(className: string): string[] {\n- if (cachedMapping[className] === undefined) {\n- cachedMapping...
TypeScript
MIT License
aurelia/aurelia
chore(lint): remove unused stuff
1
chore
lint
67,476
17.10.2019 22:29:09
-7,200
b97b164fe8950eadb174afaa65c5336311080538
chore: lock http-server to 0.9.0 in renovate
[ { "change_type": "MODIFY", "diff": "\"packageNames\": [\"karma\"],\n\"allowedVersions\": \"~4.1.0\"\n},\n+ {\n+ \"packageNames\": [\"http-server\"],\n+ \"allowedVersions\": \"0.9.0\"\n+ },\n{\n\"packageNames\": [\"mocha\"],\n\"allowedVersions\": \"~6.1.4\"\n", "new_path": "renovate.json", "old_path"...
TypeScript
MIT License
aurelia/aurelia
chore: lock http-server to 0.9.0 in renovate
1
chore
null
103,504
17.10.2019 22:43:44
-7,200
7865e80f242b031064c03cc0fc78df1b46d4df15
fix: update bottom navigation types
[ { "change_type": "MODIFY", "diff": "@@ -24,15 +24,15 @@ import { black, white } from '../styles/colors';\nimport { withTheme } from '../core/theming';\nimport { Theme } from '../types';\n-type Route = Partial<{\n+type Route = {\nkey: string;\n- title: string;\n- icon: IconSource;\n- badge: string | number |...
TypeScript
MIT License
callstack/react-native-paper
fix: update bottom navigation types
1
fix
null
366,920
17.10.2019 22:47:12
-32,400
03f632f69c60d1427ad2c0ef154685712ab5e367
fix: Remove export
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ export const DropdownContentContext = React.createContext<{\nonClickCloser: () => {},\n})\n-export function createElement(tagName: string, className: string) {\n+function createElement(tagName: string, className: string) {\nconst element = document.creat...
TypeScript
MIT License
kufu/smarthr-ui
fix: Remove export
1
fix
null
103,504
17.10.2019 22:48:34
-7,200
1abcfb5d848791cece865baeef320b7b40ee65d4
chore: release 3.0.0-alpha.7
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"react-native-paper\",\n- \"version\": \"3.0.0-alpha.6\",\n+ \"version\": \"3.0.0-alpha.7\",\n\"description\": \"Material design for React Native\",\n\"main\": \"lib/module/index.js\",\n\"types\": \"lib/typescript/src/index.d.ts\",\n", "new_path": "packa...
TypeScript
MIT License
callstack/react-native-paper
chore: release 3.0.0-alpha.7
1
chore
null
67,516
17.10.2019 22:51:11
-7,200
49a1d438cc86e8b305847bc88aa8305ec2b2a594
fix(runtime): attribute order for checkbox Sorted the bindables to avoid the premature checked observer evaluation issue. A static compare function can now to added to the Binding class which is later used to determin the order of the bindables.
[ { "change_type": "MODIFY", "diff": "/* eslint-disable mocha/no-skipped-tests, mocha/no-exclusive-tests, @typescript-eslint/strict-boolean-expressions, @typescript-eslint/strict-boolean-expressions */\nimport { CustomElement, DirtyCheckProperty, DirtyCheckSettings, IDirtyChecker } from '@aurelia/runtime';\n-...
TypeScript
MIT License
aurelia/aurelia
fix(runtime): attribute order for checkbox Sorted the bindables to avoid the premature checked observer evaluation issue. A static compare function can now to added to the Binding class which is later used to determin the order of the bindables.
1
fix
runtime
366,946
18.10.2019 00:28:03
-32,400
f01952f0455bde7b3df5c88ccf8f0d4e64934772
fix: Change Input interface to conform to the DOM interface
[ { "change_type": "MODIFY", "diff": "@@ -3,45 +3,45 @@ import { storiesOf } from '@storybook/react'\nimport * as React from 'react'\nimport styled from 'styled-components'\n-import { NumberInput, PasswordInput, TextInput } from './Input'\n+import { Input } from './Input'\nstoriesOf('Input', module).add('all'...
TypeScript
MIT License
kufu/smarthr-ui
fix: Change Input interface to conform to the DOM interface
1
fix
null
366,946
18.10.2019 00:32:10
-32,400
79160919ffcafde9bd1caac57b9c2b97951b2660
fix: Apply Input in Field Component
[ { "change_type": "MODIFY", "diff": "@@ -3,55 +3,49 @@ import { storiesOf } from '@storybook/react'\nimport * as React from 'react'\nimport styled from 'styled-components'\n-import { Field, NumberField, PasswordField, TextField } from './Field'\n+import { Field } from './Field'\nstoriesOf('Field', module).ad...
TypeScript
MIT License
kufu/smarthr-ui
fix: Apply Input in Field Component
1
fix
null
67,476
18.10.2019 01:10:01
-7,200
33dfbee6df7c709ed88d335e5bba9464098eb58e
refactor(kernel): correctly wireup resource registrations
[ { "change_type": "MODIFY", "diff": "@@ -741,6 +741,17 @@ export class Container implements IContainer {\ncurrent.register(this);\n} else if (isClass(current)) {\nRegistration.singleton(current, current as Constructable).register(this);\n+ } else if (Protocol.resource.has(current)) {\n+ const defs = Protocol...
TypeScript
MIT License
aurelia/aurelia
refactor(kernel): correctly wireup resource registrations
1
refactor
kernel
67,476
18.10.2019 01:10:35
-7,200
3b22abbb1342735d58db6be099eb672005315450
fix(custom-attribute): add getDefinition
[ { "change_type": "MODIFY", "diff": "@@ -39,6 +39,7 @@ export type CustomAttributeKind = IResourceKind<CustomAttributeType, CustomAttri\ndefine<T extends Constructable>(name: string, Type: T): CustomAttributeType<T>;\ndefine<T extends Constructable>(def: PartialCustomAttributeDefinition, Type: T): CustomAttr...
TypeScript
MIT License
aurelia/aurelia
fix(custom-attribute): add getDefinition
1
fix
custom-attribute
67,476
18.10.2019 01:11:44
-7,200
1b3b2c26f0db38cffd74751dcc498459859aea46
refactor(children): fixup naming
[ { "change_type": "MODIFY", "diff": "/* eslint-disable @typescript-eslint/no-use-before-define */\nimport { Constructable, Protocol, Metadata } from '@aurelia/kernel';\n-import { ChildrenObserverSource, firstDefined } from '../definitions';\n+import { firstDefined } from '../definitions';\nimport { INode } f...
TypeScript
MIT License
aurelia/aurelia
refactor(children): fixup naming
1
refactor
children
67,476
18.10.2019 01:12:01
-7,200
428c2e7445f42d0cfd61ef671b2125a1026bd9f8
refactor(bindable): fix types
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,6 @@ import {\nProtocol,\n} from '@aurelia/kernel';\nimport {\n- BindableSource,\nfirstDefined,\n} from '../definitions';\nimport {\n@@ -26,7 +25,7 @@ export type PartialBindableDefinition = {\n*\n* @param config - The overrides\n*/\n-export function bindable(c...
TypeScript
MIT License
aurelia/aurelia
refactor(bindable): fix types
1
refactor
bindable
67,476
18.10.2019 01:13:08
-7,200
d0955b62320765407780e07421938164470f28c6
refactor(definitions): cleanup unnecessary types/logic and fix refs
[ { "change_type": "MODIFY", "diff": "import {\nConstructable,\nDI,\n- IRegistry,\n- IResourceDefinition,\n- Key,\n- Omit,\n- PLATFORM,\n- ResourceDescription,\n- ResourcePartDescription,\n- toArray,\n+ ResourceDefinition,\nIContainer,\nIResourceKind,\n- Registration\n+ Registration,\n+ Metadata,\n+ Protocol,...
TypeScript
MIT License
aurelia/aurelia
refactor(definitions): cleanup unnecessary types/logic and fix refs
1
refactor
definitions
67,476
18.10.2019 01:13:39
-7,200
d46ef672ca3c9a4b9b1948931c31f75a3a22022d
refactor(view): fix types
[ { "change_type": "MODIFY", "diff": "import { Constructable, ConstructableClass, DI, IContainer, IResolver, PLATFORM, Registration, Reporter } from '@aurelia/kernel';\n-import { ITemplateDefinition, TemplatePartDefinitions } from '../definitions';\nimport { INode } from '../dom';\nimport { LifecycleFlags, St...
TypeScript
MIT License
aurelia/aurelia
refactor(view): fix types
1
refactor
view
67,476
18.10.2019 01:14:09
-7,200
7bf3bb3bd2bc3cc3712f94d8d8fafe622b83b636
refactor(instructions): fix types
[ { "change_type": "MODIFY", "diff": "@@ -16,10 +16,11 @@ import {\nIRefBindingInstruction,\nISetPropertyInstruction,\nITargetedInstruction,\n- ITemplateDefinition,\n- TargetedInstructionType\n+ TargetedInstructionType,\n+ PartialCustomElementDefinitionParts\n} from './definitions';\nimport { BindingMode } fr...
TypeScript
MIT License
aurelia/aurelia
refactor(instructions): fix types
1
refactor
instructions
67,476
18.10.2019 01:14:43
-7,200
50d70b0d0ab11df6516120bbfe647dc06e684c40
refactor(lifecycle): fix types
[ { "change_type": "MODIFY", "diff": "@@ -11,8 +11,7 @@ import {\nimport {\nHooksDefinition,\nITargetedInstruction,\n- TemplateDefinition,\n- TemplatePartDefinitions,\n+ PartialCustomElementDefinitionParts,\n} from './definitions';\nimport {\nINode,\n@@ -34,10 +33,9 @@ import {\n} from './observation';\nimpor...
TypeScript
MIT License
aurelia/aurelia
refactor(lifecycle): fix types
1
refactor
lifecycle
67,476
18.10.2019 01:15:14
-7,200
4e0e01f76f869ae3e26412350590bda536c770ce
refactor(ast): fix refs
[ { "change_type": "MODIFY", "diff": "@@ -71,12 +71,10 @@ import { BindingContext } from '../observation/binding-context';\nimport { ProxyObserver } from '../observation/proxy-observer';\nimport { ISignaler } from '../observation/signaler';\nimport {\n- BindingBehavior,\n- IBindingBehavior,\n+ BindingBehavior...
TypeScript
MIT License
aurelia/aurelia
refactor(ast): fix refs
1
refactor
ast
67,476
18.10.2019 01:15:51
-7,200
39135967ad726dc3db3e7138790b6bf78de3bb91
refactor(render-context): fix types
[ { "change_type": "MODIFY", "diff": "@@ -11,12 +11,12 @@ import {\nRuntimeCompilationResources,\nTransformer,\n} from '@aurelia/kernel';\n-import { ITargetedInstruction, TemplateDefinition, TemplatePartDefinitions } from './definitions';\n+import { ITargetedInstruction, PartialCustomElementDefinitionParts } ...
TypeScript
MIT License
aurelia/aurelia
refactor(render-context): fix types
1
refactor
render-context
67,476
18.10.2019 01:16:46
-7,200
a2670983ed3dd4f09f035cce70176bc71db4dcde
refactor(renderer): fix types and line length
[ { "change_type": "MODIFY", "diff": "@@ -18,7 +18,6 @@ import { PropertyBinding } from './binding/property-binding';\nimport { RefBinding } from './binding/ref-binding';\nimport {\nICallBindingInstruction,\n- IElementHydrationOptions,\nIHydrateAttributeInstruction,\nIHydrateElementInstruction,\nIHydrateLetEl...
TypeScript
MIT License
aurelia/aurelia
refactor(renderer): fix types and line length
1
refactor
renderer
67,476
18.10.2019 01:17:06
-7,200
8aa305c700400ccbfe49efbf842f84889815d00b
chore(configuration): fix types
[ { "change_type": "MODIFY", "diff": "@@ -66,11 +66,11 @@ export const DefaultComponents = [\nexport const FrequentMutationsRegistration = FrequentMutations as unknown as IRegistry;\nexport const InfrequentMutationsRegistration = InfrequentMutations as unknown as IRegistry;\nexport const ObserveShallowRegistr...
TypeScript
MIT License
aurelia/aurelia
chore(configuration): fix types
1
chore
configuration
67,476
18.10.2019 01:17:54
-7,200
8e55a2a872519228e0d547f9db1f5a871ad0263c
fix(custom-element): add missing isType and behaviorFor back in + renames
[ { "change_type": "MODIFY", "diff": "@@ -18,7 +18,6 @@ import {\nHooksDefinition,\nfirstDefined,\nmergeArrays,\n- mergeObjects\n} from '../definitions';\nimport {\nIDOM,\n@@ -32,7 +31,7 @@ import {\n} from '../lifecycle';\nimport { BindingStrategy } from '../flags';\nimport { Bindable, PartialBindableDefinit...
TypeScript
MIT License
aurelia/aurelia
fix(custom-element): add missing isType and behaviorFor back in + renames
1
fix
custom-element
67,476
18.10.2019 01:18:26
-7,200
2d9c300f4ef7bc6880ce8b4f40a8c650fced28c6
refactor(custom-element): self-register definition in metadata
[ { "change_type": "MODIFY", "diff": "@@ -249,6 +249,7 @@ export const CustomElement: CustomElementKind = {\nconst $Type = Type as CustomElementType<T>;\nconst description = CustomElementDefinition.create(nameOrDefinition, $Type);\nMetadata.define(CustomElement.name, description, Type);\n+ Metadata.define(Cus...
TypeScript
MIT License
aurelia/aurelia
refactor(custom-element): self-register definition in metadata
1
refactor
custom-element
67,476
18.10.2019 01:19:06
-7,200
1efd9372f879817c9d1c7940cfcbbc51612cdfbb
refactor(with): cleanup, go back to idiomatic aurelia code
[ { "change_type": "MODIFY", "diff": "-import {\n- IContainer,\n- Key,\n- nextId,\n- PLATFORM,\n- Registration\n-} from '@aurelia/kernel';\n-import {\n- HooksDefinition,\n- IAttributeDefinition\n-} from '../../definitions';\n-import {\n- INode,\n- IRenderLocation\n-} from '../../dom';\n-import {\n- BindingMod...
TypeScript
MIT License
aurelia/aurelia
refactor(with): cleanup, go back to idiomatic aurelia code
1
refactor
with
67,476
18.10.2019 01:19:25
-7,200
71c451d34c5245b023ae5d458535f9971531ba3f
refactor(repeat): cleanup, go back to idiomatic aurelia code
[ { "change_type": "MODIFY", "diff": "-import {\n- compareNumber,\n- IContainer,\n- Key,\n- nextId,\n- PLATFORM,\n- Registration,\n-} from '@aurelia/kernel';\n+import { compareNumber, nextId } from '@aurelia/kernel';\nimport { ForOfStatement } from '../../binding/ast';\nimport { PropertyBinding } from '../../...
TypeScript
MIT License
aurelia/aurelia
refactor(repeat): cleanup, go back to idiomatic aurelia code
1
refactor
repeat
67,476
18.10.2019 01:19:38
-7,200
fa12de4a88fa28a5f8019499f088a6db09fcac70
refactor(if): cleanup, go back to idiomatic aurelia code
[ { "change_type": "MODIFY", "diff": "-import {\n- IContainer,\n- Key,\n- nextId,\n- PLATFORM,\n- Registration\n-} from '@aurelia/kernel';\n-import {\n- HooksDefinition,\n- IAttributeDefinition\n-} from '../../definitions';\n-import {\n- INode,\n- IRenderLocation\n-} from '../../dom';\n-import {\n- BindingMod...
TypeScript
MIT License
aurelia/aurelia
refactor(if): cleanup, go back to idiomatic aurelia code
1
refactor
if
67,476
18.10.2019 01:20:02
-7,200
2c497ae7fc66e832629ea2116a7d4fd0e5a0c7c5
chore(replaceable): move id to property
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ import { templateController } from '../custom-attribute';\n@templateController('replaceable')\nexport class Replaceable<T extends INode = INode> {\n- public readonly id: number;\n+ public readonly id: number = nextId('au$component');\npublic readonly view:...
TypeScript
MIT License
aurelia/aurelia
chore(replaceable): move id to property
1
chore
replaceable
67,476
18.10.2019 01:20:59
-7,200
26b69312e6acf1214ba36071755ab3eeb385e162
refactor(rendering-engine): fix types and correctly use metadata
[ { "change_type": "MODIFY", "diff": "@@ -9,15 +9,11 @@ import {\nReporter,\nWritable,\nMetadata,\n- Protocol,\n} from '@aurelia/kernel';\nimport {\n- buildTemplateDefinition,\nInstructionTypeName,\nITargetedInstruction,\n- ITemplateDefinition,\n- TemplateDefinition,\n- TemplatePartDefinitions,\n+ PartialCust...
TypeScript
MIT License
aurelia/aurelia
refactor(rendering-engine): fix types and correctly use metadata
1
refactor
rendering-engine
67,476
18.10.2019 01:21:20
-7,200
22ce19a02fecd310e33c0b531920f15e64f75c14
refactor(controller): fix types and correctly use metadata
[ { "change_type": "MODIFY", "diff": "@@ -6,20 +6,16 @@ import {\nnextId,\nPLATFORM,\nWritable,\n+ Constructable,\n} from '@aurelia/kernel';\nimport {\nPropertyBinding,\n} from '../binding/property-binding';\nimport {\nHooksDefinition,\n- IAttributeDefinition,\n- IBindableDescription,\n- IChildrenObserverDesc...
TypeScript
MIT License
aurelia/aurelia
refactor(controller): fix types and correctly use metadata
1
refactor
controller
67,476
18.10.2019 01:21:38
-7,200
aba717f8400fd18cc419d709da1d7e490fa7eb94
chore(aurelia): fix type
[ { "change_type": "MODIFY", "diff": "@@ -29,7 +29,6 @@ import {\nimport { ExposedContext } from './rendering-engine';\nimport {\nCustomElement,\n- ICustomElementType\n} from './resources/custom-element';\nimport { Controller } from './templating/controller';\n@@ -157,7 +156,7 @@ export class CompositionRoot<...
TypeScript
MIT License
aurelia/aurelia
chore(aurelia): fix type
1
chore
aurelia
67,476
18.10.2019 01:21:56
-7,200
be312c474196e5d93b2a137082aa0c80329402ee
chore(index): fix exports
[ { "change_type": "MODIFY", "diff": "@@ -191,10 +191,11 @@ export {\nexport {\nbindingBehavior,\nBindingBehavior,\n- IBindingBehavior,\n- IBindingBehaviorDefinition,\n- IBindingBehaviorResource,\n- IBindingBehaviorType\n+ BindingBehaviorDefinition,\n+ BindingBehaviorKind,\n+ BindingBehaviorDecorator,\n+ Bind...
TypeScript
MIT License
aurelia/aurelia
chore(index): fix exports
1
chore
index
67,476
18.10.2019 01:35:26
-7,200
929c6383eb5bd18c8606abc857c2fbd9756d5d09
chore(all): fixup dep versions
[ { "change_type": "MODIFY", "diff": "\"@aurelia/runtime\": \"0.3.0\",\n\"modify-code\": \"^1.0.1\",\n\"parse5\": \"^5.1.0\",\n- \"typescript\": \"^3.6.3\"\n+ \"typescript\": \"^3.6.4\"\n},\n\"devDependencies\": {\n\"@types/node\": \"^10.14.13\",\n", "new_path": "packages/plugin-conventions/package.json",...
TypeScript
MIT License
aurelia/aurelia
chore(all): fixup dep versions
1
chore
all
679,913
18.10.2019 03:00:40
-3,600
21c1ef6b605dc1fbbdd59f8fe560f64a83742a96
refactor(soa): update attribValues(), add indexUnsafe()
[ { "change_type": "MODIFY", "diff": "@@ -22,19 +22,19 @@ export class SOA<K extends string> implements ILength {\nthis.initSpecs(specs);\n}\n- *keys() {\n- yield* <K[]>Object.keys(this.specs);\n+ keys() {\n+ return <K[]>Object.keys(this.specs);\n}\n*values(from = 0, to = this.length): IterableIterator<SOATup...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(soa): update attribValues(), add indexUnsafe()
1
refactor
soa
791,834
18.10.2019 03:48:30
14,400
14b6ec4af07c70c5bb736fa0bd57f71b88fe3582
deps: remove mkdirp and make-dir for fs.mkdir
[ { "change_type": "MODIFY", "diff": "const fs = require('fs');\nconst path = require('path');\n+const mkdir = fs.promises.mkdir;\nconst LighthouseRunner = require('../lighthouse-core/runner.js');\nconst babel = require('babel-core');\nconst browserify = require('browserify');\n-const makeDir = require('make-...
JavaScript
Apache License 2.0
googlechrome/lighthouse
deps: remove mkdirp and make-dir for fs.mkdir (#9858)
1
deps
null
67,476
18.10.2019 03:57:36
-7,200
676e86ab72df44bf0530503f7c24fe443d863dbb
refactor(all): update definition refs
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,7 @@ import {\nIHydrateElementInstruction,\nIHydrateTemplateController,\nITemplateCompiler,\n- ITemplateDefinition,\n+ PartialCustomElementDefinition,\nPrimitiveLiteralExpression,\nTargetedInstructionType as TT,\nIHydrateLetElementInstruction\n@@ -396,7 +396,...
TypeScript
MIT License
aurelia/aurelia
refactor(all): update definition refs
1
refactor
all
67,476
18.10.2019 05:05:19
-7,200
5528572dcea1aeaaa7e98227ea2a28594110c7d6
fix(bindable): fix deco signature
[ { "change_type": "MODIFY", "diff": "@@ -25,7 +25,7 @@ export type PartialBindableDefinition = {\n*\n* @param config - The overrides\n*/\n-export function bindable(config?: PartialBindableDefinition): (target: {}, prop: symbol | string) => PropertyDecorator | ClassDecorator;\n+export function bindable(config...
TypeScript
MIT License
aurelia/aurelia
fix(bindable): fix deco signature
1
fix
bindable
67,476
18.10.2019 05:05:42
-7,200
9fd883d8c1d6f7944b5bd07ff37e023f123c6949
fix(create-element): fix types and refs
[ { "change_type": "MODIFY", "diff": "import {\nConstructable,\nIContainer,\n- IRegistry\n+ IRegistry,\n+ Key\n} from '@aurelia/kernel';\nimport {\n- buildTemplateDefinition,\nCustomElement,\nHydrateElementInstruction,\n- IBindableDescription,\n+ BindableDefinition,\nIController,\n- ICustomElementType,\n+ Cus...
TypeScript
MIT License
aurelia/aurelia
fix(create-element): fix types and refs
1
fix
create-element
67,476
18.10.2019 05:19:07
-7,200
009a96ccf8790dd0fc0a31a881568435016225fa
refactor(compose): update to use metadata etc
[ { "change_type": "MODIFY", "diff": "import {\nConstructable,\n- IContainer,\n- IRegistry,\n- Key,\nnextId,\nPLATFORM,\n- Registration,\n} from '@aurelia/kernel';\nimport {\n- Bindable,\nBindingMode,\n- BindingStrategy,\nContinuationTask,\n- CustomElement,\n- HooksDefinition,\nIController,\n- ICustomElementR...
TypeScript
MIT License
aurelia/aurelia
refactor(compose): update to use metadata etc
1
refactor
compose
67,476
18.10.2019 05:19:40
-7,200
104709946b1e2016a1df8e2a02e3ca9c21853c6b
refactor(binding-behaviors): back to decorators
[ { "change_type": "MODIFY", "diff": "-import { IRegistry } from '@aurelia/kernel';\n-import { BindingBehavior, ILifecycle, IScope, LifecycleFlags, PropertyBinding } from '@aurelia/runtime';\n+import { ILifecycle, IScope, LifecycleFlags, PropertyBinding, bindingBehavior } from '@aurelia/runtime';\nimport { Da...
TypeScript
MIT License
aurelia/aurelia
refactor(binding-behaviors): back to decorators
1
refactor
binding-behaviors
67,476
18.10.2019 05:20:06
-7,200
32dbacea6b897429bac5d8cf40c1ab98d217a36b
chore(configuration): fix typings
[ { "change_type": "MODIFY", "diff": "@@ -38,10 +38,10 @@ export const DefaultComponents = [\nITemplateFactoryRegistration\n];\n-export const AttrBindingBehaviorRegistration = AttrBindingBehavior as IRegistry;\n-export const SelfBindingBehaviorRegistration = SelfBindingBehavior as IRegistry;\n-export const Up...
TypeScript
MIT License
aurelia/aurelia
chore(configuration): fix typings
1
chore
configuration
503,922
18.10.2019 05:30:14
-7,200
07de08db5166406bd79d2d3e68d37c14e575f28c
fix(OUIA): Use consumer context if specified
[ { "change_type": "MODIFY", "diff": "@@ -75,7 +75,12 @@ class ComponentWithOuia extends React.Component<OuiaProps, OuiaState> {\nconst { isOuia, ouiaId } = this.state;\nconst { component: WrappedComponent, componentProps, consumerContext } = this.props;\nreturn (\n- <OuiaContext.Provider value={{ isOuia, oui...
TypeScript
MIT License
patternfly/patternfly-react
fix(OUIA): Use consumer context if specified (#3149)
1
fix
OUIA
67,476
18.10.2019 05:44:32
-7,200
9ceb1f7e744491a18b8367ac4085f53ecc19ca58
refactor(resources): move merge helpers to kernel
[ { "change_type": "MODIFY", "diff": "@@ -313,3 +313,49 @@ export function mergeDistinct<T>(\nreturn arr3;\n}\n+\n+export function mergeArrays<T>(...arrays: (readonly T[] | undefined)[]): T[] {\n+ const result: T[] = [];\n+ let k = 0;\n+ const arraysLen = arrays.length;\n+ let arrayLen = 0;\n+ let array: read...
TypeScript
MIT License
aurelia/aurelia
refactor(resources): move merge helpers to kernel
1
refactor
resources
815,605
18.10.2019 06:22:29
0
7e2ad2d9ed6718360587f3762163229eccd2cf10
feat: Expose methods to tweak CKB VM with CKB runtime outside CKB
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,7 @@ build = \"build.rs\"\n[features]\ndefault = [\"logging\", \"asm\"]\n-asm = []\n+asm = [\"ckb-vm/asm\"]\nlogging = [\"ckb-logger\"]\n[dependencies]\n@@ -17,7 +17,7 @@ ckb-script-data-loader = { path = \"data-loader\" }\nbyteorder = \"1.3.1\"\nckb-types = {p...
Rust
MIT License
nervosnetwork/ckb
feat: Expose methods to tweak CKB VM with CKB runtime outside CKB
1
feat
null
67,476
18.10.2019 07:08:40
-7,200
0734325d3f3d962d78b8dc798f6308576dde3a6b
refactor(binding-command): use metadata
[ { "change_type": "MODIFY", "diff": "import {\ncamelCase,\n- Class,\nConstructable,\nIContainer,\n- IResourceDefinition,\nIResourceKind,\n- IResourceType,\nRegistration,\n- Writable,\n- PLATFORM\n+ ResourceType,\n+ ResourceDefinition,\n+ PartialResourceDefinition,\n+ mergeArrays,\n+ Protocol,\n+ firstDefined...
TypeScript
MIT License
aurelia/aurelia
refactor(binding-command): use metadata
1
refactor
binding-command
67,476
18.10.2019 07:13:42
-7,200
d75e939d026896a0eebe02b05db0916622e83e71
refactor(resource-model): fix types
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ import {\nBindingMode,\nCustomAttribute,\nCustomElement,\n- IBindableDescription,\n+ BindableDefinition,\nCustomElementDefinition,\n} from '@aurelia/runtime';\nimport { AttrSyntax } from './ast';\n@@ -56,10 +56,10 @@ export class ElementInfo {\npublic stat...
TypeScript
MIT License
aurelia/aurelia
refactor(resource-model): fix types
1
refactor
resource-model
67,476
18.10.2019 07:15:40
-7,200
40a356263300945c09a183cb10d39a257e4a3711
chore(jit): fix exports
[ { "change_type": "MODIFY", "diff": "@@ -20,11 +20,11 @@ export {\n} from './attribute-patterns';\nexport {\nbindingCommand,\n- BindingCommand as BindingCommandResource,\n- BindingCommandInstance as IBindingCommand,\n- IBindingCommandDefinition,\n- IBindingCommandResource,\n- IBindingCommandType,\n+ BindingC...
TypeScript
MIT License
aurelia/aurelia
chore(jit): fix exports
1
chore
jit
67,476
18.10.2019 07:30:27
-7,200
4f4a0cd2512a07e913990ffd2d4a6ac5c7d01acd
chore(plugin-conventions): fix types
[ { "change_type": "MODIFY", "diff": "import { kebabCase } from '@aurelia/kernel';\n-import { BindingMode, IBindableDescription } from '@aurelia/runtime';\n+import { BindingMode, PartialBindableDefinition } from '@aurelia/runtime';\nimport { DefaultTreeElement, ElementLocation, parseFragment } from 'parse5';\...
TypeScript
MIT License
aurelia/aurelia
chore(plugin-conventions): fix types
1
chore
plugin-conventions
67,476
18.10.2019 07:33:16
-7,200
25502f6b4f57dd089ca9452596d2c531e8a313cb
chore(i18n): fix types
[ { "change_type": "MODIFY", "diff": "@@ -4,7 +4,7 @@ import {\nbindingCommand,\nBindingSymbol,\ngetTarget,\n- IBindingCommand,\n+ BindingCommandInstance,\nPlainAttributeSymbol\n} from '@aurelia/jit';\nimport {\n@@ -43,7 +43,7 @@ export class TranslationParametersBindingInstruction {\n}\n@bindingCommand(attri...
TypeScript
MIT License
aurelia/aurelia
chore(i18n): fix types
1
chore
i18n
67,476
18.10.2019 07:35:40
-7,200
5120db317da2cb9df149ab0c076b63886b9341fa
chore(binding-commands): fix types
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import {\nbindingCommand,\nBindingSymbol,\ngetTarget,\n- IBindingCommand,\n+ BindingCommandInstance,\nPlainAttributeSymbol,\n} from '@aurelia/jit';\nimport { BindingType, IsBindingBehavior, RefBindingInstruction } from '@aurelia/runtime';\n@@ -18,7 +18,7 @...
TypeScript
MIT License
aurelia/aurelia
chore(binding-commands): fix types
1
chore
binding-commands
217,922
18.10.2019 08:30:36
-7,200
15184d05be6c1e2e75a8e304821eb68cfe97c193
chore: converting collectability to purity for reduction reports
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,7 @@ export class ReductionResultReporter implements DataReporter {\nreturn packet.resultItems.map(item => {\nreturn {\nitemId: patch.itemId,\n- collectability: patch.spiritBond,\n+ purity: this.getPurity(patch.spiritBond),\nresultItemId: item.itemId,\nresult...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: converting collectability to purity for reduction reports
1
chore
null
791,719
18.10.2019 08:50:03
25,200
5d42745d31f1c99a1e414c63d71a2d0ca5a35540
core(total-blocking-time): add description link to docs
[ { "change_type": "MODIFY", "diff": "@@ -14,7 +14,7 @@ const UIStrings = {\ntitle: 'Total Blocking Time',\n/** Description of the Total Blocking Time (TBT) metric, which calculates the total duration of blocking time for a web page. Blocking times are time periods when the page would be blocked (prevented) f...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(total-blocking-time): add description link to docs (#9850)
1
core
total-blocking-time
71,308
18.10.2019 09:11:26
18,000
7f4b5c51007f768c8bbfb1af86d580898bccdbb5
chore(lambda-event-sources): fix readme s3 example * chore(lambda-event-sources): fix readme s3 example wrong enums * chore(lambda-event-sources): fix readme s3 example wrong enum for TrimHorizon
[ { "change_type": "MODIFY", "diff": "@@ -67,7 +67,7 @@ import { S3EventSource } from '@aws-cdk/aws-lambda-event-sources';\nconst bucket = new s3.Bucket(...);\nlambda.addEventSource(new S3EventSource(bucket, {\n- events: [ s3.EventType.ObjectCreated, s3.EventType.ObjectDeleted ],\n+ events: [ s3.EventType.OBJ...
TypeScript
Apache License 2.0
aws/aws-cdk
chore(lambda-event-sources): fix readme s3 example (#4563) * chore(lambda-event-sources): fix readme s3 example wrong enums * chore(lambda-event-sources): fix readme s3 example wrong enum for TrimHorizon
1
chore
lambda-event-sources
306,413
18.10.2019 10:07:18
-7,200
f04256cca874d6a5cfc7837340fb5be2143f3e1c
fix(calendar): issue 302 part 2 - skipped month
[ { "change_type": "MODIFY", "diff": "@@ -553,12 +553,21 @@ export class LionCalendar extends LocalizeMixin(LitElement) {\n__modifyDate(modify, { dateType, type, mode } = {}) {\nlet tmpDate = new Date(this.centralDate);\n+ // if we're not working with days, reset\n+ // day count to first day of the month\n+ i...
JavaScript
MIT License
ing-bank/lion
fix(calendar): issue 302 part 2 - skipped month
1
fix
calendar
679,913
18.10.2019 10:28:01
-3,600
e014466c7992175445122d2f7385d5e5468771aa
docs: add SOA link to WIP pkg list
[ { "change_type": "MODIFY", "diff": "@@ -87,6 +87,7 @@ contribute, please first read [this document](./CONTRIBUTING.md).\n(These packages are only available on their respective feature branches)\n- [@thi.ng/scenegraph](https://github.com/thi-ng/umbrella/tree/feature/scenegraph/packages/scenegraph) - 2D/3D sc...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs: add SOA link to WIP pkg list
1
docs
null
104,844
18.10.2019 10:35:30
14,400
0373cef32cab7807f8239ad526398aeee08f3df7
chore(build): fix failing stories
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ const nodeEnvironmentCheck = new webpack.DefinePlugin({\nmodule.exports = {\nmode: isDev ? 'development' : 'production',\ndevtool: isDev ? '#cheap-module-eval-source-map' : 'source-map',\n- plugins: [nodeEnvironmentCheck, new webpack.IgnorePlugin(/\\.\\/lo...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(build): fix failing stories
1
chore
build
815,609
18.10.2019 10:55:29
-28,800
c39471eb92a2d2f284270aee3b7b0468c5636cf0
chore: apply reviewers suggestion
[ { "change_type": "MODIFY", "diff": "@@ -35,8 +35,7 @@ const SIZES: &[usize] = &[2usize];\nfn block_assembler_config() -> BlockAssemblerConfig {\nlet (_, _, secp_script) = secp_cell();\nlet args = JsonBytes::from_bytes(secp_script.args().unpack());\n- let hash_type: ScriptHashType =\n- ScriptHashType::try_fr...
Rust
MIT License
nervosnetwork/ckb
chore: apply reviewers suggestion
1
chore
null
679,913
18.10.2019 12:26:39
-3,600
27595700ce0df21258dad58e18abf98b8ddb7c30
feat(soa): update SOAAttribSpec.buf to use ArrayBuffer w/ opt offset update aos() buffer handling update SOA.initSpecs() update tests
[ { "change_type": "MODIFY", "diff": "@@ -64,12 +64,8 @@ export const aos = <K extends string>(\nconst spec = soaSpecs[id];\nconst tsize = SIZEOF[spec.type!];\nspec.stride = total / tsize;\n- spec.buf = typedArray(\n- spec.type!,\n- buf,\n- byteOffset + offsets[id],\n- (num * total - offsets[id]) / tsize\n- )...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(soa): update SOAAttribSpec.buf to use ArrayBuffer w/ opt offset - update aos() buffer handling - update SOA.initSpecs() - update tests
1
feat
soa
104,818
18.10.2019 12:40:32
18,000
a7687107b0efc083cab4672f0c97f95379d682d4
fix(dashboard): expanded card not working
[ { "change_type": "MODIFY", "diff": "@@ -16,7 +16,6 @@ import { determineCardRange, compareGrains } from '../../utils/cardUtilityFuncti\nconst CachedCardRenderer = ({\nstyle, //eslint-disable-line\n- onCardAction, //eslint-disable-line\n...others\n}) => {\nconst [cachedStyle, setCachedStyle] = useState(style...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(dashboard): expanded card not working
1
fix
dashboard
889,138
18.10.2019 13:28:30
25,200
4caa62d2c6007e1ed2f25096b1e47f2a9c023d1f
refactor: reduce common dependency
[ { "change_type": "MODIFY", "diff": "\"pumpify\": \"^2.0.0\",\n\"snakecase-keys\": \"^3.0.0\",\n\"stream-events\": \"^1.0.4\",\n- \"teeny-request\": \"^5.2.1\",\n\"through2\": \"^3.0.0\",\n\"type-fest\": \"^0.8.0\"\n},\n\"devDependencies\": {\n\"@google-cloud/bigquery\": \"^4.0.0\",\n- \"@google-cloud/nodejs...
TypeScript
Apache License 2.0
googleapis/nodejs-logging
refactor: reduce common dependency (#612)
1
refactor
null
67,507
18.10.2019 13:51:29
-7,200
5fa3d1497327a672020135504c9528cf47936821
chore: lint sonarjs/prefer-immediate-return
[ { "change_type": "MODIFY", "diff": "@@ -123,6 +123,7 @@ module.exports = {\n'jsdoc/newline-after-description': 'error',\n'jsdoc/require-hyphen-before-param-description': ['error', 'always'],\n'sonarjs/no-useless-catch': 'error',\n+ 'sonarjs/prefer-immediate-return': 'error',\n'eol-last': ['error', 'always']...
TypeScript
MIT License
aurelia/aurelia
chore: lint sonarjs/prefer-immediate-return
1
chore
null
67,507
18.10.2019 13:55:56
-7,200
bc35f94365c0969514b447e58fc936905f4ab145
chore: lint array-callback-return
[ { "change_type": "MODIFY", "diff": "@@ -124,6 +124,7 @@ module.exports = {\n'jsdoc/require-hyphen-before-param-description': ['error', 'always'],\n'sonarjs/no-useless-catch': 'error',\n'sonarjs/prefer-immediate-return': 'error',\n+ 'array-callback-return': 'error',\n'eol-last': ['error', 'always'],\n'functi...
TypeScript
MIT License
aurelia/aurelia
chore: lint array-callback-return
1
chore
null
865,925
18.10.2019 14:21:51
-7,200
f5b3c833818f33171b822f54353ea5610e1bbe32
chore(CHANGELOG): update to v3.4.1
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,10 @@ All notable changes to the [Camunda Modeler](https://github.com/camunda/camunda-\n___Note:__ Yet to be released changes appear here._\n+## 3.4.1\n+\n+* `FIX`: allow again to scroll DMN tables horizontally ([#1537](https://github.com/camunda/camunda-modele...
JavaScript
MIT License
camunda/camunda-modeler
chore(CHANGELOG): update to v3.4.1
1
chore
CHANGELOG
304,893
18.10.2019 14:22:12
18,000
2bde0767a01ef082dc4cb2a1ec5b8824d53ac8d7
refactor(test): url validation in transformations
[ { "change_type": "MODIFY", "diff": "@@ -2,10 +2,16 @@ package executetest\nimport (\n\"context\"\n+ \"strings\"\n+ \"testing\"\n+ \"github.com/google/go-cmp/cmp\"\n\"github.com/influxdata/flux\"\n+ \"github.com/influxdata/flux/dependencies/dependenciestest\"\n+ \"github.com/influxdata/flux/dependencies/url\...
Go
MIT License
influxdata/flux
refactor(test): url validation in transformations (#1989)
1
refactor
test
679,913
18.10.2019 14:37:18
-3,600
1d9d29be9712bd9df683e490eb77b8d217e59f72
docs(soa): minor update readme
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,7 @@ This project is part of the\n- [About](#about)\n- [Installation](#installation)\n- [Dependencies](#dependencies)\n+- [Related packages](#related-packages)\n- [Usage examples](#usage-examples)\n- [Authors](#authors)\n- [License](#license)\n", "new_pat...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(soa): minor update readme
1
docs
soa
711,597
18.10.2019 14:49:37
-7,200
cd027892788db868889ac13bf7a8c5bcd854c0ee
fix(admin-ui): Fix notification label for CollectionList Relates to
[ { "change_type": "MODIFY", "diff": "@@ -89,13 +89,13 @@ export class CollectionListComponent\n.subscribe(\n() => {\nthis.notificationService.success(_('common.notify-delete-success'), {\n- entity: 'ProductVariant',\n+ entity: 'Collection',\n});\nthis.refresh();\n},\nerr => {\nthis.notificationService.error(...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Fix notification label for CollectionList Relates to #186
1
fix
admin-ui
104,963
18.10.2019 14:53:46
-7,200
51bd69f2408a86aaeee46434d579b2ceef941640
feat: add test coverage
[ { "change_type": "MODIFY", "diff": "\"watchPlugins\": [\n\"jest-watch-typeahead/filename\",\n\"jest-watch-typeahead/testname\"\n+ ],\n+ \"collectCoverage\": true,\n+ \"coverageReporters\": [\n+ \"html\",\n+ \"text-summary\"\n]\n},\n\"dependencies\": {}\n", "new_path": "package.json", "old_path": "pa...
JavaScript
Apache License 2.0
carbon-design-system/carbon-components-vue
feat: add test coverage (#609)
1
feat
null
791,622
18.10.2019 14:54:52
25,200
c7b006995fb8fe432e8561d189cddbd20c8e0dce
fix(deps): explicit update to google-auth-library with various fixes
[ { "change_type": "MODIFY", "diff": "\"arrify\": \"^2.0.0\",\n\"async-each\": \"^1.0.1\",\n\"extend\": \"^3.0.2\",\n- \"google-auth-library\": \"^5.0.0\",\n+ \"google-auth-library\": \"^5.5.0\",\n\"google-gax\": \"^1.6.3\",\n\"is-stream-ended\": \"^0.1.4\",\n\"lodash.snakecase\": \"^4.1.1\",\n", "new_pat...
TypeScript
Apache License 2.0
googleapis/nodejs-pubsub
fix(deps): explicit update to google-auth-library with various fixes (#785)
1
fix
deps
679,913
18.10.2019 15:37:54
-3,600
eedb89530555332103e3a32147c318592edf830b
feat(simd): add new package
[ { "change_type": "ADD", "diff": "+.cache\n+.meta\n+.nyc_output\n+*.gz\n+*.html\n+*.svg\n+*.tgz\n+*.h\n+*.o\n+*.wat\n+!*.wasm\n+build\n+coverage\n+dev\n+doc\n+export\n+src*\n+test\n+tsconfig.json\n", "new_path": "packages/simd/.npmignore", "old_path": null }, { "change_type": "ADD", "diff...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(simd): add new package
1
feat
simd
531,793
18.10.2019 15:41:15
-3,600
acaae50c4e23699138f7d9e7f6fe45447bea0950
feat(ci): rebuild openapi client code in CI and check for differences This ensures that we fail CI if the openapi client code that's commited to git is different than what the current code would generate
[ { "change_type": "MODIFY", "diff": "@@ -107,6 +107,18 @@ jobs:\n<<: *DEFAULTS_JS\nscript: make lint-docs\n+ - stage: Lint\n+ name: Verify OpenAPI client code\n+ if: (repo = prymitive/karma AND type != pull_request) OR (repo != prymitive/karma AND type = pull_request)\n+ language: generic\n+ addons:\n+ apt:\...
TypeScript
Apache License 2.0
prymitive/karma
feat(ci): rebuild openapi client code in CI and check for differences This ensures that we fail CI if the openapi client code that's commited to git is different than what the current code would generate
1
feat
ci
531,793
18.10.2019 16:01:25
-3,600
755e950e353cd0396769c974d42791167c6e533f
fix(docker): run apk update && apk upgrade when installing packages
[ { "change_type": "MODIFY", "diff": "FROM node:10.16.3-alpine as nodejs-builder\n-RUN apk add --update make git\n+RUN apk update && apk upgrade && apk add --update make git\nCOPY Makefile /src/Makefile\nCOPY ui /src/ui\nRUN make -C /src ui\nFROM golang:1.13.3-alpine as go-builder\n-RUN apk add --update make ...
TypeScript
Apache License 2.0
prymitive/karma
fix(docker): run apk update && apk upgrade when installing packages
1
fix
docker
679,913
18.10.2019 16:03:16
-3,600
2f50df64d27f3adfd29a3808762e51d1c864c806
docs(simd): update readme & pkg
[ { "change_type": "MODIFY", "diff": "@@ -9,11 +9,19 @@ This project is part of the\n<!-- TOC depthFrom:2 depthTo:3 -->\n+- [About](#about)\n+- [Installation](#installation)\n+- [Dependencies](#dependencies)\n+- [Usage examples](#usage-examples)\n+- [Authors](#authors)\n+- [License](#license)\n+\n<!-- /TOC --...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(simd): update readme & pkg
1
docs
simd
866,394
18.10.2019 16:09:03
14,400
9ec6f96ca93b9c0f8855f4a3fc8532213bd7701b
fix(buttongroup): adding ButtonGroup
[ { "change_type": "ADD", "diff": "+/**\n+ * Copyright IBM Corp. 2016, 2018\n+ *\n+ * This source code is licensed under the Apache-2.0 license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ */\n+import React, { useLayoutEffect, useRef, createRef } from 'react';\n+import PropType...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(buttongroup): adding ButtonGroup
1
fix
buttongroup
711,597
18.10.2019 16:11:25
-7,200
1ba9e2d6f72f931fb11dd1f006418090d9d8477f
fix(core): Deleting a Collection also deletes descendants Relates to
[ { "change_type": "MODIFY", "diff": "@@ -447,14 +447,14 @@ describe('Collection resolver', () => {\n});\ndescribe('deleteCollection', () => {\n- let collectionToDelete: CreateCollection.CreateCollection;\n+ let collectionToDeleteParent: CreateCollection.CreateCollection;\n+ let collectionToDeleteChild: Creat...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Deleting a Collection also deletes descendants Relates to #186
1
fix
core
711,597
18.10.2019 16:13:55
-7,200
27b708013fee7395364e6c390eba1544a6a3116f
feat(admin-ui): Display hint if deleting Collection with descendants
[ { "change_type": "MODIFY", "diff": "import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { combineLatest, EMPTY, Observable } from 'rxjs';\n-import { distinctUntilChanged, map, switchMap } from 'rxjs/operators';\n+impo...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Display hint if deleting Collection with descendants
1
feat
admin-ui
866,394
18.10.2019 16:14:48
14,400
de19918735533dcc2a00042b51f5ede5e6d6cadd
fix(buttongroup): fixes to ButtonGroup props and unit tests
[ { "change_type": "MODIFY", "diff": "@@ -92,7 +92,8 @@ ButtonGroup.propTypes = {\nPropTypes.shape({\ncopy: PropTypes.string.isRequired,\nlink: PropTypes.string.isRequired,\n- renderArrow: PropTypes.bool.isRequired,\n+ renderIcon: PropTypes.string,\n+ renderArrow: PropTypes.bool,\n})\n),\n};\n", "new_path...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(buttongroup): fixes to ButtonGroup props and unit tests
1
fix
buttongroup
866,394
18.10.2019 16:19:09
14,400
513e23f27045c1bd7b9cd66e56d69256c310a299
docs(buttongroup): added ButtonGroup documentation fix
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ Here's a quick example to get you started.\nimport React from 'react';\nimport ReactDOM from 'react-dom';\nimport { ButtonGroup } from '@carbon/ibmdotcom-react';\n-import '@carbon/ibmdotcom-styles/scss/components/buttongroup/index.scss';\n+import '@carbo...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
docs(buttongroup): added ButtonGroup documentation fix
1
docs
buttongroup
67,476
18.10.2019 16:32:02
-7,200
32181f8837cbb0994a13a91b4356bab8e1338e8f
refactor(jit): fix template compiler+binder"
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,7 @@ import {\nAttrSyntax,\nBindableInfo,\nIAttributeParser,\n- IBindingCommand,\n+ BindingCommandInstance,\nResourceModel,\nSymbolFlags,\nChar,\n@@ -531,7 +531,7 @@ export class TemplateBinder {\nprivate bindCustomAttribute(\nattrSyntax: AttrSyntax,\nattrInfo:...
TypeScript
MIT License
aurelia/aurelia
refactor(jit): fix template compiler+binder"
1
refactor
jit
67,476
18.10.2019 16:32:26
-7,200
a058ac1f9e8c3f1c4d1d704bd3838bd0ef1d4a88
refactor(view): always clone parts
[ { "change_type": "MODIFY", "diff": "@@ -95,10 +95,8 @@ export class ViewFactory<T extends INode = INode> implements IViewFactory<T> {\n}\npublic addParts(parts: PartialCustomElementDefinitionParts): void {\n- if (this.parts === PLATFORM.emptyObject) {\n- this.parts = { ...parts };\n- } else {\n- Object.assi...
TypeScript
MIT License
aurelia/aurelia
refactor(view): always clone parts
1
refactor
view
711,597
18.10.2019 16:43:43
-7,200
147bf17b8696301aaece18f691c9f7a046c0c0f3
feat(admin-ui): Make CollectionList items expandable
[ { "change_type": "MODIFY", "diff": "<vdr-action-bar>\n+ <vdr-ab-left>\n+ <clr-checkbox-wrapper class=\"expand-all-toggle\">\n+ <input type=\"checkbox\" clrCheckbox [(ngModel)]=\"expandAll\" />\n+ <label>{{ 'catalog.expand-all-collections' | translate }}</label>\n+ </clr-checkbox-wrapper>\n+ </vdr-ab-left>\n...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Make CollectionList items expandable
1
feat
admin-ui
866,394
18.10.2019 16:46:18
14,400
76666888a9339f2a27b7d58cba6f7d7e7b90d6ef
feat(buttongroup): added feature flag for ButtonGroup
[ { "change_type": "MODIFY", "diff": "@@ -16,6 +16,7 @@ SCROLL_TRACKING=<boolean to enable scroll tracking, e.g. false>\n#Feature Flags\nFOOTER_LOCALE_BUTTON=<Boolean flag to turn on/off the locale selector>\n+BUTTON_GROUP=<Boolean flag to turn on/off the ButtonGroup component>\n# Geolocation\nGEO_API=<endpoi...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(buttongroup): added feature flag for ButtonGroup
1
feat
buttongroup
401,147
18.10.2019 16:48:45
-19,080
36b96d58137d3aad1da1842f9096c0ceca90619b
docs(loader): add props description of loader components affects:
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,8 @@ import { HTMLProps, Omit, WithThemeProp } from '@medly-components/utils';\ntype SVGProp = Omit<HTMLProps<HTMLOrSVGElement>, 'size'>;\nexport interface Props extends SVGProp, WithThemeProp {\n+ /** Loader size */\nsize?: LoaderSizes;\n+ /** Loader color */\...
TypeScript
MIT License
medly/medly-components
docs(loader): add props description of loader components affects: @medly-components/loaders
1
docs
loader