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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
317,646 | 04.08.2021 12:52:54 | -7,200 | 9e8a7182b670cd894ad701bc64082e91e9889451 | refactor: better log output | [
{
"change_type": "MODIFY",
"diff": "@@ -115,12 +115,14 @@ func (t *tracer) init(home string) {\nlog.Fatalf(\"error opening file: %v\", err)\n}\nlog.SetOutput(t.file)\n+ log.Println(\"start oh-my-posh run\")\n}\nfunc (t *tracer) close() {\nif !t.debug {\nreturn\n}\n+ log.Println(\"end oh-my-posh run\")\n_ = ... | Go | MIT License | jandedobbeleer/oh-my-posh | refactor: better log output | 1 | refactor | null |
71,578 | 04.08.2021 13:13:28 | 25,200 | afd5bf768a280cd11b4e72db841af36df2268ccf | feat(kinesisfirehose): supports Kinesis data stream source for delivery stream
closes
closes
*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": "@@ -63,11 +63,27 @@ The above example defines the following resources:\n## Sources\nThere are two main methods of sourcing input data: Kinesis Data Streams and via a \"direct\n-put\". This construct library currently only supports \"direct put\". See [#15500](https://gith... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(kinesisfirehose): supports Kinesis data stream source for delivery stream (#15836)
closes #15500
closes #10783
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | kinesisfirehose |
826,656 | 04.08.2021 13:26:10 | -7,200 | e49e16c02efc4ea5b12182447409d1a5e93b489d | fix: partially reference upstream schemas
This change significantly improves and the config schema. Parts will now be taken from upstream to ensure a more up-to-date schema.
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -31,7 +31,7 @@ require (\ngithub.com/ory/herodot v0.9.6\ngithub.com/ory/jsonschema/v3 v3.0.3\ngithub.com/ory/keto/proto v0.0.0-00010101000000-000000000000\n- github.com/ory/x v0.0.274\n+ github.com/ory/x v0.0.275\ngithub.com/pelletier/go-toml v1.8.1\ngithub.com/phayes/... | Go | Apache License 2.0 | ory/keto | fix: partially reference upstream schemas (#674)
This change significantly improves and the config schema. Parts will now be taken from upstream to ensure a more up-to-date schema.
Closes #662 | 1 | fix | null |
679,913 | 04.08.2021 13:36:04 | -7,200 | 5f8a72215010645cce039cedab3313fae722e363 | feat(transducers): add minMax() reducer | [
{
"change_type": "MODIFY",
"diff": "@@ -27,6 +27,7 @@ export * from \"./rfn/mean\";\nexport * from \"./rfn/min\";\nexport * from \"./rfn/min-compare\";\nexport * from \"./rfn/min-mag\";\n+export * from \"./rfn/min-max\";\nexport * from \"./rfn/mul\";\nexport * from \"./rfn/push\";\nexport * from \"./rfn/pus... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(transducers): add minMax() reducer | 1 | feat | transducers |
679,913 | 04.08.2021 13:39:28 | -7,200 | ff3d1c4495191de814427e36b8ac7ff744fc98c2 | feat(rdom-components): add staticRadio() component | [
{
"change_type": "MODIFY",
"diff": "@@ -3,4 +3,5 @@ export * from \"./dropdown\";\nexport * from \"./editor\";\nexport * from \"./icon-button\";\nexport * from \"./input\";\n+export * from \"./radio\";\nexport * from \"./tabs\";\n",
"new_path": "packages/rdom-components/src/index.ts",
"old_path": "p... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rdom-components): add staticRadio() component | 1 | feat | rdom-components |
679,913 | 04.08.2021 13:44:00 | -7,200 | 0633175ba0c79c9e4e684a9b135624e32260a929 | refactor(rdom-components): update arg types
switch to `ISubscription` for args
reuse $inputNum handler in inputNumeric
make $option `selected` attrib dynamic | [
{
"change_type": "MODIFY",
"diff": "import type { Fn, Fn4 } from \"@thi.ng/api\";\nimport { Attribs, div, section } from \"@thi.ng/hiccup-html\";\nimport { $list, $promise, ComponentLike } from \"@thi.ng/rdom\";\n-import type { Subscription } from \"@thi.ng/rstream\";\n+import type { ISubscription } from \"... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(rdom-components): update arg types
- switch to `ISubscription` for args
- reuse $inputNum handler in inputNumeric
- make $option `selected` attrib dynamic | 1 | refactor | rdom-components |
679,913 | 04.08.2021 13:45:44 | -7,200 | 7f8888b0f0857aa9abde8ca6ea666a6f37bb64f2 | feat(rdom): add $inputFile/Files() handlers | [
{
"change_type": "MODIFY",
"diff": "@@ -26,9 +26,10 @@ export const $input = (stream: ISubscriber<string>) => (e: Event) =>\n* @param stream -\n* @param fallback -\n*/\n-export const $inputNum = (stream: ISubscriber<number>, fallback = 0) => (\n- e: Event\n-) => stream.next(maybeParseFloat((<any>e.target).v... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rdom): add $inputFile/Files() handlers | 1 | feat | rdom |
679,913 | 04.08.2021 13:48:42 | -7,200 | c0af6b8387de8d368b2b0a654de45f80eb5a4eb6 | feat(examples): major update dominant-colors
add new control params & UI widgets
split source files
split image processing into 2 stages (for better responsiveness) | [
{
"change_type": "ADD",
"diff": "+import type { Comparator } from \"@thi.ng/api\";\n+import type { LCH } from \"@thi.ng/color\";\n+import { compareByKey, compareByKeys2, compareNumDesc } from \"@thi.ng/compare\";\n+\n+export type SortMode = \"hue\" | \"luma\" | \"area\";\n+\n+export interface DominantColor ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): major update dominant-colors
- add new control params & UI widgets
- split source files
- split image processing into 2 stages (for better responsiveness) | 1 | feat | examples |
276,951 | 04.08.2021 13:52:47 | 10,800 | a37ece6f044cf54b805da16acbe6511377d73896 | docs(system): create overflow to system | [
{
"change_type": "ADD",
"diff": "+---\n+title: 'Overflow'\n+metaTitle: 'System - Overflow'\n+metaDescription: '@gympass/yoga-system overflow'\n+---\n+\n+## overflow\n+\n+```javascript state\n+const Square = styled.p`\n+ width: 200px;\n+ height: 50px;\n+\n+ ${overflow}\n+`;\n+\n+render(() => {\n+ return (\n+... | JavaScript | MIT License | gympass/yoga | docs(system): create overflow to system | 1 | docs | system |
276,951 | 04.08.2021 13:56:08 | 10,800 | c7d2bb12d932e6d2079f6a3653fb00278aa39931 | feat(overflow): create a new overflow prop to component box | [
{
"change_type": "MODIFY",
"diff": "@@ -6,3 +6,4 @@ export * from './layout';\nexport * from './spacing';\nexport * from './system';\nexport * from './typography';\n+export * from './overflow';\n",
"new_path": "packages/system/src/index.js",
"old_path": "packages/system/src/index.js"
},
{
"c... | JavaScript | MIT License | gympass/yoga | feat(overflow): create a new overflow prop to component box | 1 | feat | overflow |
276,951 | 04.08.2021 13:59:09 | 10,800 | be6da9391739efea979142bb437e19f64c88cba3 | test(system): add tests for overflow module | [
{
"change_type": "ADD",
"diff": "+import { css } from 'styled-components';\n+import { overflow, overflowX, overflowY, overflows } from './overflow';\n+\n+describe('overflow', () => {\n+ describe('overflows', () => {\n+ it('Should return values for all overflow props', () => {\n+ const expectedDisplay = css(... | JavaScript | MIT License | gympass/yoga | test(system): add tests for overflow module | 1 | test | system |
126,276 | 04.08.2021 14:04:06 | 10,800 | 3085709d6642446b0ad3ad91b005c8aeb242a29d | chore(embedded): leverage kv constraint to enforce upsert over auto-incremental pk requires row to already exist | [
{
"change_type": "MODIFY",
"diff": "@@ -532,10 +532,18 @@ func (stmt *UpsertIntoStmt) compileUsing(e *Engine, implicitDB *Database, params\n// create entry for the column which is the pk\nmkey := e.mapKey(RowPrefix, EncodeID(table.db.id), EncodeID(table.id), EncodeID(table.pk.id), pkEncVal)\n+ constraint :=... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded): leverage kv constraint to enforce upsert over auto-incremental pk requires row to already exist
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded |
730,536 | 04.08.2021 14:06:45 | 18,000 | 75992082f56c6dc1e088741798c582a43448e28f | test(plugin-meetings): add tests for post-mediaRequest errors | [
{
"change_type": "MODIFY",
"diff": "@@ -206,7 +206,7 @@ skipInNode(describe)('plugin-meetings', () => {\n{scope: alice.meeting, event: 'meeting:media:local:start', user: alice}\n])\n]))\n- .then(() => assert(enumerateSpy.calledOnce)));\n+ .then(() => assert(enumerateSpy.called)));\nit('bob joins the meeting... | JavaScript | MIT License | webex/webex-js-sdk | test(plugin-meetings): add tests for post-mediaRequest errors | 1 | test | plugin-meetings |
679,913 | 04.08.2021 14:14:03 | -7,200 | 49acb3bfc88c966940914446e71cb83d8b10e973 | build(date): update deps, refactor reuse | [
{
"change_type": "MODIFY",
"diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"^7.1.6\",\n- \"@thi.ng/checks\": \"^2.9.8\"\n+ \"@thi.ng/checks\": \"^2.9.8\",\n+ \"@thi.ng/strings\": \"^2.1.2\"\n},\n\"files\": [\n\"*.js\",\n",
"new_path": "packages/date/package.json",
"old_path": "packages/date/pack... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build(date): update deps, refactor reuse | 1 | build | date |
730,536 | 04.08.2021 14:15:16 | 18,000 | e7b0847809bcc39f2b9e2b533e9456edcd1eaee1 | fix(plugin-meetings): remove the listeners upon clean up of addMedia
also improve the error message for UserNotJoinedError | [
{
"change_type": "MODIFY",
"diff": "@@ -56,7 +56,7 @@ class UserNotJoinedError extends WebexMeetingsError {\nstatic CODE = 30102;\nconstructor() {\n- super(UserNotJoinedError.CODE, 'User has already left the meeting');\n+ super(UserNotJoinedError.CODE, 'User currently not in meeting. Please join a meeting b... | JavaScript | MIT License | webex/webex-js-sdk | fix(plugin-meetings): remove the listeners upon clean up of addMedia
also improve the error message for UserNotJoinedError | 1 | fix | plugin-meetings |
679,913 | 04.08.2021 14:33:00 | -7,200 | 3433e5d199fb0d612af9e26c7248722187499cc1 | refactor(api): dedupe IEnableMixin method impls | [
{
"change_type": "MODIFY",
"diff": "@@ -23,17 +23,11 @@ export const IEnableMixin = mixin(<IEnable<any>>{\n},\nenable(this: _IEnable) {\n- this._enabled = true;\n- if (this.notify) {\n- this.notify({ id: EVENT_ENABLE, target: this });\n- }\n+ $enable(this, true, EVENT_ENABLE);\n},\ndisable(this: _IEnable) {... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(api): dedupe IEnableMixin method impls | 1 | refactor | api |
126,276 | 04.08.2021 14:47:24 | 10,800 | c788ba5b6a8277410a5f3fbb6f7bfeec9210691f | test(embedded/store): improve kv constraints testing | [
{
"change_type": "MODIFY",
"diff": "@@ -752,26 +752,37 @@ func TestImmudbStoreIndexing(t *testing.T) {\nrequire.NoError(t, err)\n}\n-func TestImmudbStoreUniqueCommit(t *testing.T) {\n+func TestImmudbStoreKVConstraints(t *testing.T) {\nopts := DefaultOptions().WithSynced(false).WithMaxConcurrency(1)\n- immuS... | Go | Apache License 2.0 | codenotary/immudb | test(embedded/store): improve kv constraints testing
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | test | embedded/store |
401,135 | 04.08.2021 15:09:04 | 14,400 | 9006f73ce17c0ae31cbaf22acfc3b55b9debb981 | refactor(core): rename and change helperText/errorText variant prop to a boolean; cleanup
affects: | [
{
"change_type": "MODIFY",
"diff": "import { styled } from '@medly-components/utils';\n+import Popover from '../../Popover';\nexport const HelperText = styled('span')<{\nsize: 'S' | 'M';\n@@ -11,10 +12,21 @@ export const HelperText = styled('span')<{\nuser-select: none;\n`;\n+export const HelperTextPopover ... | TypeScript | MIT License | medly/medly-components | refactor(core): rename and change helperText/errorText variant prop to a boolean; cleanup
affects: @medly-components/core, @medly-components/forms | 1 | refactor | core |
679,913 | 04.08.2021 15:15:15 | -7,200 | fa56620e7491b75c859a2914c02c73bebbaa6bd3 | reafactor(args): split/simplify usage() | [
{
"change_type": "MODIFY",
"diff": "@@ -29,48 +29,7 @@ export const usage = <T extends IObjectOf<any>>(\n: <ColorTheme>{};\nconst indent = repeat(\" \", opts.paramWidth!);\nconst format = (ids: string[]) =>\n- ids.map((id) => {\n- const spec: ArgSpecExt = specs[id];\n- const hint = spec.hint ? ansi(\" \" + ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | reafactor(args): split/simplify usage() | 1 | reafactor | args |
401,135 | 04.08.2021 15:17:32 | 14,400 | bc9579ab5a392bdf3ad92787176be06d2aac0822 | refactor(core): change padding from px to rem
affects: | [
{
"change_type": "MODIFY",
"diff": "@@ -13,7 +13,7 @@ export const HelperText = styled('span')<{\n`;\nexport const HelperTextPopover = styled(Popover.Popup)`\n- padding: 10px;\n+ padding: 0.8rem;\n`;\nexport const PopoverIconContainer = styled('div')`\n",
"new_path": "packages/core/src/components/TextFi... | TypeScript | MIT License | medly/medly-components | refactor(core): change padding from px to rem
affects: @medly-components/core | 1 | refactor | core |
756,029 | 04.08.2021 15:20:52 | 25,200 | 362b81bc5e8b462aa385d04bcc891118ef52eba1 | refactor(xsnap): Revert: Externalize netstring IO dependency | [
{
"change_type": "MODIFY",
"diff": "\"@agoric/bundle-source\": \"^1.4.5\",\n\"@agoric/eventual-send\": \"^0.13.23\",\n\"@agoric/install-ses\": \"^0.5.21\",\n- \"@endo/netstring\": \"^0.2.5\",\n\"glob\": \"^7.1.6\",\n\"ses\": \"^0.14.0\"\n},\n",
"new_path": "packages/xsnap/package.json",
"old_path": ... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | refactor(xsnap): Revert: Externalize netstring IO dependency (#3599) | 1 | refactor | xsnap |
277,002 | 04.08.2021 15:30:06 | 10,800 | ace935eccaa1306ae305c1e1242c8f26104c6672 | feat: add more variants in documentation | [
{
"change_type": "MODIFY",
"diff": "@@ -7,12 +7,12 @@ import { DocTitle } from '../components';\nconst attendanceList = [\n{\n- description: 'Attendance 01',\n+ description: 'In-Person',\nicon: BuildingFilled,\n},\n{\n- description: 'Attendance 02',\n- icon: BuildingFilled,\n+ description: 'Online',\n+ icon... | JavaScript | MIT License | gympass/yoga | feat: add more variants in documentation | 1 | feat | null |
744,016 | 04.08.2021 15:36:49 | 21,600 | 9d84309e53ce1d30b1c61035ed5c78827a89df86 | fix: positionals should not overwrite options | [
{
"change_type": "MODIFY",
"diff": "@@ -598,8 +598,19 @@ export class CommandInstance {\n// any new aliases need to be placed in positionalMap, which\n// is used for validation.\nif (!positionalMap[key]) positionalMap[key] = parsed.argv[key];\n+ // Addresses: https://github.com/yargs/yargs/issues/1637\n+ //... | JavaScript | MIT License | yargs/yargs | fix: positionals should not overwrite options (#1992) | 1 | fix | null |
756,029 | 04.08.2021 15:42:00 | 25,200 | a78c4a544c430cb22fe36319aa986b51d2ce0177 | test(xsnap): Disable performance curve test for XS collections
The test fails intermittently.
The alternative would be to reduce the probability of the failure by reducing its sensitivity to noise, but low probability failure in CI is anathema. | [
{
"change_type": "MODIFY",
"diff": "@@ -220,7 +220,12 @@ function dataStructurePerformance(logn) {\nsend({ size: n, dur, rate });\n}\n-test('Array, Map, Set growth is O(log(n))', async t => {\n+// This test fails intermittently due to some amount of noise that we cannot\n+// completely elliminate.\n+// Rath... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | test(xsnap): Disable performance curve test for XS collections (#3602)
The test fails intermittently.
The alternative would be to reduce the probability of the failure by reducing its sensitivity to noise, but low probability failure in CI is anathema. | 1 | test | xsnap |
667,636 | 04.08.2021 15:48:22 | -28,800 | d4e24e978b5e26de77750897ddcbfcb8c7950abc | refactor(core): resetLfs file | [
{
"change_type": "MODIFY",
"diff": "*.so filter=lfs diff=lfs merge=lfs -text\n*.gz filter=lfs diff=lfs merge=lfs -text\n+*.otf filter=lfs diff=lfs merge=lfs -text\n+*.png filter=lfs diff=lfs merge=lfs -text\n+*.jpg filter=lfs diff=lfs merge=lfs -text\n",
"new_path": ".gitattributes",
"old_path": ".g... | C++ | Apache License 2.0 | tencent/hippy | refactor(core): resetLfs file | 1 | refactor | core |
104,844 | 04.08.2021 15:55:46 | 14,400 | ef2fb8f464187fb30f2ad25ef38b2cbb128ccdaa | chore(snaps): update snapshots that have downshift uid | [
{
"change_type": "MODIFY",
"diff": "@@ -91,7 +91,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/C\nCancel\n</button>\n<button\n- aria-describedby=\"danger-description-68\"\n+ aria-describedby=\"danger-description-70\"\naria-pressed={null}\nclassName=\"iot--btn bx--btn bx... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | chore(snaps): update snapshots that have downshift uid | 1 | chore | snaps |
791,639 | 04.08.2021 16:00:24 | 14,400 | b31dac897be8f858b047f43badb686b626e4bcb1 | chore(nodejs): update client ref docs link in metadata | [
{
"change_type": "MODIFY",
"diff": "\"language\": \"nodejs\",\n\"requires_billing\": true,\n\"issue_tracker\": \"https://issuetracker.google.com/savedsearches/559741\",\n- \"client_documentation\": \"https://googleapis.dev/nodejs/pubsub/latest\",\n+ \"client_documentation\": \"https://cloud.google.com/nodej... | TypeScript | Apache License 2.0 | googleapis/nodejs-pubsub | chore(nodejs): update client ref docs link in metadata (#1365) | 1 | chore | nodejs |
756,029 | 04.08.2021 16:02:37 | 25,200 | cc81d202b4f66bd126dd5684246133566f90eda7 | refactor(cosmic-swingset): Convert RESM to NESM | [
{
"change_type": "DELETE",
"diff": "-#! /usr/bin/env node\n-require('../src/entrypoint.cjs');\n",
"new_path": null,
"old_path": "packages/cosmic-swingset/bin/ag-chain-cosmos"
},
{
"change_type": "ADD",
"diff": "+../src/entrypoint.js\n\\ No newline at end of file\n",
"new_path": "pack... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | refactor(cosmic-swingset): Convert RESM to NESM | 1 | refactor | cosmic-swingset |
756,029 | 04.08.2021 16:03:20 | 25,200 | 1e1603ea1d7c4f29803c017717553415e018e81b | test(cosmic-swingset): Add coverage script | [
{
"change_type": "MODIFY",
"diff": "\"scripts\": {\n\"build\": \"exit 0\",\n\"test\": \"ava\",\n+ \"test:c8\": \"c8 $C8_OPTIONS ava --config=ava-nesm.config.js\",\n\"test:xs\": \"exit 0\",\n\"pretty-fix\": \"prettier --write '**/*.js'\",\n\"pretty-check\": \"prettier --check '**/*.js'\",\n\"tmp\": \"^0.2.1\... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | test(cosmic-swingset): Add coverage script | 1 | test | cosmic-swingset |
889,129 | 04.08.2021 16:04:35 | 14,400 | 4d31360b8d6148f6063a5268b921641a0cde0038 | chore(nodejs): update client ref docs link in metadata | [
{
"change_type": "MODIFY",
"diff": "{\n- \"client_documentation\": \"https://googleapis.dev/nodejs/logging/latest\",\n+ \"client_documentation\": \"https://cloud.google.com/nodejs/docs/reference/logging/latest\",\n\"product_documentation\": \"https://cloud.google.com/logging/docs\",\n\"name\": \"logging\",\... | TypeScript | Apache License 2.0 | googleapis/nodejs-logging | chore(nodejs): update client ref docs link in metadata (#1133) | 1 | chore | nodejs |
679,913 | 04.08.2021 16:16:23 | -7,200 | 90f18e778cdfbfd98d6fa2e2fcf59740bc92fb77 | build: update global dev deps | [
{
"change_type": "MODIFY",
"diff": "],\n\"devDependencies\": {\n\"@istanbuljs/nyc-config-typescript\": \"^1.0.1\",\n- \"@microsoft/api-documenter\": \"^7.13.33\",\n+ \"@microsoft/api-documenter\": \"^7.13.34\",\n\"@microsoft/api-extractor\": \"^7.18.4\",\n\"@snowpack/plugin-typescript\": \"^1.2.1\",\n\"@sno... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: update global dev deps | 1 | build | null |
104,844 | 04.08.2021 16:18:53 | 14,400 | a307b62f34cf4d4f26531e8e50460c5139613ff8 | fix(tablecard): adjust styles for fullscreen | [
{
"change_type": "MODIFY",
"diff": "@import '../../globals/vars';\n.#{$iot-prefix}--table-card .#{$iot-prefix}--card--content {\n- height: calc(100% + #{$spacing-05});\n- width: calc(100% + #{$spacing-05} + #{$spacing-05});\n- transform: translateX(-#{$spacing-05});\n+ padding: 0;\n}\n.#{$iot-prefix}--card-... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(tablecard): adjust styles for fullscreen | 1 | fix | tablecard |
185,944 | 04.08.2021 16:31:55 | 18,000 | 92386847c2149ff8b03822191e14ba4bdea2ab02 | chore: remove accidentally-included console.log() call | [
{
"change_type": "MODIFY",
"diff": "@@ -167,7 +167,6 @@ export class Output extends React.Component<CommandsProps> {\n// adjust `i` here because the value passed in by monaco starts at 1, not 0\nconst lineNumbers = (i: number) => timestrs[i - 1] || '';\neditor.updateOptions({ lineNumbers, lineNumbersMinChar... | TypeScript | MIT License | electron/fiddle | chore: remove accidentally-included console.log() call (#815) | 1 | chore | null |
185,944 | 04.08.2021 16:32:17 | 18,000 | db288dd165cc2df8d82daebccc3efbe40bc5844d | test: reduce copy-paste in app-spec | [
{
"change_type": "MODIFY",
"diff": "@@ -119,23 +119,22 @@ describe('App component', () => {\n});\ndescribe('replaceFiddle()', () => {\n- it('sets editor values and source info', async () => {\n- const { state } = app;\n- const setSpy = jest.spyOn(state.editorMosaic, 'set');\n-\nconst editorValues = {\n[Defa... | TypeScript | MIT License | electron/fiddle | test: reduce copy-paste in app-spec (#817) | 1 | test | null |
127,979 | 04.08.2021 16:35:30 | -10,800 | 01131e67a20482b05b3fcf80b755ba1e4ef27de6 | feat: add tajCasino themes | [
{
"change_type": "MODIFY",
"diff": "@@ -27,6 +27,8 @@ import {\nshangrilaDark,\nempireLight,\nempireDark,\n+ tajCasinoLight,\n+ tajCasinoDark,\n} from '@heathmont/moon-themes';\nconst themes: DocsThemes = {\n@@ -86,6 +88,10 @@ const themes: DocsThemes = {\ndark: empireDark,\nlight: empireLight,\n},\n+ tajCa... | TypeScript | MIT License | coingaming/moon-design | feat: add tajCasino themes (#1289) | 1 | feat | null |
826,656 | 04.08.2021 16:35:39 | -7,200 | f1287324207f89a743942a45d44d34a928ba8063 | docs: fix build and gen:config | [
{
"change_type": "MODIFY",
"diff": "@@ -45,7 +45,7 @@ module.exports = {\n})\n],\nupdateConfig: {\n- src: '.schema/config.schema.json',\n- dst: './docs/docs/reference/configuration.md'\n+ src: '../.schema/config.schema.json',\n+ dst: 'docs/reference/configuration.md'\n}\n}\n",
"new_path": "docs/config.j... | Go | Apache License 2.0 | ory/keto | docs: fix build and gen:config (#676) | 1 | docs | null |
104,844 | 04.08.2021 16:40:06 | 14,400 | 2f4291912950a0d4bacce0ef175384d76ad62c9c | feat(cards): adjust card specific styles to use card styles | [
{
"change_type": "MODIFY",
"diff": "@import '../../globals/vars';\n.#{$iot-prefix}--bar-chart-container {\n- padding: 0 $spacing-05 $spacing-05;\n- position: absolute;\nwidth: 100%;\nheight: 100%;\n",
"new_path": "packages/react/src/components/BarChartCard/_bar-chart-card.scss",
"old_path": "package... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(cards): adjust card specific styles to use card styles | 1 | feat | cards |
104,866 | 04.08.2021 17:08:35 | 14,400 | 50d780e1fd3f84674e052eac6fe76414f280f136 | fix(sc-table-model): fix sterling model throwing errors | [
{
"change_type": "MODIFY",
"diff": "\"@types/node\": \"11.13.0\",\n\"ai-apps-monorepo-utils\": \"^2.145.1-next.0\",\n\"babel-loader\": \"^8.2.2\",\n- \"carbon-components-angular\": \"4.49.0\",\n+ \"carbon-components-angular\": \"4.53.5\",\n\"codelyzer\": \"5.0.0\",\n\"core-js\": \"2.6.11\",\n\"element-close... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(sc-table-model): fix sterling model throwing errors | 1 | fix | sc-table-model |
471,242 | 04.08.2021 17:25:58 | -7,200 | e1b3e98a89506585b75eab212ee8066d0383b549 | chore: move api into dependencies in integration tests | [
{
"change_type": "MODIFY",
"diff": "@@ -19,4 +19,4 @@ jobs:\nrun: npm install -g lerna\n- name: Check API dependency semantics\n- run: lerna exec \"node ../../scripts/peer-api-check.js\"\n+ run: lerna exec --ignore propagation-validation-server \"node ../../scripts/peer-api-check.js\"\n",
"new_path": ".... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js | chore: move api into dependencies in integration tests (#2385) | 1 | chore | null |
743,874 | 04.08.2021 17:52:24 | 14,400 | 54837eb36c2fb1a73bda7495d34a3aa7f52b55d7 | build: use denoland/setup-deno | [
{
"change_type": "MODIFY",
"diff": "@@ -50,7 +50,7 @@ jobs:\nnode-version: 14\n- run: npm install\n- run: npm run compile\n- - uses: denolib/setup-deno@v2\n+ - uses: denoland/setup-deno@v1\nwith:\ndeno-version: v1.x\n- run: |\n",
"new_path": ".github/workflows/ci.yaml",
"old_path": ".github/workflow... | JavaScript | MIT License | yargs/yargs | build: use denoland/setup-deno (#1991)
Co-authored-by: Benjamin E. Coe <bencoe@google.com> | 1 | build | null |
151,430 | 04.08.2021 18:21:00 | 25,200 | 738e6ed223933daff904dafcc00c4cae5423b7ad | chore: add jsdom for testing | [
{
"change_type": "MODIFY",
"diff": "@@ -748,6 +748,7 @@ Below are plugins created outside of this repo:\nAdditional examples\n- [Using AWS Lambda, API Gateway & analytics](https://blog.mikecoughlin.com/own-your-event-tracking/)\n+- [Using analytics to make amundsen.io pluggable](https://github.com/amundsen-... | JavaScript | MIT License | davidwells/analytics | chore: add jsdom for testing
Signed-off-by: David Wells <> | 1 | chore | null |
151,430 | 04.08.2021 18:21:38 | 25,200 | 7206a8e06958378e8506fa1a43901892c7f82f7b | refactor: remove default export for original-source-plugin
BREAKING CHANGE | [
{
"change_type": "MODIFY",
"diff": "@@ -22,7 +22,7 @@ npm install @analytics/original-source-plugin\n```js\nimport Analytics from 'analytics'\n-import originalSourcePlugin from '@analytics/original-source-plugin'\n+import { originalSourcePlugin } from '@analytics/original-source-plugin'\nconst analytics = A... | JavaScript | MIT License | davidwells/analytics | refactor: remove default export for original-source-plugin
BREAKING CHANGE
Signed-off-by: David Wells <> | 1 | refactor | null |
151,430 | 04.08.2021 18:22:36 | 25,200 | 220fbf811a2357fbfd10a7f643dd86462a83923b | feat: add isNumber, isElement + isHidden checker | [
{
"change_type": "MODIFY",
"diff": "@@ -52,6 +52,18 @@ console.log(isString(xyz))\n// true\n```\n+## `isNumber`\n+\n+Check if value is `number`\n+\n+```js\n+import { isNumber } from '@analytics/types-utils'\n+\n+const xyz = 123\n+console.log(isNumber(xyz))\n+// true\n+```\n+\n## `isBoolean`\nCheck if value ... | JavaScript | MIT License | davidwells/analytics | feat: add isNumber, isElement + isHidden checker
Signed-off-by: David Wells <> | 1 | feat | null |
151,430 | 04.08.2021 18:45:21 | 25,200 | 302510353ccd5c31a7b1d23358b95916436e227e | chore: fake change to fix release | [
{
"change_type": "MODIFY",
"diff": "@@ -134,6 +134,7 @@ export function isForm(element) {\nreturn isElement(element) && element.nodeName === 'FORM'\n}\n+\n/**\n* Check if DOM element is hidden\n* @param {HTMLElement|null|undefined} element\n",
"new_path": "packages/analytics-util-types/src/index.js",
... | JavaScript | MIT License | davidwells/analytics | chore: fake change to fix release
Signed-off-by: David Wells <> | 1 | chore | null |
342,861 | 04.08.2021 18:53:08 | -7,200 | a29059eb151e651ea16378bd9f090460938bf95b | fix(InputField): value color in Safari
The input value was not visible when input is disabled. | [
{
"change_type": "MODIFY",
"diff": "@@ -221,7 +221,8 @@ export const Input: any = styled(\n),\n)`\nappearance: none;\n- -webkit-text-fill-color: ${({ disabled }) => disabled && \"inherit\"};\n+ -webkit-text-fill-color: ${({ disabled, theme }) =>\n+ disabled && theme.orbit.colorTextInputDisabled};\nfont-fami... | JavaScript | MIT License | kiwicom/orbit | fix(InputField): value color in Safari (#3062)
The input value was not visible when input is disabled. | 1 | fix | InputField |
342,861 | 04.08.2021 18:53:26 | -7,200 | 8d399a64608f0f6f537e3b4738422e443772e7fb | docs(sandbox): match the height | [
{
"change_type": "MODIFY",
"diff": "import React from \"react\";\nimport styled, { css } from \"styled-components\";\n-import Editor from \"./Editor\";\n+import Editor from \"./components/Editor\";\nimport Frame from \"./components/Frame\";\nimport Board from \"./components/Board\";\nimport ViewportsRuler f... | JavaScript | MIT License | kiwicom/orbit | docs(sandbox): match the height (#3059) | 1 | docs | sandbox |
151,430 | 04.08.2021 18:56:13 | 25,200 | 9da30b27fbbdcaf595c68c14d8d18d879fbc4e61 | refactor: rename onWakeup to onWakeUp
BREAKING CHANGE | [
{
"change_type": "MODIFY",
"diff": "@@ -11,7 +11,7 @@ User activity listener utility in <!-- AUTO-GENERATED-CONTENT:START (pkgSize:plu\n[See live demo](https://utils-activity-listener.netlify.app).\n```js\n-import { onIdle, onWakeup } from '@analytics/activity-utils'\n+import { onIdle, onWakeUp } from '@ana... | JavaScript | MIT License | davidwells/analytics | refactor: rename onWakeup to onWakeUp
BREAKING CHANGE
Signed-off-by: David Wells <> | 1 | refactor | null |
679,913 | 04.08.2021 19:05:01 | -7,200 | f2038b6faf1d99d81bfb169e8b4b4e6e4303ffef | feat(examples): update dominant-colors
update swatches to also show CSS colors | [
{
"change_type": "ADD",
"diff": "+import { div, li, textArea, ul } from \"@thi.ng/hiccup-html\";\n+import { CIRCLE_FILLED, withSize } from \"@thi.ng/hiccup-carbon-icons\";\n+import { css } from \"@thi.ng/color\";\n+import type { DominantColor } from \"../api\";\n+\n+export const cssPalette = (colors: Domina... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): update dominant-colors
- update swatches to also show CSS colors | 1 | feat | examples |
679,913 | 04.08.2021 19:07:48 | -7,200 | 09e075520a0eafb4f057b23cf085c7a3a496a140 | build: update deploy-docs script
only perform CDN invalidation for sole/last pkg | [
{
"change_type": "MODIFY",
"diff": "@@ -88,14 +88,14 @@ const invalidatePackage = (id) =>\n`aws cloudfront create-invalidation --distribution-id ${CF_DISTRO} --paths \"${S3_PREFIX}/${id}/*\" ${AWS_PROFILE}`\n);\n-const processPackage = (id) => {\n+const processPackage = (id, invalidate = true) => {\nconsole... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: update deploy-docs script
- only perform CDN invalidation for sole/last pkg | 1 | build | null |
317,721 | 04.08.2021 20:46:59 | -7,200 | 84183b7506cde91837413822c0c27111d3abc130 | fix(aws): override default region if AWS_REGION is set | [
{
"change_type": "MODIFY",
"diff": "@@ -36,7 +36,7 @@ func (a *aws) enabled() bool {\nif !displayDefaultUser && a.Profile == defaultUser {\nreturn false\n}\n- a.Region = getEnvFirstMatch(\"AWS_DEFAULT_REGION\", \"AWS_REGION\")\n+ a.Region = getEnvFirstMatch(\"AWS_REGION\", \"AWS_DEFAULT_REGION\")\nif a.Prof... | Go | MIT License | jandedobbeleer/oh-my-posh | fix(aws): override default region if AWS_REGION is set
Co-authored-by: Evgenii Morozov <emorozov@goodgamestudios.com> | 1 | fix | aws |
679,913 | 04.08.2021 21:57:39 | -7,200 | 70afa7097dfd21f85d947ab5f055d0c39589fd48 | fix(random): update weightedRandom()
assume missing weights as zero | [
{
"change_type": "MODIFY",
"diff": "@@ -5,8 +5,9 @@ import { SYSTEM } from \"./system\";\n/**\n* Returns a no-arg function which produces a random choice of given weighted\n* `choices` and using given {@link IRandom} instance (default {@link SYSTEM}.\n- * If `weights` are given, it must be the same size as ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(random): update weightedRandom()
- assume missing weights as zero | 1 | fix | random |
679,913 | 04.08.2021 22:05:42 | -7,200 | d3c3ffa768bdebe67843c8094af1fe7a9bc524ed | feat(k-means): auto-correct `k` if needed
update initKmeanspp() & kmeans() to auto-adjust (reduce) `k` if needed
add potential failsafe to bail early in initKmeanspp() | [
{
"change_type": "MODIFY",
"diff": "@@ -5,8 +5,8 @@ import { add, median, mulN, ReadonlyVec, Vec, zeroes } from \"@thi.ng/vectors\";\nimport type { CentroidStrategy, Cluster, KMeansOpts } from \"./api\";\n/**\n- * Takes an array of n-dimensional `samples` and attempts to assign them to `k`\n- * clusters, us... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(k-means): auto-correct `k` if needed
- update initKmeanspp() & kmeans() to auto-adjust (reduce) `k` if needed
- add potential failsafe to bail early in initKmeanspp() | 1 | feat | k-means |
679,913 | 04.08.2021 22:06:15 | -7,200 | 3475ec52ff8e09f8e6cfd0dcd27b0877a79e43e8 | fix(examples): off-by-one error in minChroma filter | [
{
"change_type": "MODIFY",
"diff": "@@ -29,7 +29,7 @@ export const processImage = (\nbuf = buf.scale(256 / Math.max(buf.width, buf.height), \"nearest\");\nconst colors = dominantColors(floatBuffer(buf, FLOAT_RGB), num, {\n// use min chroma as pre-filter criteria\n- filter: (p) => lch(srgb(p)).c > minChroma,... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(examples): off-by-one error in minChroma filter | 1 | fix | examples |
743,932 | 04.08.2021 23:45:59 | -7,200 | e1871aa792de219b221179417d410931af70d405 | fix: wrap(null) no longer causes strange indentation behavior | [
{
"change_type": "MODIFY",
"diff": "@@ -206,7 +206,7 @@ export function usage(yargs: YargsInstance, shim: PlatformShim) {\nif (usages.length) {\n// user-defined usage.\nusages.forEach(usage => {\n- ui.div(`${usage[0].replace(/\\$0/g, base$0)}`);\n+ ui.div({text: `${usage[0].replace(/\\$0/g, base$0)}`});\nif... | JavaScript | MIT License | yargs/yargs | fix: wrap(null) no longer causes strange indentation behavior (#1988) | 1 | fix | null |
67,479 | 04.08.2021 23:49:06 | -36,000 | c867cd19e0c009509ed09e8c0d6cb6d168ebe13e | perf(bindings): simpler observer tracking/clearing | [
{
"change_type": "MODIFY",
"diff": "@@ -154,7 +154,7 @@ export class TranslationBinding implements IObserverLocatorBasedConnectable {\n}\nthis.scope = (void 0)!;\n- this.obs.clear(true);\n+ this.obs.clearAll();\n}\npublic handleChange(newValue: string | i18next.TOptions, _previousValue: string | i18next.TOp... | TypeScript | MIT License | aurelia/aurelia | perf(bindings): simpler observer tracking/clearing | 1 | perf | bindings |
603,467 | 05.08.2021 01:28:26 | -7,200 | 13b04caf8c6003c367966f418326db41a4578ac0 | style(webdriverio): addressed issues found by CodeFactor | [
{
"change_type": "MODIFY",
"diff": "<html lang=\"en\">\n-<body style=\"margin:0; padding:0 0 1024px 0;\">\n+<body style=\"margin:0; padding:0 0 1024px;\">\n<h1>A page with a link</h1>\n<a href=\"javascript:void(0)\"\nclass=\"off\"\n",
"new_path": "integration/web-testing-tools/static/screenplay/interact... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | style(webdriverio): addressed issues found by CodeFactor | 1 | style | webdriverio |
603,467 | 05.08.2021 01:59:48 | -7,200 | cac554f481675fceeaa02a825d9c9f811ab23404 | docs(webdriverio): cleaned up the example in the readme | [
{
"change_type": "MODIFY",
"diff": "@@ -25,7 +25,7 @@ for [WebdriverIO](https://webdriver.io/), that helps with testing Web-based and\nTo install this module, run the following command in your [WebdriverIO project directory](https://webdriver.io/docs/gettingstarted/):\n-```console\n+```bash\nnpm install --s... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | docs(webdriverio): cleaned up the example in the readme | 1 | docs | webdriverio |
791,331 | 05.08.2021 02:46:51 | -7,200 | 3ac1e007163803d315dcf5db612fe003f6eab978 | fix(spanner/spansql): only add comma after other option | [
{
"change_type": "MODIFY",
"diff": "@@ -185,16 +185,15 @@ func (do DatabaseOptions) SQL() string {\nhasOpt = true\nif *do.OptimizerVersion == 0 {\nstr += \"optimizer_version=null\"\n-\n} else {\nstr += fmt.Sprintf(\"optimizer_version=%v\", *do.OptimizerVersion)\n}\n}\nif do.VersionRetentionPeriod != nil {\n... | Go | Apache License 2.0 | googleapis/google-cloud-go | fix(spanner/spansql): only add comma after other option (#4551)
Co-authored-by: Hengfeng Li <hengfeng@google.com> | 1 | fix | spanner/spansql |
317,646 | 05.08.2021 06:43:12 | -7,200 | dff3986258ec96368e1422338f0d2178b431d4a3 | refactor(git): fetch branch name from HEAD file | [
{
"change_type": "MODIFY",
"diff": "@@ -406,7 +406,12 @@ func (g *git) getGitRefFileSymbolicName(refFile string) string {\n}\nfunc (g *git) getPrettyHEADName() string {\n- ref := g.getGitCommandOutput(\"branch\", \"--show-current\")\n+ var ref string\n+ HEAD := g.getGitFileContents(\"HEAD\")\n+ branchPrefix... | Go | MIT License | jandedobbeleer/oh-my-posh | refactor(git): fetch branch name from HEAD file | 1 | refactor | git |
705,211 | 05.08.2021 06:48:36 | 14,400 | f6016abfaaf88c8d9fbac2f58fc1d7e3b4dd8c1f | fix(Chip): Chips do not appear on UWP | [
{
"change_type": "MODIFY",
"diff": "</PropertyGroup>\n<ItemGroup>\n- <PackageReference Include=\"Uno.WinUI\" Version=\"3.8.0-dev.439\" />\n+ <PackageReference Include=\"Uno.WinUI\" Version=\"3.10.0-dev.156\" />\n- <PackageReference Include=\"Uno.WinUI.Lottie\" Version=\"3.8.0-dev.439\" Condition=\"'$(Target... | C# | Apache License 2.0 | unoplatform/uno.themes | fix(Chip): Chips do not appear on UWP | 1 | fix | Chip |
304,863 | 05.08.2021 07:53:01 | 25,200 | 369b1c6b4ea5b399953193d839565cf1be500947 | fix(stdlib): fix pivot when no data left | [
{
"change_type": "MODIFY",
"diff": "@@ -48,7 +48,7 @@ func init() {\nexecute.RegisterTransformation(PivotKind, createPivotTransformation)\n// optimized pivot\n- execute.RegisterTransformation(SortedPivotKind, createPivotTransformation)\n+ execute.RegisterTransformation(SortedPivotKind, createSortedPivotTran... | Go | MIT License | influxdata/flux | fix(stdlib): fix pivot when no data left (#3926) | 1 | fix | stdlib |
276,951 | 05.08.2021 08:15:42 | 10,800 | 834d742e63d52152f9848d540345cfe448a60c2e | test(system): insert line break | [
{
"change_type": "MODIFY",
"diff": "@@ -4,49 +4,66 @@ import { overflow, overflowX, overflowY, overflows } from './overflow';\ndescribe('overflow', () => {\ndescribe('overflows', () => {\nit('Should return values for all overflow props', () => {\n- const expectedDisplay = css({ overflowX: 'scroll', overflow... | JavaScript | MIT License | gympass/yoga | test(system): insert line break | 1 | test | system |
276,951 | 05.08.2021 09:14:54 | 10,800 | bc2018799a393e9a8bc764c6f1b9ced38d0e510e | test(system): fix review | [
{
"change_type": "MODIFY",
"diff": "@@ -24,7 +24,7 @@ describe('overflow', () => {\ndescribe('overflow', () => {\nit('Should return values for overflow prop', () => {\n- const expectedDisplay = css({ overflow: 'scroll' });\n+ const expectedOverflow = css({ overflow: 'scroll' });\nconst ofProp = overflow({ o... | JavaScript | MIT License | gympass/yoga | test(system): fix review | 1 | test | system |
126,276 | 05.08.2021 09:22:29 | 10,800 | be31c8778dc4ef4cb877f0753d59506d95519c2f | chore(embedded/tools): update sql stress tool with exec summary | [
{
"change_type": "MODIFY",
"diff": "@@ -166,7 +166,7 @@ func main() {\n}\n}()\n- _, _, err = engine.ExecStmt(\"CREATE DATABASE defaultdb;\", map[string]interface{}{}, true)\n+ _, err = engine.ExecStmt(\"CREATE DATABASE defaultdb;\", map[string]interface{}{}, true)\nif err != nil {\npanic(err)\n}\n@@ -177,7 ... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/tools): update sql stress tool with exec summary
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/tools |
126,276 | 05.08.2021 09:23:27 | 10,800 | 10859bc4a2e287b49fcd3a66f592144327bb666b | chore(pkg/database): update integration to exec summary | [
{
"change_type": "MODIFY",
"diff": "@@ -269,7 +269,7 @@ func NewDb(op *DbOptions, systemDB DB, log logger.Logger) (DB, error) {\n}\nif !op.replicationOpts.Replica {\n- _, _, err = dbi.sqlEngine.ExecPreparedStmts([]sql.SQLStmt{&sql.CreateDatabaseStmt{DB: dbInstanceName}}, nil, true)\n+ _, err = dbi.sqlEngine... | Go | Apache License 2.0 | codenotary/immudb | chore(pkg/database): update integration to exec summary
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | pkg/database |
471,204 | 05.08.2021 09:43:32 | 14,400 | 4e78e4b4b196a04585102ddb2c5057696f95f2b0 | chore: change codeowners to point to team | [
{
"change_type": "MODIFY",
"diff": "# https://help.github.com/en/articles/about-code-owners\n#\n-* @dyladan @mayurkale22 @OlivierAlbertini @vmarchaud @markwolff @obecny @mwear @naseemkullah @legendecas @Flarna @johnbley @MSNev @Rauno56\n+* @open-telemetry/javascript-approvers\n",
"new_path": ".github/CO... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js | chore: change codeowners to point to team (#2397) | 1 | chore | null |
791,255 | 05.08.2021 09:56:32 | 25,200 | 67facd9697e931e193f3cd8e188f1dd819ba31eb | fix(bigquery/storage/managedwriter): fix flowcontroller double-release
Stress testing caught this one: responsibility for releasing flow
controlled resources is in markDone of pending write, and the reference
in the recvProcessor was over-freeing resources.
Towards: | [
{
"change_type": "MODIFY",
"diff": "@@ -358,7 +358,6 @@ func recvProcessor(ctx context.Context, arc storagepb.BigQueryWrite_AppendRowsCl\nrecordStat(ctx, AppendResponses, 1)\nif status := resp.GetError(); status != nil {\n- fc.release(nextWrite.reqSize)\nnextWrite.markDone(NoStreamOffset, grpcstatus.ErrorPr... | Go | Apache License 2.0 | googleapis/google-cloud-go | fix(bigquery/storage/managedwriter): fix flowcontroller double-release (#4555)
Stress testing caught this one: responsibility for releasing flow
controlled resources is in markDone of pending write, and the reference
in the recvProcessor was over-freeing resources.
Towards: https://github.com/googleapis/google-c... | 1 | fix | bigquery/storage/managedwriter |
126,276 | 05.08.2021 10:16:11 | 10,800 | 9a819b073a00ef0349dcfbbb4cb61b5eb5b2d4a8 | chore(pkg/database): include updated rows and last inserted pks in sql exec result | [
{
"change_type": "MODIFY",
"diff": "@@ -301,6 +301,8 @@ func (d *db) SQLExecPrepared(stmts []sql.SQLStmt, namedParams []*schema.NamedPar\nres := &schema.SQLExecResult{\nCtxs: make([]*schema.TxMetadata, len(summary.DDTxs)),\nDtxs: make([]*schema.TxMetadata, len(summary.DMTxs)),\n+ UpdatedRows: uint32(summary... | Go | Apache License 2.0 | codenotary/immudb | chore(pkg/database): include updated rows and last inserted pks in sql exec result
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | pkg/database |
126,276 | 05.08.2021 10:16:46 | 10,800 | 9993f84660a1c340e065a26e15f3b0d7c562ce20 | chore(cmd/immuclient): display number of updated rows as result of sql exec | [
{
"change_type": "MODIFY",
"diff": "@@ -38,7 +38,7 @@ func (i *immuc) SQLExec(args []string) (string, error) {\ntxMetas := response.(*schema.SQLExecResult)\n- return fmt.Sprintf(\"sql ok, Ctxs: %d Dtxs: %d\", len(txMetas.Ctxs), len(txMetas.Dtxs)), nil\n+ return fmt.Sprintf(\"Updated rows: %d\", txMetas.Upda... | Go | Apache License 2.0 | codenotary/immudb | chore(cmd/immuclient): display number of updated rows as result of sql exec
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | cmd/immuclient |
711,597 | 05.08.2021 10:20:59 | -7,200 | 35f47c4cbda7d2f6193fb28668c54461cf10a36d | docs(core): Fix typo in docs tag | [
{
"change_type": "MODIFY",
"diff": "@@ -348,7 +348,7 @@ export interface AuthOptions {\n* `password` property - doing so will result in an error. Instead, the password is set at a later stage\n* (once the email with the verification token has been opened) via the `verifyCustomerAccount` mutation.\n*\n- * @d... | TypeScript | MIT License | vendure-ecommerce/vendure | docs(core): Fix typo in docs tag | 1 | docs | core |
791,331 | 05.08.2021 10:25:29 | -7,200 | 45ddaca606a372d9293bf2e2b3dc6d4398166c43 | fix(spanner): allow decoding null values to spanner.Decoder
Allow NULL values from the database to be passed in to the DecodeSpanner method
of a struct that implements spanner.Decoder.
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -1330,7 +1330,7 @@ func decodeValue(v *proto3.Value, t *sppb.Type, ptr interface{}) error {\n// Check if the pointer is a custom type that implements spanner.Decoder\n// interface.\nif decodedVal, ok := ptr.(Decoder); ok {\n- x, err := getGenericValue(v)\n+ x, err := g... | Go | Apache License 2.0 | googleapis/google-cloud-go | fix(spanner): allow decoding null values to spanner.Decoder (#4558)
Allow NULL values from the database to be passed in to the DecodeSpanner method
of a struct that implements spanner.Decoder.
Fixes #4552 | 1 | fix | spanner |
104,844 | 05.08.2021 10:30:08 | 14,400 | 2f6edc502785e705cbae2e235881cbd1634335a5 | feat(card): change some css to align with spec | [
{
"change_type": "MODIFY",
"diff": "@@ -152,7 +152,11 @@ export const WithEllipsedTitleTooltipExternalTooltip = () => {\nonBlur={action('onBlur')}\nonClick={action('onClick')}\ntabIndex={0}\n- footerContent={() => <Button kind=\"ghost\">Footer Content</Button>}\n+ footerContent={() => (\n+ <Button size=\"sm... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(card): change some css to align with spec | 1 | feat | card |
802,847 | 05.08.2021 10:38:28 | 10,800 | b5f62e183295e88d02b9d9e5ba89c83c011974ed | fix: ignore fontello-session to avoid error on install | [
{
"change_type": "DELETE",
"diff": "-3339404578b3600e3127526ca0ba388b\n\\ No newline at end of file\n",
"new_path": null,
"old_path": ".fontello-session"
},
{
"change_type": "MODIFY",
"diff": "@@ -13,3 +13,4 @@ node_modules\n.idea\n**/tsconfig.tsbuildinfo\npackages/**/fontello\n+.fontell... | TypeScript | Apache License 2.0 | juntossomosmais/venice | fix: ignore fontello-session to avoid error on install | 1 | fix | null |
711,597 | 05.08.2021 10:43:12 | -7,200 | 372b4af5e57d576620ff167bac888e79a15a2c79 | fix(core): Fix custom field validation when updating ProductVariants
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -51,12 +51,15 @@ export class ValidateCustomFieldsInterceptor implements NestInterceptor {\nfor (const [inputName, typeName] of Object.entries(inputTypeNames)) {\nif (this.inputsWithCustomFields.has(typeName)) {\nif (variables[inputName]) {\n- await this.validateInput(... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(core): Fix custom field validation when updating ProductVariants
Fixes #1014 | 1 | fix | core |
915,256 | 05.08.2021 10:51:16 | -7,200 | 71b49f846bc4cfff8551b9bec832255adbc78afd | chore: use patched version of ory/x | [
{
"change_type": "MODIFY",
"diff": "@@ -20,7 +20,7 @@ module.exports = {\n}\n],\nupdateConfig: {\n- src: '.schema/config.schema.json',\n- dst: './docs/docs/reference/configuration.md'\n+ src: '../.schema/config.schema.json',\n+ dst: 'docs/reference/configuration.md'\n}\n}\n",
"new_path": "docs/config.js... | Go | Apache License 2.0 | ory/oathkeeper | chore: use patched version of ory/x (#803) | 1 | chore | null |
276,941 | 05.08.2021 10:58:34 | 10,800 | df2cdc3d238dcb8d3368424133e14316e91768f3 | feat: add tags component | [
{
"change_type": "MODIFY",
"diff": "@@ -75,6 +75,25 @@ const entranceList2 = [\nchildren: 'From 7:30 am to 9:00 pm',\nvariant: 'stamina',\n},\n+ {\n+ children: 'Entrance03',\n+ variant: 'stamina',\n+ },\n+];\n+\n+const tagsList = [\n+ {\n+ children: 'Plan x Product availability',\n+ variant: 'informative',\... | JavaScript | MIT License | gympass/yoga | feat: add tags component | 1 | feat | null |
815,595 | 05.08.2021 11:31:56 | -28,800 | 11332439f46842e5b577940b12bd29d5d2d0ef4d | feat: adjust benchmark workflow | [
{
"change_type": "MODIFY",
"diff": "@@ -6,6 +6,8 @@ on:\ntypes: [ submitted ]\nschedule:\n- cron: '0 0 * * *'\n+ # Manurally trigger\n+ workflow_dispatch:\njobs:\nbuild_modified_ckb:\n@@ -14,11 +16,12 @@ jobs:\nif: |\n(\ngithub.event_name == 'pull_request_review' &&\n- contains(github.event.review.body, '#b... | Rust | MIT License | nervosnetwork/ckb | feat: adjust benchmark workflow | 1 | feat | null |
699,201 | 05.08.2021 12:05:41 | 14,400 | 9f1f99cae442bc9fd1c658cc85ad64695d61870a | feat(flex): enable flex to use custom styles
feat(flex): enable flex to use custom styles | [
{
"change_type": "ADD",
"diff": "+---\n+'@twilio-paste/flex': minor\n+'@twilio-paste/core': minor\n+---\n+\n+[Flex] Enable Flex to respect element customizations set on the customization provider. Flex now enables setting an element name on the underlying HTML element and checks the emotion theme object to ... | TypeScript | MIT License | twilio-labs/paste | feat(flex): enable flex to use custom styles (#1723)
feat(flex): enable flex to use custom styles | 1 | feat | flex |
217,922 | 05.08.2021 12:46:27 | -7,200 | 037213e6cf67955f31620ff5587897ed3a74521b | fix(settings): removed file preview from settings import block | [
{
"change_type": "MODIFY",
"diff": ".ant-card-body {\npadding: 10px;\n}\n+\n+ .ant-upload-list-text-container {\n+ display: none !important;\n+ }\n}\n.custom-sound-toggle {\n",
"new_path": "apps/client/src/app/modules/settings/settings-popup/settings-popup.component.less",
"old_path": "apps/client/s... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(settings): removed file preview from settings import block | 1 | fix | settings |
531,793 | 05.08.2021 13:03:51 | -3,600 | 7d91b7f3945f42e13e3873e20b96f3b18c5c03b2 | fix(ui): add grid labels to history query
Grid labels got stripped from groups, so we need to manually include them in history queries | [
{
"change_type": "MODIFY",
"diff": "@@ -16,10 +16,15 @@ import {\nRainbowHistoryResponse,\nFailedHistoryResponse,\n} from \"__fixtures__/AlertHistory\";\n-import type { APIAlertGroupT, HistoryResponseT } from \"Models/APITypes\";\n+import type {\n+ APIAlertGroupT,\n+ APIGridT,\n+ HistoryResponseT,\n+} from ... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): add grid labels to history query
Grid labels got stripped from groups, so we need to manually include them in history queries | 1 | fix | ui |
531,793 | 05.08.2021 13:04:09 | -3,600 | d33f97534e3021d4adfe928ca5bed79264ebae73 | fix(demo): use full path for source URIs | [
{
"change_type": "MODIFY",
"diff": "@@ -92,7 +92,7 @@ def newMatcher(name, value, isRegex, isEqual=True):\nreturn {\"name\": name, \"value\": value, \"isRegex\": isRegex, \"isEqual\": isEqual}\n-def newAlert(labels, annotations=None, generatorURL=\"http://localhost:8082/graph\"):\n+def newAlert(labels, anno... | TypeScript | Apache License 2.0 | prymitive/karma | fix(demo): use full path for source URIs | 1 | fix | demo |
342,861 | 05.08.2021 13:26:25 | -7,200 | e0f657b5279b8b3733615517869a0eb5dfbde6d2 | feat(Modal): add mobileHeader prop
There is issue with doubled header on mobile. It should be possible to turn off the mobile header | [
{
"change_type": "MODIFY",
"diff": "@@ -436,6 +436,7 @@ export const FullPreview = (): React.Node => {\nconst flex = array(\"Flex\", [\"0 0 auto\", \"1 1 100%\"]);\nconst dataTest = text(\"dataTest\", \"test\");\nconst isMobileFullPage = boolean(\"isMobileFullPage\", false);\n+ const mobileHeader = boolean(... | JavaScript | MIT License | kiwicom/orbit | feat(Modal): add mobileHeader prop (#3063)
There is issue with doubled header on mobile. It should be possible to turn off the mobile header | 1 | feat | Modal |
699,189 | 05.08.2021 13:29:13 | 18,000 | 5374cd7b261431b337a53ce26850fda242812e19 | feat(anchor): enable customization provider | [
{
"change_type": "ADD",
"diff": "+---\n+'@twilio-paste/anchor': minor\n+'@twilio-paste/core': minor\n+---\n+\n+[Anchor] Enable Anchor to respect element customizations set on the customization provider. Anchor now enables setting an element name on the underlying HTML element and checks the emotion theme ob... | TypeScript | MIT License | twilio-labs/paste | feat(anchor): enable customization provider (#1733) | 1 | feat | anchor |
276,989 | 05.08.2021 13:49:17 | 10,800 | 1265980c51b275637530ca829f63871ec6dff580 | chore(dps): update some dependencies and config to make tests running again | [
{
"change_type": "MODIFY",
"diff": "@@ -3,7 +3,11 @@ module.exports = {\nweb: {\nignore: ['**/native', '**/*.native.js', '**/*.test.jsx'],\npresets: ['@babel/preset-env', '@babel/preset-react'],\n- plugins: ['inline-react-svg', 'import-glob'],\n+ plugins: [\n+ 'inline-react-svg',\n+ 'import-glob',\n+ ['@bab... | JavaScript | MIT License | gympass/yoga | chore(dps): update some dependencies and config to make tests running again | 1 | chore | dps |
791,370 | 05.08.2021 13:54:20 | 21,600 | 4374b907e9f166da6bd23a8ef94399872b00afd6 | feat(.github): support dynamic submodule detection
Today the sub-modules are are coded into a couple of places to
work with release-please. This change is the first of three to
make release-please automatically support newly added modules. | [
{
"change_type": "MODIFY",
"diff": "@@ -19,44 +19,12 @@ jobs:\nsubmodules: ${{ steps.interrogate.outputs.submodules }}\nsteps:\n- uses: actions/checkout@v2\n- - id: interrogate\n- uses: actions/github-script@v4\n+ - name: Setup Go\n+ uses: actions/setup-go@v2\nwith:\n- github-token: ${{secrets.GITHUB_TOKEN}... | Go | Apache License 2.0 | googleapis/google-cloud-go | feat(.github): support dynamic submodule detection (#4537)
Today the sub-modules are are coded into a couple of places to
work with release-please. This change is the first of three to
make release-please automatically support newly added modules. | 1 | feat | .github |
276,989 | 05.08.2021 14:39:14 | 10,800 | e7a27865d1003ac867a230422fbf6e51071180de | refactor(rn/android): updating RN issues on Android | [
{
"change_type": "MODIFY",
"diff": "@@ -42,10 +42,8 @@ const withTouchable = Component => {\nWithTouchable.defaultProps = {\nonPressIn: () => {},\nonPressOut: () => {},\n- onChange: () => {},\n- get onPress() {\n- return this.onChange;\n- },\n+ onChange: undefined,\n+ onPress: undefined,\n};\nreturn WithTou... | JavaScript | MIT License | gympass/yoga | refactor(rn/android): updating RN issues on Android | 1 | refactor | rn/android |
277,002 | 05.08.2021 14:54:37 | 10,800 | 2006d7d4e0f94bb42cae7bcf9c46c3487ccf5176 | feat: add variant small in component tag | [
{
"change_type": "MODIFY",
"diff": "<Tag.Informative variant=\"informative\" >informative</Tag.Informative>\n<Tag.Informative icon={Building}>informative with custom icon</Tag.Informative>\n+ <Tag.Informative variant=\"informative\" small>informative small</Tag.Informative>\n+ <Tag.Informative icon={Buildin... | JavaScript | MIT License | gympass/yoga | feat: add variant small in component tag | 1 | feat | null |
104,844 | 05.08.2021 15:10:50 | 14,400 | 6ed48208b56bd920f92407ac48055e3cc2452247 | feat(card): fix RTL issue with tooltip | [
{
"change_type": "MODIFY",
"diff": "@@ -52,6 +52,11 @@ $lineHeightSize: 1.375em;\n.#{$iot-prefix}--card--header--tooltip {\nflex-basis: $tooltipSize;\nmargin-top: $spacing-02;\n+\n+ html[dir='rtl'] &.#{$prefix}--tooltip__label .#{$prefix}--tooltip__trigger {\n+ margin-left: unset;\n+ margin-right: $spacing-... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(card): fix RTL issue with tooltip | 1 | feat | card |
342,861 | 05.08.2021 15:28:20 | -7,200 | f28023eb9a9b2ef1394af2c8541886b7c06e475e | fix(Modal): hide closeContainer with mobileHeader set to false | [
{
"change_type": "MODIFY",
"diff": "@@ -37,6 +37,7 @@ export const Sizes = (): React.Node => {\nconst size = select(\"Size\", Object.values(SIZES), SIZES.NORMAL);\nconst title = text(\"Title\", \"Orbit design system\");\nconst description = text(\"Title\", \"I'm lovely description\");\n+ const mobileHeader ... | JavaScript | MIT License | kiwicom/orbit | fix(Modal): hide closeContainer with mobileHeader set to false (#3065) | 1 | fix | Modal |
104,844 | 05.08.2021 15:36:24 | 14,400 | 9d1015553210d9c1770c8819f81bcd3397900e16 | fix(card): fix some RTL issues | [
{
"change_type": "MODIFY",
"diff": "@@ -383,6 +383,7 @@ export const ImplementingACustomCard = () => {\n{!isEditable\n? (_$, { cardToolbar, values }) => (\n<Table\n+ style={{ width: 'calc(100% + 2rem)', transform: 'translateX(-1rem)' }}\nid=\"my table\"\nsecondaryTitle={title}\ncolumns={[\n",
"new_path"... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(card): fix some RTL issues | 1 | fix | card |
276,989 | 05.08.2021 15:39:50 | 10,800 | 623682371ae027ec1d303c7a06c6f13805c8b042 | chore(rn/ios): upgrading iOS configs | [
{
"change_type": "MODIFY",
"diff": "@@ -25,6 +25,7 @@ target 'labnative' do\naggregate_target.user_project.native_targets.each do |target|\ntarget.build_configurations.each do |config|\nconfig.build_settings['LIBRARY_SEARCH_PATHS'] = ['$(SDKROOT)/usr/lib/swift', '$(inherited)']\n+ config.build_settings['IPH... | JavaScript | MIT License | gympass/yoga | chore(rn/ios): upgrading iOS configs | 1 | chore | rn/ios |
342,867 | 05.08.2021 15:56:34 | -7,200 | 3ee1791bdb5bc38fa9abc84ded28b1d09cc31df6 | docs(Badge): content structure change | [
{
"change_type": "MODIFY",
"diff": "@@ -23,7 +23,7 @@ redirect_from:\n## Content structure\n-\n+<iframe title=\"Button states\" style={{ border: \"1px solid rgba(0, 0, 0, 0.1)\", maxWidth: \"700px\", heigh... | JavaScript | MIT License | kiwicom/orbit | docs(Badge): content structure change | 1 | docs | Badge |
791,370 | 05.08.2021 16:08:31 | 21,600 | 6f9c98fd77bfe6a8ae601b7af8d24a508c7088af | refactor(internal/carver): try to improve readability a bit
Some calculations were done in multiple places. Decided to make
modInfo more useful and pass those structs around.
Also included a fix to update snippets mod so builds pass. | [
{
"change_type": "MODIFY",
"diff": "@@ -50,12 +50,10 @@ var (\n)\ntype carver struct {\n+ rootMod *modInfo\n+ childMod *modInfo\n+\n// flags\n- parentModPath string\n- parentGitTag string\n- parentGitTagPrefix string\n- childTagVersion string\n- childModPath string\nrepoMetadataPath string\nname string\ndry... | Go | Apache License 2.0 | googleapis/google-cloud-go | refactor(internal/carver): try to improve readability a bit (#4524)
Some calculations were done in multiple places. Decided to make
modInfo more useful and pass those structs around.
Also included a fix to update snippets mod so builds pass. | 1 | refactor | internal/carver |
127,979 | 05.08.2021 16:11:45 | -10,800 | ec87e27007bbc777ee5c6fb74234d0eaa3f9f5c3 | fix: update Livecasino themes | [
{
"change_type": "MODIFY",
"diff": "@@ -6,38 +6,38 @@ const boxShadow = '0px 2.4px 7.2px rgba(0, 0, 0, 0.18), 0px 12.8px 28.8px rgba(0\nconst color = {\npiccolo: {\n- 120: '#CF0232',\n- 100: '#DE0D3E',\n- 80: '#E61E4D',\n+ 120: '#cf0232',\n+ 100: '#de0d3e',\n+ 80: '#e61e4d',\n},\nhit: {\n- 120: '#E5E9F0',\n... | TypeScript | MIT License | coingaming/moon-design | fix: update Livecasino themes [B1M2-3095] (#1291) | 1 | fix | null |
276,986 | 05.08.2021 16:37:43 | 10,800 | 9663634c4f84fca85aad2f21d493935dcd18f2d9 | feat(chips): change native style to match the web
change the values used in border-color and font-weight when the component is selected | [
{
"change_type": "MODIFY",
"diff": "@@ -42,7 +42,7 @@ const Wrapper = styled.View`\nselected\n? css`\nbackground-color: ${theme.colors.yoga};\n- border-color: ${theme.colors.primary};\n+ border-color: transparent;\n`\n: ''}\n`;\n@@ -91,7 +91,7 @@ const Chips = ({\n/>\n)}\n<StyledChips\n- as={selected ? Text... | JavaScript | MIT License | gympass/yoga | feat(chips): change native style to match the web
change the values used in border-color and font-weight when the component is selected | 1 | feat | chips |
342,861 | 05.08.2021 16:50:03 | -7,200 | f63243a6189ce808a30a0fe15e7602f3a9800996 | docs: add FigmaIframe component | [
{
"change_type": "MODIFY",
"diff": "@@ -235,6 +235,7 @@ module.exports = {\nImageContainer: false,\nInlineToken: false,\nReactExample: false,\n+ FigmaIframe: false,\n},\n},\n// some ESLint rules fail in certain cases, so we're disabling them\n",
"new_path": ".eslintrc.js",
"old_path": ".eslintrc.js"... | JavaScript | MIT License | kiwicom/orbit | docs: add FigmaIframe component | 1 | docs | null |
126,276 | 05.08.2021 17:18:06 | 10,800 | 0b2812a1522e614dda98a29e9b4c6d5c2b978c36 | chore(pkg/database): minor refactoring coding conventions | [
{
"change_type": "MODIFY",
"diff": "@@ -69,8 +69,8 @@ type DB interface {\nVerifiableZAdd(req *schema.VerifiableZAddRequest) (*schema.VerifiableTx, error)\nScan(req *schema.ScanRequest) (*schema.Entries, error)\nClose() error\n- GetOptions() *DbOptions\n- UpdateReplicationOptions(replicationOpts *Replicatio... | Go | Apache License 2.0 | codenotary/immudb | chore(pkg/database): minor refactoring coding conventions
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | pkg/database |
342,861 | 05.08.2021 17:27:19 | -7,200 | 89810e81266b9b7265479cc32ffe88822ebb1060 | docs(Badge): add content structure description | [
{
"change_type": "MODIFY",
"diff": "@@ -28,6 +28,9 @@ redirect_from:\nsrc=\"https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2F4QJZqvBvRrLu6t9mwObCkA%2FOrbit-Component-Content-Structure%3Fnode-id%3D286%253A46\"\n/>\n+**1. Icon** (Supports the label) <br />\n+**2. Label** (... | JavaScript | MIT License | kiwicom/orbit | docs(Badge): add content structure description | 1 | docs | Badge |
306,635 | 05.08.2021 18:33:17 | -19,080 | deeb1e1cc726a339b05f3d3c3f47495ca67853ef | fix(Input): remove action Icon when input field is disabled
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -242,9 +242,9 @@ export const Input = React.forwardRef<HTMLInputElement, InputProps>((props, forw\nonClick={onClick}\nonFocus={onFocus}\n/>\n- {(!value && !disabled) || (value && disabled) || (defaultValue && disabled)\n- ? (\n- info && (\n+ {disabled ? '' :\n+\n+ info... | TypeScript | MIT License | innovaccer/design-system | fix(Input): remove action Icon when input field is disabled
closes #792 | 1 | fix | Input |
401,129 | 05.08.2021 18:47:55 | -19,080 | 23396195c7d316c5348509ded3dab7ddcd789617 | feat: add the `disabled` prop in breadcrumb item
* feat: add a prop disabled in braedcrumb item
affects:
* refactor: breadcrumb component
affects: | [
{
"change_type": "MODIFY",
"diff": "@@ -15,12 +15,14 @@ Breadcrumbs indicate current page's location to user.\n<Breadcrumb>\n<Breadcrumb.Item onClick={action('Home')}>Home</Breadcrumb.Item>\n<Breadcrumb.Item onClick={action('Article')}>Article</Breadcrumb.Item>\n- <Breadcrumb.Item onClick={action('Section')... | TypeScript | MIT License | medly/medly-components | feat: add the `disabled` prop in breadcrumb item (#367)
* feat: add a prop disabled in braedcrumb item
affects: @medly-components/core, @medly-components/theme
* refactor: breadcrumb component
affects: @medly-components/core
Co-authored-by: Manish Ranjan <manish@Manishs-MacBook-Pro.local>
Co-authored-by: ... | 1 | feat | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.