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
4,988
18.10.2021 22:32:58
-7,200
d188c9f61aa8378d7a1c082fc29869a91787a1b8
docs: comment stream samples
[ { "change_type": "MODIFY", "diff": "@@ -3,21 +3,25 @@ import { generate } from 'csv-generate'\nimport assert from 'assert'\nconst records = []\n+// Initialize the generator\ngenerate({\nseed: 1,\nobjectMode: true,\ncolumns: 2,\nlength: 2\n})\n+// Use the readable stream api to consume generated records\n.on...
JavaScript
MIT License
adaltas/node-csv
docs: comment stream samples
1
docs
null
530,289
18.10.2021 23:14:02
25,200
a615796a4b2e0f844e080634cb9690267718c670
fix: incorrect workflow token
[ { "change_type": "MODIFY", "diff": "@@ -75,7 +75,7 @@ jobs:\nid: create-pr\nuses: peter-evans/create-pull-request@v3\nwith:\n- token: ${{ secrets.PROJEN_UPGRADE_TOKEN }}\n+ token: ${{ secrets.PROJEN_GITHUB_TOKEN }}\ncommit-message: >-\nchore(deps): upgrade dependencies\n", "new_path": ".github/workflows...
TypeScript
Apache License 2.0
projen/projen
fix: incorrect workflow token (#1148)
1
fix
null
4,988
18.10.2021 23:15:41
-7,200
acb41d5031669f2d582e40da1c80f5fd4738fee4
feat: replace ts types with typesVersions
[ { "change_type": "MODIFY", "diff": "\"test\": \"mocha 'test/**/*.{coffee,ts}'\"\n},\n\"type\": \"module\",\n- \"types\": \"./lib/index.d.ts\"\n+ \"typesVersions\": {\n+ \"*\": {\n+ \".\": [\"dist/esm/index.d.ts\"],\n+ \"sync\": [\"dist/esm/sync.d.ts\"]\n+ }\n+ }\n}\n", "new_path": "packages/csv-generate...
JavaScript
MIT License
adaltas/node-csv
feat: replace ts types with typesVersions
1
feat
null
4,988
18.10.2021 23:16:32
-7,200
a5b4cf506c678eab089b868373427608a68514bb
docs(csv): update pipe comments
[ { "change_type": "MODIFY", "diff": "// Import the package main module\nimport * as csv from '../lib/index.js'\n-// Use the module\n+\n+// Run the pipeline\ncsv\n// Generate 20 records\n.generate({\ndelimiter: '|',\nlength: 20\n})\n-// Parse the records\n+// Transform CSV data into records\n.pipe(csv.parse({...
JavaScript
MIT License
adaltas/node-csv
docs(csv): update pipe comments
1
docs
csv
4,988
18.10.2021 23:35:28
-7,200
2c2623f01a4985c5d248e1557a32a70350e825f6
fix(csv-stringify): use removeListener instead of off
[ { "change_type": "MODIFY", "diff": "@@ -5523,7 +5523,7 @@ const stringify = function(records, options={}){\nstringifier.write(record);\n}\nstringifier.end();\n- stringifier.off('data', onData);\n+ stringifier.removeListener('data', onData);\nreturn data.join('');\n};\n", "new_path": "packages/csv-string...
JavaScript
MIT License
adaltas/node-csv
fix(csv-stringify): use removeListener instead of off
1
fix
csv-stringify
71,427
19.10.2021 03:56:35
25,200
605027fc471b007ee63cd3abdcb0fd09f81c58a5
chore(region-info): cn-northwest-1 (Ningxia) ROUTE_53_BUCKET_WEBSITE_ZONE_ID https://github.com/hashicorp/terraform-provider-aws/pull/21337 *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": "@@ -74,10 +74,10 @@ test('throws if region agnostic', () => {\n}).toThrow(/Cannot use an S3 record alias in region-agnostic stacks/);\n});\n-test('throws if bucket website hosting is unavailable (cn-northwest-1)', () => {\n+test('throws if bucket website hosting is unavai...
TypeScript
Apache License 2.0
aws/aws-cdk
chore(region-info): cn-northwest-1 (Ningxia) ROUTE_53_BUCKET_WEBSITE_ZONE_ID (#17024) https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_region, https://github.com/hashicorp/terraform-provider-aws/pull/21337 ---- *By submitting this pull request, I confirm that my contribution is made under the terms o...
1
chore
region-info
103,492
19.10.2021 06:14:11
25,200
072e40bcaacb1f63587b75c3bc417837692bbd38
refactor(modal): migrate to functional component
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,8 @@ import {\ngetBottomSpace,\n} from 'react-native-iphone-x-helper';\nimport Surface from './Surface';\n-import { withTheme } from '../core/theming';\n+import { useTheme } from '../core/theming';\n+import useAnimatedValue from '../utils/useAnimatedValue';\n...
TypeScript
MIT License
callstack/react-native-paper
refactor(modal): migrate to functional component (#2557)
1
refactor
modal
392,551
19.10.2021 06:39:42
-7,200
b3c694f0b9fc40da595ceac5b681d2f2093a64fb
fix: detach custom camera controls correctly Only detach once. Unit test. Return camera controls in promise when detaching.
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,7 @@ import {\nskip,\nstartWith,\nswitchMap,\n+ take,\nwithLatestFrom,\n} from \"rxjs/operators\";\n@@ -157,22 +158,31 @@ export class CustomCameraControls {\nthis.detach(viewer);\n}\n- public detach(viewer: IViewer): void {\n- if (!this._controls) {\n- retur...
TypeScript
MIT License
mapillary/mapillary-js
fix: detach custom camera controls correctly Only detach once. Unit test. Return camera controls in promise when detaching.
1
fix
null
71,382
19.10.2021 08:43:33
14,400
d1cee62b5b9960860e1ff59dc095ba52d3f9de31
chore: fix typo in 'subnet' Fix typographical errors in the spelling of 'subnet' in the ec2 & eks modules. *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": "@@ -361,7 +361,7 @@ describe('vpc', () => {\n}\n});\n- test('with custom subents and natGateways = 2 there should be only two NATGW', () => {\n+ test('with custom subnets and natGateways = 2 there should be only two NATGW', () => {\nconst stack = getTestStack();\nnew Vpc(...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: fix typo in 'subnet' (#17046) Fix typographical errors in the spelling of 'subnet' in the ec2 & eks modules. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
chore
null
915,154
19.10.2021 08:45:17
-7,200
acb16c1c273e023c8c3854f7fc36ba653085c828
fix: resolve a merge conflict in migration_test
[ { "change_type": "MODIFY", "diff": "@@ -95,7 +95,7 @@ func TestMigrations(t *testing.T) {\nt.Run(fmt.Sprintf(\"case=jwk migration %d\", i), func(t *testing.T) {\nactual := &jwk.SQLData{}\nrequire.NoError(t, c.Where(\"pk_deprecated = ?\", i).First(actual))\n- assertUUID(t, &actual.ID)\n+ uuid.AssertUUID(t, &...
Go
Apache License 2.0
ory/hydra
fix: resolve a merge conflict in migration_test (#2811)
1
fix
null
277,286
19.10.2021 08:57:51
-7,200
fde0b623d8655ddfa31ae74c5a40f226c7794921
fix: Neon theme disabled state colors. Closes
[ { "change_type": "MODIFY", "diff": "@@ -173,7 +173,7 @@ async def serve(q: Q):\nui.buttons([\nui.button(name='primary_button', label='Primary', primary=True),\nui.button(name='standard_button', label='Standard'),\n- ui.button(name='standard_disabled_button', label='Standard', disabled=True),\n+ ui.button(na...
Python
Apache License 2.0
h2oai/wave
fix: Neon theme disabled state colors. Closes #1072
1
fix
null
897,054
19.10.2021 09:14:25
-32,400
b526e87a70aa2bdda3bf2b48747127c7872dbd51
test: rename some files used in tests
[ { "change_type": "RENAME", "diff": "", "new_path": "packages/dts-gen/resources/test-fullWidthSymbol-fields.d.ts", "old_path": "packages/dts-gen/resources/test-fullwidth-symbol-field.d.ts" }, { "change_type": "RENAME", "diff": "", "new_path": "packages/dts-gen/resources/test-renderAsF...
TypeScript
MIT License
kintone/js-sdk
test: rename some files used in tests (#1153)
1
test
null
71,413
19.10.2021 09:35:20
14,400
707fa003a458039878a1ae5173b6665a84c1170b
fix(events): PhysicalName.GENERATE_IF_NEEDED does not work for EventBus fixes an issue where the generate when needed marker was not being passed through to the physicalName fix *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": "@@ -276,6 +276,8 @@ export class EventBus extends EventBusBase {\n);\n}\nreturn { eventBusName: eventSourceName, eventSourceName };\n+ } else {\n+ return { eventBusName: props.eventBusName };\n}\n}\nreturn { eventBusName: defaultEventBusName };\n@@ -311,7 +313,7 @@ export...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(events): PhysicalName.GENERATE_IF_NEEDED does not work for EventBus (#17008) fixes an issue where the generate when needed marker was not being passed through to the physicalName fix #14337 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 l...
1
fix
events
815,577
19.10.2021 09:38:04
-28,800
80cdce36b80b4a2c47670d52fb5ed74b87dd4c39
chore: ignore RUSTSEC-2020-0159
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,9 @@ yanked = \"deny\"\nnotice = \"deny\"\nignore = [\n# TODO Potential segfault in the time crate; waiting for the fix from upstream (chrono)\n- \"RUSTSEC-2020-0071\"\n+ \"RUSTSEC-2020-0071\",\n+ # TODO Potential segfault in the chrono crate; waiting for the n...
Rust
MIT License
nervosnetwork/ckb
chore: ignore RUSTSEC-2020-0159
1
chore
null
756,013
19.10.2021 09:40:15
21,600
c703d07e58ae12d849b417256598aa9015d9e513
fix(meter): use `process.env` not `process.environment`
[ { "change_type": "MODIFY", "diff": "@@ -457,19 +457,20 @@ export default function buildKernel(\nassert.typeof(consumed, 'number');\nused = BigInt(consumed);\npolicyInput = ['crank', { computrons: used }];\n- }\n- if (useMeter && metering !== null && meterID) {\n- // If we have a Meter, and the manager repor...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(meter): use `process.env` not `process.environment`
1
fix
meter
902,122
19.10.2021 09:51:24
-7,200
58b992afb012bb270f3dfe27c2d57a1f91f8051f
chore(release): v9.2.20
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [9.2.20](https://github.com/microlinkhq/browserless/compare/v9.2.19...v9.2.20) (2021-10-19)\n+\n+**Note:** Version...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v9.2.20
1
chore
release
815,601
19.10.2021 10:28:52
-28,800
c29f5c8a27e00db81bf987d0d39f2418472d82c5
feat: tx-pool entry timestamp
[ { "change_type": "MODIFY", "diff": "@@ -2500,7 +2500,8 @@ Response\n\"fee\": \"0x16923f7dcf\",\n\"ancestors_size\": \"0x112\",\n\"ancestors_cycles\": \"0x219\",\n- \"ancestors_count\": \"0x1\"\n+ \"ancestors_count\": \"0x1\",\n+ \"timestamp\": \"0x17c983e6e44\"\n}\n},\n\"proposed\": {}\n@@ -3939,6 +3940,8 @...
Rust
MIT License
nervosnetwork/ckb
feat: tx-pool entry timestamp
1
feat
null
277,286
19.10.2021 10:30:29
-7,200
23eb2011841653a98bfc1dfb90c5312bde4f0b5e
chore: clean up redundant hover style hack in datepicker
[ { "change_type": "MODIFY", "diff": "import * as Fluent from '@fluentui/react'\nimport { B, Id, S, U } from 'h2o-wave'\nimport React from 'react'\n-import { cssVar } from './theme'\nimport { wave } from './ui'\n/**\n@@ -75,18 +74,6 @@ export const\nreturn (\n<Fluent.DatePicker\ndata-test={m.name}\n- styles={...
Python
Apache License 2.0
h2oai/wave
chore: clean up redundant hover style hack in datepicker
1
chore
null
104,828
19.10.2021 10:56:58
-7,200
f1f001f3ce58edf290b6821529d0a1301bfd195f
feat(table): add expandRowsExclusively and fix docs
[ { "change_type": "MODIFY", "diff": "@@ -250,7 +250,9 @@ const StatefulTable = ({ data: initialData, expandedData, ...other }) => {\ncallbackParent(onSelectAll, isSelected);\n},\nonRowExpanded: (rowId, isExpanded) => {\n- dispatch(tableRowExpand(rowId, isExpanded));\n+ const expansionOptions =\n+ typeof opti...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(table): add expandRowsExclusively and fix docs
1
feat
table
386,581
19.10.2021 10:59:34
-7,200
30f7267c3e2435647b1b5f0b4b48137d6c3357d6
fix(api): JSON web token tests and fixes.
[ { "change_type": "ADD", "diff": "+/*\n+ Copyright 2020-2021 Lowdefy, Inc\n+\n+ Licensed under the Apache License, Version 2.0 (the \"License\");\n+ you may not use this file except in compliance with the License.\n+ You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(api): JSON web token tests and fixes.
1
fix
api
104,828
19.10.2021 11:09:39
-7,200
d6c4d4e0d0a83feaf5c3d923ed66034e284ae7d7
chore(table): updated snapshots
[ { "change_type": "MODIFY", "diff": "@@ -1200,8 +1200,25 @@ Map {\n\"type\": \"bool\",\n},\n\"hasRowExpansion\": Object {\n+ \"args\": Array [\n+ Array [\n+ Object {\n+ \"type\": \"bool\",\n+ },\n+ Object {\n+ \"args\": Array [\n+ Object {\n+ \"expandRowsExclusively\": Object {\n\"type\": \"bool\",\n},\n+ },...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(table): updated snapshots #2623
1
chore
table
73,313
19.10.2021 11:33:39
-3,600
d85019dbc80f5cfd836c8d0fc989efeaee639005
chore: replaced merge action with a queue action in the pull request rule
[ { "change_type": "MODIFY", "diff": "# See https://doc.mergify.io\n+queue_rules:\n+ - name: default\n+ conditions:\n+ - status-success~=^jsii/superchain\n+ # One test for each OS\n+ - status-success~=^Test \\(ubuntu-.*$\n+ - status-success~=^Test \\(macos-.*$\n+ - status-success~=^Test \\(windows-.*$\n+ # On...
TypeScript
Apache License 2.0
aws/jsii
chore: replaced merge action with a queue action in the pull request rule
1
chore
null
815,577
19.10.2021 11:34:51
-28,800
c5a9403d2715fccd7e81d70ec19c3bbb423ddd48
fix: fix pending compact block memory bloat on abnormal flow
[ { "change_type": "MODIFY", "diff": "@@ -7,6 +7,7 @@ use ckb_logger::{self, debug_target};\nuse ckb_network::{CKBProtocolContext, PeerIndex};\nuse ckb_traits::HeaderProvider;\nuse ckb_types::{core, packed, prelude::*};\n+use ckb_util::shrink_to_fit;\nuse ckb_verification::{HeaderError, HeaderVerifier};\nuse ...
Rust
MIT License
nervosnetwork/ckb
fix: fix pending compact block memory bloat on abnormal flow
1
fix
null
777,388
19.10.2021 11:43:15
21,600
d34ea10b67eb5b7a4c9582ece155f3082ded445c
test: remove unused variables in tests and other outdated references
[ { "change_type": "MODIFY", "diff": "@@ -158,7 +158,7 @@ def set_s3_data_layer(config: Dict[Any, Any]) -> Dict[Any, Any]:\nconfig[\"data_layer\"] = {}\nconfig[\"data_layer\"][\"type\"] = \"s3\"\nconfig[\"data_layer\"][\"bucket\"] = \"yogadl-test\"\n- config[\"data_layer\"][\"bucket_directory_path\"] = \"pedl...
Python
Apache License 2.0
determined-ai/determined
test: remove unused variables in tests and other outdated references (#3095)
1
test
null
127,935
19.10.2021 11:43:59
-10,800
8919eeade38a120cafe249065db7ab014f7513e2
fix: cannot use '??' operator in sportsbet-packages
[ { "change_type": "MODIFY", "diff": "@@ -22,7 +22,7 @@ export const DialogToggle = styled.button<DialogToggleProps>(\nborderRadius: rem(radius.largest),\nborder,\nborderColor: 'transparent',\n- backgroundColor: backgroundColor ?? color.gohan[100],\n+ backgroundColor: backgroundColor ? backgroundColor : color...
TypeScript
MIT License
coingaming/moon-design
fix: cannot use '??' operator in sportsbet-packages
1
fix
null
866,394
19.10.2021 12:00:24
14,400
06eabcadb6a1af74e206a9d51ac5c969d6525c92
test(e2e): bumping up timeout configs for Github Actions ### Related Ticket(s) No related issue ### Description Noticed that Github Actions needs a little bit more time running tests on occasion. This will match the timeout amounts we have for e2e testing on storybook. ### Changelog **Changed** `cypress.json` for csb t...
[ { "change_type": "MODIFY", "diff": "\"pluginsFile\": \"tests/e2e/cypress/plugins/index.js\",\n\"nodeVersion\": \"system\",\n\"testFiles\": \"**/*.e2e.js\",\n- \"pageLoadTimeout\": 10000,\n- \"defaultCommandTimeout\": 20000\n+ \"pageLoadTimeout\": 40000,\n+ \"defaultCommandTimeout\": 40000\n}\n", "new_pa...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
test(e2e): bumping up timeout configs for Github Actions (#7438) ### Related Ticket(s) No related issue ### Description Noticed that Github Actions needs a little bit more time running tests on occasion. This will match the timeout amounts we have for e2e testing on storybook. ### Changelog **Changed** ...
1
test
e2e
386,584
19.10.2021 12:18:58
-7,200
8fe5cdd65f60fd4b87c820aa0eb1b9a106ce077f
fix(build): Removed check and test for duplicate block id.
[ { "change_type": "MODIFY", "diff": "import { type } from '@lowdefy/helpers';\n-function validateBlock(block, { pageId, checkDuplicateBlockId }) {\n+function validateBlock(block, { pageId }) {\nif (!type.isObject(block)) {\nthrow new Error(\n`Expected block to be an object on page \"${pageId}\". Received ${J...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(build): Removed check and test for duplicate block id.
1
fix
build
737,359
19.10.2021 12:23:07
-3,600
8dbc88ae3a596707ae2382ef9cec6f2f7164f829
chore(release): publish 10.0.0-alpha.17
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+# [10.0.0-alpha.17](https://github.com/wopian/kitsu/compare/v10.0.0-alpha.16...v10.0.0-alpha.17) (2021-10-19)\n+\n+\n...
JavaScript
MIT License
wopian/kitsu
chore(release): publish 10.0.0-alpha.17
1
chore
release
135,494
19.10.2021 12:29:45
-7,200
900dce8e3713990d7f7ba65fb76182d9a4d7e3fc
docs: add gitlab-ci setup
[ { "change_type": "MODIFY", "diff": "@@ -75,6 +75,15 @@ workflows:\n- lint_commit_message: { requires: [setup] }\n```\n+## GitLab CI\n+\n+```yaml\n+lint:commit:\n+ stage: lint\n+ script:\n+ - echo \"${CI_COMMIT_TITLE}\\n\\n${CI_COMMIT_DESCRIPTION}\" | npx commitlint\n+```\n+\n### 3rd party integrations\n####...
TypeScript
MIT License
conventional-changelog/commitlint
docs: add gitlab-ci setup (#2829)
1
docs
null
551,636
19.10.2021 13:34:39
-3,600
06d2f04b502d7e883c912b21d882eb2d67f8b142
refactor(ilp): refactored UDP and TCP server to avoid confusing inheritance, TCP inherited UPD. It wasn't clear at all in what way these are siblings
[ { "change_type": "MODIFY", "diff": "package org.questdb;\n-import io.questdb.cutlass.line.LineUdpSender;\nimport io.questdb.cutlass.line.LineTcpSender;\nimport io.questdb.network.Net;\nimport io.questdb.std.Rnd;\n@@ -38,7 +37,7 @@ public class LineTCPSenderMain {\nfinal Rnd rnd = new Rnd();\nlong start = Sy...
Java
Apache License 2.0
questdb/questdb
refactor(ilp): refactored UDP and TCP server to avoid confusing inheritance, TCP inherited UPD. It wasn't clear at all in what way these are siblings (#1445)
1
refactor
ilp
317,737
19.10.2021 13:39:20
14,400
84bddd4b9946129ae67964998e67621787779a62
docs: add gif for transient prompt
[ { "change_type": "MODIFY", "diff": "@@ -76,6 +76,14 @@ Import/invoke Oh My Posh in your `$PROFILE` and add the following line below:\nEnable-PoshTooltips\n```\n+For example:\n+\n+```pwsh\n+# $PROFILE\n+oh-my-posh --init --shell pwsh --config ~\\wildertheme.json | Invoke-Expression\n+Enable-PoshTooltips\n+``...
Go
MIT License
jandedobbeleer/oh-my-posh
docs: add gif for transient prompt
1
docs
null
791,723
19.10.2021 13:48:16
25,200
f4eb93e7478f455f22710f201d02c6c78c9fe047
report(psi): retire prepareLabData, reuse standard report rendering
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,6 @@ const fs = require('fs');\nconst path = require('path');\nconst bundleBuilder = require('./build-bundle.js');\nconst {minifyFileTransform} = require('./build-utils.js');\n-const {buildPsiReport} = require('./build-report.js');\nconst {LH_ROOT} = require(...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(psi): retire prepareLabData, reuse standard report rendering (#13229)
1
report
psi
815,595
19.10.2021 14:11:26
-28,800
0fb4a7aa5b24dbbebdb0c060fdbf93ad1d20e1b1
chore: remove workflow sync-mainnet.yml
[ { "change_type": "DELETE", "diff": "-name: Sync-Mainnet\n-\n-on:\n- pull_request_review:\n- types: [ submitted ]\n- schedule:\n- - cron: '0 0 * * *'\n-\n-jobs:\n- build_ckb:\n- name: Build CKB\n- runs-on: ubuntu-latest\n- if: |\n- (\n- github.event_name == 'pull_request_review' &&\n- contains(github.event.r...
Rust
MIT License
nervosnetwork/ckb
chore: remove workflow sync-mainnet.yml
1
chore
null
127,946
19.10.2021 14:15:42
-10,800
b0179635dbd8275bf47fc818b3899e828e30f616
fix: SingleItemSelect listStyleType: 'none'
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,7 @@ interface OptionsProps {\n}\nconst ListboxListWrapper = styled(ListboxList)({\n+ listStyle: 'none',\npadding: `0 ${rem(4)}`,\n'&:focus-visible': {\noutline: 'none',\n", "new_path": "packages/core/src/singleSelect/private/Options.tsx", "old_path":...
TypeScript
MIT License
coingaming/moon-design
fix: SingleItemSelect listStyleType: 'none'
1
fix
null
756,013
19.10.2021 14:30:11
21,600
a4626f354ead6a9cddad5f8c49a8f18a3b693ee9
feat(notifier): convey internal type parameters
[ { "change_type": "MODIFY", "diff": "@@ -34,7 +34,7 @@ import './types.js';\n*\n* @template T\n* @param {ERef<BaseNotifier<T>>} notifierP\n- * @returns {AsyncIterable<T>}\n+ * @returns {ConsistentAsyncIterable<T>}\n*/\nexport const makeAsyncIterableFromNotifier = notifierP => {\nreturn Far('asyncIterableFrom...
JavaScript
Apache License 2.0
agoric/agoric-sdk
feat(notifier): convey internal type parameters
1
feat
notifier
711,597
19.10.2021 14:49:12
-7,200
fbda3ddda2fa93d5d989fed9e3518af9cf923c12
fix(core): Fix EntityHydrator missing nested relations Fixes
[ { "change_type": "MODIFY", "diff": "/* tslint:disable:no-non-null-assertion */\n-import { mergeConfig, Product } from '@vendure/core';\n+import { mergeConfig, Product, ProductVariant } from '@vendure/core';\nimport { createTestEnvironment } from '@vendure/testing';\nimport gql from 'graphql-tag';\nimport pa...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Fix EntityHydrator missing nested relations Fixes #1161
1
fix
core
103,418
19.10.2021 15:07:51
-7,200
ee9c2d043c5f4863593c2fde70fcc136dc912d8a
feat: use theme colors in Banner
[ { "change_type": "MODIFY", "diff": "import * as React from 'react';\nimport { View, StyleSheet, Image, Dimensions, Platform } from 'react-native';\n-import { Banner, FAB } from 'react-native-paper';\n+import { Banner, FAB, useTheme } from 'react-native-paper';\nimport ScreenWrapper from '../ScreenWrapper';\...
TypeScript
MIT License
callstack/react-native-paper
feat: use theme colors in Banner (#2932)
1
feat
null
756,013
19.10.2021 15:17:13
21,600
1b17f7aa4de11ccd5a1ec26fc7b6fff017d70ac1
feat(pegasus): properly abort on connection close
[ { "change_type": "MODIFY", "diff": "@@ -33,10 +33,13 @@ const TRANSFER_PROPOSAL_SHAPE = {\nconst makePegasus = (zcf, board, namesByAddress) => {\n/**\n* @typedef {Object} LocalDenomState\n+ * @property {Address} localAddr\n+ * @property {Address} remoteAddr\n* @property {Store<Denom, PromiseRecord<Courier>>...
JavaScript
Apache License 2.0
agoric/agoric-sdk
feat(pegasus): properly abort on connection close
1
feat
pegasus
306,652
19.10.2021 15:18:47
-19,080
be69d5e57be1032fba152c4ec6cae4ca24fbc1fb
fix(nestedtable): fix expand and collapse button issue
[ { "change_type": "MODIFY", "diff": "@@ -233,8 +233,11 @@ const customCode = `() => {\nconst nestedRowRenderer = (props) => {\nconst {\ndata,\n+ rowIndex\n} = props;\n-\n+ if(rowIndex % 2){\n+ return false;\n+ }\nreturn (\n<CardSubdued className=\"ml-7\">\n<div className=\"d-flex flex-row\">\n", "new_pat...
TypeScript
MIT License
innovaccer/design-system
fix(nestedtable): fix expand and collapse button issue
1
fix
nestedtable
711,597
19.10.2021 15:26:07
-7,200
7d0e8943b8786244776d25dee5c2c58610f38cf0
fix(core): Fix EntityHydrator with entity getters Fixes
[ { "change_type": "MODIFY", "diff": "/* tslint:disable:no-non-null-assertion */\n-import { mergeConfig, Product, ProductVariant } from '@vendure/core';\n-import { createTestEnvironment } from '@vendure/testing';\n+import { mergeConfig, Order, Product, ProductVariant } from '@vendure/core';\n+import { createE...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Fix EntityHydrator with entity getters Fixes #1172
1
fix
core
71,748
19.10.2021 15:27:48
-3,600
b3c00c026deda7be50bd68dbdba516185ec14e9f
chore(codepipeline-actions): remove merge conflict marker This causes a rather weird effect in the docs for this class: *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": "@@ -35,12 +35,8 @@ export interface ServiceCatalogDeployActionBeta1Props extends codepipeline.Commo\n/**\n* CodePipeline action to connect to an existing ServiceCatalog product.\n-<<<<<<< HEAD:packages/@aws-cdk/aws-codepipeline-actions/lib/servicecatalog/deploy-action.ts\...
TypeScript
Apache License 2.0
aws/aws-cdk
chore(codepipeline-actions): remove merge conflict marker (#17054) This causes a rather weird effect in the docs for this class: https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-codepipeline-actions.ServiceCatalogDeployActionBeta1.html ---- *By submitting this pull request, I confirm that my contrib...
1
chore
codepipeline-actions
14,244
19.10.2021 15:48:34
-7,200
79212d63c1b6062a22c771e71590709993e71a7a
feat(core): introduce metadata
[ { "change_type": "MODIFY", "diff": "@@ -34,7 +34,7 @@ module.exports = {\n'@typescript-eslint/camelcase': [\nERROR,\n{\n- allow: ['__autocomplete_'],\n+ allow: ['__autocomplete_', 'aa_core', 'aa_js'],\n},\n],\n// Useful to call functions like `nodeItem?.scrollIntoView()`.\n", "new_path": ".eslintrc.js",...
TypeScript
MIT License
algolia/autocomplete
feat(core): introduce metadata (#774)
1
feat
core
711,597
19.10.2021 15:51:42
-7,200
ee10922a06bd61922eae904835724697b7ca1272
docs(core): Better docs on TS Order entities Fixes
[ { "change_type": "MODIFY", "diff": "@@ -130,7 +130,7 @@ type OrderItem implements Node {\n\"The price of a single unit including discounts and tax\"\ndiscountedUnitPriceWithTax: Int!\n\"\"\"\n- The actual unit price, taking into account both item discounts _and_ prorated (proportially-distributed)\n+ The ac...
TypeScript
MIT License
vendure-ecommerce/vendure
docs(core): Better docs on TS Order entities Fixes #1165
1
docs
core
815,577
19.10.2021 15:51:44
-28,800
cc11b76ca102e1f421f6e14b3a024fe1797f5a98
chore: upgrade blake2b and system-script
[ { "change_type": "MODIFY", "diff": "@@ -210,11 +210,12 @@ checksum = \"95916998c798756098a4eb1b3f2cd510659705a9817bf203d61abd30fbec3e7b\"\n[[package]]\nname = \"blake2b-rs\"\n-version = \"0.1.5\"\n+version = \"0.2.0\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"6e35e36...
Rust
MIT License
nervosnetwork/ckb
chore: upgrade blake2b and system-script
1
chore
null
306,321
19.10.2021 16:04:26
-3,600
ad6bc5316e50bcd1c31772183031c8fc4d1eb7eb
feat: add support for nested usage properties using struct tags
[ { "change_type": "MODIFY", "diff": "@@ -57,13 +57,33 @@ func PopulateArgsWithUsage(args interface{}, u *schema.UsageData) {\n// Set the value of the arg to the value specified in the usage data.\nif f.Type() == reflect.TypeOf(floatPtr) {\nf.Set(reflect.ValueOf(u.GetFloat(usageKey)))\n- } else if f.Type() ==...
Go
Apache License 2.0
infracost/infracost
feat: add support for nested usage properties using struct tags (#1061)
1
feat
null
711,597
19.10.2021 16:08:57
-7,200
0a33e5c49a0a9b40573680460f76adf269691fb0
fix(core): Improved error message when Order.lines not joined
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,7 @@ import { summate } from '@vendure/common/lib/shared-utils';\nimport { Column, Entity, JoinTable, ManyToMany, ManyToOne, OneToMany } from 'typeorm';\nimport { Calculated } from '../../common/calculated-decorator';\n+import { InternalServerError } from '.....
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Improved error message when Order.lines not joined
1
fix
core
802,854
19.10.2021 16:11:42
10,800
cc6d57be7b9267a1ad54f0087e227e5ebd413e65
feat(typography): add new variables
[ { "change_type": "MODIFY", "diff": "--screen-lg: 1280px;\n--screen-xlg: 1440px;\n--screen-max-container: 1140px;\n- --font-family: 'Roboto', sans-serif;\n- --typography-panel-font: 900 38px/40px var(--font-family);\n- --typography-panel-letter: 0;\n- --typography-title-font: 500 24px/28px var(--font-family)...
TypeScript
Apache License 2.0
juntossomosmais/venice
feat(typography): add new variables
1
feat
typography
802,854
19.10.2021 16:16:34
10,800
198c81f7aff4b80998c0a1f423aec474f3667585
feat(typography): create mixin to generate new classes
[ { "change_type": "MODIFY", "diff": "+@mixin typography-generator($variable-name) {\n+ .jsm-#{$variable-name} {\n+ font: var(--#{$variable-name});\n+ letter-spacing: var(--#{$variable-name}-letter);\n+ }\n+}\n+\n+@include typography-generator('title-giant');\n+@include typography-generator('title-display');\...
TypeScript
Apache License 2.0
juntossomosmais/venice
feat(typography): create mixin to generate new classes
1
feat
typography
802,854
19.10.2021 16:16:53
10,800
b2f446d210c48af809a10b30717af4ac1be9bac9
docs(typography): add new typography inside sb
[ { "change_type": "MODIFY", "diff": "@@ -6,188 +6,634 @@ import { Meta, Typeset } from '@storybook/addon-docs/blocks'\nThe typography using inside Venice and their CSS Variables.\n-<Typeset\n- fontSizes={['12px', '14px', '16px', '20px', '24px', '38px']}\n- sampleText=\"Venice is the best!\"\n-/>\n-\n## Using...
TypeScript
Apache License 2.0
juntossomosmais/venice
docs(typography): add new typography inside sb
1
docs
typography
902,122
19.10.2021 16:19:00
-7,200
42579b4cf13dbcfe41851670030143a04b4f8c82
chore(release): v9.2.21
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [9.2.21](https://github.com/microlinkhq/browserless/compare/v9.2.20...v9.2.21) (2021-10-19)\n+\n+**Note:** Version...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v9.2.21
1
chore
release
269,626
19.10.2021 16:28:23
14,400
ba9b75a0950e665b5c69ba1efac8979ef8908409
fix(brew): remove deprecated `bottle :unneeded` * fix(brew): Remove deprecated `bottle :unneeded` Fixes this warning from Homebrew: `Warning: Calling bottle :unneeded is deprecated! There is no replacement.` * fix(brew): fix regression that added newlines to formula
[ { "change_type": "MODIFY", "diff": "@@ -40,10 +40,9 @@ class {{ .Name }} < Formula\ndesc \"{{ .Desc }}\"\nhomepage \"{{ .Homepage }}\"\nversion \"{{ .Version }}\"\n- {{ if .License -}}\n+ {{- if .License }}\nlicense \"{{ .License }}\"\n- {{ end -}}\n- bottle :unneeded\n+ {{- end }}\n{{- if and (not .LinuxPa...
Go
MIT License
goreleaser/goreleaser
fix(brew): remove deprecated `bottle :unneeded` (#2591) * fix(brew): Remove deprecated `bottle :unneeded` Fixes this warning from Homebrew: `Warning: Calling bottle :unneeded is deprecated! There is no replacement.` * fix(brew): fix regression that added newlines to formula
1
fix
brew
688,448
19.10.2021 16:31:32
-10,800
704c2e11a896dfb6ecc00da3b921f55369811fdf
fix(Autocomplete): add inputProps type to the definition of Autocomplete props
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,6 @@ import { OmitInternalProps } from '@toptal/picasso-shared'\nimport { Props as OuterProps } from './Autocomplete'\nexport { default } from './Autocomplete'\nexport * from './types'\n-export type AutocompleteProps = OmitInternalProps<OuterProps, 'inputProps'...
TypeScript
MIT License
toptal/picasso
fix(Autocomplete): add inputProps type to the definition of Autocomplete props (#2114)
1
fix
Autocomplete
711,597
19.10.2021 16:34:22
-7,200
bfc72f2557f203a6ce95d75254e006f98038ff71
perf(core): Improve perf of DefaultSearchPlugin reindex job This optimization makes use of a mutable RequestContext that is shared by the entire job, allowing the RequestContextCache optimizations to work as intended. In tests this lead to a 50% speed increase when indexing ~12k variants, from ~150 seconds to ~99 secon...
[ { "change_type": "MODIFY", "diff": "@@ -32,6 +32,8 @@ import {\nVariantChannelMessageData,\n} from '../types';\n+import { MutableRequestContext } from './mutable-request-context';\n+\nexport const BATCH_SIZE = 1000;\nexport const variantRelations = [\n'product',\n@@ -64,7 +66,7 @@ export class IndexerContro...
TypeScript
MIT License
vendure-ecommerce/vendure
perf(core): Improve perf of DefaultSearchPlugin reindex job This optimization makes use of a mutable RequestContext that is shared by the entire job, allowing the RequestContextCache optimizations to work as intended. In tests this lead to a 50% speed increase when indexing ~12k variants, from ~150 seconds to ~99 sec...
1
perf
core
141,585
19.10.2021 16:36:05
-39,600
1aa1ada81babdb3bc9e230117d6ccbcc421140f1
ci: Move Buildkite steps into Github Actions ci: Move Buildkite steps into Github Actions * Eslint, Prettier, Test (React 16 and React 17), and Compile moved to Github action
[ { "change_type": "MODIFY", "diff": "@@ -34,30 +34,11 @@ steps:\n- docker-compose#v3.8.0:\nrun: release\n- - name: \":nut_and_bolt: Compile\"\n- command: \".buildkite/scripts/compile.sh\"\n- branches: \"!master\"\n- <<: *defaults\n-\n- - name: \":mag: Lint\"\n- command: \".buildkite/scripts/lint.sh\"\n- bran...
TypeScript
MIT License
cultureamp/kaizen-design-system
ci: Move Buildkite steps into Github Actions (#1955) ci: Move Buildkite steps into Github Actions * Eslint, Prettier, Test (React 16 and React 17), and Compile moved to Github action
1
ci
null
826,652
19.10.2021 16:55:32
0
c9fc7404e5f94a3ffbae55bd70761d43f35a2da5
autogen: add v0.7.0-alpha.1 to version.schema.json
[ { "change_type": "MODIFY", "diff": "\"$ref\": \"https://raw.githubusercontent.com/ory/keto/v0.7.0-alpha.0/.schema/config.schema.json\"\n}\n]\n+ },\n+ {\n+ \"allOf\": [\n+ {\n+ \"properties\": {\n+ \"version\": {\n+ \"const\": \"v0.7.0-alpha.1\"\n+ }\n+ }\n+ },\n+ {\n+ \"$ref\": \"https://raw.githubuserconte...
Go
Apache License 2.0
ory/keto
autogen: add v0.7.0-alpha.1 to version.schema.json
1
autogen
null
815,598
19.10.2021 16:55:56
-28,800
27fb9871a29133146947b50723950751e2f9df3c
feat(fork): activate testnet since epoch 3113
[ { "change_type": "MODIFY", "diff": "/// The Chain Specification name.\npub const CHAIN_SPEC_NAME: &str = \"ckb_testnet\";\n-// TODO ckb2021 Update the epoch number for testnet.\n-/// First epoch number for CKB v2021\n-pub const CKB2021_START_EPOCH: u64 = u64::MAX;\n+/// First epoch number for CKB v2021, at ...
Rust
MIT License
nervosnetwork/ckb
feat(fork): activate testnet since epoch 3113
1
feat
fork
711,597
19.10.2021 17:03:55
-7,200
28f713c5642fac962eaa7c09d7fdee8c9014e1ad
fix(core): Allow middleware to inject TransactionalConnection Fixes
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,7 @@ import { Middleware, MiddlewareHandler } from './common';\nimport { ConfigModule } from './config/config.module';\nimport { ConfigService } from './config/config.service';\nimport { Logger } from './config/logger/vendure-logger';\n+import { ConnectionModul...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Allow middleware to inject TransactionalConnection Fixes #1160
1
fix
core
711,673
19.10.2021 17:15:59
-7,200
eb1dcc4115fb22904392d4d22c4af0478f57c4a4
fix(core): Fix shipping price when the promotion is not applicable anymore
[ { "change_type": "MODIFY", "diff": "@@ -88,6 +88,10 @@ export class ShippingLine extends VendureEntity {\nthis.adjustments = this.adjustments.concat(adjustment);\n}\n+ removeAdjustments() {\n+ this.adjustments = [];\n+ }\n+\n/**\n* @description\n* The total of all price adjustments. Will typically be a nega...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Fix shipping price when the promotion is not applicable anymore (#1150)
1
fix
core
711,597
19.10.2021 17:38:39
-7,200
715a2e04632f5f474e64c85c0f5da248882c731c
test(core): Add e2e test for Relates to
[ { "change_type": "MODIFY", "diff": "@@ -724,7 +724,7 @@ describe('Promotions applied to Orders', () => {\nfunction getItemSale1Line<\nT extends Array<\nUpdatedOrderFragment['lines'][number] | TestOrderFragmentFragment['lines'][number]\n- >\n+ >,\n>(lines: T): T[number] {\nreturn lines.find(l => l.productVar...
TypeScript
MIT License
vendure-ecommerce/vendure
test(core): Add e2e test for #1150 Relates to #1150
1
test
core
711,597
19.10.2021 17:41:30
-7,200
11fcc420a54f6b682ff48945ae92202445d0272f
refactor(core): Rename method to align with existing convention Relates to
[ { "change_type": "MODIFY", "diff": "@@ -88,7 +88,7 @@ export class ShippingLine extends VendureEntity {\nthis.adjustments = this.adjustments.concat(adjustment);\n}\n- removeAdjustments() {\n+ clearAdjustments() {\nthis.adjustments = [];\n}\n", "new_path": "packages/core/src/entity/shipping-line/shipping...
TypeScript
MIT License
vendure-ecommerce/vendure
refactor(core): Rename method to align with existing convention Relates to #1150
1
refactor
core
815,595
19.10.2021 18:11:26
-28,800
76808763ffa502c1817267843b7fd6bbeb894c3b
chore: warn incomplete supported network protocols
[ { "change_type": "MODIFY", "diff": "@@ -18,7 +18,7 @@ use crate::services::{\nprotocol_type_checker::ProtocolTypeCheckerService,\n};\nuse crate::{Behaviour, CKBProtocol, Peer, PeerIndex, ProtocolId, ServiceControl};\n-use ckb_app_config::{NetworkConfig, SupportProtocol};\n+use ckb_app_config::{default_suppo...
Rust
MIT License
nervosnetwork/ckb
chore: warn incomplete supported network protocols
1
chore
null
438,921
19.10.2021 18:42:28
-32,400
7d7ce450dc60c048e97063bb66607cb475db7aef
docs(data): Fix wrong data.label.format param description Clarify the last parameter, which passing text array. Fix
[ { "change_type": "MODIFY", "diff": "@@ -91,7 +91,7 @@ export default {\n})\n.style(\"fill\", $$.updateTextColor.bind($$))\n.style(\"fill-opacity\", \"0\")\n- .each(function(d, i, j) {\n+ .each(function(d, i, texts) {\nconst node = d3Select(this);\nlet {value} = d;\n@@ -105,7 +105,7 @@ export default {\n}\n}...
TypeScript
MIT License
naver/billboard.js
docs(data): Fix wrong data.label.format param description Clarify the last parameter, which passing text array. Fix #2368
1
docs
data
815,593
19.10.2021 19:21:46
-28,800
fc369bfa82f3faeca70748799c2923b5871ac065
test: add DeclaredWrongCyclesAndRelayAgain integration test
[ { "change_type": "MODIFY", "diff": "@@ -391,6 +391,7 @@ fn all_specs() -> Vec<Box<dyn Spec>> {\nBox::new(TemplateSizeLimit),\nBox::new(DeclaredWrongCycles),\nBox::new(DeclaredWrongCyclesChunk),\n+ Box::new(DeclaredWrongCyclesAndRelayAgain),\nBox::new(OrphanTxAccepted),\nBox::new(OrphanTxRejected),\nBox::new...
Rust
MIT License
nervosnetwork/ckb
test: add DeclaredWrongCyclesAndRelayAgain integration test
1
test
null
815,593
19.10.2021 19:34:09
-28,800
b04f3b879d60d7f2d759e2e522241b4e06a1300c
fix: remove tx hash from `Relayer#tx_filter` when it was rejected
[ { "change_type": "MODIFY", "diff": "@@ -774,7 +774,6 @@ dependencies = [\n\"num_cpus\",\n\"once_cell\",\n\"tempfile\",\n- \"tentacle\",\n]\n[[package]]\n@@ -1172,7 +1171,6 @@ dependencies = [\n\"ckb-types\",\n\"ckb-verification\",\n\"faketime\",\n- \"tentacle\",\n]\n[[package]]\n", "new_path": "Cargo.lo...
Rust
MIT License
nervosnetwork/ckb
fix: remove tx hash from `Relayer#tx_filter` when it was rejected
1
fix
null
667,635
19.10.2021 19:48:16
-28,800
1335dde775beb6d72ebe4492d2822356321d6542
fix(ios): place an empty image for placeholder
[ { "change_type": "MODIFY", "diff": "@@ -400,6 +400,9 @@ static void resetFontAttribute(NSTextStorage *textStorage) {\nNSTextAttachment *attachment = [NSTextAttachment new];\nattachment.bounds = (CGRect) { CGPointZero, { width, height } };\n+ if (@available(iOS 15.0, *)) {\n+ attachment.image = [[UIImage all...
C++
Apache License 2.0
tencent/hippy
fix(ios): place an empty image for placeholder
1
fix
ios
711,597
19.10.2021 20:35:39
-7,200
f76f3eaf0dd47b46e9ef5e5f4bccd0366a1434df
chore: Publish v1.3.1
[ { "change_type": "MODIFY", "diff": "+## <small>1.3.1 (2021-10-19)</small>\n+\n+\n+#### Fixes\n+\n+* **core** Allow middleware to inject TransactionalConnection ([28f713c](https://github.com/vendure-ecommerce/vendure/commit/28f713c)), closes [#1160](https://github.com/vendure-ecommerce/vendure/issues/1160)\n...
TypeScript
MIT License
vendure-ecommerce/vendure
chore: Publish v1.3.1
1
chore
null
71,303
19.10.2021 20:39:50
-19,080
7fda90318e18b3a5d126b040e35a0146634d5f2d
feat(events): Add DLQ support for SQS target feat(events-targets): Add DLQ support for SQS target 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": "@@ -35,7 +35,7 @@ EventBridge.\n## Event retry policy and using dead-letter queues\n-The Codebuild, CodePipeline, Lambda, StepFunctions and LogGroup targets support attaching a [dead letter queue and setting retry policies](https://docs.aws.amazon.com/eventbridge/latest/u...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(events): Add DLQ support for SQS target (#16916) feat(events-targets): Add DLQ support for SQS target closes #16417 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
feat
events
104,828
19.10.2021 20:52:38
-7,200
37dab95f75dbfce600ab953f01e22eeb8d7f7078
fix(table): deprecate lightweight prop
[ { "change_type": "MODIFY", "diff": "Binary files a/packages/react/cypress-visual-screenshots/baseline/components/Table/Table.test.e2ex-snapshot-2.png and b/packages/react/cypress-visual-screenshots/baseline/components/Table/Table.test.e2ex-snapshot-2.png differ\n", "new_path": "packages/react/cypress-vi...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): deprecate lightweight prop
1
fix
table
317,646
19.10.2021 21:04:16
-7,200
7e9247b56e27e19a38575e59cfc2e33ce1ca5811
fix(bash): ignore null byte in input resolves
[ { "change_type": "MODIFY", "diff": "@@ -22,7 +22,7 @@ function _omp_hook() {\nomp_elapsed=$((omp_now-omp_start_time))\nrm -f \"$TIMER_START\"\nfi\n- PS1=\"$(::OMP:: --config=\"$POSH_THEME\" --shell=bash --error=\"$ret\" --execution-time=\"$omp_elapsed\" --stack-count=\"$omp_stack_count\")\"\n+ PS1=\"$(::OMP...
Go
MIT License
jandedobbeleer/oh-my-posh
fix(bash): ignore null byte in input resolves #1083
1
fix
bash
730,428
20.10.2021 00:00:31
0
64fa5ab0f15aff2b8c5337b70e74e09fb5a27795
chore(release): 0.42.0 [skip ci]
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+## [0.42.0](https://github.com/webex/react-widgets/compare/v0.41.0...v0.42.0) (2021-10-20)\n+\n...
JavaScript
MIT License
webex/react-widgets
chore(release): 0.42.0 [skip ci]
1
chore
release
530,289
20.10.2021 00:02:47
25,200
996f1604f2f741ebffb0c2dfdf4aeb260af4a1bc
fix: decouple docgen from compile task Closes
[ { "change_type": "MODIFY", "diff": "\"steps\": [\n{\n\"exec\": \"jsii --silence-warnings=reserved-word --no-fix-peer-dependencies\"\n- },\n- {\n- \"spawn\": \"docgen\"\n}\n]\n},\n{\n\"spawn\": \"package\"\n},\n+ {\n+ \"spawn\": \"docgen\"\n+ },\n{\n\"spawn\": \"readme-macros\"\n}\n", "new_path": ".proje...
TypeScript
Apache License 2.0
projen/projen
fix: decouple docgen from compile task (#1154) Closes #1153
1
fix
null
815,577
20.10.2021 00:49:58
-28,800
965b06f1deffa56e9136715ac6f3a425de1b5924
fix: fix pending compact retain
[ { "change_type": "MODIFY", "diff": "@@ -206,10 +206,16 @@ impl<'a> CompactBlockProcess<'a> {\nmatch ret {\nReconstructionResult::Block(block) => {\npending_compact_blocks.remove(&block_hash);\n- // remove all pending request below this block number\n+ // remove all pending request below this block epoch\n+ ...
Rust
MIT License
nervosnetwork/ckb
fix: fix pending compact retain
1
fix
null
306,669
20.10.2021 08:08:45
-10,800
1c499f0d4f779367070cbb4cdd18d3ab18756667
fix(button.css): fix active state in transparent button fix
[ { "change_type": "MODIFY", "diff": "background: var(--secondary-light);\n}\n+.Button--transparent:focus {\n+ background: color-mod(var(--stone-light) a(0.2));\n+ /* box-shadow: var(--shadow-spread) var(--secondary-shadow); */\n+}\n+\n.Button--transparent:active {\nbackground: var(--secondary);\n}\n-.Button-...
TypeScript
MIT License
innovaccer/design-system
fix(button.css): fix active state in transparent button fix #925
1
fix
button.css
311,024
20.10.2021 08:54:18
25,200
6a39641555c9247cc53091db5afde73f9b1d3e34
feat(appflow): deprecate appflow functionality in
[ { "change_type": "MODIFY", "diff": "@@ -13,6 +13,7 @@ import { input, strong, weak } from '../../lib/color';\nimport { Command } from '../../lib/command';\nimport { FatalException } from '../../lib/errors';\nimport { createRequest, download } from '../../lib/utils/http';\n+import { IONIC_CLOUD_CLI_MIGRATION...
TypeScript
MIT License
ionic-team/ionic-cli
feat(appflow): deprecate appflow functionality in @ionic/cli (#4776)
1
feat
appflow
73,351
20.10.2021 09:20:13
14,400
391602c03250ca1aa72a231e87f0b5b2124e002c
chore(mergify): add corymhall to mergify
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ pull_request_rules:\nlabel:\nadd: [contribution/core]\nconditions:\n- - author~=^(eladb|RomainMuller|garnaat|nija-at|skinny85|rix0rrr|NGL321|Jerry-AWS|SomayaB|MrArnoldPalmer|NetaNir|iliapolo|njlynch|madeline-k|BenChaimberg|comcalvi|kaizen3031593|Chriscbr)$...
TypeScript
Apache License 2.0
aws/jsii
chore(mergify): add corymhall to mergify (#3080)
1
chore
mergify
306,320
20.10.2021 09:24:18
-3,600
affb8ef5d66fc44b53d93074d43ebc175875bca4
fix: fix nil pointer when spinner fails
[ { "change_type": "MODIFY", "diff": "@@ -216,7 +216,6 @@ func runMain(cmd *cobra.Command, runCtx *config.RunContext) error {\nproviderProjects, err := provider.LoadResources(usageData)\nif err != nil {\n- spinner.Fail()\nreturn err\n}\n", "new_path": "cmd/infracost/run.go", "old_path": "cmd/infracost...
Go
Apache License 2.0
infracost/infracost
fix: fix nil pointer when spinner fails
1
fix
null
866,394
20.10.2021 10:17:25
14,400
ea6879108add3b30eb48410a1c32b9621b9e9dad
chore(issue-template): add additional instructions for review tracking ### Related Ticket(s) No related issue ### Description Tweaking the instructions for the review tracking form to also mention assigning to self and setting the pipeline. This also adds the `housekeeping` label automatically. ### Changelog **Changed*...
[ { "change_type": "MODIFY", "diff": "@@ -2,11 +2,14 @@ name: (C4IBM.com team only) Review tracking\ndescription:\nCarbon for IBM.com team members can track their pull request review time here\ntitle: '[PR Reviews]: Your name - Sprint Number'\n+labels: ['housekeeping']\nbody:\n- type: markdown\nattributes:\nv...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(issue-template): add additional instructions for review tracking (#7456) ### Related Ticket(s) No related issue ### Description Tweaking the instructions for the review tracking form to also mention assigning to self and setting the pipeline. This also adds the `housekeeping` label automatically. ###...
1
chore
issue-template
777,374
20.10.2021 10:19:40
25,200
2ea2125c226e4dfc07dec4e91fdf4e8dee06f4df
ci: wait for slot availability in `e2e-cpu-double`.
[ { "change_type": "MODIFY", "diff": "@@ -61,6 +61,16 @@ def _fetch_slots() -> List[Dict[str, Any]]:\nreturn slots\n+def _wait_for_slots(min_slots_expected: int, max_ticks: int = 60 * 2) -> List[Dict[str, Any]]:\n+ for _ in range(max_ticks):\n+ slots = _fetch_slots()\n+ if len(slots) >= min_slots_expected:\n+...
Python
Apache License 2.0
determined-ai/determined
ci: wait for slot availability in `e2e-cpu-double`. (#3099)
1
ci
null
777,369
20.10.2021 10:27:23
21,600
31449294134fe93503ebcfcb58e44ad97f8af243
style: fix issue of table headers overlapping
[ { "change_type": "MODIFY", "diff": "@@ -47,7 +47,7 @@ const ResponsiveTable: ResponsiveTable = ({ loading, scroll, ...props }) => {\nreturn <div ref={tableRef}>\n<Spinner spinning={spinning}>\n- <Table scroll={tableScroll} {...props} />\n+ <Table scroll={tableScroll} tableLayout=\"auto\" {...props} />\n</Sp...
Python
Apache License 2.0
determined-ai/determined
style: fix issue of table headers overlapping (#3098)
1
style
null
815,598
20.10.2021 10:32:35
-28,800
a64881262a92623f643ff122873b4981b1e4ba38
chore: CHANGELOG for v0.101.0
[ { "change_type": "MODIFY", "diff": "-# [v0.100.0](https://github.com/nervosnetwork/ckb/compare/v0.43.1...v0.43.2) (2021-08-09)\n+# [v0.101.0](https://github.com/nervosnetwork/ckb/compare/v0.100.0...v0.101.0) (2021-10-20)\n+\n+### Features\n+\n+* #2989: Cleanup expired blocks in orphan block (@chanhsu001)\n+...
Rust
MIT License
nervosnetwork/ckb
chore: CHANGELOG for v0.101.0
1
chore
null
103,580
20.10.2021 10:34:30
-7,200
452c1636aedc16b4360ad3da95f8cf90ae77b9fd
fix: correct displaying progress bar on Android
[ { "change_type": "MODIFY", "diff": "@@ -168,12 +168,13 @@ const ProgressBar = ({\nstyle,\n]}\n>\n+ {width ? (\n<Animated.View\nstyle={[\nstyles.progressBar,\n{\n- backgroundColor: tintColor,\nwidth,\n+ backgroundColor: tintColor,\ntransform: [\n{\ntranslateX: timer.interpolate(\n@@ -217,6 +218,7 @@ const Pr...
TypeScript
MIT License
callstack/react-native-paper
fix: correct displaying progress bar on Android (#2916)
1
fix
null
699,201
20.10.2021 10:44:09
25,200
d522e7d8583c2fa652b685c24a7d832898fbfc69
chore(website): restore pagination changelog
[ { "change_type": "MODIFY", "diff": "@@ -26,7 +26,7 @@ import {Table, THead, TBody, Th, Td, Tr} from '@twilio-paste/table';\nimport {Grid, Column} from '@twilio-paste/grid';\nimport {UnorderedList, ListItem} from '@twilio-paste/list';\nimport {Stack} from '@twilio-paste/stack';\n-// import Changelog from '@t...
TypeScript
MIT License
twilio-labs/paste
chore(website): restore pagination changelog
1
chore
website
877,015
20.10.2021 10:47:39
-7,200
e89002380e59525a1a624ded65cbe7b69ac0c94b
fix(@vtmn/svelte): version of css-link dependency
[ { "change_type": "MODIFY", "diff": "\"dependencies\": {\n\"@vtmn/css-button\": \"^0.6.9\",\n\"@vtmn/css-design-tokens\": \"^0.8.6\",\n- \"@vtmn/css-link\": \"^0.3.17\",\n+ \"@vtmn/css-link\": \"^0.4.1\",\n\"@vtmn/css-popover\": \"^0.2.13\",\n\"@vtmn/css-text-input\": \"^0.8.11\"\n},\n", "new_path": "pac...
JavaScript
Apache License 2.0
decathlon/vitamin-web
fix(@vtmn/svelte): version of css-link dependency
1
fix
@vtmn/svelte
877,015
20.10.2021 10:53:02
-7,200
3e50f98c66379eff638bb2f8d79c681f25159b15
chore(package.json): delete unsused prepare script
[ { "change_type": "MODIFY", "diff": "\"postinstall\": \"is-ci || husky install\",\n\"lint\": \"yarn prettier && yarn stylelint\",\n\"lint:fix\": \"yarn prettier:fix && yarn stylelint:fix\",\n- \"prepare\": \"yarn build && yarn test\",\n\"prettier\": \"prettier .\",\n\"prettier:fix\": \"prettier . --write\",\...
JavaScript
Apache License 2.0
decathlon/vitamin-web
chore(package.json): delete unsused prepare script
1
chore
package.json
802,854
20.10.2021 10:57:34
10,800
ac225f1abba9886facf55279474fac6fd09ac42c
chore: increase version
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"@juntossomosmais/venice-react\",\n\"description\": \"Design System of UI Components using React\",\n- \"version\": \"0.30.1\",\n+ \"version\": \"0.31.0\",\n\"license\": \"Apache-2.0\",\n\"homepage\": \"https://github.com/juntossomosmais/venice/packages/reac...
TypeScript
Apache License 2.0
juntossomosmais/venice
chore: increase version
1
chore
null
617,455
20.10.2021 11:10:08
-7,200
9532e3eac599783eba8b1ccbea2fd5712e92ae2a
chore(ci): move lint and test to github
[ { "change_type": "ADD", "diff": "+name: Code quality\n+\n+on:\n+ - push\n+\n+jobs:\n+ quality:\n+ name: Quality checks\n+ runs-on: ubuntu-latest\n+ steps:\n+ - name: Checkout repository\n+ uses: actions/checkout@v2\n+\n+ - name: Get yarn cache directory path\n+ id: yarn-cache-dir-path\n+ run: echo \"::set-o...
TypeScript
Apache License 2.0
socialgouv/code-du-travail-numerique
chore(ci): move lint and test to github (#3888)
1
chore
ci
277,287
20.10.2021 11:13:43
-7,200
d0c1d3b91f3f278156a78d644443011b1c4236e7
feat: add min and max support for datepicker
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,7 @@ async def serve(q: Q):\nui.text(f'date={q.args.date}'),\nui.text(f'date_placeholder={q.args.date_placeholder}'),\nui.text(f'date_disabled={q.args.date_disabled}'),\n+ ui.text(f'date_boundaries={q.args.date_boundaries}'),\nui.button(name='show_form', labe...
Python
Apache License 2.0
h2oai/wave
feat: add min and max support for datepicker #584 (#1078)
1
feat
null
877,015
20.10.2021 11:33:03
-7,200
047a25c282cfa6054dcc2dc7c448cf231ca4259d
refactor(@vtmn/svelte): change svelte keys in package.json files
[ { "change_type": "MODIFY", "diff": "\"url\": \"http://www.apache.org/licenses/LICENSE-2.0\"\n}\n],\n- \"svelte\": \"dist/index-with-vars.css\"\n+ \"svelte\": \"dist/index.css\"\n}\n", "new_path": "packages/sources/css/src/design-tokens/package.json", "old_path": "packages/sources/css/src/design-toke...
JavaScript
Apache License 2.0
decathlon/vitamin-web
refactor(@vtmn/svelte): change svelte keys in package.json files
1
refactor
@vtmn/svelte
617,469
20.10.2021 11:50:50
-7,200
5a2dc74c081817ac881cd3479036654edb0e1e89
fix(security): 'unsafe-inline' inside script-src
[ { "change_type": "MODIFY", "diff": "@@ -13,6 +13,6 @@ Disallow: /images/\nSitemap: https://prod-test-hostname/sitemap.xml\"\n`;\n-exports[`/NODE_ENV=* should set dev CSP 1`] = `\"default-src 'self' *.travail.gouv.fr *.data.gouv.fr *.fabrique.social.gouv.fr http://127.0.0.1:*/;font-src 'self' data: blob:;fra...
TypeScript
Apache License 2.0
socialgouv/code-du-travail-numerique
fix(security): 'unsafe-inline' inside script-src (#3862)
1
fix
security
317,646
20.10.2021 11:55:53
-7,200
94b743c43da7843ef2762eecc48b53005505f74e
feat: environment error logging relates to
[ { "change_type": "MODIFY", "diff": "@@ -143,6 +143,14 @@ func (t *tracer) trace(start time.Time, function string, args ...string) {\nlog.Println(trace)\n}\n+func (t *tracer) error(message string) {\n+ if !t.debug {\n+ return\n+ }\n+ trace := fmt.Sprintf(\"error: %s\", message)\n+ log.Println(trace)\n+}\n+\n...
Go
MIT License
jandedobbeleer/oh-my-posh
feat: environment error logging relates to #1085
1
feat
null
815,593
20.10.2021 12:39:34
-28,800
181082a98ae74d6a9d61bc8f8c48b4231949408b
chore: sort integration tests duration
[ { "change_type": "MODIFY", "diff": "@@ -617,7 +617,7 @@ fn print_results(mut test_results: Vec<TestResult>) {\nprintln!(\"{}\", \"-\".repeat(20));\nprintln!(\"{:50} | {:10} | {:10}\", \"TEST\", \"STATUS\", \"DURATION\");\n- test_results.sort_by(|a, b| a.status.cmp(&b.status));\n+ test_results.sort_by(|a, b|...
Rust
MIT License
nervosnetwork/ckb
chore: sort integration tests duration
1
chore
null
780,862
20.10.2021 13:26:24
10,800
3e425ed06dc4c292cf7ffb55fa83b8ebd686b0e1
fix(components/address-form): update correios cep finder url
[ { "change_type": "MODIFY", "diff": "@@ -87,7 +87,7 @@ export default {\nzipInfoLink () {\nreturn countryCode === 'BR'\n- ? 'http://www.buscacep.correios.com.br/sistemas/buscacep/default.cfm'\n+ ? 'https://buscacepinter.correios.com.br/app/endereco/index.php'\n: null\n}\n},\n", "new_path": "@ecomplus/sto...
JavaScript
MIT License
ecomplus/storefront
fix(components/address-form): update correios cep finder url (#546)
1
fix
components/address-form
877,015
20.10.2021 13:46:11
-7,200
bfbfb38df6cc5d8f09e918cd24891b59b50b50ce
docs: fix toolbar height on mobile showcases
[ { "change_type": "MODIFY", "diff": "flex-direction: column;\njustify-content: space-around;\nalign-items: flex-start;\n- padding: 10px;\n+ padding: 0rem 1rem;\n}\n.extended-toolbar > .vtmn-select_container {\n- padding-bottom: 0;\n+ padding: 0.5rem 0;\n}\n.extended-toolbar > .report {\ndisplay: none;\n", ...
JavaScript
Apache License 2.0
decathlon/vitamin-web
docs: fix toolbar height on mobile showcases
1
docs
null
711,597
20.10.2021 13:58:13
-7,200
6db09d80b336afbbf5e14c29f0fb8ac9913ce662
docs: Improve migrations docs
[ { "change_type": "MODIFY", "diff": "@@ -55,6 +55,7 @@ The [`revertLastMigration` function]({{< relref \"revert-last-migration\" >}}) wil\nHere is an example script (which ships with projects generated with `@vendure/create`) which provides a command-line program for managing migrations:\n```TypeScript\n+// ...
TypeScript
MIT License
vendure-ecommerce/vendure
docs: Improve migrations docs
1
docs
null
679,913
20.10.2021 14:03:51
-7,200
57c246df06279a2e70cfb28ce34ff8d9666b0199
feat(strings): migrate/add entities, regexes, fns
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,7 @@ export * from \"./ansi.js\";\nexport * from \"./case.js\";\nexport * from \"./center.js\";\nexport * from \"./cursor.js\";\n+export * from \"./entities.js\";\nexport * from \"./escape.js\";\nexport * from \"./float.js\";\nexport * from \"./format.js\";\n",...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(strings): migrate/add entities, regexes, fns
1
feat
strings
679,913
20.10.2021 14:05:25
-7,200
04154b89f3440052dfccfd6a633e73bc140cc615
feat(hiccup): replace entity handling w/ thi.ng/strings
[ { "change_type": "MODIFY", "diff": "\"dependencies\": {\n\"@thi.ng/api\": \"^8.0.3\",\n\"@thi.ng/checks\": \"^3.0.3\",\n- \"@thi.ng/errors\": \"^2.0.3\"\n+ \"@thi.ng/errors\": \"^2.0.3\",\n+ \"@thi.ng/strings\": \"^3.0.3\"\n},\n\"devDependencies\": {\n\"@thi.ng/atom\": \"^5.0.3\",\n", "new_path": "packa...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(hiccup): replace entity handling w/ thi.ng/strings
1
feat
hiccup
865,939
20.10.2021 14:16:00
-7,200
00c09f76303b45ad495c7246aaa051ae34c7e641
feat(client): add toggle form field Related to camunda/cloud-connect-modeler-plugin/issues/48
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,8 @@ import { filter } from 'min-dash';\nimport {\nModal,\n- Overlay\n+ Overlay,\n+ ToggleSwitch\n} from '../shared/ui';\nimport { Fill } from '../app/slot-fill';\n@@ -55,7 +56,8 @@ export default class Plugins {\nglobal.components = {\nFill,\nModal,\n- Overl...
JavaScript
MIT License
camunda/camunda-modeler
feat(client): add toggle form field Related to camunda/cloud-connect-modeler-plugin/issues/48
1
feat
client
802,854
20.10.2021 14:35:13
10,800
c5ffa25658c8e3cd01fe49b61ffbc72e298e2202
fix(typography): restore old variables to old values
[ { "change_type": "MODIFY", "diff": "/* Old Typography\n* TODO: Remove it after exclude from projects\n*/\n- --typography-panel-font: var(--title-headline-xlarge);\n- --typography-panel-letter: var(--title-headline-xlarge-letter);\n- --typography-title-font: var(--title-headline-small);\n- --typography-title...
TypeScript
Apache License 2.0
juntossomosmais/venice
fix(typography): restore old variables to old values
1
fix
typography
802,854
20.10.2021 14:36:19
10,800
002bd1f2a70c1832205b66f99294a1a76b1452a1
chore(release): increase version
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"@juntossomosmais/venice-react\",\n\"description\": \"Design System of UI Components using React\",\n- \"version\": \"0.31.1\",\n+ \"version\": \"0.31.2\",\n\"license\": \"Apache-2.0\",\n\"homepage\": \"https://github.com/juntossomosmais/venice/packages/reac...
TypeScript
Apache License 2.0
juntossomosmais/venice
chore(release): increase version
1
chore
release
306,320
20.10.2021 14:51:22
-3,600
e1d19afecd2c5f23e7f299ce3265aa7cd311460c
feat: Add env variable support in config file
[ { "change_type": "MODIFY", "diff": "@@ -21,6 +21,7 @@ type Project struct {\nTerraformCloudToken string `yaml:\"terraform_cloud_token,omitempty\" envconfig:\"INFRACOST_TERRAFORM_CLOUD_TOKEN\"`\nUsageFile string `yaml:\"usage_file,omitempty\" ignored:\"true\"`\nTerraformUseState bool `yaml:\"terraform_use_st...
Go
Apache License 2.0
infracost/infracost
feat: Add env variable support in config file (#1065)
1
feat
null