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,593
02.11.2021 14:36:47
-28,800
240b6801b8d66f57c5cd4ac689e12fe27ba772e6
chore: remove unnecessary downcast error
[ { "change_type": "MODIFY", "diff": "@@ -171,15 +171,6 @@ impl RPCError {\nRPCError::custom_with_error(code, reject)\n}\n- /// Downcasts a CKB error if it is created from `Reject`.\n- pub fn downcast_submit_transaction_reject(err: &CKBError) -> Option<&Reject> {\n- use ckb_error::ErrorKind::SubmitTransaction...
Rust
MIT License
nervosnetwork/ckb
chore: remove unnecessary downcast error
1
chore
null
679,913
02.11.2021 15:17:53
-3,600
e57ad7e8139512bf4146c4c70ef693b810eee24a
feat(api): add IGrid2D/3D interfaces
[ { "change_type": "MODIFY", "diff": "\"./get\": {\n\"import\": \"./get.js\"\n},\n+ \"./grid\": {\n+ \"import\": \"./grid.js\"\n+ },\n\"./hash\": {\n\"import\": \"./hash.js\"\n},\n", "new_path": "packages/api/package.json", "old_path": "packages/api/package.json" }, { "change_type": "ADD", ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(api): add IGrid2D/3D interfaces
1
feat
api
679,913
02.11.2021 15:18:50
-3,600
49cd772a328b7c71fb16ed3041e03832ebd1f884
feat(api): add asInt() coercion helper
[ { "change_type": "MODIFY", "diff": "@@ -207,6 +207,11 @@ export const asGLType = (type: GLType | Type): GLType => {\nreturn t !== undefined ? t : <GLType>type;\n};\n+/**\n+ * Coerces given numeric args to integer values.\n+ */\n+export const asInt = (...args: number[]) => args.map((x) => x | 0);\n+\n/**\n* ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(api): add asInt() coercion helper
1
feat
api
679,913
02.11.2021 15:21:56
-3,600
1b80de48c128daa5acbb28a7a060a8baaffc66cd
refactor(grid-iterators): replace/re-use asInt() helper
[ { "change_type": "MODIFY", "diff": "-import { asInt } from \"./utils.js\";\n+import { asInt } from \"@thi.ng/api/typedarray\";\n/**\n* Filtered version of {@link columns2d}, only including end points of\n", "new_path": "packages/grid-iterators/src/column-ends.ts", "old_path": "packages/grid-iterator...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(grid-iterators): replace/re-use asInt() helper
1
refactor
grid-iterators
342,861
02.11.2021 15:22:33
-3,600
9d2097976a8a222a5ff17ea456cd951b633ed5c7
test(Grid): update snapshots
[ { "change_type": "MODIFY", "diff": "exports[`Grid should match snapshot 1`] = `\n.c0 {\ndisplay: inline-grid;\n- display: -ms-inline-grid;\nmax-width: 1440px;\nwidth: 100%;\ngrid-template-columns: repeat(2,1fr);\ngrid-template-rows: repeat(2,minmax(30px,100px));\ngrid-column-gap: 10px;\ngrid-row-gap: 20px;\...
JavaScript
MIT License
kiwicom/orbit
test(Grid): update snapshots
1
test
Grid
679,913
02.11.2021 15:23:45
-3,600
dc065ed2f0e6ccc6531c59fe52d7d8842cbb9b70
refactor(grid-iterators): update clipped shape iters better pre-clipping for circle/line intern intersection/clipping helpers
[ { "change_type": "MODIFY", "diff": "\"./circle\": {\n\"import\": \"./circle.js\"\n},\n- \"./clipped\": {\n- \"import\": \"./clipped.js\"\n+ \"./clipping\": {\n+ \"import\": \"./clipping.js\"\n},\n\"./column-ends\": {\n\"import\": \"./column-ends.js\"\n", "new_path": "packages/grid-iterators/package.json...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(grid-iterators): update clipped shape iters - better pre-clipping for circle/line - intern intersection/clipping helpers
1
refactor
grid-iterators
679,913
02.11.2021 15:25:00
-3,600
dec44e09dfb87a7e05b506f20387a396a6432669
refactor(grid-iterators): update floodFill() predicate type update docs
[ { "change_type": "MODIFY", "diff": "-import type { Predicate } from \"@thi.ng/api\";\n+import type { Predicate2 } from \"@thi.ng/api\";\nimport { BitField, defBitField } from \"@thi.ng/bitfield/bitfield\";\n/**\n- * Yields an iterator of 2D coordinates which would flood fill the space in\n- * [0,0]..(width,...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(grid-iterators): update floodFill() predicate type - update docs
1
refactor
grid-iterators
679,913
02.11.2021 15:26:38
-3,600
585eb8d360f0c8603c5890dedf221af3afb5584f
feat(rasterize): import as new pkg
[ { "change_type": "ADD", "diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://www.apache.org/licenses/\n+\n+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n+\n+ 1. Definitions.\n+\n+ \"License\" shall mean the terms and conditions for use, reproduction,\n+ and distribution as defin...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(rasterize): import as new pkg
1
feat
rasterize
679,913
02.11.2021 15:39:05
-3,600
f231d3e9e89d9f6dbf223edd364d5be928d74f43
build(pixel): remove obsolete drawing fns, update deps drawing/filling fns migrated to thi.ng/rasterize
[ { "change_type": "MODIFY", "diff": "\"@thi.ng/checks\": \"^3.0.6\",\n\"@thi.ng/distance\": \"^2.0.6\",\n\"@thi.ng/errors\": \"^2.0.6\",\n- \"@thi.ng/grid-iterators\": \"^2.0.6\",\n\"@thi.ng/k-means\": \"^0.4.6\",\n\"@thi.ng/math\": \"^5.0.6\",\n- \"@thi.ng/porter-duff\": \"^2.0.6\",\n- \"@thi.ng/transducers...
TypeScript
Apache License 2.0
thi-ng/umbrella
build(pixel): remove obsolete drawing fns, update deps - drawing/filling fns migrated to thi.ng/rasterize
1
build
pixel
791,704
02.11.2021 15:39:17
25,200
8a29854072202807ba54276beb9cdd9f244007b5
misc(build): call close method on rollup builds
[ { "change_type": "MODIFY", "diff": "@@ -196,6 +196,7 @@ async function build(entryPath, distPath, opts = {minify: true}) {\nformat: 'iife',\nsourcemap: DEBUG,\n});\n+ await bundle.close();\n}\n/**\n", "new_path": "build/build-bundle.js", "old_path": "build/build-bundle.js" }, { "change_type"...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(build): call close method on rollup builds (#13307)
1
misc
build
317,646
02.11.2021 15:39:51
-7,200
aa94042bd55d65c42e877ddad99dcf5ce1eed417
refactor: rename prompt writer
[ { "change_type": "MODIFY", "diff": "@@ -34,7 +34,7 @@ type Block struct {\nNewline bool `config:\"newline\"`\nenv environmentInfo\n- writer colorWriter\n+ writer promptWriter\nansi *ansiUtils\nactiveSegment *Segment\npreviousActiveSegment *Segment\n@@ -42,7 +42,7 @@ type Block struct {\nactiveForeground str...
Go
MIT License
jandedobbeleer/oh-my-posh
refactor: rename prompt writer
1
refactor
null
679,913
02.11.2021 15:40:48
-3,600
51e3d71b32b9ed3ac7172505caafab9326b6df1e
refactor(webgl): minor update texture gens rename internals due to changes in thi.ng/pixel (2fe8d4f09)
[ { "change_type": "MODIFY", "diff": "@@ -20,18 +20,18 @@ export const checkerboard = (opts: Partial<CheckerboardOpts>) => {\nconst size = opts.size!;\nconst col1 = ARGB8888.toABGR(opts.col1!);\nconst col2 = ARGB8888.toABGR(opts.col2!);\n- const { canvas, ctx, img, pixels } = canvasPixels(size);\n+ const { ca...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(webgl): minor update texture gens - rename internals due to changes in thi.ng/pixel (2fe8d4f09)
1
refactor
webgl
317,646
02.11.2021 15:53:46
-7,200
8b20d8fd8182d1161162be2feeb90a3d96e62fa7
feat: plain text prompt resolves
[ { "change_type": "MODIFY", "diff": "@@ -9,9 +9,10 @@ import (\ntype engine struct {\nconfig *Config\nenv environmentInfo\n- colorWriter promptWriter\n+ writer promptWriter\nansi *ansiUtils\nconsoleTitle *consoleTitle\n+ plain bool\nconsole strings.Builder\nrprompt string\n@@ -21,6 +22,13 @@ func (e *engine)...
Go
MIT License
jandedobbeleer/oh-my-posh
feat: plain text prompt resolves #1142
1
feat
null
866,391
02.11.2021 15:54:01
-3,600
48645b3623efd90ef0452e050601bc1374c47ce4
chore: update checkout and setup-node actions
[ { "change_type": "MODIFY", "diff": "@@ -9,9 +9,9 @@ jobs:\nmatrix:\nnode-version: [12.x]\nsteps:\n- - uses: actions/checkout@v1\n+ - uses: actions/checkout@v2\n- name: Use Node.js\n- uses: actions/setup-node@v1\n+ uses: actions/setup-node@v2\nwith:\nnode-version: ${{ matrix.node-version }}\n- name: Install ...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore: update checkout and setup-node actions (#729)
1
chore
null
679,913
02.11.2021 15:59:03
-3,600
9e121721c2d2b575e38ca21a7824f35438909122
feat(quad-edge): restructure Edge & ID handling BREAKING CHANGE: require explict ID args, add defEdge() replace static Edge.create() with defEdge() remove automatic ID generation and require explicit ID args for: - defEdge() - Edge.connect()
[ { "change_type": "MODIFY", "diff": "\"pub\": \"yarn build && yarn publish --access public\",\n\"test\": \"testament test\"\n},\n+ \"dependencies\": {\n+ \"@thi.ng/errors\": \"^2.0.6\"\n+ },\n\"devDependencies\": {\n\"@thi.ng/testament\": \"^0.1.6\"\n},\n", "new_path": "packages/quad-edge/package.json", ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(quad-edge): restructure Edge & ID handling BREAKING CHANGE: require explict ID args, add defEdge() - replace static Edge.create() with defEdge() - remove automatic ID generation and require explicit ID args for: - defEdge() - Edge.connect()
1
feat
quad-edge
679,913
02.11.2021 16:02:37
-3,600
e7b3c4cd1a4e92163db75191637eec852b9fabc6
feat(geom-voronoi): update visitor impls, edge ID handling add internal edge ID generator update `Visitor` type update traverse impls use thi.ng/bitfield for visited edges/verts (MUCH smaller memory req.)
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"^8.0.6\",\n+ \"@thi.ng/bitfield\": \"^2.0.6\",\n\"@thi.ng/checks\": \"^3.0.6\",\n\"@thi.ng/geom-clip-line\": \"^2.0.6\",\n\"@thi.ng/geom-clip-poly\": \"^2.0.6\",\n", "new_path": "packages/geom-voronoi/package.json", "old...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(geom-voronoi): update visitor impls, edge ID handling - add internal edge ID generator - update `Visitor` type - update traverse impls - use thi.ng/bitfield for visited edges/verts (MUCH smaller memory req.)
1
feat
geom-voronoi
791,474
02.11.2021 16:05:05
25,200
cbd5c8c0ad33142a2031762037f594017c4fdade
test(datastore): add scenarios around flattening first and last struct fields
[ { "change_type": "MODIFY", "diff": "@@ -395,6 +395,16 @@ type SliceOfSlices struct {\n} `datastore:\",flatten\"`\n}\n+type LastFlattened struct {\n+ Bs []struct{ IDs []string }\n+ A struct{ T time.Time } `datastore:\",flatten\"`\n+}\n+\n+type FirstFlattened struct {\n+ A struct{ T time.Time } `datastore:\",...
Go
Apache License 2.0
googleapis/google-cloud-go
test(datastore): add scenarios around flattening first and last struct fields (#5064)
1
test
datastore
791,760
02.11.2021 16:11:13
25,200
05e6713fcf7594a98d0be3c21e0bbb834f9244a9
misc(proto): add throttling and throttling_method
[ { "change_type": "MODIFY", "diff": "@@ -29,10 +29,22 @@ function processForProto(lhr) {\n// 'ignore unknown fields' in the language of conversion.\nif (reportJson.configSettings) {\n// The settings that are in both proto and LHR\n- const {formFactor, locale, onlyCategories, channel} = reportJson.configSetti...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(proto): add throttling and throttling_method (#13309)
1
misc
proto
317,763
02.11.2021 16:30:35
-28,800
545213022fc690dcdf56bf43ec3e84cb84093a5e
theme: add xtoys
[ { "change_type": "ADD", "diff": "+{\n+ \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json\",\n+ \"blocks\": [\n+ {\n+ \"type\": \"prompt\",\n+ \"alignment\": \"left\",\n+ \"segments\": [\n+ {\n+ \"type\": \"root\",\n+ \"style\": \"plain\",\n+ \"foreground\": \...
Go
MIT License
jandedobbeleer/oh-my-posh
theme: add xtoys
1
theme
null
73,313
02.11.2021 16:33:52
0
5f92b88031eafa6f8e8d7df41fa971d6ccda4485
chore: using queue action in the 'Synchronize that PR to upstream and merge it (no-squash)' rule
[ { "change_type": "MODIFY", "diff": "@@ -127,10 +127,9 @@ pull_request_rules:\ndismiss_reviews:\napproved: true\nchanges_requested: false\n- merge:\n- strict: smart+fasttrack\n+ queue:\n+ name: default\nmethod: merge\n- strict_method: merge\ncommit_message: title+body\ncomment:\nmessage: Merging (no-squash)....
TypeScript
Apache License 2.0
aws/jsii
chore: using queue action in the 'Synchronize that PR to upstream and merge it (no-squash)' rule
1
chore
null
756,051
02.11.2021 16:41:12
18,000
472912e507a4d83b41734b9110e3127b1bd40755
feat: tweak fictional BLD price to suggest early phase
[ { "change_type": "MODIFY", "diff": "@@ -71,7 +71,7 @@ const BLD_ISSUER_ENTRY = [\n'BLD',\n{\nissuerArgs: [undefined, { decimalPlaces: 6 }],\n- defaultPurses: [['Agoric staking token', scaleMicro(62)]],\n+ defaultPurses: [['Agoric staking token', scaleMicro(5000)]],\nbankDenom: 'ubld',\nbankPurse: 'Agoric st...
JavaScript
Apache License 2.0
agoric/agoric-sdk
feat: tweak fictional BLD price to suggest early phase
1
feat
null
737,359
02.11.2021 17:16:26
0
482db029b66af4fa440eb9076e8564b633c9708d
chore(release): publish 10.0.0-alpha.18
[ { "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+# [10.0.0-alpha.18](https://github.com/wopian/kitsu/compare/v10.0.0-alpha.17...v10.0.0-alpha.18) (2021-11-02)\n+\n+**...
JavaScript
MIT License
wopian/kitsu
chore(release): publish 10.0.0-alpha.18
1
chore
release
679,913
02.11.2021 17:30:27
-3,600
69b30283f572122aba2a3d32745db68c2fcb03b5
refactor(pixel-dither): minor update
[ { "change_type": "MODIFY", "diff": "@@ -30,23 +30,23 @@ export const ditherWith = (\nconst chan = format.channels[cid];\nconst $thresh = chan.num * threshold;\nconst $max = chan.mask0;\n- const pixels = new Int32Array(cimg.pixels);\n+ const data = new Int32Array(cimg.data);\nfor (let y = 0; y < height; y++)...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(pixel-dither): minor update
1
refactor
pixel-dither
679,913
02.11.2021 17:30:57
-3,600
b8f171405e87c8aee6a7884d1bf38a01be486234
refactor(pixel-io-netpbm): minor update
[ { "change_type": "MODIFY", "diff": "@@ -121,11 +121,11 @@ export const readPBM = (\nheight: number\n) => {\nconst buf = packedBuffer(width, height, GRAY8);\n- const pixels = buf.pixels;\n+ const data = buf.data;\nconst w1 = width - 1;\nfor (let y = 0, j = 0; y < height; y++) {\nfor (let x = 0; x < width; x+...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(pixel-io-netpbm): minor update
1
refactor
pixel-io-netpbm
679,913
02.11.2021 17:34:52
-3,600
6e51c11bba65829ccedd6a6351565d4c8541f7dd
feat(text-canvas): add IGrid2D impl, minor updates
[ { "change_type": "MODIFY", "diff": "-import type { Fn0, NumOrString } from \"@thi.ng/api\";\n+import type { Fn0, IGrid2D, NumOrString } from \"@thi.ng/api\";\nimport { peek } from \"@thi.ng/arrays/peek\";\nimport { clamp } from \"@thi.ng/math/interval\";\nimport { NONE } from \"@thi.ng/text-format/api\";\ni...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(text-canvas): add IGrid2D impl, minor updates
1
feat
text-canvas
104,927
02.11.2021 17:37:35
0
d165780297c6b23f1f1e5509367bb05cd684df25
chore: try manual release
[ { "change_type": "MODIFY", "diff": "@@ -2,21 +2,18 @@ name: Release\non:\nworkflow_dispatch:\n- push:\n- tags:\n- # Push events to matching \\@carbon/vue\\@([0-9]\\.*){3} i.e. @carbon/vue@1.0.0 @carbon/vue@2.30.1\n- - '\\@carbon/vue\\@([0-9]\\.*){3}'\n+# schedule:\n+# - cron: '0 4 * * WED'\njobs:\n- build:\...
JavaScript
Apache License 2.0
carbon-design-system/carbon-components-vue
chore: try manual release
1
chore
null
679,913
02.11.2021 17:38:22
-3,600
46f7aa58d8e00ed0daaf7464fa149d566e3a9a1b
docs: update readme (pkg list)
[ { "change_type": "MODIFY", "diff": "@@ -147,6 +147,7 @@ feature or `develop` branches)\n| [`@thi.ng/logger`](./packages/logger) | [![version](https://img.shields.io/npm/v/@thi.ng/logger.svg)](https://www.npmjs.com/package/@thi.ng/logger) | [changelog](./packages/logger/CHANGELOG.md) | Basis infrastructure f...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs: update readme (pkg list)
1
docs
null
667,636
02.11.2021 18:12:59
-28,800
65554dc8170eabd54276957249d03fc6c3cc1514
chore(homepage): change script executing sequence
[ { "change_type": "MODIFY", "diff": "}\n</script>\n<script src=\"//static.res.qq.com/nav/hippydoc/docsify.min.js\"></script>\n+ <script src=\"//static.res.qq.com/nav/hippydoc/prism-jsx.min.js\" defer></script>\n+ <script src=\"//static.res.qq.com/nav/hippydoc/prism-json.min.js\" defer></script>\n+ <script sr...
C++
Apache License 2.0
tencent/hippy
chore(homepage): change script executing sequence
1
chore
homepage
217,922
02.11.2021 18:27:56
-3,600
e8d6956288b44e1e0abbb2d886d08d6b93445b9d
feat(autofill): new crafting/gathering detection system for less DB stress
[ { "change_type": "MODIFY", "diff": "import { Injectable } from '@angular/core';\nimport { IpcService } from './ipc.service';\nimport { UniversalisService } from '../api/universalis.service';\n-import { distinctUntilChanged, filter, map, shareReplay, startWith, switchMap, tap, withLatestFrom } from 'rxjs/ope...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(autofill): new crafting/gathering detection system for less DB stress
1
feat
autofill
104,939
02.11.2021 18:30:51
-3,600
f4aab3a7235f159c99d21a0445358402f1c212b2
fix(cv-tabs): Fix error on parentNode on doScrollIntoView.
[ { "change_type": "MODIFY", "diff": "@@ -196,7 +196,7 @@ export default {\n},\ndoScrollIntoView(index) {\nconst tab = this.$refs.link[index];\n- const scrollContainer = tab.parentNode ? tab.parentNode.parentNode : null;\n+ const scrollContainer = tab && tab.parentNode ? tab.parentNode.parentNode : null;\nlet...
JavaScript
Apache License 2.0
carbon-design-system/carbon-components-vue
fix(cv-tabs): Fix error on parentNode on doScrollIntoView. (#1269) Co-authored-by: Lee Chase <leechase@live.com>
1
fix
cv-tabs
217,922
02.11.2021 18:33:46
-3,600
91fe793f50f1ded6789bd5dd46dbb6b594ca9134
chore: list details panel CD fix
[ { "change_type": "MODIFY", "diff": "-import { Component, Input, OnChanges, OnInit, SimpleChanges } from '@angular/core';\n+import { ChangeDetectorRef, Component, Input, OnChanges, OnInit, SimpleChanges } from '@angular/core';\nimport { LayoutRowDisplay } from '../../../core/layout/layout-row-display';\nimpo...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: list details panel CD fix
1
chore
null
419,559
02.11.2021 18:37:50
-39,600
fbc20eafe08ac79720e24b20f9f1fd65d43407d9
chore: export EntityClass from root
[ { "change_type": "MODIFY", "diff": "/* istanbul ignore file */\nexport {\nConstructor, Dictionary, PrimaryKeyType, PrimaryKeyProp, Primary, IPrimaryKey, ObjectQuery, FilterQuery, IWrappedEntity, EntityName, EntityData, Highlighter,\n- AnyEntity, EntityProperty, EntityMetadata, QBFilterQuery, PopulateOptions...
TypeScript
MIT License
mikro-orm/mikro-orm
chore: export EntityClass from root (#2330)
1
chore
null
217,922
02.11.2021 18:42:51
-3,600
018f66c46f69658786ab507fc2e75b6ccc704d9d
chore: let's lower autofill crafting debounce to 8s
[ { "change_type": "MODIFY", "diff": "@@ -92,7 +92,7 @@ export class PacketCaptureTrackerService {\nmap(([patch]) => patch)\n);\n- const debouncedPatches$ = patches$.pipe(debounceTime(10000));\n+ const debouncedPatches$ = patches$.pipe(debounceTime(8000));\nconst statusIsNull$ = combineLatest([patches$, event...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: let's lower autofill crafting debounce to 8s
1
chore
null
217,922
02.11.2021 18:50:27
-3,600
821f56aeb64e00c6ff960a2762134924244e874d
chore: fix translation not loaded on the tutorial popup
[ { "change_type": "MODIFY", "diff": "import { Injectable } from '@angular/core';\nimport { TutorialStepEntry } from './tutorial-step-entry';\nimport { Subject } from 'rxjs';\n-import { debounceTime, skipUntil } from 'rxjs/operators';\n+import { debounceTime, first, skipUntil } from 'rxjs/operators';\nimport ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix translation not loaded on the tutorial popup
1
chore
null
217,922
02.11.2021 18:56:37
-3,600
13db76e019a47fefa3310492ef6ae600539589ee
fix(db): fixed fishing pages sometimes not loading properly
[ { "change_type": "MODIFY", "diff": "@@ -71,7 +71,8 @@ export class AuthFacade {\n);\n}),\nswitchMap(([user, token]: [any, any]) => {\n- if (token.claims['https://hasura.io/jwt/claims'] === undefined) {\n+ if (token.claims['https://hasura.io/jwt/claims'] === undefined\n+ || token.claims['https://hasura.io/jw...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): fixed fishing pages sometimes not loading properly
1
fix
db
217,922
02.11.2021 19:31:22
-3,600
b12170793d1d8cb0c90374ed34b7fd1cf39d469e
chore: various beta bug fixes
[ { "change_type": "MODIFY", "diff": "@@ -33,7 +33,7 @@ export class LazyDataEffects {\n}),\nmergeMap((registry) => {\nreturn merge(...Object.entries<number[]>(registry).map(([entity, ids]: [LazyDataKey, number[]]) => {\n- if (this.platformService.isDesktop() || !environment.production) {\n+ if (this.platform...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: various beta bug fixes
1
chore
null
419,559
02.11.2021 19:51:08
-39,600
a198420fbee8ec136fb95e77ca2749e4ac4fecbe
refactor: fix type of `Collection.init`
[ { "change_type": "MODIFY", "diff": "@@ -35,6 +35,7 @@ List of such methods:\n- `repo.findAndCount()`\n- `repo.findAll()`\n- `repo.merge()`\n+- `collection.init()`\nThis also applies to the methods on `IDatabaseDriver` interface.\n", "new_path": "docs/docs/upgrading-v4-to-v5.md", "old_path": "docs/do...
TypeScript
MIT License
mikro-orm/mikro-orm
refactor: fix type of `Collection.init` (#2328) Co-authored-by: Evan Trimboli <evan@zincora.com>
1
refactor
null
866,391
02.11.2021 19:54:56
-3,600
8172c3c1928007c96778f2f1eb2b34e256f5082d
chore: disable lint warnings
[ { "change_type": "MODIFY", "diff": "/**\n* @license\n*\n- * Copyright IBM Corp. 2019\n+ * Copyright IBM Corp. 2019, 2021\n*\n* This source code is licensed under the Apache-2.0 license found in the\n* LICENSE file in the root directory of this source tree.\n@@ -19,4 +19,5 @@ if (environment.production) {\np...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore: disable lint warnings (#735)
1
chore
null
679,913
02.11.2021 20:22:34
-3,600
adff976f8b370108fbc29796a39f243513bc5504
fix(grid-iterators): fix imports, readme
[ { "change_type": "MODIFY", "diff": "@@ -143,11 +143,12 @@ in\n### Flood filling\nThe `floodFill()` iterator can be used to iterate arbitrary 2D grids using an\n-user-provided predicate function. It yields coordinates which would flood fill\n-the space in `[0,0]..(width,height)` range, starting at a given po...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(grid-iterators): fix imports, readme
1
fix
grid-iterators
679,913
02.11.2021 20:23:10
-3,600
3c47b78e2a0ceebd869ef9089ec48e592ead34a2
docs(rasterize): update readme, imports
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,10 @@ This project is part of the\n[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo.\n- [About](#about)\n+ - [Circle](#circle)\n+ - [Line](#line)\n+ - [Rect](#rect)\n+ - [Flood fill](#flood-fill)\n- [Status](#status)\n- [Installation](#install...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(rasterize): update readme, imports
1
docs
rasterize
160,176
02.11.2021 20:27:18
-28,800
21b245ef858761babd42a5de558a77a39ff1e6d6
feat(core): add anchor properties
[ { "change_type": "MODIFY", "diff": "this.height = height;\nconst properties = this.properties;\nthis.anchorsOffset = [\n- [width / 2, 0],\n- [0, height / 2],\n- [-width / 2, 0],\n- [0, -height / 2],\n+ {\n+ x: width / 2,\n+ y: 0,\n+ isSourceAnchor: false,\n+ isTargetAnchor: true,\n+ }\n]\n+ // this.anchorsO...
TypeScript
Apache License 2.0
didi/logicflow
feat(core): add anchor properties
1
feat
core
428,404
02.11.2021 21:00:41
-3,600
c3149e17f301e7333fb5504b58b01e74f324c8e3
fix(NODE-3726): add optional option overloads of Db's createCollection function
[ { "change_type": "MODIFY", "diff": "@@ -226,18 +226,17 @@ export class Db {\n* @param options - Optional settings for the command\n* @param callback - An optional callback, a Promise will be returned if none is provided\n*/\n- createCollection<TSchema extends Document = Document>(name: string): Promise<Coll...
TypeScript
Apache License 2.0
mongodb/node-mongodb-native
fix(NODE-3726): add optional option overloads of Db's createCollection function (#3019)
1
fix
NODE-3726
428,404
02.11.2021 21:11:17
-3,600
216d1949301438b74ed71da8af9bb766bcbdbf92
fix(NODE-3727): add overloads for BulkOperationBase's execute function
[ { "change_type": "MODIFY", "diff": "@@ -1216,9 +1216,15 @@ export abstract class BulkOperationBase {\nreturn batches;\n}\n- /** An internal helper method. Do not invoke directly. Will be going away in the future */\n+ execute(options?: BulkWriteOptions): Promise<BulkWriteResult>;\n+ execute(callback: Callba...
TypeScript
Apache License 2.0
mongodb/node-mongodb-native
fix(NODE-3727): add overloads for BulkOperationBase's execute function (#3018) Co-authored-by: Daria Pardue <daria.pardue@mongodb.com>
1
fix
NODE-3727
269,464
02.11.2021 21:21:46
10,800
f68ddf22611c06ea486cf32149415fbfe2825bae
chore(ci): auto-update docs
[ { "change_type": "ADD", "diff": "+name: generate\n+\n+on:\n+ push:\n+ branches:\n+ - 'master'\n+ paths:\n+ - '.github/workflows/generate.yml'\n+ - CONTRIBUTING.md\n+ - USERS.md\n+\n+jobs:\n+ docs:\n+ runs-on: ubuntu-latest\n+ steps:\n+ - uses: actions/checkout@v2\n+ - uses: actions/setup-go@v2\n+ with:\n+ g...
Go
MIT License
goreleaser/goreleaser
chore(ci): auto-update docs
1
chore
ci
269,464
02.11.2021 21:31:53
10,800
d7c79d08277e194f064b152b8cf90c8265462f44
chore: use PAT
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,8 @@ jobs:\nruns-on: ubuntu-latest\nsteps:\n- uses: actions/checkout@v2\n+ with:\n+ token: ${{ secrets.GH_PAT }}\n- uses: actions/setup-go@v2\nwith:\ngo-version: 1.17\n", "new_path": ".github/workflows/generate.yml", "old_path": ".github/workflows/gen...
Go
MIT License
goreleaser/goreleaser
chore: use PAT
1
chore
null
217,237
02.11.2021 21:35:43
-10,800
215b7db29b74134d9f5864a78a0db0c6344f148a
hotfix(doc-feedback): fix ga-event format
[ { "change_type": "MODIFY", "diff": "@@ -19,16 +19,26 @@ const sendFeedback = (value) => {\nreturn;\n}\n- const eventData = {\n+ const eventData1 = {\nhitType: \"event\",\n- eventCategory: \"Feedback\",\n- eventAction: \"EXP::Docs:Helpful\",\n+ eventCategory: \"Feedback1\",\n+ eventAction: \"EXP:Docs:Helpful...
JavaScript
MIT License
feature-sliced/documentation
hotfix(doc-feedback): fix ga-event format
1
hotfix
doc-feedback
104,828
02.11.2021 22:03:54
-3,600
b9923027fa0d97b0461a9082c2368939b57c5b64
feat(list): pr feedback fixes
[ { "change_type": "MODIFY", "diff": "@@ -821,7 +821,7 @@ describe('HierarchyList', () => {\nexpect(\nwithin(screen.getByTestId('list')).getByText('Item 1').closest(`.${iotPrefix}--list-item`)\n.firstChild\n- ).toHaveClass('iot--list-item--lock');\n+ ).toHaveClass(`${iotPrefix}--list-item--lock`);\nexpect(\nw...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(list): pr feedback fixes #3016
1
feat
list
217,237
02.11.2021 22:13:38
-10,800
baa1951bdca092256708effcda812a78621a87cd
hotfix(doc-feedback): fullfill ga and remove exp-flag
[ { "change_type": "MODIFY", "diff": "@@ -10,35 +10,31 @@ import styles from \"./styles.module.css\";\n* @see https://developers.google.com/analytics/devguides/collection/analyticsjs/events\n*/\nconst sendFeedback = (value) => {\n- if (typeof window === undefined) {\n- console.debug(\"[EXP_ONLY] Failure feedb...
JavaScript
MIT License
feature-sliced/documentation
hotfix(doc-feedback): fullfill ga and remove exp-flag
1
hotfix
doc-feedback
756,051
02.11.2021 22:47:14
18,000
1d2455676ff0499eaa442c1fc9cd53fb923ef66e
fix(vats): unstaked BLD should not be a vault collateral type
[ { "change_type": "MODIFY", "diff": "@@ -74,14 +74,6 @@ const BLD_ISSUER_ENTRY = [\ndefaultPurses: [['Agoric staking token', scaleMicro(5000)]],\nbankDenom: 'ubld',\nbankPurse: 'Agoric staking token',\n- collateralConfig: {\n- keyword: 'BLD',\n- collateralValue: scaleMicro(20_000_000n),\n- initialMarginPerce...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(vats): unstaked BLD should not be a vault collateral type
1
fix
vats
699,242
02.11.2021 23:23:37
-7,200
459bdc0d2a2991d06bf2a803edcb87e7dec39d4b
fix(plopfile): typo in 'component-type' message
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ module.exports = function (plop) {\n{\ntype: 'list',\nname: 'component-type',\n- message: 'Whay type of component package?',\n+ message: 'What type of component package?',\nchoices: ['components', 'layout', 'primitives'],\n},\n{\n", "new_path": "plop...
TypeScript
MIT License
twilio-labs/paste
fix(plopfile): typo in 'component-type' message (#1927) Co-authored-by: Alexandru Bereghici <abereghici@tripadvisor.com> Co-authored-by: Shadi <TheSisb@users.noreply.github.com>
1
fix
plopfile
103,660
03.11.2021 00:41:58
-32,400
5faa1ec09e320c01977da8e4e5d522c6e4d92b07
fix: unified behavior when focusing on CheckBox.Item with screen reader
[ { "change_type": "MODIFY", "diff": "@@ -111,8 +111,20 @@ const CheckboxItem = ({\n}\nreturn (\n- <TouchableRipple onPress={onPress} testID={testID}>\n- <View style={[styles.container, style]} pointerEvents=\"none\">\n+ <TouchableRipple\n+ accessibilityLabel={label}\n+ accessibilityRole=\"checkbox\"\n+ acces...
TypeScript
MIT License
callstack/react-native-paper
fix: unified behavior when focusing on CheckBox.Item with screen reader (#2921)
1
fix
null
71,366
03.11.2021 05:18:35
-32,400
a7c869e6d57932389df572cd7f104a4c9ea8f8a5
feat(iot-actions): Add the action to put CloudWatch Logs I'm trying to implement aws-iot L2 Constructs. This PR is one of steps after following PR: *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "MODIFY", "diff": "@@ -48,3 +48,21 @@ new iot.TopicRule(this, 'TopicRule', {\nactions: [new actions.LambdaFunctionAction(func)],\n});\n```\n+\n+## Put logs to CloudWatch Logs\n+\n+The code snippet below creates an AWS IoT Rule that put logs to CloudWatch Logs\n+when it is triggered.\n+\n+``...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(iot-actions): Add the action to put CloudWatch Logs (#17228) I'm trying to implement aws-iot L2 Constructs. This PR is one of steps after following PR: - https://github.com/aws/aws-cdk/pull/16681#issuecomment-942233029 ---- *By submitting this pull request, I confirm that my contribution is made under ...
1
feat
iot-actions
317,842
03.11.2021 07:33:15
-3,600
67ce40e7d777f5c24df70805a845a03cc003c46a
feat(owm): add template support
[ { "change_type": "MODIFY", "diff": "@@ -30,7 +30,8 @@ The free tier for *Current weather and forecasts collection* is sufficient.\n\"units\": \"metric\",\n\"enable_hyperlink\" : false,\n\"http_timeout\": 20,\n- \"cache_timeout\": 10\n+ \"cache_timeout\": 10,\n+ \"template\": \"{{.Weather}} ({{.Temperature}}...
Go
MIT License
jandedobbeleer/oh-my-posh
feat(owm): add template support
1
feat
owm
317,842
03.11.2021 08:19:43
-3,600
4a088a5a1c5019f6e18ca807776b6ca7b958ecc0
chore: go tools settings updated golanci-lint update to analyze package organize import on save
[ { "change_type": "MODIFY", "diff": "{\n\"go.lintTool\": \"golangci-lint\",\n- \"go.lintOnSave\": \"file\",\n+ \"go.useLanguageServer\": true,\n+ \"go.languageServerExperimentalFeatures\": {\n+ \"diagnostics\": false,\n+ },\n+ \"go.lintFlags\": [\"--fast\"],\n\"go.testOnSave\": true,\n\"[go]\": {\n- \"editor...
Go
MIT License
jandedobbeleer/oh-my-posh
chore: go tools settings updated golanci-lint update to analyze package organize import on save
1
chore
null
699,228
03.11.2021 08:43:20
21,600
5806c6536c3bf95abd8492cd8275e2711af8400a
fix(website): fix typo on illustrations page
[ { "change_type": "MODIFY", "diff": "---\ntitle: Illustrations\n-description: Guidelines and repository of illustrations that can be used in Twilio UIs\n+description: Guidelines and repository of illustrations that can be used in Twilio UIs.\nslug: /illustrations/\n---\n@@ -44,7 +44,7 @@ export const pageQue...
TypeScript
MIT License
twilio-labs/paste
fix(website): fix typo on illustrations page (#1995) Co-authored-by: Kyle Gilbreath <kyle.gilbreath@sendgrid.com> Co-authored-by: Shadi <TheSisb@users.noreply.github.com>
1
fix
website
306,320
03.11.2021 08:45:38
0
2feb76aac6dc0f452e42978a2e4980351631e7bd
feat(ci): make update the default when posting to GitHub
[ { "change_type": "MODIFY", "diff": "@@ -30,6 +30,16 @@ process_args () {\nelif [ -n \"$percentage_threshold\" ]; then\npost_condition=\"{\\\"percentage_threshold\\\": $percentage_threshold}\"\necho \"Warning: percentage_threshold is deprecated and will be removed in v0.9.0, please use post_condition='{\\\"p...
Go
Apache License 2.0
infracost/infracost
feat(ci): make update the default when posting to GitHub (#1104)
1
feat
ci
942,612
03.11.2021 08:46:27
25,200
a9a99c6b1ca0b3fe06aca7c4f8b879d775b1afa5
fix(tabs): Allow consumers to style the selected tab Fixes: Update the tab Emotion styled to use the `[aria-selected=true]` CSS selector instead of a selector based on internal state. This will allow for style overrides. [category:Components]
[ { "change_type": "MODIFY", "diff": "@@ -63,8 +63,7 @@ export interface TabProps {\ntabIndex?: number;\n}\n-const StyledButton = styled('button')<{isSelected: boolean} & StyledType>(\n- {\n+const StyledButton = styled('button')<{isSelected: boolean} & StyledType>({\n...type.levels.subtext.large,\nfontWeight:...
TypeScript
Apache License 2.0
workday/canvas-kit
fix(tabs): Allow consumers to style the selected tab (#1327) Fixes: #1326 Update the tab Emotion styled to use the `[aria-selected=true]` CSS selector instead of a selector based on internal state. This will allow for style overrides. [category:Components]
1
fix
tabs
866,394
03.11.2021 10:05:57
14,400
b351f4fe7ab58ea848fdfc429d9867b51184b82b
fix(browserstack): add `cypress-wait-until` for browserstack automate ### Related Ticket(s) No related issue ### Description Forgot to add `cypress-wail-until` to the `browserstack.json` config file to load that dependency for the automate runs. This should fix the issues there. ### Changelog **Changed** `browserstack....
[ { "change_type": "MODIFY", "diff": "\"parallels\": \"5\",\n\"npm_dependencies\": {\n\"@percy/cypress\": \"^3.1.0\",\n- \"@percy/dom\": \"^1.0.0-beta.55\"\n+ \"@percy/dom\": \"^1.0.0-beta.55\",\n+ \"cypress-wait-until\": \"^1.7.2\"\n},\n\"package_config_options\": {},\n\"headless\": true\n", "new_path": ...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(browserstack): add `cypress-wait-until` for browserstack automate (#7586) ### Related Ticket(s) No related issue ### Description Forgot to add `cypress-wail-until` to the `browserstack.json` config file to load that dependency for the automate runs. This should fix the issues there. ### Changelog **...
1
fix
browserstack
141,508
03.11.2021 10:46:44
-39,600
9d9462a29d80b2147f2e119f8f05b14aa9a299b7
fix: Apply aria-label to link version of IconButton This was working fine when the IconButton was not a link (didn't have an href), so this is just adding the same functionality to that version (+ the custom component version as well).
[ { "change_type": "ADD", "diff": "+import React from \"react\"\n+import { render, screen } from \"@testing-library/react\"\n+import { CustomButtonProps, IconButton } from \"../..\"\n+\n+it(\"renders an accessible label when it's a link\", () => {\n+ render(<IconButton href=\"#\" label=\"Accessible label on t...
TypeScript
MIT License
cultureamp/kaizen-design-system
fix: Apply aria-label to link version of IconButton (#2176) This was working fine when the IconButton was not a link (didn't have an href), so this is just adding the same functionality to that version (+ the custom component version as well).
1
fix
null
71,382
03.11.2021 11:05:45
14,400
e4616010c1915206758be3bf4cd6da9f14d2101a
feat(eks): expose FargateCluster's defaultProfile Expose FargateCluster's defaultProfile. Fixes *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "MODIFY", "diff": "@@ -342,6 +342,8 @@ const cluster = new eks.FargateCluster(this, 'MyCluster', {\n});\n```\n+`FargateCluster` will create a default `FargateProfile` which can be accessed via the cluster's `defaultProfile` property. The created profile can also be customized by passing opt...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(eks): expose FargateCluster's defaultProfile (#17130) Expose FargateCluster's defaultProfile. Fixes #16149 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
feat
eks
749,536
03.11.2021 11:09:15
25,200
06118a14b6a9fd7c95a7f368359b5d5f57019376
fix(colorpickers): retain previous indices for uncontrolled color swatch
[ { "change_type": "MODIFY", "diff": "{\n\"index.cjs.js\": {\n- \"bundled\": 66695,\n- \"minified\": 42842,\n- \"gzipped\": 9906\n+ \"bundled\": 67428,\n+ \"minified\": 43005,\n+ \"gzipped\": 9964\n},\n\"index.esm.js\": {\n- \"bundled\": 62497,\n- \"minified\": 39296,\n- \"gzipped\": 9634,\n+ \"bundled\": 632...
TypeScript
Apache License 2.0
zendeskgarden/react-components
fix(colorpickers): retain previous indices for uncontrolled color swatch (#1230)
1
fix
colorpickers
342,861
03.11.2021 11:17:36
-3,600
149a35ec65fd652a811b644f5a6f5a0a32b9be2a
fix: missing storybook provider
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,8 @@ import * as React from \"react\";\nimport jsxToString from \"react-element-to-jsx-string\";\nimport { Code } from \"@storybook/addon-info/dist/components/markdown\";\n+import defaultTheme from \"../src/defaultTheme\";\n+import ThemeProvider from \"../src/T...
JavaScript
MIT License
kiwicom/orbit
fix: missing storybook provider (#3173)
1
fix
null
688,423
03.11.2021 11:30:41
-7,200
72fcf5db09727fd3bd25f31440d437e060dcb667
feat(prompt modal): add data-testid into PromptModal
[ { "change_type": "MODIFY", "diff": "@@ -42,6 +42,12 @@ export interface Props extends Omit<ModalProps, 'children' | 'onSubmit'> {\n/** Callback on Cancel onClick event */\nonCancel?: () => void\nonClose?: () => void\n+ testIds?: {\n+ title?: string\n+ message?: string\n+ closeButton?: string\n+ submitButton...
TypeScript
MIT License
toptal/picasso
feat(prompt modal): [FX-2217] add data-testid into PromptModal (#2205)
1
feat
prompt modal
617,459
03.11.2021 11:31:30
-3,600
609129c723d9d90db1bb75833339c23a8b051485
ci(e2e): split into two files
[ { "change_type": "ADD", "diff": "+name: End-to-end testing\n+\n+on:\n+ workflow_run:\n+ workflows: [\"Review\"]\n+ types:\n+ - completed\n+\n+concurrency:\n+ cancel-in-progress: true\n+ group: e2e-${{ github.ref }}\n+\n+jobs:\n+ e2e:\n+ if: ${{ github.event.workflow_run.conclusion == 'success' }}\n+ name: T...
TypeScript
Apache License 2.0
socialgouv/code-du-travail-numerique
ci(e2e): split into two files (#3961)
1
ci
e2e
71,748
03.11.2021 11:45:24
0
b25225fb39a04cc12beb5a98df41f66ee0fdcfc5
chore: fixing aws-iot-actions package
[ { "change_type": "MODIFY", "diff": "import * as iam from '@aws-cdk/aws-iam';\n-import { IConstruct, PhysicalName } from '@aws-cdk/core';\n-\n-// keep this import separate from other imports to reduce chance for merge conflicts with v2-main\n-// eslint-disable-next-line no-duplicate-imports, import/order\n-i...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: fixing aws-iot-actions package
1
chore
null
265,942
03.11.2021 11:48:47
14,400
c950c23742bb9291a3e15b95ae0ee4a13466c361
fix: explicitly define function type of getFilesStream
[ { "change_type": "MODIFY", "diff": "@@ -63,6 +63,7 @@ import {\nURLSigner,\nQuery,\n} from './signer';\n+import {Readable} from 'stream';\ninterface SourceObject {\nname: string;\n@@ -628,7 +629,7 @@ class Bucket extends ServiceObject {\nacl: Acl;\niam: Iam;\n- getFilesStream: Function;\n+ getFilesStream: (...
TypeScript
Apache License 2.0
googleapis/nodejs-storage
fix: explicitly define function type of getFilesStream (#1697)
1
fix
null
791,682
03.11.2021 11:56:10
14,400
5430f024448faf195ed91d45fb8353889ec8eaad
report(flow): network throttling settings
[ { "change_type": "MODIFY", "diff": "@@ -104,6 +104,14 @@ const EnvIcon: FunctionComponent = () => {\n);\n};\n+const NetworkIcon: FunctionComponent = () => {\n+ return (\n+ <svg width=\"16\" height=\"11\" viewBox=\"0 0 16 11\" fill=\"none\" role=\"img\">\n+ <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(flow): network throttling settings (#13305)
1
report
flow
342,861
03.11.2021 12:16:13
-3,600
ac3d5a6a6c59e1d4fffd67dec0816ab2c6ae1333
docs: remove rocket image on mobile
[ { "change_type": "MODIFY", "diff": "import React from \"react\";\nimport { useStaticQuery, graphql } from \"gatsby\";\nimport Img, { FluidObject } from \"gatsby-image\";\n-import { css } from \"styled-components\";\n+import styled, { css } from \"styled-components\";\n+import { mediaQueries as mq } from \"@...
JavaScript
MIT License
kiwicom/orbit
docs: remove rocket image on mobile (#3172)
1
docs
null
386,584
03.11.2021 12:22:57
-7,200
cfe2e20de727f072ad741021166e00cf25b2c440
fix(blocksECharts): Refactored blocks for Lowdefy Version 4.
[ { "change_type": "DELETE", "diff": "-{\n- \"category\": \"display\",\n- \"loading\": {\n- \"type\": \"Skeleton\",\n- \"properties\": {\n- \"height\": 300\n- }\n- },\n- \"schema\": {\n- \"properties\": {\n- \"type\": \"object\",\n- \"additionalProperties\": false,\n- \"properties\": {\n- \"option\": {\n- \"t...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(blocksECharts): Refactored blocks for Lowdefy Version 4.
1
fix
blocksECharts
617,459
03.11.2021 12:23:10
-3,600
4c3f5bbbd334c49bd89c0c1329e1cde260aed2f7
ci(e2e): add repository dispatch with parameters
[ { "change_type": "MODIFY", "diff": "name: End-to-end testing\non:\n- workflow_run:\n- workflows: [\"Review\"]\n- types:\n- - completed\n+ repository_dispatch:\n+ types: [deployment-ended]\nconcurrency:\ncancel-in-progress: true\n@@ -12,7 +10,7 @@ concurrency:\njobs:\ne2e:\n- if: ${{ github.event.workflow_ru...
TypeScript
Apache License 2.0
socialgouv/code-du-travail-numerique
ci(e2e): add repository dispatch with parameters (#3963)
1
ci
e2e
711,597
03.11.2021 12:25:36
-3,600
6302a35200651fce1d23a00ec604fa34dfd8d976
docs: Update docs on supported databases
[ { "change_type": "MODIFY", "diff": "@@ -28,7 +28,7 @@ There are 2 separate GraphQL APIs: shop and admin.\n## Database\n-Vendure supports multiple databases. Currently it is tested with MySQL/MariaDB, PostgreSQL, SQLite and SQL.js. Since Vendure uses [TypeORM](https://typeorm.io/#/) to manage data access, it...
TypeScript
MIT License
vendure-ecommerce/vendure
docs: Update docs on supported databases
1
docs
null
71,748
03.11.2021 12:27:55
0
e0299d0dfba75fa20ac035fb5bd67573082eacb1
chore: fixing aws-servicecatalog
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,7 @@ import * as path from 'path';\nimport * as s3_assets from '@aws-cdk/aws-s3-assets';\nimport * as sns from '@aws-cdk/aws-sns';\nimport * as cdk from '@aws-cdk/core';\n+import { Construct } from 'constructs';\nimport * as servicecatalog from '../lib';\n/* es...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: fixing aws-servicecatalog
1
chore
null
127,946
03.11.2021 12:43:09
-3,600
2c8ebf145ce2905081d165ddfb091f0c2e5ae735
fix: click outside closes MultiSelect
[ { "change_type": "MODIFY", "diff": "@@ -64,6 +64,10 @@ const MultiSelect: React.FC<MultiSelectProps> = ({\nconst toggleExpanded = () =>\nsetIsExpanded(disabled ? false : !isExpandedInner);\n+ const close = () => {\n+ setIsExpanded(false);\n+ }\n+\nconst addSelectedItem = (selectedItem: string) => {\nconst i...
TypeScript
MIT License
coingaming/moon-design
fix: click outside closes MultiSelect
1
fix
null
419,601
03.11.2021 12:43:47
-3,600
0ea76b99ce235d36ae80bfde89cec4515dc6f10e
docs(recipes): add "Usage with AdminJS" recipe
[ { "change_type": "MODIFY", "diff": "@@ -45,6 +45,7 @@ hide_title: true\n- Recipes\n- [Usage with NestJS](usage-with-nestjs.md)\n- [Usage with Vanilla JS](usage-with-js.md)\n+ - [Usage with AdminJS](usage-with-adminjs.md)\n- [Creating Custom Driver](custom-driver.md)\n- [Using Multiple Schemas](multiple-sche...
TypeScript
MIT License
mikro-orm/mikro-orm
docs(recipes): add "Usage with AdminJS" recipe (#2321)
1
docs
recipes
617,459
03.11.2021 12:46:20
-3,600
571554f8499117d83be3792a12096486a08023d0
ci(e2e): condition changed
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ concurrency:\njobs:\ne2e:\n- if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }}\n+ if: ${{ github.event.workflow_run.conclusion == 'success' }}\nname: Test e2e\nruns-on: ubuntu-latest\nsteps:...
TypeScript
Apache License 2.0
socialgouv/code-du-travail-numerique
ci(e2e): condition changed (#3964)
1
ci
e2e
749,548
03.11.2021 12:50:48
25,200
191073eca47a9cae63cd6ffdfcd525bcc32190c9
chore(changelog): add v8.44.1 [skip ci]
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,16 @@ _Note: Gaps between patch versions are faulty, broken or test releases._\n<!-- DO NOT MODIFY BELOW THIS COMMENT -->\n<!-- insert-new-changelog-here -->\n+## v8.44.1 (2021-11-03)\n+\n+#### :bug: Bug Fix\n+* `colorpickers`\n+ * [#1230](https://github.com/...
TypeScript
Apache License 2.0
zendeskgarden/react-components
chore(changelog): add v8.44.1 [skip ci]
1
chore
changelog
71,292
03.11.2021 13:09:33
-7,200
58090a0608a244fa0204974ee659d5c793e85dcc
chore: regression suite patch for lambda runtime deprecation Follow up on *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "ADD", "diff": "+On november 2nd 2021, lambda started deprecating the nodejs10.x runtime. This meant we can no longer create functions with this runtime.\n+Our integration tests use this runtime for one of its stacks.\n+\n+This patch brings https://github.com/aws/aws-cdk/pull/17282 into the...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: regression suite patch for lambda runtime deprecation (#17297) Follow up on https://github.com/aws/aws-cdk/pull/17282 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
chore
null
127,946
03.11.2021 13:10:23
-3,600
3fcd7e186e4f6a59a3825f894119f551d634d907
chore: fix Version warning
[ { "change_type": "MODIFY", "diff": "import React from 'react';\n-import { version } from '../../package.json';\n+import packageInfo from '../../package.json';\nexport default function Version() {\nreturn (\n<div className=\"mt-4 px-3 py-2 text-sm leading-5 text-gray-500\">\n<p>Moon.io version:</p>\n- <p>{ve...
TypeScript
MIT License
coingaming/moon-design
chore: fix Version warning
1
chore
null
127,946
03.11.2021 13:14:00
-3,600
e6675a16f2a4f7b9b95c816716abacb6c2e14135
chore: render Chip as a button
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ type ChipProps = {\nsize?: 'small' | 'medium';\n};\n-const StyledChip = styled.div<ChipProps>(({ isActive, size, theme }) => [\n+const StyledChip = styled.button<ChipProps>(({ isActive, size, theme }) => [\n{\ndisplay: 'flex',\nflexDirection: 'row',\n@@ ...
TypeScript
MIT License
coingaming/moon-design
chore: render Chip as a button (#1459)
1
chore
null
815,593
03.11.2021 13:16:59
-28,800
e17f18e55918e5f9fb6c1ab5bfcb2d82d3eb5fbb
chore: remove Snapshot#finalize_block_reward fn
[ { "change_type": "MODIFY", "diff": "@@ -519,6 +519,7 @@ dependencies = [\n\"ckb-metrics\",\n\"ckb-network\",\n\"ckb-proposal-table\",\n+ \"ckb-reward-calculator\",\n\"ckb-rust-unstable-port\",\n\"ckb-shared\",\n\"ckb-stop-handler\",\n@@ -1039,9 +1040,9 @@ version = \"0.102.0-pre\"\ndependencies = [\n\"ckb-c...
Rust
MIT License
nervosnetwork/ckb
chore: remove Snapshot#finalize_block_reward fn
1
chore
null
756,013
03.11.2021 13:17:05
21,600
46f7fdc9a03473c55cacf9d09251d52c71237842
feat(beans): use `sdk.Uint` whole beans to prevent negatives
[ { "change_type": "MODIFY", "diff": "@@ -37,8 +37,8 @@ message Params {\nmessage Beans {\noption (gogoproto.equal) = true;\n- string int = 1 [\n- (gogoproto.customtype) = \"github.com/cosmos/cosmos-sdk/types.Int\",\n+ string whole = 1 [\n+ (gogoproto.customtype) = \"github.com/cosmos/cosmos-sdk/types.Uint\",...
JavaScript
Apache License 2.0
agoric/agoric-sdk
feat(beans): use `sdk.Uint` whole beans to prevent negatives
1
feat
beans
791,282
03.11.2021 13:37:26
25,200
13992836803e2ebf8c1b1549f122808eb4b3aba1
chore(storage): add default gRPC connection pool
[ { "change_type": "MODIFY", "diff": "@@ -81,6 +81,12 @@ const (\n// ScopeReadWrite grants permissions to manage your\n// data in Google Cloud Storage.\nScopeReadWrite = raw.DevstorageReadWriteScope\n+\n+ // defaultConnPoolSize is the default number of connections\n+ // to initialize in the GAPIC gRPC connect...
Go
Apache License 2.0
googleapis/google-cloud-go
chore(storage): add default gRPC connection pool (#5065)
1
chore
storage
617,459
03.11.2021 14:14:19
-3,600
18f2018e30cdee9e7bb5d8308310c93a8d37d225
ci(e2e): remove repository dispatch
[ { "change_type": "DELETE", "diff": "-name: End-to-end testing\n-\n-on:\n- repository_dispatch:\n- types: [deployment-ended]\n-\n-concurrency:\n- cancel-in-progress: true\n- group: e2e-${{ github.ref }}\n-\n-jobs:\n- e2e:\n- name: Test e2e\n- runs-on: ubuntu-latest\n- steps:\n- - name: Checkout repository\n-...
TypeScript
Apache License 2.0
socialgouv/code-du-travail-numerique
ci(e2e): remove repository dispatch (#3967)
1
ci
e2e
277,287
03.11.2021 14:24:28
-3,600
377035b5e1d259293a06ef115ad88a2f98b736d0
fix: Handle decimal point for spinbox
[ { "change_type": "MODIFY", "diff": "\"scripts\": {\n\"start\": \"node scripts/start.js\",\n\"build\": \"node scripts/build.js\",\n- \"test\": \"node scripts/test.js\",\n+ \"test\": \"env LC_ALL=en_US.UTF8 node scripts/test.js\",\n\"test:ci\": \"CI=true node scripts/test.js\",\n\"lint-staged:typescript\": \"...
Python
Apache License 2.0
h2oai/wave
fix: Handle decimal point for spinbox #1051 (#1079)
1
fix
null
749,532
03.11.2021 14:25:20
25,200
79d2338533b96ace05467cd09c8a0b3c498bf2ca
fix(spinner): fix placeholder proportions
[ { "change_type": "MODIFY", "diff": "{\n\"index.cjs.js\": {\n- \"bundled\": 24768,\n- \"minified\": 18580,\n- \"gzipped\": 4955\n+ \"bundled\": 25106,\n+ \"minified\": 18822,\n+ \"gzipped\": 4992\n},\n\"index.esm.js\": {\n- \"bundled\": 22976,\n- \"minified\": 16996,\n- \"gzipped\": 4809,\n+ \"bundled\": 233...
TypeScript
Apache License 2.0
zendeskgarden/react-components
fix(spinner): fix placeholder proportions (#1233)
1
fix
spinner
304,879
03.11.2021 14:29:44
21,600
315c278cf596a65d207824da11c33cb781e6f295
chore: remove tero dependency
[ { "change_type": "MODIFY", "diff": "@@ -10,9 +10,9 @@ checksum = \"aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234\"\n[[package]]\nname = \"aho-corasick\"\n-version = \"0.7.15\"\n+version = \"0.7.18\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7404feb...
Go
MIT License
influxdata/flux
chore: remove tero dependency (#4212)
1
chore
null
617,453
03.11.2021 14:44:43
-3,600
7321ced8cf5cf30450bf92217438b660cc38c11b
chore(workflows): Fix long branch name shortening
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ kind: Namespace\nmetadata:\nannotations:\nsocialgouv/creator: autodevops\n- janitor/ttl: 15d\n+ janitor/ttl: 7d\nfield.cattle.io/creatorId: gitlab\nfield.cattle.io/projectId: c-bar:p-foo\ngit/branch: refs/heads/mybranch\n@@ -363,7 +363,7 @@ spec:\ninitCont...
TypeScript
Apache License 2.0
socialgouv/code-du-travail-numerique
chore(workflows): Fix long branch name shortening (#3966)
1
chore
workflows
141,508
03.11.2021 15:00:48
-39,600
526003f6286bac058649e9a9e0bfd72ef887c13f
fix: Add type=button to SearchField clear button
[ { "change_type": "MODIFY", "diff": "@@ -83,7 +83,11 @@ const InputSearch: React.FunctionComponent<InputSearchProps> = (\n{value && (\n<div className={styles.endIconAdornment} onClick={onClear}>\n- <button className={styles.cancelButton} aria-label=\"clear\">\n+ <button\n+ type=\"button\"\n+ className={style...
TypeScript
MIT License
cultureamp/kaizen-design-system
fix: Add type=button to SearchField clear button (#2199)
1
fix
null
802,854
03.11.2021 15:02:23
10,800
1442b4b2d24a1c9edcf0adea12c00cd0af53606a
chore(deps): restore eslint-plugin-vue to 7.20.0
[ { "change_type": "MODIFY", "diff": "\"@vue/eslint-config-typescript\": \"^7.0.0\",\n\"@vue/test-utils\": \"1.2.2\",\n\"babel-preset-vue\": \"^2.0.2\",\n- \"eslint-plugin-vue\": \"^8.0.3\",\n+ \"eslint-plugin-vue\": \"^7.20.0\",\n\"vue-cli-plugin-storybook\": \"~2.1.0\",\n\"vue-loader\": \"^15.9.6\",\n\"vue-...
TypeScript
Apache License 2.0
juntossomosmais/venice
chore(deps): restore eslint-plugin-vue to 7.20.0
1
chore
deps
777,376
03.11.2021 15:10:12
14,400
1a1c1c0cd83b1888f167d69f4db699d2bd9f5354
fix: hide secrets when printing EnvContext Tested manually
[ { "change_type": "MODIFY", "diff": "@@ -5,11 +5,13 @@ It launches the entrypoint script under horovodrun when slots_per_trial>1, or as\nsubprocess otherwise.\n\"\"\"\n+import copy\nimport logging\nimport socket\nimport subprocess\nimport sys\nimport time\n+from typing import Dict\nimport simplejson\n@@ -21,...
Python
Apache License 2.0
determined-ai/determined
fix: hide secrets when printing EnvContext [DET-6046] (#3022) Tested manually
1
fix
null
791,464
03.11.2021 15:18:40
14,400
c792a0d13db019c9964efeee5c6bc85b07ca50fa
fix(compute/metadata): return an error when all retries have failed Minor change to ensure an error is returned to the caller when all retries have failed. Fixes
[ { "change_type": "MODIFY", "diff": "@@ -323,7 +323,7 @@ func (c *Client) getETag(suffix string) (value, etag string, err error) {\nbreak\n}\nif reqErr != nil {\n- return \"\", \"\", nil\n+ return \"\", \"\", reqErr\n}\ndefer res.Body.Close()\nif res.StatusCode == http.StatusNotFound {\n", "new_path": "c...
Go
Apache License 2.0
googleapis/google-cloud-go
fix(compute/metadata): return an error when all retries have failed (#5063) Minor change to ensure an error is returned to the caller when all retries have failed. Fixes #5062
1
fix
compute/metadata
160,176
03.11.2021 15:32:36
-28,800
ecf7aaa0daa963c08fde6f2c64de0790a4133f8c
feat(core): support anchor setting properties
[ { "change_type": "MODIFY", "diff": "@@ -273,16 +273,13 @@ export default class BaseNodeModel implements IBaseModel {\nid: `${id}_${idx}`,\nx: x + el[0],\ny: y + el[1],\n- isSourceAnchor: true,\n- isTargetAnchor: true,\n};\n}\nreturn {\n+ ...el,\nx: x + el.x,\ny: y + el.y,\nid: el.id || `${id}_${idx}`,\n- is...
TypeScript
Apache License 2.0
didi/logicflow
feat(core): support anchor setting properties
1
feat
core
4,988
03.11.2021 15:39:15
-3,600
6632e63a7aff7d33f47aae91347a39649d5248c6
fix(csv-generate): record emited after end with sleep
[ { "change_type": "MODIFY", "diff": "@@ -5128,6 +5128,7 @@ Generator.prototype._read = function(size){\n// Time for some rest: flush first and stop later\nif((this._.count_created === this.options.length) || (this.options.end && Date.now() > this.options.end) || (this.options.duration && Date.now() > this._....
JavaScript
MIT License
adaltas/node-csv
fix(csv-generate): record emited after end with sleep
1
fix
csv-generate
866,391
03.11.2021 15:40:37
-3,600
d42cd9683b7e367890d12b4507ee1db43f3b338c
chore: setup actions/setup-node@v2 cache
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,7 @@ jobs:\nuses: actions/setup-node@v2\nwith:\nnode-version: ${{ matrix.node-version }}\n+ cache: 'yarn'\n- name: Install dependencies\nrun: yarn install --frozen-lockfile --offline\n- run: sudo apt-get install xvfb\n@@ -37,6 +38,7 @@ jobs:\nuses: actions/se...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore: setup actions/setup-node@v2 cache (#734) Co-authored-by: Jeff Chew <jeff.chew@gmail.com>
1
chore
null
306,653
03.11.2021 15:55:04
-19,080
bcaa4aed6bd659ac23d17d58f004a31a0f0439e6
feat(calendar): add onHover events on date month and year values
[ { "change_type": "MODIFY", "diff": "@@ -16,6 +16,31 @@ import {\nconvertToDate,\n} from './utility';\n+type OnHover = React.MouseEvent<HTMLSpanElement> | React.MouseEvent<HTMLDivElement>;\n+interface hoveredDateProps {\n+ value: number;\n+ isToday: boolean;\n+ isDisabled: boolean;\n+ todayDate?: Date;\n+ fu...
TypeScript
MIT License
innovaccer/design-system
feat(calendar): add onHover events on date month and year values
1
feat
calendar
160,176
03.11.2021 16:09:39
-28,800
83db114f495307aa039ff45d743336f124a32221
fix(core): ts error
[ { "change_type": "MODIFY", "diff": "@@ -35,7 +35,12 @@ const defaultConfig = assign(\nexport type ConnectRule = {\nmessage: string;\n- validate: (source: BaseNodeModel, target: BaseNodeModel, sourceAnchor, targetAnchor) => boolean;\n+ validate: (\n+ source: BaseNodeModel,\n+ target: BaseNodeModel,\n+ source...
TypeScript
Apache License 2.0
didi/logicflow
fix(core): ts error
1
fix
core
428,439
03.11.2021 16:31:11
14,400
d67eae0c8d366ae21ca7c133dc18c1c88fbec047
chore: bump bson patch version
[ { "change_type": "MODIFY", "diff": "\"version\": \"4.1.3\",\n\"license\": \"Apache-2.0\",\n\"dependencies\": {\n- \"bson\": \"^4.5.3\",\n+ \"bson\": \"^4.5.4\",\n\"denque\": \"^2.0.1\",\n\"mongodb-connection-string-url\": \"^2.1.0\"\n},\n}\n},\n\"node_modules/bson\": {\n- \"version\": \"4.5.3\",\n- \"resolv...
TypeScript
Apache License 2.0
mongodb/node-mongodb-native
chore: bump bson patch version (#3027)
1
chore
null
127,950
03.11.2021 16:37:44
-7,200
d9c5c2209d4b8c922f01333adfc50fd349f121cf
feat(table.tsx): added useSortBy hook
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,7 @@ import {\nuseExpanded,\nuseBlockLayout,\nuseFlexLayout,\n+ useSortBy,\nTableInstance,\nPluginHook,\n} from 'react-table';\n@@ -78,6 +79,7 @@ const Table: React.FC<TableProps> = ({\nuseResizeColumns,\nuseSticky,\nuseExpanded,\n+ useSortBy,\n].filter((plugin...
TypeScript
MIT License
coingaming/moon-design
feat(table.tsx): added useSortBy hook
1
feat
table.tsx
127,950
03.11.2021 16:40:26
-7,200
f40ffcc5baee2bf20b071bcf62d74651d05d94e0
fix(table.tsx): make sorting as optional. DDefault value - false
[ { "change_type": "MODIFY", "diff": "@@ -50,6 +50,7 @@ export type TableProps = {\ndefaultRowBackgroundColor?: ColorNames;\nevenRowBackgroundColor?: ColorNames;\nheaderBackgroundColor?: ColorNames;\n+ isSorting?: boolean;\nrenderRowSubComponent?: (props: RowSubComponentProps) => any;\ngetOnRowClickHandler?: ...
TypeScript
MIT License
coingaming/moon-design
fix(table.tsx): make sorting as optional. DDefault value - false
1
fix
table.tsx
866,391
03.11.2021 16:53:44
-3,600
7a415b1157ca7d182480f905ff037a0b3671f9a9
chore: update node to v14
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ jobs:\nruns-on: ubuntu-latest\nstrategy:\nmatrix:\n- node-version: [12.x]\n+ node-version: [14.x]\nsteps:\n- uses: actions/checkout@v2\n- name: Use Node.js\n@@ -24,7 +24,7 @@ jobs:\nstrategy:\nmatrix:\nos: [macos-latest, ubuntu-latest]\n- node-version: [12...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore: update node to v14 (#738)
1
chore
null