author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
815,605
10.10.2019 06:07:46
0
c124a1342137a2a948737ffa1338e2a2f2f43d73
fix: Install clang 8 for WASM build
[ { "change_type": "MODIFY", "diff": "@@ -18,6 +18,9 @@ env:\naddons:\napt:\n+ sources:\n+ - sourceline: \"deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-8 main\"\n+ key_url: \"https://apt.llvm.org/llvm-snapshot.gpg.key\"\npackages:\n- libssl-dev\n- autoconf\n@@ -25,6 +28,7 @@ addons:\n- bison\n- texin...
Rust
MIT License
nervosnetwork/ckb
fix: Install clang 8 for WASM build
1
fix
null
217,922
10.10.2019 08:52:43
-7,200
68ebb2b4a7b6202c6d829f40420bcc0b7155891a
chore: don't remove informations for custom items
[ { "change_type": "MODIFY", "diff": "@@ -24,12 +24,18 @@ export class FirestoreListStorage extends FirestoreStorage<List> implements List\nprotected prepareData(list: Partial<List>): { parent: List; subcollections: { [p: string]: any[] } } {\nconst clone: List = JSON.parse(JSON.stringify(list));\nclone.items...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: don't remove informations for custom items
1
chore
null
531,793
10.10.2019 09:21:25
-3,600
87754cebf200f7724ccf4d5858eca4abc69634cb
chore(ui): reduce padding for the filter input
[ { "change_type": "MODIFY", "diff": "height: auto;\nmin-height: 2.6rem;\n- padding-top: 2px;\n- padding-bottom: 2px;\n+ padding-top: 1px;\n+ padding-bottom: 1px;\npadding-left: 0.25rem;\npadding-right: 0.25rem;\n}\n", "new_path": "ui/src/Components/NavBar/FilterInput/index.css", "old_path": "ui/src/C...
TypeScript
Apache License 2.0
prymitive/karma
chore(ui): reduce padding for the filter input
1
chore
ui
932,458
10.10.2019 09:44:07
14,400
9df5ba7bb97112c2d87475bb00ec141cf4a606b8
build: use yarn to execute pre-publish scripts npm_execpath would resolve to lerna, which meant that `lerna run clean` would get run instead of `yarn run clean`, and files would get blown away unexpectedly mid-build from depencencies
[ { "change_type": "MODIFY", "diff": "\"build\": \"web-scripts build\",\n\"lint\": \"web-scripts lint\",\n\"format\": \"web-scripts format\",\n- \"prepublishOnly\": \"$npm_execpath run build\"\n+ \"prepublishOnly\": \"yarn run build\"\n},\n\"bugs\": {\n\"url\": \"https://github.com/spotify/web-scripts/issues\...
TypeScript
Apache License 2.0
spotify/web-scripts
build: use yarn to execute pre-publish scripts npm_execpath would resolve to lerna, which meant that `lerna run clean` would get run instead of `yarn run clean`, and files would get blown away unexpectedly mid-build from depencencies
1
build
null
815,598
10.10.2019 09:46:44
-28,800
103247c46a55b159fd08056c3b3003219d23d2e5
fix: set `next_epoch_diff` to one instead of panic when it is zero
[ { "change_type": "MODIFY", "diff": "@@ -622,10 +622,9 @@ impl Consensus {\n&adjusted_last_epoch_hash_rate * epoch_duration_target,\nU256::one(),\n);\n- let next_epoch_diff = if bound {\n+ let diff_denominator = if bound {\nif last_orphan_rate.is_zero() {\n- let denominator = U256::from(next_epoch_length);\n...
Rust
MIT License
nervosnetwork/ckb
fix: set `next_epoch_diff` to one instead of panic when it is zero
1
fix
null
815,601
10.10.2019 10:15:58
-28,800
ecc0d7d59bde354c72582c65e74aa530b07b2a40
test: missing uncle request
[ { "change_type": "MODIFY", "diff": "@@ -286,6 +286,7 @@ fn all_specs() -> SpecMap {\nBox::new(ProposeButNotCommit),\nBox::new(ProposeDuplicated),\nBox::new(ForkedTransaction),\n+ Box::new(MissingUncleRequest),\n];\nspecs.into_iter().map(|spec| (spec.name(), spec)).collect()\n}\n", "new_path": "test/src/...
Rust
MIT License
nervosnetwork/ckb
test: missing uncle request
1
test
null
304,863
10.10.2019 10:52:04
25,200
98917da6ec5d9e41de66f05a4603ee54048a2754
feat(stdlib/experimental/prometheus): create flux tables from prometheus metrics and add structs to mock package
[ { "change_type": "MODIFY", "diff": "@@ -22,10 +22,12 @@ require (\ngithub.com/lib/pq v1.0.0\ngithub.com/mattn/go-runewidth v0.0.3 // indirect\ngithub.com/mattn/go-tty v0.0.0-20180907095812-13ff1204f104 // indirect\n+ github.com/matttproud/golang_protobuf_extensions v1.0.1\ngithub.com/opentracing/opentracing...
Go
MIT License
influxdata/flux
feat(stdlib/experimental/prometheus): create flux tables from prometheus metrics and add structs to mock package (#1937)
1
feat
stdlib/experimental/prometheus
679,913
10.10.2019 11:05:34
-3,600
9d3b2c33bc59deb0e8569344a38b3182a791cc13
refactor(vector-pools): update type enum conversions (due to type migration & updates in thi.ng/api)
[ { "change_type": "MODIFY", "diff": "@@ -17,11 +17,11 @@ import {\n* @param type\n*/\nexport const asNativeType = (type: GLType | Type): Type => {\n- const t = GL2TYPE[type];\n+ const t = (<any>GL2TYPE)[type];\nreturn t !== undefined ? t : <Type>type;\n};\nexport const asGLType = (type: GLType | Type): GLTyp...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(vector-pools): update type enum conversions (due to type migration & updates in thi.ng/api)
1
refactor
vector-pools
679,913
10.10.2019 11:06:24
-3,600
35821a8e1d9edc49f56da8c8108eb4057455dba0
minor(examples): dummy args in multipass ex
[ { "change_type": "MODIFY", "diff": "@@ -48,7 +48,7 @@ const toy = multipass({\n},\npasses: [\n{\n- fs: (gl, unis, ins, outs) => [\n+ fs: (gl, unis, _, outs) => [\ndefMain(() => {\nlet uv: Vec2Sym;\nreturn [\n@@ -75,7 +75,7 @@ const toy = multipass({\n}\n},\n{\n- fs: (gl, unis, ins, outs) => [\n+ fs: (gl, un...
TypeScript
Apache License 2.0
thi-ng/umbrella
minor(examples): dummy args in multipass ex
1
minor
examples
866,395
10.10.2019 11:15:39
14,400
79df92189db9b1618db25f315450fa1e755b1921
feat(masthead): makes search and profile optional; fixes
[ { "change_type": "MODIFY", "diff": "@@ -154,9 +154,11 @@ const Masthead = ({ navigation, ...mastheadProps }) => {\nnavigation={mastheadData}\n/>\n) : null}\n- <MastheadSearch />\n+\n+ {mastheadProps.hasSearch && <MastheadSearch />}\n</div>\n+ {mastheadProps.hasProfile && (\n<HeaderGlobalBar>\n<MastheadProfi...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(masthead): makes search and profile optional; fixes #101
1
feat
masthead
711,597
10.10.2019 11:23:32
-7,200
d9f5c413f3507e4a094d86b51d324fcc1249f541
fix(core): Allow nullable fields to be unset via GraphQL API
[ { "change_type": "MODIFY", "diff": "import { patchEntity } from './patch-entity';\ndescribe('patchEntity()', () => {\n- it('updates non-null values', () => {\n+ it('updates non-undefined values', () => {\nconst entity: any = {\nfoo: 'foo',\nbar: 'bar',\nbaz: 'baz',\n};\n- const result = patchEntity(entity, ...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Allow nullable fields to be unset via GraphQL API
1
fix
core
71,371
10.10.2019 11:25:06
-7,200
a4e63bd2756af8ebda62b24f6384f07a1e4279f5
fix(elbv2): add new FS security policies See
[ { "change_type": "MODIFY", "diff": "@@ -72,6 +72,21 @@ export enum SslPolicy {\n*/\nRECOMMENDED = 'ELBSecurityPolicy-2016-08',\n+ /**\n+ * Strong forward secrecy ciphers and TLS1.2 only\n+ */\n+ FORWARD_SECRECY_TLS12_RES = 'ELBSecurityPolicy-FS-1-2-Res-2019-08',\n+\n+ /**\n+ * Forward secrecy ciphers and TL...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(elbv2): add new FS security policies (#4425) See https://aws.amazon.com/about-aws/whats-new/2019/10/application-load-balancer-and-network-load-balancer-add-new-security-policies-for-forward-secrecy-with-more-strigent-protocols-and-ciphers/
1
fix
elbv2
711,597
10.10.2019 11:31:57
-7,200
48def65f1409533056157121dc5e59db19b9d63c
feat(admin-ui): Add date range & coupon code controls to PromotionDetail Relates to
[ { "change_type": "MODIFY", "diff": "@@ -527,6 +527,7 @@ export type CreatePromotionInput = {\nstartsAt?: Maybe<Scalars['DateTime']>,\nendsAt?: Maybe<Scalars['DateTime']>,\ncouponCode?: Maybe<Scalars['String']>,\n+ perCustomerUsageLimit?: Maybe<Scalars['Int']>,\nconditions: Array<ConfigurableOperationInput>,...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Add date range & coupon code controls to PromotionDetail Relates to #174
1
feat
admin-ui
865,926
10.10.2019 11:39:48
-7,200
ac5065c0ba2eef03706d65b96201371730cefd9d
test(deploy): verify validators
[ { "change_type": "ADD", "diff": "+/**\n+ * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH\n+ * under one or more contributor license agreements. See the NOTICE file\n+ * distributed with this work for additional information regarding copyright\n+ * ownership.\n+ *\n+ * Camunda lice...
JavaScript
MIT License
camunda/camunda-modeler
test(deploy): verify validators
1
test
deploy
217,922
10.10.2019 11:59:39
-7,200
c3298873c060a5da78938e3612a6424f08bc6e90
chore: refactor for the way we handle data reporters
[ { "change_type": "MODIFY", "diff": "-import { Injectable } from '@angular/core';\n+import { Inject, Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { IpcService } from '../electron/ipc.service';\n-import { ofPacketSubType } from '../rxjs/of-packet-subtype';\n-i...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: refactor for the way we handle data reporters
1
chore
null
699,189
10.10.2019 12:09:23
18,000
fda61ba05973a7ff9b652f7f234b2ed8a678bed4
fix(button): border-color should transition with background-color
[ { "change_type": "MODIFY", "diff": "@@ -4,8 +4,6 @@ import {buttonStyle, themeGet} from 'styled-system';\nimport {Absolute} from '@twilio-paste/absolute';\nimport {ButtonWrapperProps, ButtonChildrenProps} from './types';\n-// TODO transitions - blocked on design\n-\n/*\n* Sizes\n*/\n@@ -43,7 +41,7 @@ const ...
TypeScript
MIT License
twilio-labs/paste
fix(button): border-color should transition with background-color (#130)
1
fix
button
866,395
10.10.2019 12:19:42
14,400
9b3c311f9fa840755445d45d27e1a00e09acc3e6
chore(js): clean up conditional rendering
[ { "change_type": "MODIFY", "diff": "@@ -115,6 +115,7 @@ const Masthead = ({ navigation, ...mastheadProps }) => {\n};\n}, []);\n+ if (navigation) {\nswitch (typeof navigation) {\ncase 'string':\n// eslint-disable-next-line\n@@ -123,11 +124,10 @@ const Masthead = ({ navigation, ...mastheadProps }) => {\ncase ...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(js): clean up conditional rendering
1
chore
js
711,597
10.10.2019 12:24:29
-7,200
ed7f5fbf536ed0ebcab0326f992659490239f0b1
feat(core): Log thrown errors
[ { "change_type": "MODIFY", "diff": "import { ID } from '@vendure/common/lib/shared-types';\n+import { LogLevel } from '../../config/logger/vendure-logger';\nimport { coreEntitiesMap } from '../../entity/entities';\nimport { I18nError } from '../../i18n/i18n-error';\n@@ -12,7 +13,7 @@ import { I18nError } fr...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(core): Log thrown errors
1
feat
core
366,920
10.10.2019 12:27:19
-32,400
9e7ce93d3c1b11c73fec24011974b706ab76e1dd
style: Fix z-index
[ { "change_type": "MODIFY", "diff": "@@ -64,7 +64,7 @@ const Wrapper = styled.div`\n${({ position, theme }: { position: Position } & InjectedProps) => {\nreturn css`\nvisibility: hidden;\n- z-index: 1000;\n+ z-index: 99999;\nposition: absolute;\ntop: ${position.top};\nleft: ${position.left};\n", "new_pat...
TypeScript
MIT License
kufu/smarthr-ui
style: Fix z-index
1
style
null
866,395
10.10.2019 12:45:29
14,400
75d5b68c4e9985fcd4b65d5f8f114c0239e75587
chore(storybook): clean masthead and dotcom stories
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport { storiesOf } from '@storybook/react';\n-import { withKnobs, select } from '@storybook/addon-knobs';\n+import { withKnobs, select, boolean } from '@storybook/addon-knobs';\nimport DotcomShell from '../DotcomShell';\n-import mastheadLinks...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(storybook): clean masthead and dotcom stories
1
chore
storybook
866,395
10.10.2019 12:58:19
14,400
c8fcd4b5434f67d8540ddc74690c52a5cfc71ea1
fix(js): remove dupe object
[ { "change_type": "MODIFY", "diff": "@@ -27,6 +27,11 @@ storiesOf('Dotcom Shell', module)\nmastheadKnobs.navigation,\nmastheadKnobs.navigation.default\n)}\n+ platform={select(\n+ 'Platform name',\n+ mastheadKnobs.platform,\n+ mastheadKnobs.platform.none\n+ )}\nfooterType={select('Footer', footer, footer.defa...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(js): remove dupe object
1
fix
js
269,496
10.10.2019 13:42:31
-7,200
b7551c57f2178d5f7adf2834637eff6a5c147bc8
ci: add golangci-lint configuration file
[ { "change_type": "ADD", "diff": "+# This file contains all available configuration options\n+# with their default values.\n+\n+# options for analysis running\n+run:\n+ tests: false\n+\n+linters:\n+ enable-all: true\n+ disable:\n+ - wsl\n+ - lll\n+ - funlen\n+ - godox\n", "new_path": ".golangci.yml", ...
Go
MIT License
goreleaser/goreleaser
ci: add golangci-lint configuration file (#1188)
1
ci
null
932,479
10.10.2019 13:44:05
14,400
bda6c5f5feb563ccd3a206685f37e74783436154
fix(eslint-config): Update typescript-eslint packages to ^2.2.0 BREAKING CHANGE: Major version bump
[ { "change_type": "MODIFY", "diff": "\"packages/*\"\n],\n\"devDependencies\": {\n- \"@typescript-eslint/eslint-plugin\": \"^1.11.0\",\n- \"@typescript-eslint/parser\": \"^1.11.0\",\n- \"eslint\": \"^5.16.0\",\n- \"eslint-plugin-jsx-a11y\": \"^6.2.1\",\n- \"eslint-plugin-react\": \"^7.14.2\",\n\"husky\": \"^2...
TypeScript
Apache License 2.0
spotify/web-scripts
fix(eslint-config): Update typescript-eslint packages to ^2.2.0 BREAKING CHANGE: Major version bump
1
fix
eslint-config
366,933
10.10.2019 14:01:30
-32,400
a62b62318f101e77a6393d4530871acd81552f95
feat: add reply icon and paper-plain icon
[ { "change_type": "MODIFY", "diff": "@@ -51,6 +51,7 @@ const icons: Array<Props['name']> = [\n'fa-lock',\n'fa-lock-open',\n'fa-minus',\n+ 'fa-paper-plane',\n'fa-pencil-alt',\n'fa-plus',\n'fa-plus-circle',\n@@ -58,6 +59,7 @@ const icons: Array<Props['name']> = [\n'fa-reg-calendar-check',\n'fa-reg-chart-bar',\...
TypeScript
MIT License
kufu/smarthr-ui
feat: add reply icon and paper-plain icon
1
feat
null
447,447
10.10.2019 14:02:43
14,400
b4967c9a40dca8369e32585b2b0dfa68dce29138
test: add accessibility test on footer of the ImportRecordFlow component
[ { "change_type": "ADD", "diff": "+import React from 'react';\n+import ReactDOMServer from 'react-dom/server';\n+import { axe } from 'jest-axe';\n+import DirectionalFooter from './../footer';\n+\n+describe('<DirectionalFooter on ImportRecordsFlow/>', () => {\n+ it('should be accessible', async () => {\n+ exp...
JavaScript
MIT License
nexxtway/react-rainbow
test: add accessibility test on footer of the ImportRecordFlow component (#1057)
1
test
null
273,683
10.10.2019 14:17:57
-7,200
6058ff167852e3bdc81855b9084e11b505f1024b
fix(wordpress): add references as array fields
[ { "change_type": "MODIFY", "diff": "@@ -144,10 +144,11 @@ class WordPressSource {\nif (post.hasOwnProperty(propName)) {\nconst typeName = this.createTypeName(type)\n- const ref = createReference(typeName, post[propName])\nconst key = camelCase(propName)\n- fields[key] = ref\n+ fields[key] = Array.isArray(po...
JavaScript
MIT License
gridsome/gridsome
fix(wordpress): add references as array fields (#745)
1
fix
wordpress
815,590
10.10.2019 14:18:39
-28,800
64c0c2d37138e1d8efc0029d41e906d154dbf085
fix: fix panic when submit tx with low fee rate
[ { "change_type": "MODIFY", "diff": "@@ -13,6 +13,7 @@ use std::fmt::{self, Display};\npub enum ErrorKind {\nOutPoint,\nTransaction,\n+ SubmitTransaction,\nScript,\nHeader,\nBlock,\n", "new_path": "error/src/lib.rs", "old_path": "error/src/lib.rs" }, { "change_type": "MODIFY", "diff": "@@...
Rust
MIT License
nervosnetwork/ckb
fix: fix panic when submit tx with low fee rate
1
fix
null
67,476
10.10.2019 14:22:27
-7,200
311c9769a80fd7090d31e6fe2325fa28ce9508f6
chore(lint): disable no-template-curly-in-string'
[ { "change_type": "MODIFY", "diff": "@@ -149,7 +149,6 @@ module.exports = {\n],\n'no-return-await': 'error',\n'no-sequences': 'error',\n- 'no-template-curly-in-string': 'error',\n'no-throw-literal': 'error',\n'no-undef-init': 'error',\n'no-unused-expressions': 'error',\n@@ -209,6 +208,7 @@ module.exports = {...
TypeScript
MIT License
aurelia/aurelia
chore(lint): disable no-template-curly-in-string'
1
chore
lint
699,189
10.10.2019 14:28:02
18,000
8c3623f474832f33080a7e10ac3e173e53fa2e82
docs(box): add table of contents
[ { "change_type": "MODIFY", "diff": "@@ -22,6 +22,12 @@ export const pageQuery = graphql`\n}\n}\n}\n+ mdx(fields: { slug: { eq: \"/box/\" } }) {\n+ headings {\n+ depth\n+ value\n+ }\n+ }\n}\n`;\n@@ -33,6 +39,10 @@ export const pageQuery = graphql`\ndata={props.data.allPasteUtility.edges}\n/>\n+<contentwrappe...
TypeScript
MIT License
twilio-labs/paste
docs(box): add table of contents (#131)
1
docs
box
866,395
10.10.2019 14:34:28
14,400
fbce7ea5ca0ed820b11f74fa30437de9f65d6f28
fix(masthead): add default props
[ { "change_type": "MODIFY", "diff": "@@ -33,8 +33,8 @@ storiesOf('Dotcom Shell', module)\nmastheadKnobs.platform.none\n)}\nfooterType={select('Footer', footer, footer.default)}\n- hasProfile={boolean('Show profile', true)}\n- hasSearch={boolean('Show search', true)}>\n+ hasProfile={boolean('Has profile', tru...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(masthead): add default props
1
fix
masthead
711,597
10.10.2019 14:40:30
-7,200
a4fea5954aed80bbe1442b1d73ec0da6eedecd8a
fix(core): Fix order totals calculation with order % discount
[ { "change_type": "MODIFY", "diff": "@@ -124,7 +124,9 @@ export class OrderItem extends VendureEntity {\nif (!type) {\nthis.pendingAdjustments = [];\n} else {\n- this.pendingAdjustments = this.pendingAdjustments.filter(a => a.type !== type);\n+ this.pendingAdjustments = this.pendingAdjustments\n+ ? this.pend...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Fix order totals calculation with order % discount
1
fix
core
366,933
10.10.2019 14:42:51
-32,400
eabe203206b77725918646f3ad340c5fe2d99e62
feat: update AppNavi component so it can take a child component
[ { "change_type": "MODIFY", "diff": "@@ -8,18 +8,24 @@ import { AppNaviButton, AppNaviButtonProps } from './AppNaviButton'\ninterface Props {\nlabel?: string\nbuttons?: AppNaviButtonProps[]\n+ children?: React.ReactNode\n}\n-const AppNaviComponent: React.FC<Props & InjectedProps> = ({ theme, ...props }) => (...
TypeScript
MIT License
kufu/smarthr-ui
feat: update AppNavi component so it can take a child component
1
feat
null
866,395
10.10.2019 14:44:49
14,400
df94e8939da76424c07e8c85c8cb961bc9175079
chore(js): clean up js
[ { "change_type": "MODIFY", "diff": "*/\nimport mastheadLinks from './MastheadLinks.js';\n-const platformName = {\n- none: null,\n- platform: {\n- name: 'IBM Cloud',\n- url: 'https://www.ibm.com/cloud',\n- },\n-};\n-\nconst mastheadKnobs = {\nnavigation: {\ndefault: 'string',\n@@ -21,7 +13,10 @@ const masthe...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(js): clean up js
1
chore
js
67,476
10.10.2019 14:47:28
-7,200
651e81aa8506226016a8682ebf51eb976b114ac5
perf(repeat): only update contextual props when necessary
[ { "change_type": "MODIFY", "diff": "@@ -255,9 +255,9 @@ export class Repeat<C extends ObservedCollection = IObservedArray, T extends INo\nif ((this.$controller.state & State.isAttachedOrAttaching) > 0) {\nif (this.task.done) {\n- this.sortViewsByKey(indexMap, flags);\n+ this.sortViewsByKey(oldLength, indexM...
TypeScript
MIT License
aurelia/aurelia
perf(repeat): only update contextual props when necessary
1
perf
repeat
67,476
10.10.2019 14:47:42
-7,200
0db4e70f483ad53015e82ddc3e2491477e70ef24
chore(repeat): fix linting
[ { "change_type": "MODIFY", "diff": "@@ -149,6 +149,7 @@ module.exports = {\n],\n'no-return-await': 'error',\n'no-sequences': 'error',\n+ 'no-template-curly-in-string': 'error',\n'no-throw-literal': 'error',\n'no-undef-init': 'error',\n'no-unused-expressions': 'error',\n@@ -208,7 +209,6 @@ module.exports = {...
TypeScript
MIT License
aurelia/aurelia
chore(repeat): fix linting
1
chore
repeat
67,476
10.10.2019 14:54:22
-7,200
2853f5955ee0413fcae4560341305362aa691ab0
chore(repeat): fix slip-up in test
[ { "change_type": "MODIFY", "diff": "@@ -453,7 +453,7 @@ describe(`[repeat.contextual-prop.spec.ts]`, function () {\nfunction defaultExpectation(items: any[] | Map<any, any> | Set<any>): string {\nif (Array.isArray(items)) {\n- return items.map((item, idx) => `[\\${item.name}] -- ${idx} -- ${idx % 2 === 0}`)...
TypeScript
MIT License
aurelia/aurelia
chore(repeat): fix slip-up in test
1
chore
repeat
865,916
10.10.2019 15:04:11
-7,200
c8a5255850ff69055bb35c3c29627a53d5cd9d35
chore(deployment-tool): code style
[ { "change_type": "MODIFY", "diff": "@@ -25,9 +25,9 @@ import {\n} from './components';\nimport {\n- Formik,\n+ Field,\nForm,\n- Field\n+ Formik\n} from 'formik';\nimport { ConnectionErrorMessages } from './errors';\n", "new_path": "client/src/plugins/deployment-tool/DeploymentDetailsModal.js", "old_...
JavaScript
MIT License
camunda/camunda-modeler
chore(deployment-tool): code style
1
chore
deployment-tool
815,595
10.10.2019 15:39:24
-28,800
f1f02586bf595c6da59a700e1b992e982b5d5728
chore(test): Move block construction functions to util
[ { "change_type": "MODIFY", "diff": "@@ -26,8 +26,8 @@ impl Spec for MissingUncleRequest {\nlet builder = node.new_block_builder(None, None, None);\nlet block1 = builder.clone().nonce(0.pack()).build();\nlet block2 = builder.clone().nonce(1.pack()).build();\n- node.submit_block(&block1.data());\n- node.submi...
Rust
MIT License
nervosnetwork/ckb
chore(test): Move block construction functions to util
1
chore
test
866,395
10.10.2019 15:48:31
14,400
cbf91f63585667803c26f6105f566da4e5b51f34
fix(masthead): add proptypes
[ { "change_type": "MODIFY", "diff": "@@ -37,7 +37,7 @@ const { prefix } = settings;\n* @param {string} type Type of masthead\n* @returns {*} Masthead component\n*/\n-const Masthead = ({ navigation, ...mastheadProps }) => {\n+const Masthead = ({ navigation, hasProfile, hasSearch, ...mastheadProps }) => {\n/**...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(masthead): add proptypes
1
fix
masthead
711,597
10.10.2019 16:07:52
-7,200
cd823fe07a1562f47f523d79a61efe7b09c3bd4d
feat(admin-ui): Add detailed promotion & tax info to OrderDetail view
[ { "change_type": "MODIFY", "diff": "@@ -3810,7 +3810,7 @@ export type OrderFragment = ({ __typename?: 'Order' } & Pick<Order, 'id' | 'crea\nexport type FulfillmentFragment = ({ __typename?: 'Fulfillment' } & Pick<Fulfillment, 'id' | 'createdAt' | 'updatedAt' | 'method' | 'trackingCode'>);\n-export type Orde...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Add detailed promotion & tax info to OrderDetail view
1
feat
admin-ui
401,147
10.10.2019 16:53:08
-19,080
c9fd402bb57b8bddbf4c7a2ce2ba65e0da7ec0ce
fix(core): fix issue of pointer and background color in date picker component affects:
[ { "change_type": "MODIFY", "diff": "@@ -2,13 +2,12 @@ import { styled } from '@medly-components/utils';\nimport { StyledProps } from './types';\nexport const DatePickerStyled = styled('div').attrs(({ theme: { input, text, font } }) => ({ input, text, font }))<StyledProps>`\n- * {\n- cursor: ${({ disabled })...
TypeScript
MIT License
medly/medly-components
fix(core): fix issue of pointer and background color in date picker component affects: @medly-components/core
1
fix
core
306,393
10.10.2019 17:22:56
-7,200
991af25d8716963a5669717dec71fd82443edd2c
fix(form-registrar-mixin): ensure becomesReady called only once
[ { "change_type": "MODIFY", "diff": "@@ -25,6 +25,7 @@ export const FormRegistrarMixin = dedupeMixin(\nsuper();\nthis.formElements = [];\nthis.__readyForRegistration = false;\n+ this.__hasBeenRenedered = false;\nthis.registrationReady = new Promise(resolve => {\nthis.__resolveRegistrationReady = resolve;\n})...
JavaScript
MIT License
ing-bank/lion
fix(form-registrar-mixin): ensure becomesReady called only once
1
fix
form-registrar-mixin
679,913
10.10.2019 17:28:18
-3,600
b8e07806427041a7ef3413ca47357e3360f6a4c8
feat(soa): add/update types, update aos(), add SOA.setValues(), tests
[ { "change_type": "MODIFY", "diff": "import { SIZEOF, typedArray } from \"@thi.ng/api\";\nimport { align, Pow2 } from \"@thi.ng/binary\";\n-import { SOASpecs } from \"./api\";\n+import { AOSSpecs, SOASpecs } from \"./api\";\nimport { SOA } from \"./soa\";\nimport { prepareSpec } from \"./utils\";\n/**\n* Con...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(soa): add/update types, update aos(), add SOA.setValues(), tests
1
feat
soa
815,601
10.10.2019 17:48:41
-28,800
3c30985f9521850e1cb0204b3fcf407f6e7c4421
feat: zeroize privkey when privkey dropped
[ { "change_type": "MODIFY", "diff": "@@ -62,9 +62,6 @@ mod tests {\nlet deser_pubkey = Pubkey::from_slice(&ser_pubkey).expect(\"deserialize pubkey\");\nassert_eq!(deser_pubkey, pubkey);\n- let deser_privkey = Privkey::from_slice(privkey.as_ref());\n- assert_eq!(deser_privkey, privkey);\n-\nlet msg = random_m...
Rust
MIT License
nervosnetwork/ckb
feat: zeroize privkey when privkey dropped
1
feat
null
815,590
10.10.2019 17:55:21
-28,800
2d8ddcbd7e25e095be297e66c5c1781bd6a2d39a
feat: verify genesis block specific rules on start
[ { "change_type": "MODIFY", "diff": "@@ -1090,10 +1090,12 @@ dependencies = [\n\"ckb-chain 0.24.0-pre\",\n\"ckb-chain-spec 0.24.0-pre\",\n\"ckb-dao 0.24.0-pre\",\n+ \"ckb-dao-utils 0.24.0-pre\",\n\"ckb-error 0.24.0-pre\",\n\"ckb-future-executor 0.24.0-pre\",\n\"ckb-logger 0.24.0-pre\",\n\"ckb-pow 0.24.0-pre\...
Rust
MIT License
nervosnetwork/ckb
feat: verify genesis block specific rules on start
1
feat
null
815,569
10.10.2019 18:12:22
-28,800
35d45601ef282635ac30cfe4226991e8f4c426a1
test: fix compact_block_missing_fresh_txs integration test
[ { "change_type": "MODIFY", "diff": "@@ -217,6 +217,23 @@ impl Net {\npub fn receive_timeout(&self, timeout: Duration) -> Result<NetMessage, RecvTimeoutError> {\nself.controller.as_ref().unwrap().1.recv_timeout(timeout)\n}\n+\n+ pub fn should_receive<F>(&self, f: F, message: &str) -> PeerIndex\n+ where\n+ F:...
Rust
MIT License
nervosnetwork/ckb
test: fix compact_block_missing_fresh_txs integration test
1
test
null
815,595
10.10.2019 18:13:45
-28,800
1e79d7baac4f1927e839348fa397aedffa7fa8b5
test: Add cases of reorg handling proposals
[ { "change_type": "MODIFY", "diff": "@@ -296,6 +296,7 @@ fn all_specs() -> SpecMap {\nBox::new(SubmitTransactionWhenItsParentInProposed),\nBox::new(ProposeTransactionButParentNot),\nBox::new(ProposalExpireRuleForCommittingAndExpiredAtOneTime),\n+ Box::new(ReorgHandleProposals),\n];\nspecs.into_iter().map(|sp...
Rust
MIT License
nervosnetwork/ckb
test: Add cases of reorg handling proposals
1
test
null
366,931
10.10.2019 18:17:06
-32,400
83738ae95052f8525a32cdd89fd642dd6c8da72f
fix(selectbox): Adjustment when disabled or hover and fix css
[ { "change_type": "MODIFY", "diff": "@@ -2,13 +2,14 @@ import * as React from 'react'\nimport styled, { css } from 'styled-components'\nimport { InjectedProps, withTheme } from '../../hocs/withTheme'\n+import { isTouchDevice } from '../../libs/ua'\n-export interface Options {\n+interface Option {\nlabel: str...
TypeScript
MIT License
kufu/smarthr-ui
fix(selectbox): Adjustment when disabled or hover and fix css
1
fix
selectbox
217,922
10.10.2019 18:32:47
-7,200
09171a91e3a1de2bc0e20fae3b84a4a3cacb9966
chore: automated data extraction yay !
[ { "change_type": "MODIFY", "diff": "import { NgModule } from '@angular/core';\nimport { RouterModule, Routes } from '@angular/router';\n+import { DevGuard } from './core/guard/dev.guard';\nconst routes: Routes = [\n{\n@@ -144,6 +145,11 @@ const routes: Routes = [\n{\npath: 'inventory',\nloadChildren: './pag...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: automated data extraction yay !
1
chore
null
366,931
10.10.2019 18:39:25
-32,400
ca95f4702f1ed30b1f9934ce747eddc4528c7960
fix(selectbox): Change to use fa-sort
[ { "change_type": "MODIFY", "diff": "import * as React from 'react'\nimport styled, { css } from 'styled-components'\n+import { Icon } from '../Icon'\nimport { InjectedProps, withTheme } from '../../hocs/withTheme'\nimport { isTouchDevice } from '../../libs/ua'\n@@ -69,6 +70,9 @@ class SelectComponent extend...
TypeScript
MIT License
kufu/smarthr-ui
fix(selectbox): Change to use fa-sort
1
fix
selectbox
366,931
10.10.2019 18:57:30
-32,400
6d7bc5dca026fb0163f65bec0dd9675d83b3e780
fix(selectbox): Remove blackOption and placeholder
[ { "change_type": "MODIFY", "diff": "@@ -45,27 +45,13 @@ storiesOf('Select', module).add('all', () => (\n]}\n/>\n</li>\n- <li>\n- <Text>blankOption</Text>\n- <Select\n- name=\"sample4\"\n- value=\"\"\n- blankOption={true}\n- options={[\n- { label: 'apple', value: 'apple' },\n- { label: 'orange', value: 'oran...
TypeScript
MIT License
kufu/smarthr-ui
fix(selectbox): Remove blackOption and placeholder
1
fix
selectbox
366,933
10.10.2019 19:06:42
-32,400
4850691f866ffce650f95186926081496c6d7f06
feat: add clone icon
[ { "change_type": "MODIFY", "diff": "@@ -31,6 +31,7 @@ const icons: Array<Props['name']> = [\n'fa-check-circle',\n'fa-chevron-left',\n'fa-chevron-right',\n+ 'fa-clone',\n'fa-cog',\n'fa-databas',\n'fa-ellipsis-h',\n", "new_path": "src/components/Icon/Icon.stories.tsx", "old_path": "src/components/Icon...
TypeScript
MIT License
kufu/smarthr-ui
feat: add clone icon
1
feat
null
306,393
10.10.2019 19:19:27
-7,200
3196ec4f00f88991f25b65ce391b592026f2f196
chore(registra-mixin): start with test
[ { "change_type": "ADD", "diff": "+import { fixture, html, expect } from '@open-wc/testing';\n+import { cache, LitElement } from '@lion/core';\n+import { LionFieldset } from '../../fieldset/src/LionFieldset.js';\n+import { FormRegistrarMixin } from '../src/FormRegistrarMixin.js';\n+\n+describe.only('FormRegi...
JavaScript
MIT License
ing-bank/lion
chore(registra-mixin): start with test
1
chore
registra-mixin
730,428
10.10.2019 19:25:41
0
0acac0e1f90ebacb083ae4b52ef13b42f0bddae2
chore(release): 0.2.48 [skip ci]
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+### [0.2.48](https://github.com/webex/react-widgets/compare/v0.2.47...v0.2.48) (2019-10-10)\n+\...
JavaScript
MIT License
webex/react-widgets
chore(release): 0.2.48 [skip ci]
1
chore
release
366,931
10.10.2019 19:29:35
-32,400
8a7a0ab5448ec0f77a0bf3083f5058f2cae10649
fix(selectbox): Add aria-label
[ { "change_type": "MODIFY", "diff": "@@ -17,6 +17,7 @@ storiesOf('Select', module).add('all', () => (\n{ label: 'orange', value: 'orange' },\n{ label: 'banana', value: 'banana' },\n]}\n+ labelText=\"default\"\n/>\n</li>\n<li>\n@@ -30,6 +31,7 @@ storiesOf('Select', module).add('all', () => (\n{ label: 'orange...
TypeScript
MIT License
kufu/smarthr-ui
fix(selectbox): Add aria-label
1
fix
selectbox
217,922
10.10.2019 19:39:31
-7,200
595c7b3200ec7e309a60d6d8ec4157c7d6219eea
chore: better data reporting process
[ { "change_type": "MODIFY", "diff": "@@ -4,7 +4,8 @@ import { IpcService } from '../electron/ipc.service';\nimport { ofPacketSubType } from '../rxjs/of-packet-subtype';\nimport { buffer, debounceTime, shareReplay, switchMap } from 'rxjs/operators';\nimport { AuthFacade } from '../../+state/auth.facade';\n-im...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: better data reporting process
1
chore
null
679,913
10.10.2019 19:41:50
-3,600
8dd3a124992ece6d0f8c38cfb9da66483dbd2f58
test(api): fix mixin test imports
[ { "change_type": "MODIFY", "diff": "@@ -3,9 +3,9 @@ import {\nEvent,\nEVENT_ALL,\nINotify,\n+ INotifyMixin,\nListener\n-} from \"../src/api\";\n-import { INotifyMixin } from \"../src/mixins/inotify\";\n+} from \"../src\";\ndescribe(\"mixins\", () => {\nit(\"INotify\", () => {\n", "new_path": "packages/a...
TypeScript
Apache License 2.0
thi-ng/umbrella
test(api): fix mixin test imports
1
test
api
217,922
10.10.2019 20:09:53
-7,200
2ff4d1f1e4c67dca4e42f31d179be153d68078b1
chore: better architecture for data extraction
[ { "change_type": "MODIFY", "diff": "-import { Injectable } from '@angular/core';\n+import { Inject, Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { IpcService } from '../electron/ipc.service';\nimport { shareReplay, switchMap } from 'rxjs/operators';\nimport ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: better architecture for data extraction
1
chore
null
67,482
10.10.2019 20:25:08
25,200
164dc35b66eba7f98cc55f21d280dfd1f90d3eeb
chore(styles.integration): remove unused test code
[ { "change_type": "MODIFY", "diff": "@@ -19,43 +19,26 @@ describe('styles', function () {\nconst { au, host } = setup();\nconst cssClasses = { test: 'something-else' };\n- const WithStyles = CustomElement.define(\n- {\n+ const WithStyles = CustomElement.define({\nname: 'with-styles',\ntemplate: `<div id=\"ta...
TypeScript
MIT License
aurelia/aurelia
chore(styles.integration): remove unused test code
1
chore
styles.integration
711,597
10.10.2019 20:34:02
-7,200
4827aa4b0877fa15673c773a53c36ef98ec0d156
feat(admin-ui): Add coupon & date rage data to PromotionList
[ { "change_type": "MODIFY", "diff": "(itemsPerPageChange)=\"setItemsPerPage($event)\"\n>\n<vdr-dt-column>{{ 'common.name' | translate }}</vdr-dt-column>\n- <vdr-dt-column>{{ 'common.created-at' | translate }}</vdr-dt-column>\n- <vdr-dt-column>{{ 'common.updated-at' | translate }}</vdr-dt-column>\n+ <vdr-dt-c...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Add coupon & date rage data to PromotionList
1
feat
admin-ui
67,516
10.10.2019 20:52:27
-7,200
16df0e1e8b719ce17b8f3812b8ceec84774308cf
fix(tests): linitng issues
[ { "change_type": "MODIFY", "diff": "@@ -49,7 +49,6 @@ export class User {\nthis.role = value;\n}\n-\n@computed({ volatile: true })\npublic get locationVolatile() {\nreturn `${this.city}, ${this.country}`;\n", "new_path": "packages/__tests__/integration/app/molecules/user-preference/user-preference.ts", ...
TypeScript
MIT License
aurelia/aurelia
fix(tests): linitng issues
1
fix
tests
711,597
10.10.2019 20:54:48
-7,200
aeae0d902cd31707812e1c71cbc725f236f328f7
test(core): Create NoopLogger to supress noise during e2e tests
[ { "change_type": "MODIFY", "diff": "@@ -3,8 +3,7 @@ import { ADMIN_API_PATH, SHOP_API_PATH } from '@vendure/common/lib/shared-consta\nimport path from 'path';\nimport { DefaultAssetNamingStrategy } from '../../src/config/asset-naming-strategy/default-asset-naming-strategy';\n-import { DefaultLogger } from '...
TypeScript
MIT License
vendure-ecommerce/vendure
test(core): Create NoopLogger to supress noise during e2e tests
1
test
core
711,597
10.10.2019 21:05:42
-7,200
b8e4c6ca6358fc9e675ae989a3f75fa488aaacf2
fix(admin-ui): Fix creating new Channels Closes
[ { "change_type": "MODIFY", "diff": "import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { ActivatedRoute, Router } from '@angular/router';\n+import { getDefaultLanguage } from ...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Fix creating new Channels Closes #182
1
fix
admin-ui
679,913
10.10.2019 22:40:32
-3,600
1924a05ea093e3d1d0b3f063cb331b330cee0c0a
feat(arrays): add shuffleRange(), refactor shuffle(), add tests
[ { "change_type": "MODIFY", "diff": "@@ -53,6 +53,7 @@ import * as a from \"@thi.ng/arrays\";\n- [fuzzyMatch()](https://github.com/thi-ng/umbrella/tree/master/packages/arrays/src/fuzzy-match.ts)\n- [peek()](https://github.com/thi-ng/umbrella/tree/master/packages/arrays/src/peek.ts)\n- [shuffle()](https://git...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(arrays): add shuffleRange(), refactor shuffle(), add tests
1
feat
arrays
679,913
10.10.2019 22:41:00
-3,600
b634e4998745707f4729fb9c9608a3090151cf90
docs(arrays): add/update doc strings
[ { "change_type": "MODIFY", "diff": "@@ -3,7 +3,14 @@ import { compare } from \"@thi.ng/compare\";\n/**\n* Returns the supposed index of `x` in pre-sorted array-like collection\n- * `buf`. If `x` can't be found, returns `-index-1`.\n+ * `buf`. If `x` can't be found, returns `-index-1`, representing the\n+ * ...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(arrays): add/update doc strings
1
docs
arrays
67,516
10.10.2019 22:47:55
-7,200
1554cdd92a0e9d42b3d530fe4e1f2c50b2a11e21
fix(test): CI issues
[ { "change_type": "MODIFY", "diff": "@@ -213,7 +213,7 @@ describe('app', function () {\n}\n);\n- $it.only('uses a user preference control that \\'computes\\' the organization of the user correctly - volatile',\n+ $it('uses a user preference control that \\'computes\\' the organization of the user correctly -...
TypeScript
MIT License
aurelia/aurelia
fix(test): CI issues
1
fix
test
531,793
10.10.2019 23:27:14
-3,600
1346237777f26296195e348b31402c98c2a5cd6b
fix(project): refactor proxy & external_uri handling Fixes
[ { "change_type": "MODIFY", "diff": "@@ -110,7 +110,7 @@ func getUpstreams() models.AlertmanagerAPISummary {\nu := models.AlertmanagerAPIStatus{\nName: upstream.Name,\n- URI: upstream.SanitizedURI(),\n+ URI: upstream.InternalURI(),\nPublicURI: upstream.PublicURI(),\nHeaders: map[string]string{},\nError: upst...
TypeScript
Apache License 2.0
prymitive/karma
fix(project): refactor proxy & external_uri handling Fixes #1024
1
fix
project
791,776
10.10.2019 23:50:04
14,400
75ae0f88c03f5a2a6a5437daee0cf81ae0499cc4
docs(readme): add Lighthouse Check to related projects
[ { "change_type": "MODIFY", "diff": "@@ -317,6 +317,8 @@ Other awesome open source projects that use Lighthouse.\n* **[lightcrawler](https://github.com/github/lightcrawler)** - Crawl a website and run each page found through Lighthouse.\n* **[lighthouse-badges](https://github.com/emazzotta/lighthouse-badges)...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs(readme): add Lighthouse Check to related projects (#9753)
1
docs
readme
791,834
10.10.2019 23:54:24
14,400
6d56a707fe88f77bacbfccf13d6051b5992876dd
misc: more releasing tweaks
[ { "change_type": "MODIFY", "diff": "@@ -60,7 +60,7 @@ and that no new PRs should be merged until you are done.\n```sh\n# Run the tests.\nbash ./lighthouse-core/scripts/release/test.sh\n-# Change into the pristine folder.\n+# Change into the newly-created pristine folder.\ncd ../lighthouse-pristine\n```\n@@ ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc: more releasing tweaks (#9772)
1
misc
null
447,440
11.10.2019 00:10:01
18,000
14dd5e38941aa33973ccffce418ba015a4172180
refactor: migrate DatePicker to styled-components
[ { "change_type": "MODIFY", "diff": "import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\n-import classnames from 'classnames';\nimport CalendarIcon from './calendarIcon';\n-import Modal from './../Modal';\n-import Calendar from './../Calendar';\nimport Input from '../Input/pickerI...
JavaScript
MIT License
nexxtway/react-rainbow
refactor: migrate DatePicker to styled-components (#1071)
1
refactor
null
447,440
11.10.2019 00:15:46
18,000
9f52e917d5b193bdbd9718a7e7506bb4a1f088f9
refactor: migrate GMap to styled-components
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,9 @@ import RenderIf from './../RenderIf';\nimport Header from './header';\nimport { Provider } from './context';\nimport getMapContainerStyles from './getMapContainerStyles';\n-import './styles.css';\n+import StyledContainer from './styled/container';\n+import...
JavaScript
MIT License
nexxtway/react-rainbow
refactor: migrate GMap to styled-components (#1073)
1
refactor
null
151,430
11.10.2019 00:29:56
25,200
0f38c61107dd1d8cfbb9047bb35874efabf4d462
docs: update customerio docs
[ { "change_type": "MODIFY", "diff": "@@ -9,6 +9,7 @@ Integration with [customer.io](https://customer.io/) for [analytics](https://www\n<summary>Click to expand</summary>\n- [Install](#install)\n+- [Platforms Supported](#platforms-supported)\n- [Usage](#usage)\n* [Browser](#browser)\n* [Server-side](#server-s...
JavaScript
MIT License
davidwells/analytics
docs: update customerio docs
1
docs
null
151,430
11.10.2019 00:36:53
25,200
f033ed87e4ee2fbe4384c7b44d7698b07fc0d3d7
refactor: clean up GA exports and expose init to browser
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,7 @@ if (!process.browser) {\n* trackingId: '123-xyz'\n* })\n*/\n-function googleAnalyticsNode(pluginConfig = {}) {\n+function googleAnalytics(pluginConfig = {}) {\nconst client = initialize(pluginConfig)\nreturn {\nNAMESPACE: 'google-analytics',\n@@ -38,7 +3...
JavaScript
MIT License
davidwells/analytics
refactor: clean up GA exports and expose init to browser
1
refactor
null
151,430
11.10.2019 00:37:23
25,200
b878dd0193f40300a3502ad32f087e87279f832c
docs: update doc generation script
[ { "change_type": "MODIFY", "diff": "\"@babel/preset-env\": \"7.5.5\",\n\"ava\": \"^2.3.0\",\n\"dox\": \"^0.9.0\",\n+ \"indent-string\": \"^4.0.0\",\n\"jsdoc\": \"^3.6.3\",\n\"lerna\": \"^3.10.7\",\n\"markdown-magic\": \"^0.1.25\",\n\"brotli-size\": \"0.0.3\",\n\"gzip-size\": \"^5.0.0\",\n\"jsdoc-to-markdown...
JavaScript
MIT License
davidwells/analytics
docs: update doc generation script
1
docs
null
151,430
11.10.2019 00:56:38
25,200
4d596a8987742ca22ccd6c6ba6a0cf2aa9d1119d
refactor: export default from segment plugin
[ { "change_type": "MODIFY", "diff": "\"./lib/analytics-plugin-segment.cjs.js\": \"./lib/analytics-plugin-segment.browser.cjs.js\",\n\"./lib/analytics-plugin-segment.es.js\": \"./lib/analytics-plugin-segment.browser.es.js\"\n},\n+ \"projectMeta\": {\n+ \"provider\": {\n+ \"name\": \"Segment\",\n+ \"url\": \"h...
JavaScript
MIT License
davidwells/analytics
refactor: export default from segment plugin
1
refactor
null
76,605
11.10.2019 01:15:55
-7,200
096b2b8c5d16eb135161b9b1d09a06cb27cc76a7
feat: build trees with the amongs for a better find backwards
[ { "change_type": "MODIFY", "diff": "@@ -32,6 +32,61 @@ class SpanishStemmer extends BaseStemmer {\nthis.I_p2 = 0;\nthis.I_p1 = 0;\nthis.I_pV = 0;\n+ SpanishStemmer.a_0_tree = this.buildAmongTree(SpanishStemmer.a_0);\n+ SpanishStemmer.a_1_tree = this.buildAmongTree(SpanishStemmer.a_1);\n+ SpanishStemmer.a_2_...
JavaScript
MIT License
axa-group/nlp.js
feat: build trees with the amongs for a better find backwards
1
feat
null
273,683
11.10.2019 02:41:55
-7,200
cbb009a0140fcd61d366ef5986afb8e6167eb197
fix(graphql): filter collection by reference id
[ { "change_type": "MODIFY", "diff": "@@ -152,7 +152,7 @@ test('filter dates by gt', async () => {\nexpect(data.allProduct.edges[1].node.id).toEqual('3')\n})\n-test('filter by reference id', async () => {\n+test('deprecated: filter by reference id', async () => {\nconst { errors, data } = await createSchemaAn...
JavaScript
MIT License
gridsome/gridsome
fix(graphql): filter collection by reference id (#745)
1
fix
graphql
273,683
11.10.2019 02:50:32
-7,200
91225f1616dbdb349b6b2a1b45e6357aa508332e
fix(store): require unique paths for templates only
[ { "change_type": "MODIFY", "diff": "@@ -186,6 +186,11 @@ class TemplatesPlugin {\ntemplates.byComponent.set(templateComponent, byComponent.concat(template))\ntemplates.byTypeName.set(options.typeName, byTypeName.concat(template))\n}\n+\n+ if (templates.byTypeName.has(options.typeName)) {\n+ options._indices...
JavaScript
MIT License
gridsome/gridsome
fix(store): require unique paths for templates only
1
fix
store
866,393
11.10.2019 06:15:55
-32,400
3be369efaa40e4eb0a89a7d78a369bc8720f48a6
chore(dependencies): upgrade to Carbon 10.7
[ { "change_type": "MODIFY", "diff": "//\n@import 'carbon-components/scss/globals/scss/css--helpers';\n+@import 'carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/mixins';\n-@if mixin-exists(carbon--theme--custom-properties) {\n:root {\n- @include carbon--theme--custom-properties($carbon...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(dependencies): upgrade to Carbon 10.7 (#144)
1
chore
dependencies
866,393
11.10.2019 07:02:16
-32,400
fac240a499b445cce88cce001f04e0c438575c37
docs(build): guide for old build toolchain
[ { "change_type": "MODIFY", "diff": "@@ -143,6 +143,7 @@ Vue users can use our components in the same manner as native HTML tags, without\n### Other usage guides\n- [Using custom styles in components](./docs/custom-style.md)\n+- [Using `carbon-custom-elements` with old build toolchain](./docs/old-build-toolc...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
docs(build): guide for old build toolchain (#141)
1
docs
build
866,393
11.10.2019 07:13:30
-32,400
ecdad147b05c4e28dda11e7367c9ed4a351ea53d
fix(input): sync value as user types This change to `<bx-input>` ensures that its `value` property is in sync with the underlying `<input>` as user types. This is required to get the up-to-date value when application code handles `oninput` event.
[ { "change_type": "MODIFY", "diff": "@@ -33,6 +33,14 @@ export enum INPUT_TYPE {\n*/\n@customElement(`${prefix}-input`)\nexport default class BXInput extends LitElement {\n+ /**\n+ * Handles `oninput` event on the `<input>`.\n+ * @param event The event.\n+ */\n+ private _handleInput({ target }: Event) {\n+ t...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(input): sync value as user types (#143) This change to `<bx-input>` ensures that its `value` property is in sync with the underlying `<input>` as user types. This is required to get the up-to-date value when application code handles `oninput` event.
1
fix
input
866,393
11.10.2019 07:24:44
-32,400
522fdb1bd5f5e1c720703e99ad3d976101f5a011
fix(button): support type attribute Also support more attributes.
[ { "change_type": "MODIFY", "diff": "@@ -61,17 +61,37 @@ class BXButton extends FocusMixin(LitElement) {\n}\n}\n+ /**\n+ * `true` if the button should have input focus when the page loads. Corresponds to the attribute with the same name.\n+ */\n+ @property({ type: Boolean, reflect: true })\n+ autofocus = fal...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(button): support type attribute (#145) Also support more attributes.
1
fix
button
866,393
11.10.2019 07:32:05
-32,400
6b6b5efb0b76cfb1c40b6f5cf7d9dcd9978e3e3c
chore(components): remove observer of ID attribute This change is a continuation of removing redundant code observing `id` attribute for unique-ID generation purpose. As stated in auto-generated unique ID is no longer needed at most places, given shadow DOM creates its own ID space.
[ { "change_type": "MODIFY", "diff": "@@ -53,13 +53,6 @@ class BXDatePickerInput extends FocusMixin(LitElement) {\n@query('slot[name=\"validity-message\"]')\nprivate _slotValidityMessage!: HTMLSlotElement;\n- /**\n- * Unique ID used for ID refs.\n- */\n- private _uniqueId = Math.random()\n- .toString(36)\n- ....
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(components): remove observer of ID attribute (#138) This change is a continuation of #137, removing redundant code observing `id` attribute for unique-ID generation purpose. As stated in #137, auto-generated unique ID is no longer needed at most places, given shadow DOM creates its own ID space.
1
chore
components
866,393
11.10.2019 07:44:48
-32,400
a0258ceb2ff712bcd1e63f981914740ce27f4c5f
test(notification): add tests
[ { "change_type": "ADD", "diff": "+# `bx-inline-notification`\n+\n+## `Rendering titles`\n+\n+#### `Should render with minimum attributes`\n+\n+```\n+<div class=\"bx--inline-notification__details\">\n+ <div class=\"bx--inline-notification__text-wrapper\">\n+ <p class=\"bx--inline-notification__title\">\n+ <s...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
test(notification): add tests (#142)
1
test
notification
791,723
11.10.2019 08:42:51
25,200
e9410a15ea3c3199588d8ee0c24b0fb68e05334a
core(image-elements): cache naturalSize results
[ { "change_type": "MODIFY", "diff": "@@ -130,6 +130,12 @@ function determineNaturalSize(url) {\n}\nclass ImageElements extends Gatherer {\n+ constructor() {\n+ super();\n+ /** @type {Map<string, {naturalWidth: number, naturalHeight: number}>} */\n+ this._naturalSizeCache = new Map();\n+ }\n+\n/**\n* @param {...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(image-elements): cache naturalSize results (#9818)
1
core
image-elements
711,597
11.10.2019 09:06:30
-7,200
993d2ea604a4d4c91ab7965572bebb0f5506d84f
test(core): Fix Promotion e2e tests Bad date handling coverted to UTC
[ { "change_type": "MODIFY", "diff": "@@ -71,9 +71,9 @@ Object {\n],\n\"couponCode\": \"TEST123\",\n\"enabled\": true,\n- \"endsAt\": \"2019-11-30T23:00:00.000Z\",\n+ \"endsAt\": \"2019-12-01T00:00:00.000Z\",\n\"name\": \"test promotion\",\n- \"startsAt\": \"2019-10-29T23:00:00.000Z\",\n+ \"startsAt\": \"2019...
TypeScript
MIT License
vendure-ecommerce/vendure
test(core): Fix Promotion e2e tests Bad date handling coverted to UTC
1
test
core
866,415
11.10.2019 09:17:19
14,400
db3b6ed799fdee8c622fa8c6c22986c1ef652b90
feat(leadspace): edit leadspace to handle the srcs instead of adopter
[ { "change_type": "MODIFY", "diff": "@@ -42,6 +42,29 @@ const overlayClassname = gradient =>\n[`${prefix}--leadspace--gradient`]: gradient,\n});\n+/**\n+ * sorts images by breakpoints for the LeadSpaceImage component\n+ *\n+ * @param {object} images object with all the image srcs for diff breakpoints\n+ * @r...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(leadspace): edit leadspace to handle the srcs instead of adopter
1
feat
leadspace
791,704
11.10.2019 09:20:12
25,200
288171a1f532bc3378fec7b817f6e36eb9470646
report: rephrase titles for 3rdparty & crc
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ const ComputedChains = require('../computed/critical-request-chains.js');\nconst UIStrings = {\n/** Imperative title of a Lighthouse audit that tells the user to reduce the depth of critical network requests to enhance initial load of a page. Critical re...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: rephrase titles for 3rdparty & crc (#9419)
1
report
null
866,415
11.10.2019 09:21:51
14,400
5c00667ce77d6000da0ec20c006e83849dc7f181
chore(unit-test): update unit test for leadspace image
[ { "change_type": "MODIFY", "diff": "@@ -4,8 +4,7 @@ import LeadSpaceImage from '../LeadSpaceImage';\ndescribe('<LeadSpaceImage />', () => {\nit('renders expected number of source elements', () => {\n- const image = {\n- sources: [\n+ const image = [\n{\nminWidth: 0,\nurl: 'https://picsum.photos/id/1076/320/...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(unit-test): update unit test for leadspace image
1
chore
unit-test
103,603
11.10.2019 09:28:15
-7,200
abe187ec5b57a683b4b20312dff532df83cc510f
docs: update font configuration
[ { "change_type": "MODIFY", "diff": "@@ -40,23 +40,42 @@ The easiest way to install custom fonts to your RN project is do as follows:\n## Configuring fonts in ThemeProvider\n-After you configure the fonts you need to pass them as font object in a custom theme with the `Provider` component. Check the [default...
TypeScript
MIT License
callstack/react-native-paper
docs: update font configuration (#1363)
1
docs
null
103,512
11.10.2019 09:33:56
-7,200
d39973342526587ab94cc573a8195a0f62190c85
feat: adaptive and exact dark theme
[ { "change_type": "MODIFY", "diff": "@@ -36,7 +36,7 @@ const theme = {\n...DefaultTheme.colors,\nprimary: '#3498db',\naccent: '#f1c40f',\n- }\n+ },\n};\nexport default function Main() {\n@@ -53,6 +53,7 @@ You can change the theme prop dynamically and all the components will automatica\nA theme usually contai...
TypeScript
MIT License
callstack/react-native-paper
feat: adaptive and exact dark theme (#1367)
1
feat
null
504,026
11.10.2019 10:49:50
14,400
9afc9b41dea15af7900cb847ba17167a22367dcc
chore(build): add eval-source-maps to gatsby's webpack config Fixes
[ { "change_type": "MODIFY", "diff": "@@ -80,6 +80,7 @@ exports.createPages = ({ graphql, actions }) => {\nexports.onCreateWebpackConfig = ({ actions }) => {\nactions.setWebpackConfig({\n+ devtool: \"eval-source-map\",\nresolve: {\nalias: {\n// Resolve imports in our app to node_modules so they don't break\n"...
TypeScript
MIT License
patternfly/patternfly-react
chore(build): add eval-source-maps to gatsby's webpack config (#3115) Fixes https://github.com/patternfly/patternfly-react/issues/3114
1
chore
build
104,924
11.10.2019 10:52:25
-3,600
a884ec442cf22146f45681015078edd73636933e
fix(file uploader skeleton): fix typo in class of file uploader skeleton
[ { "change_type": "MODIFY", "diff": "<template>\n<div class=\"bx--form-item\">\n<cv-skeleton-text heading width=\"100px\" />\n- <cv-skeleton-text width=\"225px\" class=\"bx--label-descriptio\" />\n+ <cv-skeleton-text width=\"225px\" class=\"bx--label-description\" />\n<cv-button-skeleton />\n</div>\n</templa...
JavaScript
Apache License 2.0
carbon-design-system/carbon-components-vue
fix(file uploader skeleton): fix typo in class of file uploader skeleton (#588)
1
fix
file uploader skeleton
730,429
11.10.2019 10:54:34
14,400
d2c1a2310699f15e13db8aa93802171fce2373e7
test(journeys): add skip in browser helpers
[ { "change_type": "ADD", "diff": "+/* global: browser */\n+function inFirefox() {\n+ return browser.desiredCapabilities.browserName === 'firefox';\n+}\n+\n+function inChrome() {\n+ return browser.desiredCapabilities.browserName === 'chrome';\n+}\n+\n+/**\n+ * Wrap the desired mochaMethod with `skipInFirefox`...
JavaScript
MIT License
webex/react-widgets
test(journeys): add skip in browser helpers
1
test
journeys
730,429
11.10.2019 10:55:56
14,400
cea457a89578dc6621c09a2ed89c0ae985005604
test(journeys): skip flaky calling tests on firefox
[ { "change_type": "MODIFY", "diff": "import {assert, expect} from 'chai';\n+import {skipInFirefox} from '../../../lib/browser';\nimport {createSpace, disconnectDevices, registerDevices, setupGroupTestUsers} from '../../../lib/test-users';\nimport waitForPromise from '../../../lib/wait-for-promise';\nimport {...
JavaScript
MIT License
webex/react-widgets
test(journeys): skip flaky calling tests on firefox
1
test
journeys
865,926
11.10.2019 10:56:47
-7,200
af58c8838231a8bc8ebb8496e848e53c4117aaf9
chore(project): add patch release checklist Closes
[ { "change_type": "ADD", "diff": "+# Patch Release Checklist\n+\n+A list of things to perform with Camunda Modeler patch release.\n+\n+__Hint:__ Create a release issue and copy the template below into it.\n+\n+\n+```markdown\n+* [ ] make sure dependencies are released (`rm -rf node_modules && npm i && npm ru...
JavaScript
MIT License
camunda/camunda-modeler
chore(project): add patch release checklist Closes #1520
1
chore
project
815,577
11.10.2019 10:58:02
-28,800
1e6edaf590608c6319dd6d4a0e5470334fd52631
test: generate blocks during connected state
[ { "change_type": "MODIFY", "diff": "@@ -138,7 +138,9 @@ impl Spec for IBDProcessWithWhiteList {\npanic!(\"refuse to connect fail\");\n}\n- node6.disconnect(node0);\n+ // After the whitelist is disconnected, it will always try to reconnect.\n+ // In order to ensure that the node6 has already generated two bl...
Rust
MIT License
nervosnetwork/ckb
test: generate blocks during connected state
1
test
null
711,597
11.10.2019 11:01:53
-7,200
9f269feabb6c6abf38ac5e7d24e97c1f0dc20768
feat(admin-ui): Display coupon code entries in order history
[ { "change_type": "MODIFY", "diff": "@@ -1206,7 +1206,9 @@ export enum HistoryEntryType {\nORDER_FULLFILLMENT = 'ORDER_FULLFILLMENT',\nORDER_CANCELLATION = 'ORDER_CANCELLATION',\nORDER_REFUND_TRANSITION = 'ORDER_REFUND_TRANSITION',\n- ORDER_NOTE = 'ORDER_NOTE'\n+ ORDER_NOTE = 'ORDER_NOTE',\n+ ORDER_COUPON_AP...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Display coupon code entries in order history
1
feat
admin-ui
67,476
11.10.2019 11:19:13
-7,200
ecae358b2e0b537466b0c69c5ee3998a5730b953
feat(kernel): add bound decorator
[ { "change_type": "MODIFY", "diff": "@@ -313,3 +313,26 @@ export function mergeDistinct<T>(\nreturn arr3;\n}\n+\n+/**\n+ * Decorator. (lazily) bind the method to the class instance on first call.\n+ */\n+// eslint-disable-next-line @typescript-eslint/ban-types\n+export function bound<T extends Function>(targ...
TypeScript
MIT License
aurelia/aurelia
feat(kernel): add bound decorator
1
feat
kernel
67,476
11.10.2019 11:20:05
-7,200
2babe82104a7bb76bd7680964e1c89e36e6f7bc2
refactor(scheduler): add tests and fix the bugs they exposed
[ { "change_type": "MODIFY", "diff": "import { TestContext, assert } from '@aurelia/testing';\n-import { TaskQueuePriority } from '@aurelia/runtime';\n+import { TaskQueuePriority, QueueTaskOptions } from '@aurelia/runtime';\nimport { PLATFORM } from '@aurelia/kernel';\ndescribe.only('Scheduler', function () {...
TypeScript
MIT License
aurelia/aurelia
refactor(scheduler): add tests and fix the bugs they exposed
1
refactor
scheduler