author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
67,494
18.09.2019 13:11:41
-7,200
2aefa23d78e719bda46e9cac0a9690cc8ecb0330
refactor(router): keep viewports when cloning path state
[ { "change_type": "MODIFY", "diff": "@@ -616,11 +616,8 @@ export class Router implements IRouter {\nconst viewports: Viewport[] = (this.rootScope as Viewport).children.filter((viewport) => viewport.enabled && !viewport.content.content.isEmpty());\nlet instructions = viewports.map(viewport => viewport.content...
TypeScript
MIT License
aurelia/aurelia
refactor(router): keep viewports when cloning path state
1
refactor
router
711,597
18.09.2019 13:22:14
-7,200
351e81171476288cdd92d041098b37b77c213dfd
fix(core): Specify Collection.description as text type Closes
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,7 @@ export class CollectionTranslation extends VendureEntity implements Translation<\n@Column() name: string;\n- @Column() description: string;\n+ @Column('text') description: string;\n@ManyToOne(type => Collection, base => base.translations, { onDelete: 'CA...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Specify Collection.description as text type Closes #165
1
fix
core
531,793
18.09.2019 13:27:40
-3,600
8a6244d8e83c0d11a8eec301632845534bed3d7c
fix(ui): set lower minimum height for Percy snapshots
[ { "change_type": "MODIFY", "diff": "\"build\": \"react-scripts build\",\n\"test\": \"react-scripts test\",\n\"storybook\": \"start-storybook\",\n- \"snapshot\": \"build-storybook --quiet -s public && percy-storybook --widths=700,1280\"\n+ \"snapshot\": \"build-storybook --quiet -s public && percy-storybook ...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): set lower minimum height for Percy snapshots
1
fix
ui
217,922
18.09.2019 13:32:10
-7,200
8f6a7b888f9d075eb41f93be20819dd90dacb3ae
feat(layout): new filter: IS_END_CRAFT_MATERIAL
[ { "change_type": "MODIFY", "diff": "@@ -75,7 +75,7 @@ export class LayoutsFacade {\nreturn a.index - b.index;\n})\n.map((row: LayoutRow) => {\n- const result: FilterResult = row.doFilter(unfilteredRows, user.itemTags);\n+ const result: FilterResult = row.doFilter(unfilteredRows, user.itemTags, list);\nunfil...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(layout): new filter: IS_END_CRAFT_MATERIAL
1
feat
layout
273,683
18.09.2019 14:01:47
-7,200
654d075cfa2db0064ece16a666dcfc7b954643a7
fix(pages): show an error if component is not found
[ { "change_type": "MODIFY", "diff": "@@ -380,7 +380,11 @@ class Pages {\nconst ext = path.extname(component).substring(1)\nconst hook = this.hooks.parseComponent.get(ext)\n- let results\n+ let results = {}\n+\n+ if (!fs.existsSync(component)) {\n+ throw new Error(`Could not find component ${component}.`)\n+ ...
JavaScript
MIT License
gridsome/gridsome
fix(pages): show an error if component is not found
1
fix
pages
711,597
18.09.2019 14:06:20
-7,200
cbe11d222448f3056a83c8a98dff6b2648a6a6ca
feat(admin-ui): Display Order custom fields This is a read-only implementation, since there is currently no way via the Admin API to persist changes to Order custom fields. Closes
[ { "change_type": "MODIFY", "diff": "></vdr-rich-text-editor>\n<section formGroupName=\"customFields\" *ngIf=\"customFields.length\">\n- <label>{{ 'catalog.custom-fields' }}</label>\n+ <label>{{ 'common.custom-fields' | translate }}</label>\n<ng-container *ngFor=\"let customField of customFields\">\n<vdr-cus...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Display Order custom fields This is a read-only implementation, since there is currently no way via the Admin API to persist changes to Order custom fields. Closes #164
1
feat
admin-ui
679,913
18.09.2019 14:20:37
-3,600
48b89064315b1df711eaaabaf4b37093c2f56732
fix(webgl): update samplerXX[] uniform decl types
[ { "change_type": "MODIFY", "diff": "@@ -120,9 +120,9 @@ export type UniformDecl =\n// | [\"mat3x4[]\", number, UniformDefault<GLVec>?]\n// | [\"mat4x2[]\", number, UniformDefault<GLVec>?]\n// | [\"mat4x3[]\", number, UniformDefault<GLVec>?]\n- | [\"sampler2D[]\", number, UniformDefault<number>?]\n- | [\"sam...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(webgl): update samplerXX[] uniform decl types
1
fix
webgl
711,597
18.09.2019 14:48:31
-7,200
304185a414f189ee1824d49841009321f47a3ba0
chore: Publish v0.3.0
[ { "change_type": "MODIFY", "diff": "+## 0.3.0 (2019-09-18)\n+\n+\n+#### Features\n+\n+* **admin-ui-plugin** Add watch mode for UI extension development ([c0b4d3f](https://github.com/vendure-ecommerce/vendure/commit/c0b4d3f)), closes [#55](https://github.com/vendure-ecommerce/vendure/issues/55)\n+* **admin-u...
TypeScript
MIT License
vendure-ecommerce/vendure
chore: Publish v0.3.0
1
chore
null
744,005
18.09.2019 14:51:45
-7,200
0be43d2e1bfa0a485a13d0bbf4aa02bd4a05d4dd
fix: fix promise check to accept any spec conform object An instanceof check only accept promises which are created using the `Promise` constructor. But there are other libraries which their own contructors. These promises should also work as long as they adhere to the spec.
[ { "change_type": "MODIFY", "diff": "module.exports = function isPromise (maybePromise) {\n- return maybePromise instanceof Promise\n+ return !!maybePromise && !!maybePromise.then && (typeof maybePromise.then === 'function')\n}\n", "new_path": "lib/is-promise.js", "old_path": "lib/is-promise.js" },...
JavaScript
MIT License
yargs/yargs
fix: fix promise check to accept any spec conform object (#1424) An instanceof check only accept promises which are created using the `Promise` constructor. But there are other libraries which their own contructors. These promises should also work as long as they adhere to the spec.
1
fix
null
711,597
18.09.2019 14:57:06
-7,200
8a73778db8e2b349dbae1b5519c424fa7109fa7f
chore(admin-ui): Add publishConfig to package.json
[ { "change_type": "MODIFY", "diff": "\"reset-extensions\": \"rimraf ./src/app/extensions/modules && rimraf ./src/app/extensions/*.generated && rimraf ./src/app/extensions/*.temp\",\n\"extract-translations\": \"ngx-translate-extract --input ./src --output ./src/i18n-messages/en.json --clean --sort --format na...
TypeScript
MIT License
vendure-ecommerce/vendure
chore(admin-ui): Add publishConfig to package.json
1
chore
admin-ui
273,683
18.09.2019 15:07:51
-7,200
eb702d848541ae0e96d083e3923f86ba07532b52
fix(develop): show original error when no filename chore(compiler): add cacheIdentifier hook
[ { "change_type": "MODIFY", "diff": "@@ -42,11 +42,13 @@ module.exports = ({ context, program }) => {\nfunction wrapCommand (fn) {\nreturn (context, args) => {\nreturn fn(context, args).catch(err => {\n- const callSite = getCallSite(err)\n- const fileName = callSite ? callSite.getFileName() : ''\n- const fil...
JavaScript
MIT License
gridsome/gridsome
fix(develop): show original error when no filename chore(compiler): add cacheIdentifier hook
1
fix
develop
71,663
18.09.2019 15:27:11
25,200
b8b4c4d82334480958975c55a105bc47d9fcc6d5
feat(codepipeline): handle non-CFN cross-region actions Adds support for actions other than the CloudFormation ones to be cross-region. It works similarly to the cross-account support: passing a resource from a different region into a CodePipeline action makes the action implicitly cross-region. Closes
[ { "change_type": "MODIFY", "diff": "@@ -613,17 +613,17 @@ export = {\nexpect(stack).to(haveResourceLike('AWS::CodePipeline::Pipeline', {\n\"ArtifactStores\": [\n{\n- \"Region\": \"us-east-1\",\n+ \"Region\": \"us-west-1\",\n\"ArtifactStore\": {\n\"Type\": \"S3\",\n- \"Location\": \"teststack-support-us-east...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(codepipeline): handle non-CFN cross-region actions (#3777) Adds support for actions other than the CloudFormation ones to be cross-region. It works similarly to the cross-account support: passing a resource from a different region into a CodePipeline action makes the action implicitly cross-region. Closes #...
1
feat
codepipeline
679,913
18.09.2019 15:45:33
-3,600
5d2c17e816c9d92eee3817043eb4064674cf87ce
feat(webgl-shadertoy): fix & update drawPass viewport, add update() method
[ { "change_type": "MODIFY", "diff": "@@ -37,6 +37,7 @@ export interface ShaderToyOpts {\nexport interface ShaderToy {\nstart(): void;\nstop(): void;\n+ update(time?: number): void;\nrecompile(main: MainImageFn): void;\nmodel: ModelSpec;\n}\n", "new_path": "packages/webgl-shadertoy/src/api.ts", "old_p...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl-shadertoy): fix & update drawPass viewport, add update() method
1
feat
webgl-shadertoy
791,704
18.09.2019 16:02:29
25,200
78a3e0d05e5577f38559588c84eae11c14c3b476
report: update favicon
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,7 @@ limitations under the License.\n<head>\n<meta charset=\"utf-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1\">\n- <link rel=\"icon\" href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAA...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: update favicon (#9688)
1
report
null
104,857
18.09.2019 16:23:13
10,800
c56dbb5df17538980232d61fbdccd182f3232970
fix(table): missing validation in table data
[ { "change_type": "MODIFY", "diff": "@@ -497,7 +497,10 @@ const TableCard = ({\n// if we're in editable mode, generate fake data\nconst tableData = isEditable\n? generateTableSampleValues(columns)\n- : hasActionColumn || filteredTimestampColumns.length || filteredPrecisionColumns.length\n+ : hasActionColumn ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): missing validation in table data
1
fix
table
401,147
18.09.2019 16:30:40
-19,080
c95f2b64849eefe519593e89b54735a1c3a83591
test(all): update testing library and snapshots accordingly affects:
[ { "change_type": "MODIFY", "diff": "@@ -20,17 +20,17 @@ module.exports = {\nprojects: [\n{\ndisplayName: 'core',\n- setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect', 'jest-styled-components'],\n+ setupFilesAfterEnv: ['<rootDir>/jest.setupAfterEnv.js'],\ntestMatch: ['<rootDir>/packages/core/src...
TypeScript
MIT License
medly/medly-components
test(all): update testing library and snapshots accordingly affects: @medly-components/core, @medly-components/utils
1
test
all
902,122
18.09.2019 16:43:27
0
166ad01636c6b4b2bbc48496b6bd084cb8a88fae
chore(release): v5.13.2
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [5.13.2](https://github.com/kikobeats/browserless/compare/v5.13.1...v5.13.2) (2019-09-18)\n+\n+**Note:** Version b...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v5.13.2
1
chore
release
104,857
18.09.2019 17:56:03
10,800
e6b800f6b7712d7f5c6a6bc8fabbb4598af74255
fix(i18n): translate severity label column and snapshots updates
[ { "change_type": "MODIFY", "diff": "@@ -133,6 +133,7 @@ const propTypes = {\nmoderateLabel: PropTypes.string,\nlowLabel: PropTypes.string,\nselectSeverityPlaceholder: PropTypes.string,\n+ severityLabel: PropTypes.string,\ndefaultFilterStringPlaceholdText: PropTypes.string,\ndownloadIconDescription: PropType...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(i18n): translate severity label column and snapshots updates
1
fix
i18n
815,577
18.09.2019 17:58:00
-28,800
0f91423c8cc7681688b19eed89b91aa61b3307f4
chore: use uint256 to type difficulty
[ { "change_type": "MODIFY", "diff": "@@ -2,17 +2,16 @@ use ckb_chain_spec::consensus::ConsensusBuilder;\nuse ckb_dao_utils::genesis_dao_data;\nuse ckb_types::{\ncore::{capacity_bytes, BlockBuilder, Capacity, HeaderBuilder, HeaderView, TransactionBuilder},\n- h256,\npacked::{Byte32, CellInput, Script},\nprelu...
Rust
MIT License
nervosnetwork/ckb
chore: use uint256 to type difficulty
1
chore
null
866,395
18.09.2019 18:06:31
14,400
32d8bce2ac6b8cf4b8cac9351f8d93c5ed52c9c4
fix(docs): fix storybook platform name; update readme
[ { "change_type": "MODIFY", "diff": "@@ -20,12 +20,12 @@ const { prefix } = settings;\n* @param {string} User content\n* @returns {*} DotcomShell component\n*/\n-const DotcomShell = ({ navigation, footer, children }) => {\n+const DotcomShell = ({ navigation, footer, children, ...mastheadProps }) => {\nreturn...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(docs): fix storybook platform name; update readme
1
fix
docs
503,918
18.09.2019 18:13:08
-10,800
f2d0969e90da10933b8fc6ffb641337ced3e4db6
fix(switch): backward compatibility in case labelOff is not set
[ { "change_type": "MODIFY", "diff": "@@ -28,6 +28,18 @@ test('switch is not checked', () => {\nexpect(view).toMatchSnapshot();\n});\n+test('switch with only label is checked', () => {\n+ const check = true;\n+ const view = mount(<Switch id=\"switch-is-checked\" label={check ? \"On\" : \"Off\"} isChecked={che...
TypeScript
MIT License
patternfly/patternfly-react
fix(switch): backward compatibility in case labelOff is not set (#2816) Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com>
1
fix
switch
902,122
18.09.2019 18:31:56
-7,200
3235262bb94d28225656e2b9ec78178d1c24c2e7
build: support space between coookie delimiter
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ const parseCookies = (url, str) => {\nreturn str.split(';').reduce((acc, str) => {\nconst [name, value] = str.split('=')\nconst cookie = {\n- name,\n+ name: name.trim(),\nvalue,\ndomain,\nurl,\n", "new_path": "packages/goto/src/index.js", "old_pa...
JavaScript
MIT License
microlinkhq/browserless
build: support space between coookie delimiter (#82)
1
build
null
71,115
18.09.2019 18:33:18
-7,200
1f64b87d2bc5c94d6994834b1116636264d66e53
chore: fix s3-deployment package typo Replace with
[ { "change_type": "MODIFY", "diff": "@@ -231,5 +231,5 @@ const bucket = new Bucket(this, 'MyRedirectedBucket', {\n### Filling the bucket as part of deployment\nTo put files into a bucket as part of a deployment (for example, to host a\n-website), see the `@aws-ck/aws-s3-deployment` package, which provides a\...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: fix s3-deployment package typo (#4126) Replace @aws-ck/aws-s3-deployment with @aws-cdk/aws-s3-deployment
1
chore
null
866,395
18.09.2019 18:38:44
14,400
ea39b1525dce96d59395017dbfa2d249bf211164
fix(misc): update footerType prop name; add masthead/footer to dotcomshell.scss
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ const { prefix } = settings;\n* @param {string} User content\n* @returns {*} DotcomShell component\n*/\n-const DotcomShell = ({ navigation, footer, children, ...mastheadProps }) => {\n+const DotcomShell = ({ navigation, footerType, children, ...mastheadP...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(misc): update footerType prop name; add masthead/footer to dotcomshell.scss
1
fix
misc
866,395
18.09.2019 18:43:32
14,400
2d009f5997a1914df5ca0b96df2c608813d87a7d
fix(jest): remove yarn test again
[ { "change_type": "MODIFY", "diff": "{\n\"**/*.js\": [\n\"prettier --write\",\n- \"yarn test\",\n\"eslint packages\",\n- \"yarn test\",\n\"git add\"\n],\n\"packages/components/**/*.scss\": [\n", "new_path": ".lintstagedrc", "old_path": ".lintstagedrc" }, { "change_type": "MODIFY", "diff":...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(jest): remove yarn test again
1
fix
jest
722,013
18.09.2019 18:59:18
18,000
e8031e4a8a3921b309bd31d17f79963e004f74df
build: add complie to postinstall
[ { "change_type": "MODIFY", "diff": "\"predocs\": \"node ./docs/.vuepress/preprocess.js\",\n\"docs\": \"vuepress dev docs\",\n\"docs:build\": \"node ./docs/.vuepress/preprocess.js && vuepress build docs\",\n- \"postinstall\": \"cd ./packages/vue-cli-plugin-styleguidist && yarn link && cd ../.. && yarn link v...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
build: add complie to postinstall
1
build
null
743,952
18.09.2019 23:20:14
-7,200
9a42b6380c92a3528a1e47ebf2ed0354e723fea2
fix: async middleware was called twice
[ { "change_type": "MODIFY", "diff": "@@ -40,8 +40,7 @@ function applyMiddleware (argv, yargs, middlewares, beforeValidation) {\nconst beforeValidationError = new Error('middleware cannot return a promise when applyBeforeValidation is true')\nreturn middlewares\n.reduce((accumulation, middleware) => {\n- if (...
JavaScript
MIT License
yargs/yargs
fix: async middleware was called twice (#1422)
1
fix
null
679,913
18.09.2019 23:27:29
-3,600
a45725a6407bd61bc1f9130ffa55f872eb031f5c
feat(webgl-shadertoy): add optional per-pass ModelSpec & vert shader support
[ { "change_type": "MODIFY", "diff": "@@ -6,14 +6,18 @@ import {\nsome,\ntransduce\n} from \"@thi.ng/transducers\";\n+import { AttribPool } from \"@thi.ng/vector-pools\";\nimport {\ncompileModel,\ndraw,\nExtensionBehaviors,\nfbo,\n+ IndexBufferSpec,\n+ InstancingSpec,\nisFloatTexture,\nisGL2Context,\nITexture...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl-shadertoy): add optional per-pass ModelSpec & vert shader support
1
feat
webgl-shadertoy
67,494
19.09.2019 01:31:41
-7,200
f7483504b6ed3cffcabfdb4916a0ace663ba4e7a
refactor(router): add stateful history length
[ { "change_type": "MODIFY", "diff": "@@ -60,7 +60,9 @@ export interface INavigatorEntry extends IStoredNavigatorEntry {\nexport interface INavigatorOptions {\nviewer?: INavigatorViewer;\nstore?: INavigatorStore;\n+ statefulHistoryLength?: number;\ncallback?(instruction: INavigatorInstruction): void;\n+ seria...
TypeScript
MIT License
aurelia/aurelia
refactor(router): add stateful history length
1
refactor
router
67,494
19.09.2019 01:32:33
-7,200
0f77ff7e18dcad8ed12a1694816b6c8bebb26e5f
refactor(router): add force remove
[ { "change_type": "MODIFY", "diff": "@@ -29,6 +29,7 @@ export class Viewport {\npublic nextContent: ViewportContent | null = null;\npublic enabled: boolean = true;\n+ public forceRemove: boolean = false;\npublic parent: Viewport | null = null;\npublic children: Viewport[] = [];\n@@ -53,6 +54,16 @@ export cla...
TypeScript
MIT License
aurelia/aurelia
refactor(router): add force remove
1
refactor
router
67,494
19.09.2019 01:46:47
-7,200
a5ce9128b70c825f29833b78239996ed4290861c
refactor(router): add stateful history length and free viewports
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ import { InstructionResolver, IRouteSeparators } from './instruction-resolver';\nimport { INavigatorInstruction, IRouteableComponent, NavigationInstruction } from './interfaces';\nimport { AnchorEventInfo, LinkHandler } from './link-handler';\nimport { INa...
TypeScript
MIT License
aurelia/aurelia
refactor(router): add stateful history length and free viewports
1
refactor
router
273,683
19.09.2019 03:19:23
-7,200
b429d3f217b6b3de8bab14ef2478840a3eda6e82
fix(vue-remark): support import as syntax
[ { "change_type": "MODIFY", "diff": "@@ -24,12 +24,15 @@ exports.genImportBlock = function (statements, file) {\nconst identifiers = {}\ntraverse(ast, {\n- Identifier (path) {\n- identifiers[path.node.name] = true\n+ ImportDefaultSpecifier (path) {\n+ identifiers[path.node.local.name] = true\n+ },\n+ ImportS...
JavaScript
MIT License
gridsome/gridsome
fix(vue-remark): support import as syntax
1
fix
vue-remark
273,683
19.09.2019 03:23:19
-7,200
139f7802e09fe611a3f92a5889cc64b4856488c8
fix(vue-remark): include alt tag for images
[ { "change_type": "MODIFY", "diff": "@@ -116,6 +116,12 @@ class VueRemark {\napi.chainWebpack(config => this.chainWebpack(config))\napi.createPages(actions => this.createPages(actions))\n+ if (api._app.compiler.hooks.cacheIdentifier) {\n+ api._app.compiler.hooks.cacheIdentifier.tap('VueRemark', id => {\n+ id...
JavaScript
MIT License
gridsome/gridsome
fix(vue-remark): include alt tag for images
1
fix
vue-remark
722,013
19.09.2019 09:12:47
18,000
ff89890b965056eed069ee1da5a7cccb29ab8662
feat(compiler): styleScoper deals with deep
[ { "change_type": "MODIFY", "diff": "@@ -20,4 +20,14 @@ describe('styleScoper', () => {\nconst scopedCSS = scoper(`.bonjour .hello{color:blue;}`, '[test]')\nexpect(scopedCSS).toBe('.bonjour[test] .hello[test] {color:blue;}')\n})\n+\n+ it.each(['::v-deep', '>>>', '/deep/'])('should not scope deep selector : %...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
feat(compiler): styleScoper deals with deep
1
feat
compiler
815,569
19.09.2019 09:20:31
-28,800
274c43623cbeffad0b2aada1ee16be248c4fe337
chore(deps): bump criterion from 0.2.11 to 0.3.0 Bumps [criterion](https://github.com/bheisler/criterion.rs) from 0.2.11 to 0.3.0. [Release notes](https://github.com/bheisler/criterion.rs/releases) [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) [Commits](bheisler/criterion.rs@0.2.11...0....
[ { "change_type": "MODIFY", "diff": "@@ -643,7 +643,7 @@ version = \"0.21.0-pre\"\ndependencies = [\n\"blake2b-rs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)\",\n- \"criterion 0.2.11 (registry+https://github.com/rust...
Rust
MIT License
nervosnetwork/ckb
chore(deps): bump criterion from 0.2.11 to 0.3.0 Bumps [criterion](https://github.com/bheisler/criterion.rs) from 0.2.11 to 0.3.0. - [Release notes](https://github.com/bheisler/criterion.rs/releases) - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](bheisler/criterion.rs@0.2....
1
chore
deps
730,429
19.09.2019 10:25:39
14,400
14678acaac547aee278cc365e200192503684f3a
fix(tap): use helper fns in space tap
[ { "change_type": "MODIFY", "diff": "@@ -2,20 +2,19 @@ import {assert} from 'chai';\nimport '@webex/internal-plugin-conversation';\nimport '@webex/plugin-logger';\n-import testUsers from '@webex/test-helper-test-users';\n-import CiscoSpark from '@webex/webex-core';\nimport waitForPromise from '../../../lib/w...
JavaScript
MIT License
webex/react-widgets
fix(tap): use helper fns in space tap
1
fix
tap
866,415
19.09.2019 10:27:00
14,400
dbf78ded8a16b90c77d77b69e0f3394ce36c5b62
feat(leadspace): styling adjustments to support grid
[ { "change_type": "MODIFY", "diff": "&__overlay {\n@include carbon--make-container;\n+ display: flex;\n+ flex-direction: column;\n+ justify-content: space-between;\npadding-top: $layout-03;\npadding-bottom: $layout-03;\nposition: absolute;\n);\n}\n- &__content {\n- position: absolute;\n- bottom: $layout-03;\...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(leadspace): styling adjustments to support grid
1
feat
leadspace
699,189
19.09.2019 10:39:21
18,000
9d181071c7ff9f7a2670d2170349ffa9f749d031
fix(website): automatically update website version from package
[ { "change_type": "MODIFY", "diff": "@@ -42,9 +42,7 @@ module.exports = {\noptions: {\nname: 'pages',\npath: `${__dirname}/src/pages`,\n- ignore: [\n- '**/components/**/*',\n- ],\n+ ignore: ['**/components/**/*'],\n},\n},\n{\n@@ -58,14 +56,8 @@ module.exports = {\nresolve: 'gatsby-source-filesystem',\noption...
TypeScript
MIT License
twilio-labs/paste
fix(website): automatically update website version from package (#99)
1
fix
website
699,189
19.09.2019 10:44:14
18,000
c0c63a80a03bad48da84622465ca4c7fab4c0043
chore(monorepo): only do pre-push validation on master branch
[ { "change_type": "MODIFY", "diff": "\"eslint-plugin-promise\": \"^4.2.1\",\n\"eslint-plugin-react\": \"^7.14.2\",\n\"eslint-plugin-unicorn\": \"^9.1.1\",\n+ \"git-branch-is\": \"^3.0.0\",\n\"husky\": \"^3.0.0\",\n\"jest\": \"^24.8.0\",\n\"jest-emotion\": \"^10.0.14\",\n\"husky\": {\n\"hooks\": {\n\"pre-comm...
TypeScript
MIT License
twilio-labs/paste
chore(monorepo): only do pre-push validation on master branch (#101)
1
chore
monorepo
730,429
19.09.2019 10:49:27
14,400
028e9f7bce169cc217b09a70cfb65e39326bc728
test(tap): use test users helper
[ { "change_type": "MODIFY", "diff": "import {assert} from 'chai';\n-import testUsers from '@webex/test-helper-test-users';\n-\nimport {elements as basicElements, switchToMeet, switchToMessage} from '../../../lib/test-helpers/space-widget/main';\nimport {clearEventLog, getEventLog} from '../../../lib/events';...
JavaScript
MIT License
webex/react-widgets
test(tap): use test users helper
1
test
tap
273,683
19.09.2019 11:01:21
-7,200
9a4d24c2f93703d6d74f29d3c926e3ce32ca37ab
fix(graphql): auto create missing reference fields
[ { "change_type": "MODIFY", "diff": "@@ -353,6 +353,25 @@ test('create references with collection.addReference()', async () => {\nexpect(data.post.authors).toHaveLength(1)\n})\n+test('create missing reference fields from collection.addReference()', async () => {\n+ const posts = api.store.addCollection('Post...
JavaScript
MIT License
gridsome/gridsome
fix(graphql): auto create missing reference fields
1
fix
graphql
531,793
19.09.2019 11:08:36
-3,600
c24ebe11249de42d753a689d2d3118d876a546d1
fix(tests): update snapshots after font-awesome bump
[ { "change_type": "MODIFY", "diff": "@@ -144,13 +144,13 @@ exports[`<Alert /> matches snapshot when inhibited 1`] = `\nfocusable=\\\\\"false\\\\\"\ndata-prefix=\\\\\"fas\\\\\"\ndata-icon=\\\\\"external-link-alt\\\\\"\n- class=\\\\\"svg-inline--fa fa-external-link-alt fa-w-18 \\\\\"\n+ class=\\\\\"svg-inline-...
TypeScript
Apache License 2.0
prymitive/karma
fix(tests): update snapshots after font-awesome bump
1
fix
tests
273,683
19.09.2019 11:12:24
-7,200
d52e71627bf482f37e6bf7cf644195a8c81fa730
fix(vue-remark): parse markdown inside components test(vue-remark): add tests
[ { "change_type": "ADD", "diff": "+__tests__\n", "new_path": "packages/vue-remark/.npmignore", "old_path": null }, { "change_type": "ADD", "diff": "+// Jest Snapshot v1, https://goo.gl/fbAQLP\n+\n+exports[`add v-pre to fenced code blocks 1`] = `\n+\"<template>\n+<VueRemarkRoot>\n+<pre><co...
JavaScript
MIT License
gridsome/gridsome
fix(vue-remark): parse markdown inside components (#677) test(vue-remark): add tests
1
fix
vue-remark
791,704
19.09.2019 11:19:14
25,200
e7a9b5f3042fad72983499e43163db80f91f31c6
docs(auth): running Lighthouse on authenticated pages
[ { "change_type": "MODIFY", "diff": "@@ -45,3 +45,6 @@ yarn-error.log\nproto/scripts/*_pb2.*\nproto/scripts/*_pb.*\nproto/scripts/*_processed.json\n+\n+# require any lock file to be checked in explicitly\n+yarn.lock\n", "new_path": ".gitignore", "old_path": ".gitignore" }, { "change_type": "A...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs(auth): running Lighthouse on authenticated pages (#9628)
1
docs
auth
730,429
19.09.2019 11:38:03
14,400
3f364ea39c7390e6ae76e93e610618d8f2ba14f8
test(tap): add wait for animations
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ import {setupOneOnOneUsers} from '../../../lib/test-users';\ndescribe('Widget Space: One on One: TAP', () => {\nconst browserLocal = browser.select('browserLocal');\nconst browserRemote = browser.select('browserRemote');\n- let local, mccoy, remote, spoc...
JavaScript
MIT License
webex/react-widgets
test(tap): add wait for animations
1
test
tap
749,536
19.09.2019 11:42:38
25,200
728dd1e9be1afa6d3619a79cd6b223b64f0add78
fix(modals): allow Modal to receive ref prop
[ { "change_type": "MODIFY", "diff": "@@ -22,6 +22,8 @@ import Body from '../views/Body';\nimport Close from '../views/Close';\nimport Header from '../views/Header';\n+import useCombinedRefs from '../utils/useCombinedRefs';\n+\nconst isOverflowing = element => {\nconst doc = ownerDocument(element);\nconst win...
TypeScript
Apache License 2.0
zendeskgarden/react-components
fix(modals): allow Modal to receive ref prop (#459)
1
fix
modals
730,429
19.09.2019 12:09:39
14,400
39dadee88b20efbf4a6fa2c964385a9533e447ac
test(tap): standardize space test with oneOnOne
[ { "change_type": "MODIFY", "diff": "@@ -50,6 +50,13 @@ describe('Widget Space: Group Space: TAP', () => {\nremote.browser.waitForExist(`[placeholder=\"Send a message to ${conversation.displayName}\"]`, 30000);\n});\n+ before('stick widgets to bottom of viewport', () => {\n+ local.browser.waitForVisible(elem...
JavaScript
MIT License
webex/react-widgets
test(tap): standardize space test with oneOnOne
1
test
tap
730,429
19.09.2019 12:10:12
14,400
1f567946553cf5c7b96d2a9f1c5cbf375ef0d4d7
test(journeys): add activity menu hide delay
[ { "change_type": "MODIFY", "diff": "@@ -29,6 +29,9 @@ export function switchToMessage(aBrowser) {\n}\naBrowser.waitForVisible(elements.messageActivityButton);\naBrowser.click(elements.messageActivityButton);\n+\n+ // Activity menu animates the hide, wait for it to be gone\n+ aBrowser.waitForVisible(elements...
JavaScript
MIT License
webex/react-widgets
test(journeys): add activity menu hide delay
1
test
journeys
71,115
19.09.2019 12:16:11
-7,200
899656c1250c4d4cc82262116ca25b0114ca45c7
fix(elbv2): unhealthyHostCount metric case fix
[ { "change_type": "MODIFY", "diff": "@@ -229,7 +229,7 @@ export class ApplicationTargetGroup extends TargetGroupBase implements IApplicat\n* @default Average over 5 minutes\n*/\npublic metricUnhealthyHostCount(props?: cloudwatch.MetricOptions) {\n- return this.metric('UnhealthyHostCount', {\n+ return this.me...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(elbv2): unhealthyHostCount metric case fix (#4133)
1
fix
elbv2
273,683
19.09.2019 13:48:21
-7,200
031d83255eae10b228d2e24f79d39141e56b39d3
fix(vue-remark): add more image options
[ { "change_type": "MODIFY", "diff": "@@ -107,6 +107,43 @@ test('parse images as g-image', async () => {\nexpect(res).toMatch('<p><g-image src=\"./image.png\" alt=\"Test\"></g-image></p>')\n})\n+test('parse image options', async () => {\n+ const plugin = await createPlugin({\n+ remark: {\n+ imageQuality: 10,\...
JavaScript
MIT License
gridsome/gridsome
fix(vue-remark): add more image options
1
fix
vue-remark
713,841
19.09.2019 14:02:01
-7,200
4012c84ed0f307e952a6074c3605895334444b2e
chore(active-directory): add inspiration and improve readme
[ { "change_type": "MODIFY", "diff": "@@ -16,14 +16,19 @@ This settings can be set in `config.yaml`. All fields are mandatory except `grou\nauth:\nactivedirectory:\nurl: \"ldap://localhost\"\n- baseDN: 'dc=local,dc=host'\n- domainSuffix: 'local.host'\n+ baseDN: \"dc=local,dc=host\"\n+ domainSuffix: \"local.ho...
TypeScript
MIT License
verdaccio/monorepo
chore(active-directory): add inspiration and improve readme
1
chore
active-directory
531,793
19.09.2019 14:08:33
-3,600
818281e8449586d04f9dfd729370703b15d41d8b
fix(ui): update babel in package-lock.json
[ { "change_type": "MODIFY", "diff": "}\n},\n\"@babel/runtime\": {\n- \"version\": \"7.5.5\",\n- \"resolved\": \"https://registry.npmjs.org/@babel/runtime/-/runtime-7.5.5.tgz\",\n- \"integrity\": \"sha512-28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ==\",\n+ \"version\...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): update babel in package-lock.json
1
fix
ui
503,945
19.09.2019 14:13:20
14,400
d4ffc77f14083ccfb6ae466d74a37cc72720757b
chore(package): Bump versions to 2.32.1
[ { "change_type": "MODIFY", "diff": "},\n\"homepage\": \"https://github.com/patternfly/patternfly-react#readme\",\n\"dependencies\": {\n- \"@patternfly/patternfly\": \"2.31.7\",\n+ \"@patternfly/patternfly\": \"2.32.1\",\n\"@patternfly/react-styles\": \"^3.5.23\",\n\"@patternfly/react-tokens\": \"^2.6.27\",\...
TypeScript
MIT License
patternfly/patternfly-react
chore(package): Bump @patternfly/patternfly versions to 2.32.1 (#2965)
1
chore
package
447,460
19.09.2019 14:27:45
14,400
b8f68f4b5e71992d54eeaa6d63f6cfd9b835cf36
style: add animation to ProgressCircular component
[ { "change_type": "MODIFY", "diff": "@@ -15,11 +15,25 @@ describe('<ProgressCircular/>', () => {\nexpect(component.find('ProgressRing').prop('percent')).toBe(25);\nexpect(component.find('.rainbow-progress-circular_percent-text').text()).toBe('25%');\n});\n- it('should have the right class names when varaint ...
JavaScript
MIT License
nexxtway/react-rainbow
style: add animation to ProgressCircular component (#961)
1
style
null
866,415
19.09.2019 14:28:30
14,400
f9597f17be79c1d8823ef154ff6dc4a35f197298
feat(leadspace): wrap itmes in row grid style classes instead of mixin
[ { "change_type": "MODIFY", "diff": "@@ -65,13 +65,21 @@ const LeadSpace = ({ variation, title, copy, buttons, image }) =>\n<section data-autoid=\"leadspace\" className={className(variation)}>\n<div className={`${prefix}--leadspace__container`}>\n<div className={`${prefix}--leadspace__overlay`}>\n+ <div clas...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(leadspace): wrap itmes in row grid style classes instead of mixin
1
feat
leadspace
503,918
19.09.2019 14:29:22
-10,800
39b359dd49c79d5eaaefbcfebd47aa16734ceca7
fix(button): set the disable modifier when component is not button
[ { "change_type": "MODIFY", "diff": "@@ -76,7 +76,7 @@ const Button: React.FunctionComponent<ButtonProps & InjectedOuiaProps> = ({\nstyles.button,\ngetModifier(styles.modifiers, variant),\nisBlock && styles.modifiers.block,\n- isDisabled && styles.modifiers.disabled,\n+ isDisabled && !isButtonElement && styl...
TypeScript
MIT License
patternfly/patternfly-react
fix(button): set the disable modifier when component is not button (#2683) Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com>
1
fix
button
306,444
19.09.2019 14:35:01
-7,200
9e1678a967ec727813c5bcf6faa06a6c0650dc01
fix(field): style disabled only on inputs inside input-group
[ { "change_type": "MODIFY", "diff": "@@ -438,7 +438,7 @@ export const FormControlMixin = dedupeMixin(\n}\n/***** {state} .state-disabled *****/\n- :host(.state-disabled) .input-group ::slotted(*) {\n+ :host(.state-disabled) .input-group ::slotted(slot='input') {\ncolor: var(--disabled-text-color, #adadad);\n...
JavaScript
MIT License
ing-bank/lion
fix(field): style disabled only on inputs inside input-group
1
fix
field
273,683
19.09.2019 14:46:58
-7,200
2b5d17ff51e29d76e831ef1ea67e1ccafabc905b
fix(graphql): ignore trailing slash for path argument
[ { "change_type": "MODIFY", "diff": "@@ -101,12 +101,21 @@ test('get node by path', async () => {\n})\nposts.addNode({ id: '1', path: '/test' })\n+ posts.addNode({ id: '2', path: '/test/2/' })\n+ posts.addNode({ id: '3', path: '/' })\n- const query = '{ testPost (path: \"/test\") { id }}'\n- const { errors, ...
JavaScript
MIT License
gridsome/gridsome
fix(graphql): ignore trailing slash for path argument
1
fix
graphql
866,415
19.09.2019 14:47:38
14,400
c11e3e1ad1979638f56a348616bc0d3825575875
feat(leadspace): change row parent divs
[ { "change_type": "MODIFY", "diff": "@@ -65,17 +65,17 @@ const LeadSpace = ({ variation, title, copy, buttons, image }) =>\n<section data-autoid=\"leadspace\" className={className(variation)}>\n<div className={`${prefix}--leadspace__container`}>\n<div className={`${prefix}--leadspace__overlay`}>\n- <div clas...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(leadspace): change row parent divs
1
feat
leadspace
815,569
19.09.2019 15:00:20
-28,800
c9f0f297262cb804dcebd1184d327ea56033d56d
chore: refactor CyclesLimit and SizeLimit integration test
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,9 @@ use log::info;\npub struct SizeLimit;\n+const MAX_CYCLES_FOR_SIZE_LIMIT: u64 = 200_000_000_000;\n+const MAX_MEM_SIZE_FOR_SIZE_LIMIT: usize = 2000;\n+\nimpl Spec for SizeLimit {\ncrate::name!(\"size_limit\");\n@@ -14,24 +17,37 @@ impl Spec for SizeLimit {\n...
Rust
MIT License
nervosnetwork/ckb
chore: refactor CyclesLimit and SizeLimit integration test
1
chore
null
866,415
19.09.2019 15:02:13
14,400
3fad939130853003edc6c84bc8e63784bfcd7c4b
feat(leadspace): move col mixin and row mixin
[ { "change_type": "MODIFY", "diff": "}\n&__ctas {\n- @include carbon--make-col-ready;\n-\ndisplay: flex;\nflex-direction: column-reverse;\nmargin-top: $layout-01;\n.#{$prefix}--leadspace {\npadding-top: carbon--mini-units(50) / carbon--mini-units(84) * 100%;\n+ &__row {\n+ @include carbon--make-row;\n+ }\n+\...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(leadspace): move col mixin and row mixin
1
feat
leadspace
273,683
19.09.2019 15:08:47
-7,200
3a6580c22db44a268818cd0d5aba52dba9fc39a6
fix(remark): add more image options
[ { "change_type": "MODIFY", "diff": "@@ -131,3 +131,22 @@ Automatically add links to headings. Disabled if `slug` is `false`.\n- Default: `true`\nSupport ASCII guillements (`<<`, `>>`) and mapping them to HTML.\n+\n+#### imageQuality\n+\n+- Type: `number`\n+- Default: `75`\n+\n+#### imageBlurRatio\n+\n+- Typ...
JavaScript
MIT License
gridsome/gridsome
fix(remark): add more image options (#489, #674)
1
fix
remark
815,577
19.09.2019 15:08:55
-28,800
d2ab50c7527875e4d1beeb46303c9a3fc22f893c
feat: use zero lock system cells
[ { "change_type": "MODIFY", "diff": "# Spec: ckb_dev\n[ckb_dev]\n-genesis = \"0x7e08e99706bc47864c506f3425fadd51a7f708c45ecc6c4e2a49722ed255607c\"\n-cellbase = \"0x234abf25a6f2117021f90c165897c19890ae056ea559ebb609fbf1bfbbe3f76a\"\n+genesis = \"0x64a702d1c41b3f2d72c20a2224c20a17a6765742f97bd556a4e8d8db1b3957...
Rust
MIT License
nervosnetwork/ckb
feat: use zero lock system cells
1
feat
null
815,601
19.09.2019 15:23:19
-28,800
b8baea7835ab13cbb5499906ddd8f0a8d9a7adf6
fix: template timestamp should greater than tip timestamp
[ { "change_type": "MODIFY", "diff": "@@ -123,6 +123,43 @@ fn create_cellbase(number: BlockNumber, epoch: &EpochExt) -> TransactionView {\n.build()\n}\n+#[cfg(not(disable_faketime))]\n+#[test]\n+fn test_block_template_timestamp() {\n+ let faketime_file = faketime::millis_tempfile(0).expect(\"create faketime f...
Rust
MIT License
nervosnetwork/ckb
fix: template timestamp should greater than tip timestamp
1
fix
null
815,595
19.09.2019 15:33:18
-28,800
fd0b59e82109151d09d72b3a543ef21da81edeef
feat(test): Add TXOSet to manage cells
[ { "change_type": "ADD", "diff": "+use ckb_types::core::{Capacity, TransactionBuilder, TransactionView};\n+use ckb_types::packed::{CellDep, CellInput, CellOutput, OutPoint, Script};\n+use ckb_types::prelude::*;\n+use rand::{thread_rng, Rng};\n+use std::collections::HashMap;\n+\n+const EXPLODE_LIMIT: usize = ...
Rust
MIT License
nervosnetwork/ckb
feat(test): Add TXOSet to manage cells
1
feat
test
815,595
19.09.2019 15:34:01
-28,800
d7b4db26db81c4d1a0baf18ee1afa500c5fe1ae3
feat(test): Provide generating live cells
[ { "change_type": "MODIFY", "diff": "-use crate::{Net, Node};\n+use crate::{Net, Node, TXOSet};\nuse ckb_jsonrpc_types::{BlockTemplate, TransactionWithStatus, TxStatus};\nuse ckb_types::{\nbytes::Bytes,\n@@ -205,3 +205,41 @@ pub fn temp_path() -> String {\ntempdir.close().expect(\"close tempdir failed\");\np...
Rust
MIT License
nervosnetwork/ckb
feat(test): Provide generating live cells
1
feat
test
815,595
19.09.2019 15:34:56
-28,800
0431614827a453149072a5d2f9539b251955c3c1
test: Add forked_transaction
[ { "change_type": "MODIFY", "diff": "use crate::utils::is_committed;\nuse crate::{Net, Node, Spec, TestProtocol, DEFAULT_TX_PROPOSAL_WINDOW};\nuse ckb_app_config::CKBAppConfig;\n+use ckb_jsonrpc_types::{TransactionWithStatus, TxStatus};\nuse ckb_types::{\ncore::{capacity_bytes, BlockView, Capacity, Transacti...
Rust
MIT License
nervosnetwork/ckb
test: Add forked_transaction
1
test
null
815,595
19.09.2019 15:35:41
-28,800
289b4ce9488f8313b41309df5296f20c45d03a62
test: Add cases about proposed/committed rewards
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,7 @@ mod net;\nmod node;\nmod rpc;\npub mod specs;\n+mod txo;\nmod utils;\nuse ckb_types::core::BlockNumber;\n@@ -9,6 +10,7 @@ use ckb_types::core::BlockNumber;\npub use net::Net;\npub use node::Node;\npub use specs::{Setup, Spec, TestProtocol};\n+pub use txo::...
Rust
MIT License
nervosnetwork/ckb
test: Add cases about proposed/committed rewards
1
test
null
366,920
19.09.2019 15:38:19
-32,400
a1aab3d5388b45b62b75b2a42cee29e7c8348a31
style: Add hover color to Checkbox
[ { "change_type": "MODIFY", "diff": "import * as React from 'react'\nimport styled, { css } from 'styled-components'\n+import { transparentize } from 'polished'\nimport { InjectedProps, withTheme } from '../../hocs/withTheme'\n@@ -67,7 +68,6 @@ const Wrapper = styled.div`\nline-height: 1;\nbox-sizing: border...
TypeScript
MIT License
kufu/smarthr-ui
style: Add hover color to Checkbox
1
style
null
366,920
19.09.2019 15:48:10
-32,400
9d5fb348aed04e92bbaa772a00b773d04361608c
refactor: Use Hooks API
[ { "change_type": "MODIFY", "diff": "-import * as React from 'react'\n+import React, { FC, useCallback } from 'react'\nimport styled, { css } from 'styled-components'\nimport { transparentize } from 'polished'\n@@ -6,7 +6,7 @@ import { InjectedProps, withTheme } from '../../hocs/withTheme'\nimport { Icon } f...
TypeScript
MIT License
kufu/smarthr-ui
refactor: Use Hooks API
1
refactor
null
366,920
19.09.2019 15:53:05
-32,400
8dba673bdfe6d27916c9a146708fe04c383e00bc
feat: Add minus icon
[ { "change_type": "MODIFY", "diff": "@@ -44,6 +44,7 @@ const icons: Array<Props['name']> = [\n'fa-grip-vertical',\n'fa-lock',\n'fa-lock-open',\n+ 'fa-minus',\n'fa-pencil-alt',\n'fa-plus',\n'fa-plus-circle',\n", "new_path": "src/components/Icon/Icon.stories.tsx", "old_path": "src/components/Icon/Icon....
TypeScript
MIT License
kufu/smarthr-ui
feat: Add minus icon
1
feat
null
791,723
19.09.2019 15:53:15
25,200
152d14c31022b608a77b0849c7d0c537def04870
clients(devtools): expose registerLocaleData to worker
[ { "change_type": "MODIFY", "diff": "const lighthouse = require('../lighthouse-core/index.js');\nconst RawProtocol = require('../lighthouse-core/gather/connections/raw.js');\nconst log = require('lighthouse-logger');\n+const {registerLocaleData, lookupLocale} = require('../lighthouse-core/lib/i18n/i18n.js');...
JavaScript
Apache License 2.0
googlechrome/lighthouse
clients(devtools): expose registerLocaleData to worker (#9645)
1
clients
devtools
791,723
19.09.2019 15:53:28
25,200
80d2e6c1948f232ec4f1bdeabc8bc632fc5d0bfd
misc(assets): update logo
[ { "change_type": "ADD", "diff": "+<svg width=\"48\" height=\"48\" xmlns=\"http://www.w3.org/2000/svg\">\n+ <defs>\n+ <linearGradient x1=\"69.308%\" y1=\"13.086%\" x2=\"11.137%\" y2=\"100.996%\" id=\"a\">\n+ <stop stop-color=\"#262626\" stop-opacity=\".1\" offset=\"0%\"/>\n+ <stop stop-color=\"#262626\" stop...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(assets): update logo (#9694)
1
misc
assets
306,444
19.09.2019 16:01:20
-7,200
edd7396e153b012f90308fa5af3fb0ff2aa9c503
fix(input-amount): use minus sign unicode instead of hypen-minus
[ { "change_type": "MODIFY", "diff": "@@ -29,12 +29,8 @@ export function formatNumberToParts(number, options) {\nconst regexSymbol = /[A-Z.,\\s0-9]/;\nconst regexCode = /[A-Z]/;\n- /**\n- * TODO: Preprocessor should convert other \"dashes\" unicodes to &minus;\n- * Then our regex should test for &minus;\n- * ...
JavaScript
MIT License
ing-bank/lion
fix(input-amount): use minus sign unicode instead of hypen-minus
1
fix
input-amount
504,026
19.09.2019 16:54:32
14,400
96cac5b1582b8cc5e4f4ccbd959a8ce4d9f17f06
chore(charts): update chart tutorial paths Fixes
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ In this tutorial, we will build an area chart together - starting with a simple\ntooltips, axis labels, a legend, and concluding by changing the theme color. You'll learn how to use React chart\ncomponents together to build a consistent user experience.\...
TypeScript
MIT License
patternfly/patternfly-react
chore(charts): update chart tutorial paths (#2962) Fixes https://github.com/patternfly/patternfly-react/issues/2961
1
chore
charts
304,907
19.09.2019 17:06:44
-7,200
780ffd77ed641d0005fbc704f56c4e329b33cbf3
fix(lang): passing context to WalkIR
[ { "change_type": "MODIFY", "diff": "@@ -6,8 +6,6 @@ import (\n\"log\"\n\"time\"\n- \"go.uber.org/zap\"\n-\n\"github.com/influxdata/flux\"\n\"github.com/influxdata/flux/ast\"\n\"github.com/influxdata/flux/codes\"\n@@ -19,6 +17,7 @@ import (\n\"github.com/influxdata/flux/semantic\"\n\"github.com/influxdata/fl...
Go
MIT License
influxdata/flux
fix(lang): passing context to WalkIR (#1893)
1
fix
lang
306,444
19.09.2019 17:40:57
-7,200
94818e40fb6806ac7216cdaae00468f9724615c3
fix(button): change redispatch click logic so form submit fires properly
[ { "change_type": "MODIFY", "diff": "@@ -176,12 +176,11 @@ export class LionButton extends DisabledWithTabIndexMixin(SlotMixin(LitElement))\n}\n/**\n- * Prevent normal click and redispatch click on the native button unless already redispatched.\n+ * Prevent normal click and redispatch submit on the native bu...
JavaScript
MIT License
ing-bank/lion
fix(button): change redispatch click logic so form submit fires properly
1
fix
button
67,476
19.09.2019 17:42:58
-7,200
925312d0ac4793dafe2f4b5764e66f973d8c1ef9
test(di): temporarily disable some internal verifier tests
[ { "change_type": "MODIFY", "diff": "@@ -1176,14 +1176,14 @@ describe(`The Container class`, function () {\nconst { sut } = setup();\nconst obj = {};\nRegistration.instance('foo', obj).register(sut, 'foo');\n- assert.strictEqual(sut['resourceLookup'].foo.state, obj, `sut['resourceLookup'].foo.state`);\n- ass...
TypeScript
MIT License
aurelia/aurelia
test(di): temporarily disable some internal verifier tests
1
test
di
815,569
19.09.2019 17:45:31
-28,800
58002ad6d5bdd7b8460b10cd2b047d8769dcf70d
chore: refactor TemplateSizeLimit integration test
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,9 @@ impl Spec for TemplateSizeLimit {\nlet node = &net.nodes[0];\ninfo!(\"Generate 1 block\");\n- node.generate_block();\n+ let blank_block = node.new_block(None, None, None);\n+ node.submit_block(&blank_block.data());\n+ let blank_block_size = blank_block.s...
Rust
MIT License
nervosnetwork/ckb
chore: refactor TemplateSizeLimit integration test
1
chore
null
815,595
19.09.2019 17:51:33
-28,800
405445f059fda359e96f0a1db7cf810a57deeb2c
feat(test): Print panicked logs when node panicked
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,8 @@ use rand::{seq::SliceRandom, thread_rng};\nuse std::any::Any;\nuse std::collections::HashMap;\nuse std::env;\n-use std::fs::read_to_string;\n+use std::fs::{read_to_string, File};\n+use std::io::{BufRead, BufReader};\nuse std::panic;\nuse std::path::{Path, ...
Rust
MIT License
nervosnetwork/ckb
feat(test): Print panicked logs when node panicked
1
feat
test
791,704
19.09.2019 18:11:58
25,200
52cb0c904648be2f3395f2791b13844d7fac4d58
docs(readme): update link to authenticated docs
[ { "change_type": "MODIFY", "diff": "@@ -204,7 +204,7 @@ Useful documentation, examples, and recipes to get you started.\n- [Dealing with variance](./docs/variability.md)\n- [Using Lighthouse programmatically](./docs/readme.md#using-programmatically)\n-- [Testing a site with authentication](./docs/readme.md#...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs(readme): update link to authenticated docs (#9705)
1
docs
readme
815,573
19.09.2019 19:25:12
-28,800
48da8769278c5d1514f94f4338494b531f5ca312
fix: Use dao type script hash in dao transaction
[ { "change_type": "MODIFY", "diff": "@@ -493,7 +493,6 @@ dependencies = [\n\"ckb-dao-utils 0.22.0-pre\",\n\"ckb-db 0.22.0-pre\",\n\"ckb-error 0.22.0-pre\",\n- \"ckb-resource 0.22.0-pre\",\n\"ckb-store 0.22.0-pre\",\n\"ckb-types 0.22.0-pre\",\n]\n@@ -1083,7 +1082,6 @@ dependencies = [\n\"ckb-hash 0.22.0-pre\"...
Rust
MIT License
nervosnetwork/ckb
fix: Use dao type script hash in dao transaction
1
fix
null
503,926
19.09.2019 19:29:11
-10,800
69107e103812439c1be990812f4309bc00b75146
feat(DateTimePicker): Add DateTimePicker component
[ { "change_type": "ADD", "diff": "+.bootstrap-datetimepicker-widget.date-time-picker-pf.top {\n+ margin-top: -10px;\n+}\n+\n+.bootstrap-datetimepicker-widget.date-time-picker-pf.bottom {\n+ margin-top: 10px !important;\n+}\n+\n+.bootstrap-datetimepicker-widget.date-picker-pf,\n+.bootstrap-datetimepicker-widg...
TypeScript
MIT License
patternfly/patternfly-react
feat(DateTimePicker): Add DateTimePicker component (#1420)
1
feat
DateTimePicker
815,573
19.09.2019 19:29:13
-28,800
3f7f5bc9d77fd834d538c9a39505deabcd864f4f
chore: System cells force consistent locations
[ { "change_type": "MODIFY", "diff": "@@ -17,7 +17,10 @@ use ckb_dao_utils::genesis_dao_data_with_satoshi_gift;\nuse ckb_hash::{blake2b_256, new_blake2b};\nuse ckb_jsonrpc_types::Script;\nuse ckb_pow::{Pow, PowEngine};\n-use ckb_resource::{Resource, CODE_HASH_SECP256K1_BLAKE160_SIGHASH_ALL, CODE_HASH_SECP256K...
Rust
MIT License
nervosnetwork/ckb
chore: System cells force consistent locations
1
chore
null
503,952
19.09.2019 20:12:31
-7,200
2ca0bec82ba1abd19afe3767389a97d4d227e674
refactor(Modal): Simplify disabling FocusTrap
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,6 @@ import { ModalBoxHeader } from './ModalBoxHeader';\nimport { ModalBoxCloseButton } from './ModalBoxCloseButton';\nimport { ModalBox } from './ModalBox';\nimport { ModalBoxFooter } from './ModalBoxFooter';\n-import { Bullseye } from '../../layouts/Bullsey...
TypeScript
MIT License
patternfly/patternfly-react
refactor(Modal): Simplify disabling FocusTrap (#2862)
1
refactor
Modal
217,922
19.09.2019 20:35:51
-7,200
a0255b2ee380589ed589ad48fd28fad2ee094156
fix(marketboard): fixed pricing mode integration
[ { "change_type": "MODIFY", "diff": "@@ -17,6 +17,7 @@ import { NzMessageService, NzModalService } from 'ng-zorro-antd';\nimport { LazyDataService } from '../../../core/data/lazy-data.service';\nimport { PriceCheckResultComponent } from '../price-check-result/price-check-result.component';\nimport { NumberQu...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(marketboard): fixed pricing mode integration
1
fix
marketboard
217,922
19.09.2019 20:43:43
-7,200
2ed20a9af3b1198be45b6b10613da60782cf2f8a
fix(pricing): fixed an issue with copy to text outputing wrong values
[ { "change_type": "MODIFY", "diff": "@@ -125,7 +125,7 @@ export class PricingService {\n*\n* @param listUid\n* @param {ListRow} item\n- * @param hq so we wawnt default value in nq or hq?\n+ * @param hq so we want default value in nq or hq?\n* @returns {ItemAmount}\n*/\ngetAmount(listUid: string, item: ListRo...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(pricing): fixed an issue with copy to text outputing wrong values
1
fix
pricing
217,922
19.09.2019 20:51:07
-7,200
d7d7ef3491f9c839b017a0fd01c443f9c142b774
fix(marketboard): fixed ordering in history tab
[ { "change_type": "MODIFY", "diff": "</thead>\n<tbody>\n<tr *ngFor=\"let row of historyTable.data\">\n- <td>{{row.PurchaseDate | date:'short'}}</td>\n+ <td>{{row.PurchaseDate | date:'short':undefined:getLocale()}}</td>\n<td>{{row.Quantity}}</td>\n<td>{{row.Server}}</td>\n<td><img src=\"./assets/icons/HQ.png\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(marketboard): fixed ordering in history tab
1
fix
marketboard
76,605
19.09.2019 21:18:53
-7,200
cc8a61ec44f4d66f5180670a04a04a0ab3b4df6c
feat: faster levenshtein
[ { "change_type": "MODIFY", "diff": "@@ -45,6 +45,64 @@ class SimilarSearch {\n: this.settings.useCollator;\nthis.normalize =\nthis.settings.normalize === undefined ? false : this.settings.normalize;\n+ this.array = [];\n+ this.charCodeCache = [];\n+ }\n+\n+ leven(left, right) {\n+ if (left.length > right.le...
JavaScript
MIT License
axa-group/nlp.js
feat: faster levenshtein
1
feat
null
67,479
19.09.2019 22:25:25
-36,000
4083fb438d88452d0ce779020dae74dbed13a67b
fix(repeat): add contextual props back
[ { "change_type": "ADD", "diff": "+import { Constructable, IContainer, PLATFORM } from '@aurelia/kernel';\n+import {\n+ Aurelia,\n+ CustomElement,\n+ customElement,\n+ IDOM,\n+ ILifecycle,\n+ IObserverLocator,\n+ IRenderingEngine,\n+ view,\n+} from '@aurelia/runtime';\n+import { RenderPlan } from '@aurelia/r...
TypeScript
MIT License
aurelia/aurelia
fix(repeat): add contextual props back
1
fix
repeat
273,683
19.09.2019 23:38:59
-7,200
a79a67cb6fa3395e81f31dad3eb738ae2757feed
fix(vue-remark): transpile custom sfc blocks
[ { "change_type": "MODIFY", "diff": "@@ -36,6 +36,20 @@ const normalizeRouteKeys = keys => keys\n}\n})\n+const createCustomBlockRule = (config, type) => {\n+ const re = new RegExp(`blockType=(${type})`)\n+\n+ config.module.rule(type)\n+ .resourceQuery(re)\n+ .use('babel-loader')\n+ .loader('babel-loader')\n+...
JavaScript
MIT License
gridsome/gridsome
fix(vue-remark): transpile custom sfc blocks
1
fix
vue-remark
67,479
20.09.2019 00:19:17
-36,000
530eb33852b36807ef8d5d8799212161517b07d4
fix(repeat): basic test case with array
[ { "change_type": "MODIFY", "diff": "@@ -34,7 +34,7 @@ describe('[repeat.contextual-prop.spec.ts]', function () {\nconst testCases: IComposeIntegrationTestCase[] = [\n{\n- title: 'it works in basic scenario',\n+ title: 'it works in basic scenario (1 number)',\ntemplate:\n`<div repeat.for=\"i of 1\">\\${$inde...
TypeScript
MIT License
aurelia/aurelia
fix(repeat): basic test case with array
1
fix
repeat
447,440
20.09.2019 00:54:42
18,000
73972ac7dbfa85ed3a912b37ff07a0be440feed8
fix: datePicker UI
[ { "change_type": "MODIFY", "diff": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg width=\"145px\" height=\"87px\" viewBox=\"0 0 145 87\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n- <!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com -->\n+...
JavaScript
MIT License
nexxtway/react-rainbow
fix: datePicker UI (#979)
1
fix
null
67,494
20.09.2019 01:51:18
-7,200
70aa2acaade13e9e52099b9264596d67532f91a5
refactor(router): fix guard match bug
[ { "change_type": "MODIFY", "diff": "@@ -73,10 +73,10 @@ class Target {\ninstructions.push(new ViewportInstruction(''));\n}\nfor (const instruction of instructions) {\n- if (this.componentName === instruction.componentName ||\n- this.componentType === instruction.componentType ||\n- this.viewportName === ins...
TypeScript
MIT License
aurelia/aurelia
refactor(router): fix guard match bug
1
refactor
router
67,476
20.09.2019 06:44:49
-7,200
5a246a72409391ec78bf2b4b0605b401fb6edd2e
fix(array-observer): fix splice edge case
[ { "change_type": "MODIFY", "diff": "+import { DI } from '@aurelia/kernel';\nimport {\nArrayObserver,\n+ copyIndexMap,\ndisableArrayObservation,\nenableArrayObservation,\n+ ICollectionSubscriber,\n+ ILifecycle,\nIndexMap,\nLifecycleFlags as LF,\n- ILifecycle,\n- copyIndexMap,\n- ICollectionSubscriber,\n+ app...
TypeScript
MIT License
aurelia/aurelia
fix(array-observer): fix splice edge case
1
fix
array-observer
217,922
20.09.2019 08:45:35
-7,200
66ad4d9469c9a7f3c83492c7575b786cdf313e5d
fix(search): fixed an issue with chinese recipe search
[ { "change_type": "MODIFY", "diff": "@@ -191,7 +191,8 @@ export class DataService {\nresults$ = this.xivapi.getList(\nXivapiEndpoint.Item,\n{\n- ids: this.mapToItemIds(query, this.i18n.currentLang as 'ko' | 'zh')\n+ ids: this.mapToItemIds(query, this.i18n.currentLang as 'ko' | 'zh'),\n+ columns: ['ID', 'Name...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(search): fixed an issue with chinese recipe search
1
fix
search
749,516
20.09.2019 08:54:41
25,200
9cd1a42fe05ee532ad6ea4e7319e1c1a38b32a76
feat(buttons): deprecate ButtonGroupContainer
[ { "change_type": "MODIFY", "diff": "\"access\": \"public\"\n},\n\"zendeskgarden:library\": \"GardenAutocomplete\",\n- \"zendeskgarden:max_size\": \"58 kB\",\n+ \"zendeskgarden:max_size\": \"60 kB\",\n\"zendeskgarden:src\": \"src/index.js\"\n}\n", "new_path": "packages/autocomplete/package.json", "ol...
TypeScript
Apache License 2.0
zendeskgarden/react-components
feat(buttons): deprecate ButtonGroupContainer (#460)
1
feat
buttons
217,922
20.09.2019 09:09:33
-7,200
a9aa6ab0d462ea8ef711666fb4fdcc450a216216
fix(offline-list): fixed multiple issues with offline lists
[ { "change_type": "MODIFY", "diff": "@@ -10,12 +10,12 @@ import {\nListDetailsLoaded,\nListsActionTypes,\nListsForTeamsLoaded,\n- SharedListsLoaded,\nLoadListCompact,\nLoadListDetails,\nLoadTeamLists,\nMyListsLoaded,\nSetItemDone,\n+ SharedListsLoaded,\nTeamListsLoaded,\nUnloadListDetails,\nUpdateItem,\n@@ -...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(offline-list): fixed multiple issues with offline lists
1
fix
offline-list
699,191
20.09.2019 09:16:33
25,200
1599e1e89b2d64eb2a2898f0240199ac36428f5b
fix: token formatter tests
[ { "change_type": "MODIFY", "diff": "-const {serializer} = require('jest-emotion');\n+const emotion = require('emotion');\n+const {createSerializer} = require('jest-emotion');\nconst Enzyme = require('enzyme');\nconst Adapter = require('enzyme-adapter-react-16');\n-expect.addSnapshotSerializer(serializer);\n...
TypeScript
MIT License
twilio-labs/paste
fix: token formatter tests (#102)
1
fix
null
679,913
20.09.2019 09:56:43
-3,600
2aa31ce2718ea6c4f855b02b489413d0e84bb929
feat(webgl): migrate multipass() & types from webgl-shadertoy pkg, reorg
[ { "change_type": "ADD", "diff": "+import { IObjectOf } from \"@thi.ng/api\";\n+import { AttribPool } from \"@thi.ng/vector-pools\";\n+import { IFbo, IndexBufferSpec } from \"./buffers\";\n+import { InstancingSpec, ModelAttributeSpecs, ModelSpec } from \"./model\";\n+import {\n+ ShaderFn,\n+ ShaderState,\n+ ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(webgl): migrate multipass() & types from webgl-shadertoy pkg, reorg
1
feat
webgl