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
141,551
14.12.2021 10:51:25
-39,600
ab3dfb4d3d7d5ed38d0761341a9fd95a3e9ed382
docs: Fix Storybook Design Tokens pages not loading docs: Fix Storybook Design Tokens pages not loading
[ { "change_type": "MODIFY", "diff": "import { Box, Paragraph } from \"@kaizen/component-library\"\nimport { Card } from \"@kaizen/draft-card\"\nimport { Tabs } from \"@kaizen/draft-tabs\"\n-import { LinkTo } from \"@storybook/addon-links/react\"\n+import LinkTo from \"@storybook/addon-links/react\"\nimport {...
TypeScript
MIT License
cultureamp/kaizen-design-system
docs: Fix Storybook Design Tokens pages not loading [KDS-73] (#2362) docs: Fix Storybook Design Tokens pages not loading [KDS-73]
1
docs
null
428,449
14.12.2021 11:10:52
18,000
961383536d32fe1e4640c7bb863d7fcdf620d27f
chore: fix test importing non typescript files
[ { "change_type": "MODIFY", "diff": "@@ -19,6 +19,10 @@ describe('importing mongodb driver', () => {\nconst sourceFiles = walk(path.resolve(__dirname, '../../src'));\nfor (const sourceFile of sourceFiles) {\n+ if (!sourceFile.endsWith('.ts')) {\n+ continue;\n+ }\n+\nconst sliceFrom = sourceFile.indexOf('src'...
TypeScript
Apache License 2.0
mongodb/node-mongodb-native
chore: fix test importing non typescript files (#3081)
1
chore
null
711,597
14.12.2021 11:24:20
-3,600
28aeddbb0d9f1959a3d1010d1e4e298eea164e9e
fix(core): Fix FK error with adjustOrderLine when zero saleable stock Fixes
[ { "change_type": "MODIFY", "diff": "@@ -31,7 +31,9 @@ import {\nimport {\nAddItemToOrder,\nAddPaymentToOrder,\n+ AdjustItemQuantity,\nErrorCode,\n+ GetActiveOrder,\nGetProductStockLevel,\nGetShippingMethods,\nPaymentInput,\n@@ -54,6 +56,8 @@ import {\nimport {\nADD_ITEM_TO_ORDER,\nADD_PAYMENT,\n+ ADJUST_ITE...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Fix FK error with adjustOrderLine when zero saleable stock Fixes #1273
1
fix
core
889,620
14.12.2021 11:25:10
-28,800
218fd79e517670e2f3f1d9ddb14e649432e10075
feat(webreader): align double pages according to reading direction closes
[ { "change_type": "MODIFY", "diff": "@@ -11,8 +11,12 @@ export function buildSpreads(pages: PageDtoWithUrl[], pageLayout: PagedReaderLay\nconst pagesClone = cloneDeep(pages)\nlet lastPages = undefined\nif (pageLayout === PagedReaderLayout.DOUBLE_PAGES) {\n- spreads.push([pagesClone.shift()] as PageDtoWithUrl...
Kotlin
MIT License
gotson/komga
feat(webreader): align double pages according to reading direction closes #670
1
feat
webreader
711,634
14.12.2021 11:31:51
-3,600
bce86f6259daea74e50a29022eab0cb10c134d43
fix(elasticsearch-plugin): Fix high memory usage on reindex Fixes
[ { "change_type": "MODIFY", "diff": "@@ -45,6 +45,9 @@ import {\nimport { createIndices, getClient, getIndexNameByAlias } from './indexing-utils';\nimport { MutableRequestContext } from './mutable-request-context';\n+const REINDEX_CHUNK_SIZE = 2500;\n+const REINDEX_OPERATION_CHUNK_SIZE = 3000;\n+\nexport con...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(elasticsearch-plugin): Fix high memory usage on reindex Fixes #1120
1
fix
elasticsearch-plugin
711,597
14.12.2021 11:50:39
-3,600
d81a3ad010672e2177719a77d4310bf3cbc52c1b
chore: Publish v1.4.1
[ { "change_type": "MODIFY", "diff": "+## <small>1.4.1 (2021-12-14)</small>\n+\n+\n+#### Fixes\n+\n+* **admin-ui** Fix display of facet value custom fields ([f4a6dbd](https://github.com/vendure-ecommerce/vendure/commit/f4a6dbd)), closes [#1282](https://github.com/vendure-ecommerce/vendure/issues/1282)\n+* **a...
TypeScript
MIT License
vendure-ecommerce/vendure
chore: Publish v1.4.1
1
chore
null
777,401
14.12.2021 12:18:08
18,000
ca96c776b0aee18612e628e9e164cb09c9856d6e
feat: add wall clock time, tests to get trial API This change adds wall clock time to the trial API, along with some tests.
[ { "change_type": "MODIFY", "diff": "@@ -88,7 +88,7 @@ test-intg: export DET_INTEGRATION_POSTGRES_URL ?= postgres://postgres:postgres@l\ntest-intg: export DET_INTEGRATION_ES_HOST ?= localhost\ntest-intg: export DET_INTEGRATION_ES_PORT ?= 9200\ntest-intg:\n- go test -v -tags=integration -coverprofile=coverage...
Python
Apache License 2.0
determined-ai/determined
feat: add wall clock time, tests to get trial API [DET-6226] (#3311) This change adds wall clock time to the trial API, along with some tests.
1
feat
null
217,922
14.12.2021 12:25:29
-3,600
bbcf3b7a3c38da844bcda4ed04b4eaa658feadbc
feat(lists): added a new setting to make quick lists offline by default
[ { "change_type": "MODIFY", "diff": "@@ -265,6 +265,7 @@ export class ListsFacade {\nthis.loadMyLists();\nconst list = this.newListWithName(itemName);\nlist.ephemeral = true;\n+ list.offline = this.settings.makeQuickListsOffline;\nreturn list;\n}\n", "new_path": "apps/client/src/app/modules/list/+state/l...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(lists): added a new setting to make quick lists offline by default
1
feat
lists
277,277
14.12.2021 12:52:08
-3,600
ec56162ee357611385e53a2cf155d4529af88697
feat: Package Wave daemon within python wheel.
[ { "change_type": "MODIFY", "diff": "\"url\": \"http://localhost:3000/demo\",\n\"webRoot\": \"${workspaceFolder}/ui\"\n},\n+ {\n+ \"name\": \"Debug PY Build\",\n+ \"type\": \"python\",\n+ \"request\": \"launch\",\n+ \"cwd\": \"${workspaceFolder}/py\",\n+ \"program\": \"${workspaceFolder}/py/setup.py\",\n+ \"...
Python
Apache License 2.0
h2oai/wave
feat: Package Wave daemon within python wheel. #250 (#1153)
1
feat
null
277,286
14.12.2021 13:09:29
-3,600
0c1a4110d7b875a0e85217805f549be8ebdad361
ci: Make nightly use os-specific wheel files
[ { "change_type": "MODIFY", "diff": "@@ -45,7 +45,9 @@ jobs:\nbuild/wave-${{ env.VERSION }}-darwin-amd64.tar.gz\nbuild/wave-${{ env.VERSION }}-linux-amd64.tar.gz\nbuild/wave-${{ env.VERSION }}-windows-amd64.tar.gz\n- py/dist/h2o_wave-${{ env.VERSION }}-py3-none-any.whl\n+ py/dist/h2o_wave-${{ env.VERSION }}-...
Python
Apache License 2.0
h2oai/wave
ci: Make nightly use os-specific wheel files
1
ci
null
126,295
14.12.2021 13:11:35
-3,600
1585f5ec5165b3e601cbf7533ce5f6143633b7c2
release: v1.2.1
[ { "change_type": "MODIFY", "diff": "@@ -4,38 +4,63 @@ All notable changes to this project will be documented in this file. This projec\n## [Unreleased]\n+<a name=\"v1.2.1\"></a>\n+## [v1.2.1] - 0001-01-01\n+\n<a name=\"v1.2.0\"></a>\n-## [v1.2.0] - 2021-12-09\n+## [v1.2.0] - 2021-12-13\n### Bug Fixes\n+- fi...
Go
Apache License 2.0
codenotary/immudb
release: v1.2.1 Signed-off-by: Michele Meloni <cleaversdev@gmail.com>
1
release
null
551,636
14.12.2021 13:32:12
0
7274e11ca21030aa4041a4443c4d1cff1f014484
build: 6.1.3
[ { "change_type": "MODIFY", "diff": "<dependency>\n<groupId>org.questdb</groupId>\n<artifactId>questdb</artifactId>\n- <version>6.1.3-SNAPSHOT</version>\n+ <version>6.1.3</version>\n</dependency>\n<dependency>\n<groupId>org.apache.logging.log4j</groupId>\n", "new_path": "benchmarks/pom.xml", "old_pat...
Java
Apache License 2.0
questdb/questdb
build: 6.1.3
1
build
null
277,286
14.12.2021 13:46:12
-3,600
fb64f5ae42feb9cb1886a4b7f761897a832100e0
fix: CI release targets - py build depends on go build so need to go after
[ { "change_type": "MODIFY", "diff": "@@ -106,16 +106,18 @@ pydocs: ## Generate API docs and copy to website\ncd py && $(MAKE) docs\ncd tools/showcase && $(MAKE) generate\n-release: build-ui build-py ## Prepare release builds (e.g. \"VERSION=1.2.3 make release)\"\n+release: build-ui ## Prepare release builds ...
Python
Apache License 2.0
h2oai/wave
fix: CI release targets - py build depends on go build so need to go after
1
fix
null
217,922
14.12.2021 13:47:02
-3,600
6e05e1e9c8faf20a73284731739724694bcd53ef
chore: small layout fix for pricing mode
[ { "change_type": "MODIFY", "diff": "</i>\n<app-marketboard-icon [itemId]=\"item.id\" [showHistory]=\"true\"></app-marketboard-icon>\n</div>\n- <div nz-col nzLg=\"7\" nzMd=\"24\" fxLayout=\"row\" fxLayoutAlign=\"flex-end center\">\n+ <div nz-col nzLg=\"6\" nzMd=\"24\" fxLayout=\"row\" fxLayoutAlign=\"flex-en...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small layout fix for pricing mode
1
chore
null
217,922
14.12.2021 13:54:38
-3,600
75b942ecec1692bad461c4e56d8395b9a6c298c1
chore(release): 9.2.6
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"9.2.6\"></a>\n+## [9.2.6](https://github.com/ffxiv-teamcraft/ffxiv-teamcraft/compare/...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(release): 9.2.6
1
chore
release
306,493
14.12.2021 14:17:17
-3,600
d94df1a8f9cf54d2c581371cade0cd70d88a69a0
fix: type info in OverlayMixinTypes
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,6 @@ import { isEqualConfig } from './utils/is-equal-config.js';\n/**\n* @typedef {import('../types/OverlayConfig').OverlayConfig} OverlayConfig\n* @typedef {import('../types/OverlayMixinTypes').DefineOverlayConfig} DefineOverlayConfig\n- * @typedef {import('.....
JavaScript
MIT License
ing-bank/lion
fix: type info in OverlayMixinTypes
1
fix
null
126,276
14.12.2021 14:45:12
10,800
9389c0a27878f352776be8a3640d7cadba153095
chore(pkg/replication): delay replication after failure
[ { "change_type": "MODIFY", "diff": "@@ -1580,14 +1580,14 @@ func (s *ImmuStore) ReplicateTx(exportedTx []byte, waitForIndexing bool) (*TxHea\ni := 0\nif len(exportedTx) < lszSize {\n- return nil, ErrCorruptedData\n+ return nil, ErrIllegalArguments\n}\nhdrLen := int(binary.BigEndian.Uint32(exportedTx[i:]))\n...
Go
Apache License 2.0
codenotary/immudb
chore(pkg/replication): delay replication after failure Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
pkg/replication
551,636
14.12.2021 14:50:37
0
82d46a5342359dde86fd2d5697460b39910f30b0
build: 6.1.4-SNAPSHOT
[ { "change_type": "MODIFY", "diff": "<dependency>\n<groupId>org.questdb</groupId>\n<artifactId>questdb</artifactId>\n- <version>6.1.3</version>\n+ <version>6.1.4-SNAPSHOT</version>\n</dependency>\n<dependency>\n<groupId>org.apache.logging.log4j</groupId>\n", "new_path": "benchmarks/pom.xml", "old_pat...
Java
Apache License 2.0
questdb/questdb
build: 6.1.4-SNAPSHOT
1
build
null
777,369
14.12.2021 14:51:49
25,200
7d9714e090db04363a26a025ff6e470e2695f39f
chore: update can-i-use browserlist
[ { "change_type": "MODIFY", "diff": "\"node-releases\": \"^1.1.71\"\n},\n\"dependencies\": {\n- \"caniuse-lite\": {\n- \"version\": \"1.0.30001243\",\n- \"resolved\": \"https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001243.tgz\",\n- \"integrity\": \"sha512-vNxw9mkTBtkmLFnJRv/2rhs1yufpDfCkBZexG3...
Python
Apache License 2.0
determined-ai/determined
chore: update can-i-use browserlist (#3317)
1
chore
null
127,969
14.12.2021 15:24:35
-7,200
4e2ea1a22b6204efbca7cf92af08bda30d49d3d4
feat: Add debit cards icon
[ { "change_type": "ADD", "diff": "+---\n+'next-docs': minor\n+'@heathmont/moon-accordion': minor\n+'@heathmont/moon-assets': minor\n+'@heathmont/moon-calendar': minor\n+'@heathmont/moon-charts': minor\n+'@heathmont/moon-components': minor\n+'@heathmont/moon-core': minor\n+'@heathmont/moon-draggabletable': mi...
TypeScript
MIT License
coingaming/moon-design
feat: B1M2-3762 Add debit cards icon (#1512)
1
feat
null
791,834
14.12.2021 15:33:55
21,600
c23a803f562e56546de9a68d7f242496a5c2d7f2
core: move no-unload-listeners to perf category
[ { "change_type": "MODIFY", "diff": "@@ -789,11 +789,6 @@ Object {\n\"id\": \"charset\",\n\"weight\": 1,\n},\n- Object {\n- \"group\": \"best-practices-general\",\n- \"id\": \"no-unload-listeners\",\n- \"weight\": 1,\n- },\nObject {\n\"group\": \"best-practices-general\",\n\"id\": \"js-libraries\",\n@@ -1079...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: move no-unload-listeners to perf category (#13497)
1
core
null
711,597
14.12.2021 15:43:49
-3,600
5add04ae5ff964d35ed3f43e8edbc1878c625bea
docs(asset-server-plugin): Fix docs on adding presets
[ { "change_type": "MODIFY", "diff": "@@ -88,7 +88,7 @@ import { AssetServerOptions, ImageTransformPreset } from './types';\n* For example, defining the following preset:\n*\n* ```ts\n- * new AssetServerPlugin({\n+ * AssetServerPlugin.init({\n* // ...\n* presets: [\n* { name: 'my-preset', width: 85, height: 8...
TypeScript
MIT License
vendure-ecommerce/vendure
docs(asset-server-plugin): Fix docs on adding presets
1
docs
asset-server-plugin
217,922
14.12.2021 16:01:40
-3,600
31b9f51146ed57375bc46b98805a57123218f432
fix(profile): fixed profile page not loading properly
[ { "change_type": "MODIFY", "diff": "<nz-tag *ngIf=\"user.admin\" [nzColor]=\"'magenta'\">{{'COMMON.Admin' | translate}}</nz-tag>\n<nz-tag *ngIf=\"user.moderator\" [nzColor]=\"'volcano'\">{{'COMMON.Moderator' | translate}}</nz-tag>\n<nz-tag *ngIf=\"user.patron\" [nzColor]=\"'purple'\">{{'PROFILE.Patreon_supp...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(profile): fixed profile page not loading properly
1
fix
profile
667,676
14.12.2021 16:01:50
-28,800
70ca4e271bfbd795625538fc001d5043d338217e
fix(core): add static cast for nullptr in tuple
[ { "change_type": "MODIFY", "diff": "#include \"jni/convert_utils.h\"\n+#include <memory>\n#include <tuple>\n#include \"core/napi/v8/js_native_turbo_v8.h\"\n@@ -78,7 +79,8 @@ std::tuple<bool, std::string, std::shared_ptr<JNIArgs>> ConvertUtils::ConvertJSI\n// basic type\nauto base_tuple = HandleBasicType(tur...
C++
Apache License 2.0
tencent/hippy
fix(core): add static cast for nullptr in tuple (cherry picked from commit 99216018511f320041e4b47c49a9b07173074eb0)
1
fix
core
217,922
14.12.2021 16:01:55
-3,600
4c6162711fc169fe2a46dae387df7f0b00208ecc
chore(release): 9.2.7
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"9.2.7\"></a>\n+## [9.2.7](https://github.com/ffxiv-teamcraft/ffxiv-teamcraft/compare/...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(release): 9.2.7
1
chore
release
217,922
14.12.2021 16:07:56
-3,600
fff26529042d0cd6374391f07a7a1ea6768bae93
chore: listing performance fix
[ { "change_type": "MODIFY", "diff": "@@ -42,7 +42,6 @@ export abstract class FirestoreRelationalStorage<T extends DataModel> extends Fi\nconsole.error(error);\nreturn throwError(error);\n}),\n- distinctUntilChanged((a, b) => compare(a, b).length > 0),\ntap(() => this.recordOperation('read')),\nmap((snaps: Do...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: listing performance fix
1
chore
null
160,177
14.12.2021 16:11:08
-28,800
b464b80f683cbab5979d90777de411ba389e9261
refactor: anchor style
[ { "change_type": "MODIFY", "diff": "const lf = new LogicFlow({\ncontainer: document.querySelector('#container'),\nwidth: 1000,\n+ grid: true,\nheight: 400\n})\nlf.setTheme(\n{\nbaseNode: {\n- fill: 'red',\n+ fill: 'rgb(255, 230, 204)',\nstroke: 'green',\nstrokeDasharray: '3,3'\n},\nry: 10\n},\ncircle: {\n+ ...
TypeScript
Apache License 2.0
didi/logicflow
refactor: anchor style
1
refactor
null
277,273
14.12.2021 16:16:21
28,800
1efaca8fd08017cb4b4910d7ddab1616dfaee0eb
feat: Don't autostart Wave daemon if H2O_WAVE_NO_AUTOSTART is set
[ { "change_type": "MODIFY", "diff": "@@ -79,6 +79,7 @@ def run(app: str, no_reload: bool):\nif ext.lower() == '.py':\napp = app_path.replace(os.path.sep, '.')\n+ if os.environ.get('H2O_WAVE_NO_AUTOSTART', None) is None:\n# Try to start Wave daemon.\ntry:\nsubprocess.Popen(['waved.exe' if 'Windows' in platfor...
Python
Apache License 2.0
h2oai/wave
feat: Don't autostart Wave daemon if H2O_WAVE_NO_AUTOSTART is set #250
1
feat
null
306,338
14.12.2021 16:22:26
-3,600
868ae10a6e1804d5a0b52a023e5d2b2acdcf00b6
feat: Show share URL in CLI output
[ { "change_type": "MODIFY", "diff": "@@ -138,11 +138,13 @@ func runMain(cmd *cobra.Command, runCtx *config.RunContext) error {\nr.Currency = runCtx.Config.Currency\ndashboardClient := apiclient.NewDashboardAPIClient(runCtx)\n- r.RunID, err = dashboardClient.AddRun(runCtx, projectContexts, r)\n+ result, err :...
Go
Apache License 2.0
infracost/infracost
feat: Show share URL in CLI output
1
feat
null
791,436
14.12.2021 16:23:00
-39,600
2c664a69a3dc63763b1c76eec2c771daf0c9b301
chore: update spanner owners to group
[ { "change_type": "MODIFY", "diff": "/firestore/ @enocom @dmahugh @tritone @crwilcox @googleapis/yoshi-go-admins\n/pubsub/ @googleapis/api-pubsub @googleapis/yoshi-go-admins\n/pubsublite/ @googleapis/api-pubsub @googleapis/yoshi-go-admins\n-/spanner/ @skuruppu @hengfengli @googleapis/yoshi-go-admins\n+/spann...
Go
Apache License 2.0
googleapis/google-cloud-go
chore: update spanner owners to group (#5214)
1
chore
null
777,422
14.12.2021 16:29:08
28,800
a2cede94ad585cd910016460a5b6c443a92fd641
feat: add prometheus endpoint for internal Determined state mappings add prometheus endpoint exposing internal Determined state mappings
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,8 @@ import (\n\"strings\"\n\"time\"\n+ \"github.com/determined-ai/determined/master/internal/prom\"\n+\n\"github.com/google/uuid\"\n\"github.com/sirupsen/logrus\"\n@@ -584,6 +586,8 @@ func (a *apiServer) PatchExperiment(\nexp.Notes = req.Experiment.Notes\nca...
Python
Apache License 2.0
determined-ai/determined
feat: add prometheus endpoint for internal Determined state mappings [DET-5890] (#3258) add prometheus endpoint exposing internal Determined state mappings
1
feat
null
756,038
14.12.2021 16:36:33
28,800
552d8e96f6f6dc47991548eb4f669ef730184708
refactor: move lien update logic into keeper
[ { "change_type": "MODIFY", "diff": "@@ -22,8 +22,6 @@ var (\na = testCoin(\"A\")\nb = testCoin(\"B\")\nc = testCoin(\"C\")\n- d = testCoin(\"D\")\n- e = testCoin(\"E\")\n)\nfunc TestMaxCoins(t *testing.T) {\n@@ -71,7 +69,7 @@ func TestComputeLienLocked(t *testing.T) {\n} {\nt.Run(tt.name, func(t *testing.T)...
JavaScript
Apache License 2.0
agoric/agoric-sdk
refactor: move lien update logic into keeper
1
refactor
null
756,064
14.12.2021 16:41:58
28,800
bb7535472d96a96d082a72cbca928ea1046c1fd6
test(SwingSet): unit test for unserializable promise resolutions
[ { "change_type": "MODIFY", "diff": "@@ -1328,10 +1328,10 @@ export function makeLiveSlots(\n}\n// for tests\n-export function makeMarshaller(syscall, gcTools) {\n+export function makeMarshaller(syscall, gcTools, vatID = 'forVatID') {\nconst { m } = build(\nsyscall,\n- 'forVatID',\n+ vatID,\nDEFAULT_VIRTUAL_...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test(SwingSet): unit test for unserializable promise resolutions
1
test
SwingSet
160,177
14.12.2021 17:32:09
-28,800
ec84a5a522cfa4bee853802bfb88bb708d8480b5
refactor: text theme
[ { "change_type": "MODIFY", "diff": "fill: 'red'\n}\n},\n- text: {\n- color: 'red'\n+ nodeText: {\n+ fontSize: 20,\n+ color: 'red',\n+ // overflowMode: 'ellipsis'\n+ overflowMode: 'autoWrap'\n}\n}\n);\n", "new_path": "packages/core/examples/theme/baseNode.html", "old_path": "packages/core/examples/th...
TypeScript
Apache License 2.0
didi/logicflow
refactor: text theme
1
refactor
null
217,922
14.12.2021 17:45:28
-3,600
607e53ee91951c2c7b48572231964d51dee22ab5
fix(lists): fixed list modification and creation waiting forever
[ { "change_type": "MODIFY", "diff": "@@ -83,7 +83,7 @@ export class ListPickerService {\nreturn this.progressService.showProgress(\ncombineLatest([this.listsFacade.myLists$, this.listsFacade.listsWithWriteAccess$]).pipe(\nmap(([myLists, listsICanWrite]) => [...myLists, ...listsICanWrite]),\n- map(lists => li...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(lists): fixed list modification and creation waiting forever
1
fix
lists
217,922
14.12.2021 17:45:40
-3,600
927218275926b7c64dd07e70579b181b5aa9afde
chore(release): 9.2.8
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"9.2.8\"></a>\n+## [9.2.8](https://github.com/ffxiv-teamcraft/ffxiv-teamcraft/compare/...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(release): 9.2.8
1
chore
release
889,620
14.12.2021 18:06:23
-28,800
fe8c21d1ad6fc3ee552bdc17a4cd60397ec3d827
feat: import Translator from ComicInfo.xml closes
[ { "change_type": "MODIFY", "diff": "@@ -53,6 +53,7 @@ class ComicInfoProvider(\ncomicInfo.letterer?.splitWithRole(\"letterer\")?.let { authors += it }\ncomicInfo.coverArtist?.splitWithRole(\"cover\")?.let { authors += it }\ncomicInfo.editor?.splitWithRole(\"editor\")?.let { authors += it }\n+ comicInfo.tran...
Kotlin
MIT License
gotson/komga
feat: import Translator from ComicInfo.xml closes #740
1
feat
null
366,946
14.12.2021 18:11:08
-32,400
f7c031d0fd478d9f2d4db3a7b921983aebd9f104
chore: change story to CSF
[ { "change_type": "MODIFY", "diff": "-import { storiesOf } from '@storybook/react'\n+import { Story } from '@storybook/react'\nimport * as React from 'react'\nimport styled from 'styled-components'\nimport { Theme, useTheme } from '../../hooks/useTheme'\nimport { FaExternalLinkAltIcon } from '../Icon'\n-stor...
TypeScript
MIT License
kufu/smarthr-ui
chore: change story to CSF (#2122)
1
chore
null
217,922
14.12.2021 18:27:44
-3,600
8fcbf8de3060b8415ebc1f99f21b7038ec710952
fix(list): possible fix for item removal
[ { "change_type": "MODIFY", "diff": "@@ -297,6 +297,9 @@ export class FirestoreListStorage extends FirestoreRelationalStorage<List> imple\nbefore: List, after: List, serverList: List): void {\n// Get diff between local backup and new version\nconst diff = compare(before, after);\n+ if (diff.length > 20) {\n+...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list): possible fix for item removal
1
fix
list
756,064
14.12.2021 18:28:11
28,800
1a4c96d8c4fb185f47dc0c2fe87623d55313d23b
test(SwingSet): test unserializable rejection too
[ { "change_type": "MODIFY", "diff": "@@ -1360,3 +1360,63 @@ test('unserializable promise resolution', async t => {\nt.deepEqual(l2.resolutions[0], [expectedPA, true, expectedError]);\n});\n+\n+test('unserializable promise rejection', async t => {\n+ // method-bearing objects must be marked as Far, else they ...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test(SwingSet): test unserializable rejection too
1
test
SwingSet
277,286
14.12.2021 18:34:18
-3,600
b4960ba8019fd795107f09b08276a68f19c6581e
fix: Release OS-agnostic py wheels as well
[ { "change_type": "MODIFY", "diff": "@@ -7,6 +7,7 @@ build: purge\nexport OS=windows; ./venv/bin/python3 setup.py bdist_wheel --plat-name=win_amd64\nexport OS=linux; ./venv/bin/python3 setup.py bdist_wheel --plat-name=manylinux1_x86_64\nexport OS=darwin; ./venv/bin/python3 setup.py bdist_wheel --plat-name=ma...
Python
Apache License 2.0
h2oai/wave
fix: Release OS-agnostic py wheels as well
1
fix
null
530,318
14.12.2021 18:38:55
25,200
df1cd94b6cb00ade81379613e4168b0df27820dd
fix: CDK v2 integration tests should not use v1 feature flags Changes CDK v2 integration tests so that they don't use the v1 feature flags. 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": "@@ -71,6 +71,7 @@ export class AutoDiscover extends Component {\nfor (const entrypoint of entrypoints) {\nnew IntegrationTest(this.project, {\nentrypoint: join(options.testdir, entrypoint),\n+ cdkDeps: options.cdkDeps,\ntsconfigPath: options.tsconfigPath,\n});\n}\n", ...
TypeScript
Apache License 2.0
projen/projen
fix: CDK v2 integration tests should not use v1 feature flags (#1345) Changes CDK v2 integration tests so that they don't use the v1 feature flags. Fixes #1343 --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1
fix
null
160,177
14.12.2021 18:39:46
-28,800
c66ff145acc4b19b1bd8ae248ab710fcdf94f90b
refactor: edge text
[ { "change_type": "MODIFY", "diff": "fill: '#FFFFFF',\nstrokeDasharray: '10, 1',\nclassName: 'custom-cls',\n- rx: 10,\n- ry: 10\n+ radius: 30,\n},\ncircle: {\nr: 10,\n}\n},\nnodeText: {\n+ // textWidth: 60,\nfontSize: 20,\ncolor: 'red',\n// overflowMode: 'ellipsis'\noverflowMode: 'autoWrap'\n+ },\n+ baseEdge...
TypeScript
Apache License 2.0
didi/logicflow
refactor: edge text
1
refactor
null
277,286
14.12.2021 18:46:55
-3,600
025027952c4adba6734e9c5566431b41a696fd95
ci: Publish OS-agnostic wheel to nightly
[ { "change_type": "MODIFY", "diff": "@@ -48,6 +48,7 @@ jobs:\npy/dist/h2o_wave-${{ env.VERSION }}-py3-none-macosx_10_9_x86_64.whl\npy/dist/h2o_wave-${{ env.VERSION }}-py3-none-manylinux1_x86_64.whl\npy/dist/h2o_wave-${{ env.VERSION }}-py3-none-win_amd64.whl\n+ py/dist/h2o_wave-${{ env.VERSION }}-py3-none-any...
Python
Apache License 2.0
h2oai/wave
ci: Publish OS-agnostic wheel to nightly
1
ci
null
866,404
14.12.2021 19:16:27
10,800
ca4ca24d8f8c5fe5224cf551974609f4cc9fe754
chore(content-block-mixed): storybook qa [Content block mixed] - Storybooks QA
[ { "change_type": "MODIFY", "diff": "@@ -25502,7 +25502,7 @@ exports[`Storyshots Components|Content block mixed Default 1`] = `\n},\n\"items\": Array [\nObject {\n- \"heading\": \"Lorem ipsum dolor sit amet.\",\n+ \"heading\": \"Lorem ipsum dolor sit amet\",\n\"items\": Array [\nObject {\n\"copy\": \"Lorem i...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(content-block-mixed): storybook qa (#7645) [Content block mixed] - Storybooks QA #5585
1
chore
content-block-mixed
530,339
14.12.2021 20:09:25
18,000
e449718440531525fa2210ddcc99d89269367bbe
chore(docs): typescript project doc There is no TypeScript doc in the repository so I thought I would get the ball rolling on starting one. 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": "@@ -46,14 +46,12 @@ const project = new java.JavaProject({\nproject.synth();\n```\n-> At this point, projenrc is in JavaScript, but in the future we plan to allow\n-> specifying your project definitions in Java.\n+It is possible to create your projenrc file in java. In th...
TypeScript
Apache License 2.0
projen/projen
chore(docs): typescript project doc (#1341) There is no TypeScript doc in the repository so I thought I would get the ball rolling on starting one. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1
chore
docs
401,147
14.12.2021 20:30:49
-19,080
87c5bdc52412c010999c62d3ebc9db08a3a8ec36
style: update single select border radius as per new design affects:
[ { "change_type": "MODIFY", "diff": "@@ -5485,7 +5485,7 @@ exports[`SingleSelect component with fusion variant should render options correc\nlist-style: none;\nbox-sizing: border-box;\nbox-shadow: 0 0.2rem 0.8rem #B0BCC8;\n- border-radius: 1.0rem;\n+ border-radius: 0.4rem;\noverflow: auto;\nmax-height: 20rem...
TypeScript
MIT License
medly/medly-components
style: update single select border radius as per new design (#556) affects: @medly-components/core, @medly-components/theme
1
style
null
160,177
14.12.2021 20:42:58
-28,800
072ad9e2d4cba788e04f33f060b6347953dcfb3f
refactor: theme polyline
[ { "change_type": "MODIFY", "diff": "background: {\nfill: '#919810'\n}\n+ },\n+ polyline: {\n+ offset: 20,\n+ strokeDasharray: 'none',\n+ strokeWidth: 4,\n}\n}\n);\n", "new_path": "packages/core/examples/theme/baseNode.html", "old_path": "packages/core/examples/theme/baseNode.html" }, { "chan...
TypeScript
Apache License 2.0
didi/logicflow
refactor: theme polyline
1
refactor
null
447,446
14.12.2021 22:36:38
18,000
69d0be8a30aebec28d38d980bcfa11d22537a471
fix: remove arrows from number inputs on mozilla in ColorPicker
[ { "change_type": "MODIFY", "diff": "@@ -24,6 +24,10 @@ const StyledNumberInput = styled(Input)`\nappearance: none;\nmargin: 0;\n}\n+\n+ input[type='number'] {\n+ -moz-appearance: textfield;\n+ }\n`;\nexport default StyledNumberInput;\n", "new_path": "src/components/ColorPicker/commons/rgba/styled.js", ...
JavaScript
MIT License
nexxtway/react-rainbow
fix: remove arrows from number inputs on mozilla in ColorPicker (#2336)
1
fix
null
571,270
14.12.2021 23:25:28
18,000
87b0cd40e305b164deadd1526323755a1622fe1a
fix: grammar and doc strings
[ { "change_type": "MODIFY", "diff": "@@ -55,7 +55,7 @@ function domToReact(nodes, options) {\nisWhitespace = !node.data.trim().length;\nif (isWhitespace && node.parent && !canTextBeChildOfNode(node.parent)) {\n- // We have a whitespace node that can't be nested in it's parent\n+ // We have a whitespace node ...
JavaScript
MIT License
remarkablemark/html-react-parser
fix: grammar and doc strings
1
fix
null
571,270
14.12.2021 23:53:06
18,000
271803ea8281d760306f1437ef938145f88a94bc
test: added snapshot test
[ { "change_type": "MODIFY", "diff": "@@ -148,6 +148,18 @@ describe('trim option', () => {\nexpect(render(reactElement)).toBe(\n'<table><tbody><tr><td>\\n</td></tr></tbody></table>'\n);\n+ expect(reactElement).toMatchInlineSnapshot(`\n+ <table>\n+ <tbody>\n+ <tr>\n+ <td>\n+\n+\n+ </td>\n+ </tr>\n+ </tbody>\n+...
JavaScript
MIT License
remarkablemark/html-react-parser
test: added snapshot test
1
test
null
530,289
15.12.2021 00:00:52
28,800
a84b57a3460c797ed39bca14e62c99fe8c9a3e40
feat: init python projects with .projenrc.py BREAKING CHANGE: `PythonProject` is now initialized with a `.projenrc.py` file by default instead of `.projenrc.js`. 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": "@@ -39,13 +39,13 @@ export class Projenrc extends Component {\nconstructor(project: Project, options: ProjenrcOptions = {}) {\nsuper(project);\n- const projenVersion = options.projenVersion ?? PROJEN_VERSION; // ?\n+ const projenVersion = options.projenVersion ?? PROJEN_V...
TypeScript
Apache License 2.0
projen/projen
feat: init python projects with .projenrc.py (#1346) BREAKING CHANGE: `PythonProject` is now initialized with a `.projenrc.py` file by default instead of `.projenrc.js`. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1
feat
null
571,270
15.12.2021 00:02:23
18,000
61cf2beedc96c4c4222ca8cba06fe9e47bff0417
test: added td with &nbsp;
[ { "change_type": "MODIFY", "diff": "@@ -141,12 +141,12 @@ describe('trim option', () => {\nit('preserves whitespace text nodes when disabled if valid in parent (default)', () => {\nconst html = `<table>\n<tbody>\n- <tr><td>\\n</td>\\t</tr>\\r\n+ <tr><td>\\n</td><td>&nbsp;</td>\\t</tr>\\r\n</tbody>\n</table>...
JavaScript
MIT License
remarkablemark/html-react-parser
test: added td with &nbsp;
1
test
null
306,653
15.12.2021 00:03:00
-19,080
80f1dd1739c21e78e60b0dc4fe37478cf083c064
fix(dropdown): update the padding between the option when checkbox is available
[ { "change_type": "MODIFY", "diff": ".OptionCheckbox {\nwidth: 100%;\npadding-left: var(--spacing-l);\n- padding-top: var(--spacing-m);\n- padding-bottom: var(--spacing-m);\n+ padding-top: 6px;\n+ padding-bottom: 6px;\n}\n.Option--active,\n", "new_path": "css/src/components/dropdown.css", "old_path":...
TypeScript
MIT License
innovaccer/design-system
fix(dropdown): update the padding between the option when checkbox is available
1
fix
dropdown
494,336
15.12.2021 00:03:18
28,800
a527db4487c4efd2e96f8bf84d48a3cca30a14a1
fix: add missing sample app paths to oathkeeper config Add "welcome,registration,login,verification" and "**.png" to the paths oathkeeper forwards to self service ui.
[ { "change_type": "MODIFY", "diff": "preserve_host: true\nurl: \"http://kratos-selfservice-ui-node:4435\"\nmatch:\n- url: \"http://127.0.0.1:4455/<{error,recovery,verify,auth/*,**.css,**.js}{/,}>\"\n+ url: \"http://127.0.0.1:4455/<{welcome,registration,login,verification,error,recovery,verify,auth/*,**.css,*...
Go
Apache License 2.0
ory/kratos
fix: add missing sample app paths to oathkeeper config (#2058) Add "welcome,registration,login,verification" and "**.png" to the paths oathkeeper forwards to self service ui.
1
fix
null
571,270
15.12.2021 00:05:41
18,000
ce5e01bb8a1682fac731726fb2f6b43e82d3f954
test: added td with text
[ { "change_type": "MODIFY", "diff": "@@ -141,17 +141,20 @@ describe('trim option', () => {\nit('preserves whitespace text nodes when disabled if valid in parent (default)', () => {\nconst html = `<table>\n<tbody>\n- <tr><td>\\n</td><td>&nbsp;</td>\\t</tr>\\r\n+ <tr><td>hello</td><td>\\n</td><td>&nbsp;</td>\\...
JavaScript
MIT License
remarkablemark/html-react-parser
test: added td with text
1
test
null
71,547
15.12.2021 07:03:09
25,200
65414c655bfd08fab0c8113c7cfae19871a611c3
feat(efs): add support for transitioning files from infrequent access to primary storage This PR adds support for [TransitionToPrimaryStorageClass](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-lifecyclepolicy.html) for ``AWS::EFS::FileSystem`` *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": "@@ -36,6 +36,7 @@ const fileSystem = new efs.FileSystem(this, 'MyEfsFileSystem', {\nvpc: new ec2.Vpc(this, 'VPC'),\nlifecyclePolicy: efs.LifecyclePolicy.AFTER_14_DAYS, // files are not transitioned to infrequent access (IA) storage by default\nperformanceMode: efs.Perform...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(efs): add support for transitioning files from infrequent access to primary storage (#16522) This PR adds support for [TransitionToPrimaryStorageClass](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-lifecyclepolicy.html) for ``AWS::EFS::FileSystem`` ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
feat
efs
317,768
15.12.2021 07:49:32
0
0d079a4d8a8753f118c150183e4e426bfd9ca8b2
feat(brewfather): add segment
[ { "change_type": "MODIFY", "diff": "@@ -56,6 +56,8 @@ type cache interface {\nset(key, value string, ttl int)\n}\n+type HTTPRequestModifier func(request *http.Request)\n+\ntype windowsRegistryValueType int\nconst (\n@@ -96,7 +98,7 @@ type environmentInfo interface {\ngetShellName() string\ngetWindowTitle(im...
Go
MIT License
jandedobbeleer/oh-my-posh
feat(brewfather): add segment
1
feat
brewfather
915,269
15.12.2021 09:09:46
-3,600
b6b58249aec358d903bee18acc23836fe77b3860
docs: update authz.md
[ { "change_type": "MODIFY", "diff": "@@ -261,7 +261,7 @@ $ cat ./rules.json\n\"handler\": \"keto_engine_acp_ory\",\n\"config\": {\n\"required_action\": \"my:action:$1\",\n- \"required_resource\": \"my:resource:$2:foo:$1\"\n+ \"required_resource\": \"my:resource:$2:foo:$1\",\n\"subject\": \"{{ .Extra.email }}...
Go
Apache License 2.0
ory/oathkeeper
docs: update authz.md (#879) Co-authored-by: hackerman <3372410+aeneasr@users.noreply.github.com>
1
docs
null
777,389
15.12.2021 09:52:53
28,800
0c12fe3dc5aebfc255b1424f24f2fe535d37d1b0
test: store and report webui test results
[ { "change_type": "MODIFY", "diff": "@@ -1175,10 +1175,16 @@ jobs:\ntest-unit-react:\ndocker:\n- image: cimg/node:14.16\n+ environment:\n+ CI: \"true\"\nsteps:\n- checkout\n- react-get-deps\n- - run: make -C webui/react test\n+ - run: make -C webui/react test-ci\n+ - store_test_results:\n+ path: webui/react/...
Python
Apache License 2.0
determined-ai/determined
test: store and report webui test results (#3248)
1
test
null
277,286
15.12.2021 10:26:26
-3,600
498ecec808524966bc9e8a818385db8ea5349775
feat: Nudge up header title a little.
[ { "change_type": "MODIFY", "diff": "@@ -70,7 +70,7 @@ const css = stylesheet({\ntitle: {\ncolor: cssVar('$themePrimary')\n},\n- subtitle: {\n+ nudgeUp: {\nmarginTop: -5, // Nudge up slightly to account for padding.\n},\n})\n@@ -132,9 +132,9 @@ export const View = bond(({ name, state, changed }: Model<State ...
Python
Apache License 2.0
h2oai/wave
feat: Nudge up header title a little.
1
feat
null
777,389
15.12.2021 10:27:17
28,800
4632cbe865c866ea2686f18b5163cb96832c7bef
chore: simplify job queue state tracking
[ { "change_type": "MODIFY", "diff": "@@ -61,7 +61,7 @@ func (f *fairShare) createJobQInfo(\nfor _, req := range taskList.taskByID {\nreqs = append(reqs, req)\n}\n- jobQ, jobActors := mergeToJobQInfo(reqs)\n+ jobQ, jobActors := reduceToJobQInfo(reqs)\nfor _, j := range jobQ {\nj.JobsAhead = -1 // unsupported....
Python
Apache License 2.0
determined-ai/determined
chore: simplify job queue state tracking (#3302)
1
chore
null
711,658
15.12.2021 10:35:54
-3,600
0b74cc9642f4b2b726d52a9632c2d748a46447de
fix(admin-ui): Fix cmd+u shortcut on macOS
[ { "change_type": "MODIFY", "diff": "@@ -74,7 +74,7 @@ export class AppComponent implements OnInit {\n@HostListener('window:keydown', ['$event'])\nhandleGlobalHotkeys(event: KeyboardEvent) {\n- if (event.ctrlKey === true && event.key === 'u') {\n+ if ((event.ctrlKey === true || event.metaKey === true) && eve...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Fix cmd+u shortcut on macOS (#1291)
1
fix
admin-ui
777,374
15.12.2021 10:59:06
28,800
30397f25938e1855138970862d82d7c5f19d5fba
chore: unpin google-cloud dependencies.
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import contextlib\nimport logging\nimport os\nimport tempfile\n-from typing import Iterator, Optional\n+from typing import Iterator, Optional, no_type_check\nimport requests.exceptions\nimport urllib3.exceptions\n@@ -60,6 +60,7 @@ class GCSStorageManager(S...
Python
Apache License 2.0
determined-ai/determined
chore: unpin google-cloud dependencies. (#3320)
1
chore
null
306,385
15.12.2021 11:10:45
-3,600
be84466311b35fb8e0f2960eb04674bd99d435cb
fix(button): increase click area to meet WCAG success criteria
[ { "change_type": "ADD", "diff": "+---\n+'@lion/button': patch\n+---\n+\n+Increase minimum click area to meet WCAG Success Criterion 2.5.5 Target Size (Enhanced)\n", "new_path": ".changeset/lemon-ravens-mate.md", "old_path": null }, { "change_type": "MODIFY", "diff": "@@ -23,6 +23,8 @@ ex...
JavaScript
MIT License
ing-bank/lion
fix(button): increase click area to meet WCAG success criteria
1
fix
button
866,399
15.12.2021 11:34:52
18,000
d1f36c5328c599695456cacd1535791b9f4bb45a
chore(cta-card): add missing heading in WC storybook ### Related Ticket(s) ### Description This PR adds a card heading knob that was missing in the CTA - Card variant. ### Changelog ![Screen Shot 2021-12-14 at 4 25 08 PM](https://user-images.githubusercontent.com/1815714/146081692-286ed3f2-09c5-4116-a578-dd449679cda9.png)
[ { "change_type": "MODIFY", "diff": "@@ -161,6 +161,7 @@ Button.story = {\nexport const Card = ({ parameters }) => {\nconst {\n+ heading,\ncopy,\nfooterCopy,\nctaType,\n@@ -181,6 +182,7 @@ export const Card = ({ parameters }) => {\nhref=\"${ifNonNull(href)}\"\n?no-poster=${noPoster}\n>\n+ <dds-card-heading>$...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(cta-card): add missing heading in WC storybook (#7876) ### Related Ticket(s) https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/7581 ### Description - This PR adds a card heading knob that was missing in the CTA - Card variant. ### Changelog ![Screen Shot 2021-12-14 at 4 25 08 PM](https://user-images.githubusercontent.com/1815714/146081692-286ed3f2-09c5-4116-a578-dd449679cda9.png)
1
chore
cta-card
134,831
15.12.2021 12:01:30
-3,600
f8780d16da721dbc22b99b19803ce58305d85982
fix: bump create-react-app and react-scripts
[ { "change_type": "MODIFY", "diff": "@@ -11,11 +11,6 @@ install-deps: &install-deps\nexecutors:\nnode-container-lts:\n- docker:\n- - image: node:12\n- environment: *base-env\n-\n- node-container-next-lts:\ndocker:\n- image: node:14\nenvironment: *base-env\n@@ -127,11 +122,6 @@ jobs:\nsteps:\n- lint-and-test\...
JavaScript
MIT License
contentful/create-contentful-app
fix: bump create-react-app and react-scripts (#759)
1
fix
null
756,013
15.12.2021 12:37:58
21,600
20707a137fe8ccb7f685fb4bb79b66094efa902b
fix(notifier): make the `Updater` a Far object
[ { "change_type": "MODIFY", "diff": "@@ -85,7 +85,7 @@ export const makeNotifierKit = (...args) => {\n...baseNotifier,\n});\n- const updater = harden({\n+ const updater = Far('updater', {\nupdateState(state) {\nif (final()) {\nthrow new Error('Cannot update state after termination.');\n@@ -155,7 +155,6 @@ ex...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(notifier): make the `Updater` a Far object
1
fix
notifier
756,013
15.12.2021 12:38:32
21,600
87aeed616d10941c625117ae03879f5ffd1ad355
refactor(pegasus): code cleanups
[ { "change_type": "MODIFY", "diff": "+// @ts-check\nimport { details as X } from '@agoric/assert';\nimport { AmountMath } from '@agoric/ertp';\nimport { E } from '@agoric/eventual-send';\n-import { Far } from '@agoric/marshal';\n+import { Far } from '@endo/marshal';\nimport { makeOncePromiseKit } from './onc...
JavaScript
Apache License 2.0
agoric/agoric-sdk
refactor(pegasus): code cleanups
1
refactor
pegasus
104,828
15.12.2021 12:43:47
-3,600
5e6f36659964f56e0cf24fd501710adf1f9a7e1f
doc(simplelist): fix overflow direction in story
[ { "change_type": "MODIFY", "diff": "@@ -33,7 +33,7 @@ const getRowActions = (dir) => () => [\nsize=\"small\"\nonClick={() => action('edit')()}\niconDescription=\"Edit\"\n- tooltipPosition={dir === 'ltr' ? 'left' : 'right'}\n+ tooltipPosition={dir !== 'rtl' ? 'left' : 'right'}\n/>,\n<Button\nkey=\"simple-lis...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
doc(simplelist): fix overflow direction in story
1
doc
simplelist
815,601
15.12.2021 13:00:13
-28,800
2186c4f05e8072af1d12c06044bee4eaa039eea4
fix: verification cache reset during hardfork
[ { "change_type": "MODIFY", "diff": "@@ -17,6 +17,7 @@ use ckb_types::{\nresolve_transaction_with_options, BlockCellProvider, OverlayCellProvider,\nResolveOptions, ResolvedTransaction,\n},\n+ hardfork::HardForkSwitch,\nservice::{Request, DEFAULT_CHANNEL_SIZE, SIGNAL_CHANNEL_SIZE},\nBlockExt, BlockNumber, Blo...
Rust
MIT License
nervosnetwork/ckb
fix: verification cache reset during hardfork
1
fix
null
217,922
15.12.2021 13:22:33
-3,600
a82c2b2ca5eee67a80571aa0fb6ce09a66fcb224
perf(community-lists): lists won't be searched without enough details anymore
[ { "change_type": "MODIFY", "diff": "@@ -163,7 +163,7 @@ export class FirestoreListStorage extends FirestoreRelationalStorage<List> imple\n}\npublic getCommunityLists(tags: string[], name: string): Observable<List[]> {\n- if (tags.length === 0 && name.length < 3) {\n+ if (tags.length === 0 && name.length < 1...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
perf(community-lists): lists won't be searched without enough details anymore
1
perf
community-lists
217,922
15.12.2021 13:24:20
-3,600
9b2e80969f9c09a2ca6fd24c9652442bf9990dd4
chore: better visual clarity on short name error in community lists
[ { "change_type": "MODIFY", "diff": "required type=\"number\"/>\n</nz-input-group>\n<ng-template #jobIcon>\n- <img *ngIf=\"(+control | i18nRow:'jobAbbr' | async)?.en as icon\" alt=\"\" class=\"job-icon\" src=\"https://garlandtools.org/db/images/{{icon}}.png\">\n+ <img *ngIf=\"(+control | i18nRow:'jobAbbr' | ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: better visual clarity on short name error in community lists
1
chore
null
777,401
15.12.2021 13:24:49
18,000
7ff1f8ec290091953b751b6b4d83a0e0d69281e5
fix: collect system metrics from all agents This change corrects usage of rank, cross_rank and local_rank in the profiler so that it correctly knows it should collect system metrics when the local rank is 0.
[ { "change_type": "MODIFY", "diff": "@@ -39,8 +39,8 @@ class TrialController(metaclass=abc.ABCMeta):\nself.prof = profiler.ProfilerAgent.from_env(\nenv,\n- context.distributed.cross_rank,\n- context.distributed.rank,\n+ global_rank=context.distributed.rank,\n+ local_rank=context.distributed.local_rank,\n)\nd...
Python
Apache License 2.0
determined-ai/determined
fix: collect system metrics from all agents (#3313) [DET-6332] This change corrects usage of rank, cross_rank and local_rank in the profiler so that it correctly knows it should collect system metrics when the local rank is 0.
1
fix
null
217,922
15.12.2021 13:27:10
-3,600
0337afa7f3e49fbdae3e3143bee09062be921fad
fix(lists): fixed vendors popup not closing properly when clicking on db link
[ { "change_type": "MODIFY", "diff": "<div fxLayout=\"row\" fxLayoutAlign=\"flex-start center\" fxLayoutGap=\"5px\">\n<div>{{vendor.npcId | i18nRow:'npcs' | i18n}}</div>\n<nz-tag class=\"custom-tag\" style.border-color=\"f50\" *ngIf=\"vendor.festival\">{{'COMMON.Festival' | translate}}</nz-tag>\n- <app-db-but...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(lists): fixed vendors popup not closing properly when clicking on db link
1
fix
lists
306,320
15.12.2021 13:27:52
0
cc098b4a3e72fea19103606af8e79438844ad791
fix: race condition when detecting CloudFormation template
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,7 @@ import (\n\"fmt\"\n\"os\"\n\"path/filepath\"\n+ \"sync\"\n\"github.com/awslabs/goformation/v4\"\n\"github.com/infracost/infracost/internal/providers/cloudformation\"\n@@ -155,7 +156,14 @@ func isTerraformDir(path string) bool {\nreturn terraform.IsTerrafor...
Go
Apache License 2.0
infracost/infracost
fix: race condition when detecting CloudFormation template
1
fix
null
217,922
15.12.2021 13:36:00
-3,600
4c4b8097750ff4c835239b7bf4aa8526f629e6ee
fix(db): better display for npc pages
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,6 @@ import * as fromLazyData from './+state/lazy-data.reducer';\nimport { LazyDataEffects } from './+state/lazy-data.effects';\n@NgModule({\n- declarations: [],\nimports: [\nCommonModule,\nStoreModule.forFeature(\n", "new_path": "apps/client/src/app/lazy-d...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): better display for npc pages
1
fix
db
126,276
15.12.2021 13:58:51
10,800
10cf9640d98e95a2198c3820c0c812c6b7164c99
chore(cmd/immuclient): return actual login error
[ { "change_type": "MODIFY", "diff": "@@ -21,9 +21,10 @@ import (\n\"context\"\n\"errors\"\n\"fmt\"\n- \"google.golang.org/grpc/status\"\n\"strings\"\n+ \"google.golang.org/grpc/status\"\n+\n\"github.com/codenotary/immudb/pkg/api/schema\"\n\"github.com/codenotary/immudb/pkg/auth\"\n\"github.com/codenotary/imm...
Go
Apache License 2.0
codenotary/immudb
chore(cmd/immuclient): return actual login error Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
cmd/immuclient
551,636
15.12.2021 14:05:03
0
c0603261390c20f36793979eecbac5198d8afde7
chore(test): speeding up tests (and test name adjustment)
[ { "change_type": "MODIFY", "diff": "@@ -75,9 +75,9 @@ public class LogAlertSocket implements Closeable {\nprivate long fdSocket = -1;\nprivate String alertTargets; // host[:port](,host[:port])*\n- public LogAlertSocket(String alertTargets, Log log) {\n+ public LogAlertSocket(NetworkFacade nf, String alertTa...
Java
Apache License 2.0
questdb/questdb
chore(test): speeding up tests (and test name adjustment) (#1689)
1
chore
test
104,828
15.12.2021 14:33:41
-3,600
2cb98d7c3969b0ce990c4929ba98a1bbf8fc846b
fix(listheader): fix button group spacing
[ { "change_type": "MODIFY", "diff": "padding: $spacing-04 $spacing-05;\nborder-bottom: 1px solid $ui-03;\nheight: rem(56px);\n+ column-gap: $spacing-05;\n&--title {\n@include type-style('productive-heading-02');\nflex: 1;\n&--btn-container {\ndisplay: flex;\n- padding: $spacing-03;\nalign-items: center;\n- &...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(listheader): fix button group spacing
1
fix
listheader
104,828
15.12.2021 14:51:19
-3,600
3e316cadf66607634a986ca69e97f74eb8b28248
fix(virtuallistcontent): align load more text with list values
[ { "change_type": "MODIFY", "diff": "@@ -160,7 +160,9 @@ const VirtualListContent = ({\nconst virtualListRef = virtualListRefProp || internalVirtualListRef;\nconst renderLoadMore = (item, isLoadingMore, level, style) => {\n- const indentation = `${level * 32}px`;\n+ const columnGap = '16';\n+ const levelOffs...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(virtuallistcontent): align load more text with list values
1
fix
virtuallistcontent
160,177
15.12.2021 15:01:31
-28,800
11b957f2410e8fde727d1bff7516cbf244209716
refactor: theme anchor
[ { "change_type": "MODIFY", "diff": "offset: 20,\nstrokeDasharray: 'none',\nstrokeWidth: 4,\n+ },\n+ bezier: {\n+ stroke: 'red',\n+ adjustLine: {\n+ strokeWidth: 2,\n+ stroke: 'red'\n+ },\n+ adjustAnchor: {\n+ stroke: 'blue',\n+ fill: 'green'\n+ }\n}\n}\n);\nlf.render({\nnodes: [\n{\n+ id: '30',\ntype: 'rect...
TypeScript
Apache License 2.0
didi/logicflow
refactor: theme anchor
1
refactor
null
756,013
15.12.2021 15:04:40
21,600
636e0994761998b0857232f9bdd6f0b3ac451b31
fix(wallet): properly get the first timerService value
[ { "change_type": "MODIFY", "diff": "@@ -29,17 +29,28 @@ export const makeTimerServiceDateNow = (\n/** @type {PromiseRecord<typeof dateNow>} */\nconst dateNowPK = makePromiseKit();\n+ // Observe the timer service regularly.\n+ const observeTimer = async () => {\n+ const observer = {\n+ updateState(stamp) {\n...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(wallet): properly get the first timerService value
1
fix
wallet
791,682
15.12.2021 15:07:22
18,000
2c1577451baf94be15edb8255ff47298359a7fbb
core(font-size): fix CSS selector regex
[ { "change_type": "MODIFY", "diff": "@@ -36,25 +36,28 @@ function hasFontSizeDeclaration(style) {\n/**\n* Computes the CSS specificity of a given selector, i.e. #id > .class > div\n+ * TODO: Handle pseudo selectors (:not(), :where, :nth-child) and attribute selectors\n* LIMITATION: !important is not respecte...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(font-size): fix CSS selector regex (#13455) Co-authored-by: Paul Irish <paulirish@users.noreply.github.com>
1
core
font-size
791,682
15.12.2021 15:11:06
18,000
4afafaea251074ce41d9cb24749d629e6f6cc50f
core(fr): compute timespan saving with observed throughput
[ { "change_type": "MODIFY", "diff": "@@ -200,19 +200,6 @@ class UnusedBytes extends Audit {\nreturn Math.round(Math.max(savings, 0) / 10) * 10;\n}\n- /**\n- * @param {number} wastedBytes\n- * @param {Simulator} simulator\n- */\n- static computeWastedMsWithThroughput(wastedBytes, simulator) {\n- const bitsPer...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(fr): compute timespan saving with observed throughput (#13478)
1
core
fr
217,922
15.12.2021 15:12:14
-3,600
e2568bb9273495a1620f1027fbc1c6f2c510984f
fix(lists): fixed lists not assignable to a team
[ { "change_type": "MODIFY", "diff": "nz-menu-item>\n{{'PERMISSIONS.Title' | translate}}\n</li>\n- <li (click)=\"removeEphemeral(_list)\" *ngIf=\"!publicDisplay && _list.ephemeral\" [nzDisabled]=\"(permissionLevel$ | async) < 40\"\n+ <li (click)=\"removeEphemeral(_list)\" *ngIf=\"!publicDisplay && _list.ephem...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(lists): fixed lists not assignable to a team
1
fix
lists
71,646
15.12.2021 15:33:10
18,000
890c4c5f9d4835b39c8448e47c781b5e8334cd60
feat(aws-s3): Adding Intelligent Tiering to Bucket Allows users to add Intelligent Tiering to their s3 buckets. Modelling of CfnBucket was done before. 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": "@@ -492,3 +492,20 @@ const bucket = new s3.Bucket(this, 'MyBucket', {\n});\nbucket.transferAccelerationUrlForObject('objectname');\n```\n+\n+## Intelligent Tiering\n+\n+[Intelligent Tiering](https://docs.aws.amazon.com/AmazonS3/latest/userguide/intelligent-tiering.html) c...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(aws-s3): Adding Intelligent Tiering to Bucket (#18013) Allows users to add Intelligent Tiering to their s3 buckets. Modelling of CfnBucket was done before. Fixes #16191 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
feat
aws-s3
269,464
15.12.2021 16:03:58
10,800
c540c6cbf58d0dddcca2055bb692c3eb64b5415b
docs: fix hooks env usage closes
[ { "change_type": "MODIFY", "diff": "@@ -41,7 +41,7 @@ GoReleaser allows this with the global hooks feature.\ndir: ./submodule # specify command working directory\n- cmd: touch {{ .Env.FILE_TO_TOUCH }}\nenv:\n- FILE_TO_TOUCH: 'something-{{ .ProjectName }}' # specify hook level environment variables\n+ - 'FIL...
Go
MIT License
goreleaser/goreleaser
docs: fix hooks env usage closes #2762 Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
1
docs
null
160,177
15.12.2021 16:32:29
-28,800
b5ed84397ae8d436d79ca2e93410c995b32eabc0
refactor: theme
[ { "change_type": "MODIFY", "diff": "@@ -238,8 +238,8 @@ class Anchor extends Component<IProps, IState> {\ny1={startY}\nx2={endX}\ny2={endY}\n- pointer-events=\"none\"\n{...edgeStyle}\n+ pointer-events=\"none\"\n/>\n)}\n</g>\n", "new_path": "packages/core/src/view/Anchor.tsx", "old_path": "packages/c...
TypeScript
Apache License 2.0
didi/logicflow
refactor: theme
1
refactor
null
428,361
15.12.2021 16:36:21
18,000
30f2a2d9304a429f025a0be244c83ca97e72cddf
fix(NODE-3675): SRV option bug correctly defaults authSource to $external
[ { "change_type": "MODIFY", "diff": "import type { Document } from '../../bson';\nimport { MongoAPIError, MongoMissingCredentialsError } from '../../error';\n-import { AuthMechanism } from './providers';\n+import { AUTH_MECHS_AUTH_SRC_EXTERNAL, AuthMechanism } from './providers';\n// https://github.com/mongo...
TypeScript
Apache License 2.0
mongodb/node-mongodb-native
fix(NODE-3675): SRV option bug correctly defaults authSource to $external (#3079)
1
fix
NODE-3675
306,320
15.12.2021 18:11:30
0
bfe407d71e46f112eb98403ecd68314122fe43d0
fix: run projects with same path synchronously to prevent Terraform race conditions
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,7 @@ import (\n\"os\"\n\"runtime\"\n\"strings\"\n+ \"sync\"\n\"time\"\n\"github.com/Rhymond/go-money\"\n@@ -74,14 +75,24 @@ func runMain(cmd *cobra.Command, runCtx *config.RunContext) error {\n}\n}\n+ // Create a mutex for each path, so we can synchronize the r...
Go
Apache License 2.0
infracost/infracost
fix: run projects with same path synchronously to prevent Terraform race conditions
1
fix
null
217,922
15.12.2021 18:15:29
-3,600
4386ebc25b26503307da82bfafb9475fd2909646
fix(gearsets): fixed import from ariyala sometimes breaking
[ { "change_type": "MODIFY", "diff": "@@ -232,7 +232,6 @@ export class GearsetsFacade {\ngearset.head = this.getAriyalaEquipmentPiece(dataset, 'head', itemMeldingData, hqFlags);\ngearset.chest = this.getAriyalaEquipmentPiece(dataset, 'chest', itemMeldingData, hqFlags);\ngearset.gloves = this.getAriyalaEquipme...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(gearsets): fixed import from ariyala sometimes breaking
1
fix
gearsets
217,922
15.12.2021 18:18:34
-3,600
d8974a13df7f1c72e8c5a8cae439bf0f5d81a975
feat(alarms): added copy to clipboard on item name click event in sidebar
[ { "change_type": "MODIFY", "diff": "<span *ngIf=\"row.alarm.itemId; else customName\" class=\"item-name\">\n<i *ngIf=\"row.groupNames\" [nzTooltipTitle]=\"row.groupNames\" class=\"folder-icon\" nz-icon\nnz-tooltip nzType=\"folder-open\"></i>\n- {{row.alarm.itemId | itemName: row.alarm | i18n}}\n+ <span [ite...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(alarms): added copy to clipboard on item name click event in sidebar
1
feat
alarms
217,922
15.12.2021 18:21:45
-3,600
e0ed291142b4fde4e0fc1c02d33892152ded239c
feat(metrics): added localized numbers formatting for amounts
[ { "change_type": "MODIFY", "diff": "<tr *ngFor=\"let row of dataTable.data\">\n<!-- TODO: if we ever support other probes than currency and item, this will need a switch/case system -->\n<td [nzEllipsis]=\"true\"><a routerLink=\"/db/{{translate.currentLang}}/item/{{row.data[0]}}\"></a>{{row.data[0] | itemNa...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(metrics): added localized numbers formatting for amounts
1
feat
metrics
217,922
15.12.2021 18:22:47
-3,600
98e1d4e852d9045b1fad13e4c612653a7bd4edb3
fix(retainer-ventures): removed venture cost from the display table
[ { "change_type": "MODIFY", "diff": "<div nz-col nzMd=\"1\" fxLayout=\"row\" fxLayoutAlign=\"center center\">\n<app-item-icon [itemId]=\"task.item\" [width]=\"32\"></app-item-icon>\n</div>\n- <div fxLayout=\"column\" nz-col nzMd=\"10\" fxLayoutAlign=\"center flex-start\" fxLayoutGap=\"1px\">\n+ <div fxLayout...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(retainer-ventures): removed venture cost from the display table
1
fix
retainer-ventures
306,320
15.12.2021 18:29:43
0
d86edacf284e68467b78a11224b33c1dc84cef1a
refactor: remove global spinner to remove possible race conditions
[ { "change_type": "MODIFY", "diff": "@@ -20,8 +20,6 @@ import (\n\"github.com/fatih/color\"\n)\n-var spinner *ui.Spinner\n-\nfunc main() {\nvar appErr error\nupdateMessageChan := make(chan *update.Info)\n@@ -158,11 +156,6 @@ func checkAPIKey(apiKey string, apiEndpoint string, defaultEndpoint string) erro\n}\...
Go
Apache License 2.0
infracost/infracost
refactor: remove global spinner to remove possible race conditions
1
refactor
null
838,025
15.12.2021 18:32:55
-10,800
09630a7b537a63af2bb6b81b5214f78a8f62f70c
feat: MessagesMessage add MessageTag
[ { "change_type": "MODIFY", "diff": "@@ -79,6 +79,7 @@ type MessagesMessage struct {\nUpdateTime int `json:\"update_time\"` // Date when the message has been updated in Unixtime\nMembersCount int `json:\"members_count\"` // Members number\nExpireTTL int `json:\"expire_ttl\"`\n+ MessageTag string `json:\"mess...
Go
MIT License
severecloud/vksdk
feat: MessagesMessage add MessageTag
1
feat
null
841,421
15.12.2021 18:33:35
-32,400
24179bd9beeb8ac519186db4a71a6919852afa43
fix(webpack/ast): Handle typescript swc_webpack_ast: - Add `proces_file`. - Add support for typescript.
[ { "change_type": "MODIFY", "diff": "@@ -9,6 +9,7 @@ export RUST_BACKTRACE=1\ncargo test --no-run\nUPDATE=1 cargo test -q\n-(cd next.js/packages/next-swc && yarn build-native)\n+(cd next.js/packages/next-swc && yarn build-native --release)\n-(cd next.js && NEXT_PRIVATE_LOCAL_WEBPACK5=1 yarn next dev test/int...
Rust
Apache License 2.0
swc-project/swc
fix(webpack/ast): Handle typescript (#3045) swc_webpack_ast: - Add `proces_file`. - Add support for typescript.
1
fix
webpack/ast
551,636
15.12.2021 18:39:24
0
4f8bd2a8c2862ae961a5011976eadf0367005c9f
chore(test): more test messing about
[ { "change_type": "MODIFY", "diff": "@@ -26,6 +26,7 @@ package io.questdb.std.datetime;\nimport io.questdb.std.CharSequenceHashSet;\nimport io.questdb.std.CharSequenceObjHashMap;\n+import org.jetbrains.annotations.TestOnly;\nimport java.text.DateFormatSymbols;\n@@ -49,4 +50,8 @@ public class DateLocaleFactor...
Java
Apache License 2.0
questdb/questdb
chore(test): more test messing about (#1693)
1
chore
test
251,188
15.12.2021 18:49:19
-10,800
3c6ced82896fa7a728bf8aebdcd63a5b3589acc1
fix: basic multi auth script failed to connect to ldap server (result code : null).
[ { "change_type": "MODIFY", "diff": "@@ -237,10 +237,10 @@ class PersonAuthentication(PersonAuthenticationType):\nelse:\nvalue_string = str(value)\n- ldapProperties.setProperty(persistenceType + \".\" + key, value_string)\n+ ldapProperties.setProperty(persistenceType + \"#\" + key, value_string)\nif StringHe...
Java
MIT License
gluufederation/oxauth
fix: basic multi auth script failed to connect to ldap server (result code : null). #1568
1
fix
null