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
551,645
13.07.2021 22:12:03
-10,800
dee6903808bb2975532b736527eab66fa83b8272
fix(pgwire): update decode position for result-column format codes
[ { "change_type": "MODIFY", "diff": "@@ -1614,9 +1614,11 @@ public class PGConnectionContext implements IOContext, Mutable, WriterSource {\n// good to go\nfor (int i = 0; i < columnCount; i++) {\nlo += Short.BYTES;\n- activeSelectColumnTypes.setQuick(i, toColumnBinaryType(getShortUnsafe(lo), m.getColumnType(...
Java
Apache License 2.0
questdb/questdb
fix(pgwire): update decode position for result-column format codes (#1194)
1
fix
pgwire
126,295
13.07.2021 22:31:50
-7,200
88211e6d4c9b654f2c1e9879b892a38367e8cdbd
chore(pkg/pgsql): increase server coverage
[ { "change_type": "ADD", "diff": "+package sqlutils\n+\n+import (\n+ \"github.com/codenotary/immudb/embedded/sql\"\n+ \"github.com/codenotary/immudb/pkg/api/schema\"\n+)\n+\n+func EncodeParams(params map[string]interface{}) ([]*schema.NamedParam, error) {\n+ if params == nil {\n+ return nil, nil\n+ }\n+\n+ n...
Go
Apache License 2.0
codenotary/immudb
chore(pkg/pgsql): increase server coverage Signed-off-by: Michele Meloni <cleaversdev@gmail.com>
1
chore
pkg/pgsql
185,987
13.07.2021 23:43:09
25,200
8a38d2a7a1811cf972494a267a714ca51d5e9553
docs: update number of supported versions to reflect release cadence migration
[ { "change_type": "MODIFY", "diff": "@@ -322,7 +322,7 @@ function isElectronVersion(\n}\nexport function getOldestSupportedVersion(): string | undefined {\n- const NUM_STABLE_BRANCHES = process.env.NUM_STABLE_BRANCHES || 3;\n+ const NUM_STABLE_BRANCHES = process.env.NUM_STABLE_BRANCHES || 4;\nconst oldestSup...
TypeScript
MIT License
electron/fiddle
docs: update number of supported versions to reflect release cadence migration (#773)
1
docs
null
104,825
13.07.2021 23:58:14
14,400
cb67c7c03cc68425445dbbb73e92cb2ffa0c821f
feat(list): add large items
[ { "change_type": "MODIFY", "diff": "@@ -55,6 +55,7 @@ export enum SelectionType {\n<ai-list-item-wrapper\n[draggable]=\"itemsDraggable && data.item.isDraggable\"\n[disabled]=\"data.item.disabled\"\n+ [size]=\"data.item.size\"\n[isDragging]=\"draggingState.isDragging\"\n(dragStart)=\"\nsetDraggingState({ isD...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(list): add large items
1
feat
list
104,825
14.07.2021 00:46:59
14,400
a16c2b74de08081e73f4a4788c48b864c838dd3d
docs(list): add custom search example
[ { "change_type": "MODIFY", "diff": "@@ -72,6 +72,29 @@ export class AIListItem {\nObject.assign(this, {}, rawData);\n}\n+ /**\n+ * This method returns `true` if `searchString` is a substring of `value`\n+ * or `secondaryValue` of this list item or any of its children.\n+ * This method may be overridden to a...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
docs(list): add custom search example
1
docs
list
815,598
14.07.2021 01:46:52
0
02b1cf45119d438bdc454cb68bf2b4faa5ebf2ec
doc(rpc): fix enum variant parsing The parser only accepts the first paragraph of the enum variant, because `handle_starttag` is not forwarded to the underlying markdown parser.
[ { "change_type": "MODIFY", "diff": "@@ -495,6 +495,8 @@ class EnumSchema(HTMLParser):\nif tag == 'div' and attrs == [(\"class\", \"docblock\")]:\nself.variant_parser = MarkdownParser(title_level=3)\nself.variant_parser.indent_level = 4\n+ else:\n+ self.variant_parser.handle_starttag(tag, attrs)\ndef handle_...
Rust
MIT License
nervosnetwork/ckb
doc(rpc): fix enum variant parsing The parser only accepts the first paragraph of the enum variant, because `handle_starttag` is not forwarded to the underlying markdown parser.
1
doc
rpc
599,877
14.07.2021 04:57:51
25,200
badf0f5e283aaff852899d6bb13f41af1f6fec89
refactor(notif): Restyle HTML email notifications
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,7 @@ head\nmeta(http-equiv='x-ua-compatible' content='ie=edge')\nmeta(name='viewport' content='width=device-width, initial-scale=1')\nmeta(name='format-detection' content='telephone=no, date=no, address=no, email=no')\n- link(href='https://fonts.googleapis.com/...
TypeScript
MIT License
sct/overseerr
refactor(notif): Restyle HTML email notifications (#1864)
1
refactor
notif
266,219
14.07.2021 08:39:21
21,600
53ea3896a52f87c758e79b5a19fa338c83925a98
build(python): exit with success status if no samples found
[ { "change_type": "MODIFY", "diff": "@@ -20,9 +20,9 @@ set -eo pipefail\n# Enables `**` to include files nested inside sub-folders\nshopt -s globstar\n-# Exit early if samples directory doesn't exist\n-if [ ! -d \"./samples\" ]; then\n- echo \"No tests run. `./samples` not found\"\n+# Exit early if samples d...
Python
Apache License 2.0
googleapis/synthtool
build(python): exit with success status if no samples found (#1153)
1
build
python
104,828
14.07.2021 09:41:23
-7,200
50a1b100ca4d030c1c6c030859e58e9314288699
test(rowactionscell): replaced enzyme with testing library
[ { "change_type": "MODIFY", "diff": "import React from 'react';\n-import { mount } from 'enzyme';\nimport { render, screen, within } from '@testing-library/react';\nimport userEvent from '@testing-library/user-event';\nimport { Add32, Edit16 } from '@carbon/icons-react';\n@@ -89,35 +88,65 @@ describe('RowAct...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(rowactionscell): replaced enzyme with testing library
1
test
rowactionscell
711,597
14.07.2021 10:02:33
-7,200
5d483f67c57e93747ef5143b178157d10962b45e
fix(core): Handle SqlJobQueueStrategy errors without crashing worker
[ { "change_type": "MODIFY", "diff": "@@ -86,18 +86,24 @@ export class SqlJobQueueStrategy extends PollingJobQueueStrategy implements Insp\nreturn new Promise(async (resolve, reject) => {\nif (isSQLite) {\n+ try {\n// SQLite driver does not support concurrent transactions. See https://github.com/typeorm/typeo...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Handle SqlJobQueueStrategy errors without crashing worker
1
fix
core
141,534
14.07.2021 10:05:33
-36,000
053a663b894cfecc61d038ecc007fd7a7b34233a
fix: correct spacing between stacked tags within multi select Closes
[ { "change_type": "MODIFY", "diff": "@@ -34,6 +34,10 @@ $focus-border-color: $kz-var-color-cluny-500;\n}\n.specificityIncreaser {\n+ .multiValue {\n+ margin: 0.2375rem;\n+ }\n+\n.dropdownIndicator {\ncolor: rgba($kz-var-color-wisteria-800-rgb-params, 0.7);\n&:hover {\n@@ -127,10 +131,6 @@ $focus-border-color...
TypeScript
MIT License
cultureamp/kaizen-design-system
fix: correct spacing between stacked tags within multi select (#1755) Closes PRX-327 Co-authored-by: Michael Bylstra <michael.bylstra@cultureamp.com>
1
fix
null
141,508
14.07.2021 10:30:18
-36,000
2ec081f5191daec5c4e33ead2fe8ff06232db5d9
fix: Add missing tsconfig to responsive package
[ { "change_type": "RENAME", "diff": "", "new_path": "packages/responsive/docs/useMediaQueries.stories.tsx", "old_path": "packages/responsive/stories/useMediaQueries.stories.tsx" }, { "change_type": "ADD", "diff": "+{\n+ \"extends\": \"../../tsconfig.dist.json\",\n+ \"compilerOptions\": {\...
TypeScript
MIT License
cultureamp/kaizen-design-system
fix: Add missing tsconfig to responsive package (#1757)
1
fix
null
791,270
14.07.2021 10:34:23
14,400
d1aa47927e57f005b0deee356906ea1d99728f7e
chore: go mod tidy
[ { "change_type": "MODIFY", "diff": "@@ -32,5 +32,5 @@ require (\ncloud.google.com/go/pubsublite v0.86.0\ncloud.google.com/go/spanner v0.86.0\ngoogle.golang.org/api v0.50.0\n- google.golang.org/genproto v0.0.0-20210712171009-5404628d0f46\n+ google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a\n)\n",...
Go
Apache License 2.0
googleapis/google-cloud-go
chore: go mod tidy (#4433)
1
chore
null
711,597
14.07.2021 10:37:16
-7,200
fb38c68cba14f1255514d06dcd77fd23db740e0a
fix(admin-ui): Fix saving relation custom fields on ProductVariants
[ { "change_type": "MODIFY", "diff": "@@ -88,4 +88,66 @@ describe('transformRelationCustomFieldInput()', () => {\n},\n} as any);\n});\n+\n+ it('transforms input object', () => {\n+ const config: CustomFieldConfig[] = [\n+ { name: 'weight', type: 'int', list: false },\n+ { name: 'avatar', type: 'relation', lis...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Fix saving relation custom fields on ProductVariants
1
fix
admin-ui
815,598
14.07.2021 10:47:31
-28,800
d5c7654c1528c630dc1fc75ad85825074dade14c
doc: update RFC links
[ { "change_type": "MODIFY", "diff": "@@ -134,7 +134,7 @@ index = 1\n# Spec: ckb_dev\n[ckb_dev]\n-spec_hash = \"0x08240fdc25a2c62c3de7e172dc7d3a2a2ff050b40e54cc20df3e140509ebc518\"\n+spec_hash = \"0xee8912acecf5f17dc044a70b9c83677a23bd8942a263c7c9b222cb1259ddaf3d\"\ngenesis = \"0x823b2ff5785b12da8b1363cac9a5c...
Rust
MIT License
nervosnetwork/ckb
doc: update RFC links
1
doc
null
915,035
14.07.2021 10:49:28
-7,200
3e5760f56d93b7797fb97a348624e2778ab864f4
docs: link to correct doc in help command Closes
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,6 @@ package cmd\nimport (\n\"github.com/spf13/cobra\"\n- \"github.com/ory/hydra/driver/config\"\n\"github.com/ory/x/configx\"\n)\n@@ -32,7 +31,7 @@ var serveControls = `## Configuration\nORY Hydra can be configured using environment variables as well as a co...
Go
Apache License 2.0
ory/hydra
docs: link to correct doc in help command (#2631) Closes #2366
1
docs
null
141,508
14.07.2021 11:27:20
-36,000
61bc935619e646c2b7d6c1034dbe526a67d4544b
chore: Move brand moment stories out of src folder
[ { "change_type": "RENAME", "diff": "@@ -10,7 +10,7 @@ import securityTipIcon from \"@kaizen/component-library/icons/security-tip.icon.s\nimport mailIcon from \"@kaizen/component-library/icons/email.icon.svg\"\nimport feedbackClassifyIcon from \"@kaizen/component-library/icons/feedback-classify.icon.svg\"\ni...
TypeScript
MIT License
cultureamp/kaizen-design-system
chore: Move brand moment stories out of src folder (#1758)
1
chore
null
67,479
14.07.2021 11:29:54
-36,000
f4bcc9f7e0153bd95102e968c812d43c0e27ef64
refactor(binding-context): add comment explaning difference in behavior chore(tests): add more tests for compose timing + multi changes chore(tests): add more tests for au-slot property exposure chore: add open in vscode btn badge
[ { "change_type": "MODIFY", "diff": "[![Actions Status](https://github.com/aurelia/aurelia/workflows/Github%20Actions/badge.svg)](https://github.com/aurelia/aurelia/actions)\n[![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)\n[![Twitter](https://...
TypeScript
MIT License
aurelia/aurelia
refactor(binding-context): add comment explaning difference in behavior chore(tests): add more tests for compose timing + multi changes chore(tests): add more tests for au-slot property exposure chore: add open in vscode btn badge
1
refactor
binding-context
277,007
14.07.2021 11:45:16
10,800
3f5a23dd5a75debe253d96baa7a43e7d63e775ad
feat(snackbar): add styles with basic behavior
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,12 @@ Gympass `<Snackbar />` description\n### Usage\n```javascript\n- <Snackbar>Snackbar</Snackbar>\n+ <Snackbar\n+ message=\"Feedback message.\"\n+ onClose={() => {}}\n+ onAction={() => {}}\n+ actionText=\"Action\"\n+ />\n```\n### Props\n", "new_path": "pa...
JavaScript
MIT License
gympass/yoga
feat(snackbar): add styles with basic behavior
1
feat
snackbar
304,863
14.07.2021 11:59:23
25,200
5f93b707357db1c73707520f2facbbda5ae80ad9
feat(stdlib): optimize pivot transformation
[ { "change_type": "MODIFY", "diff": "Binary files a/libflux/go/libflux/buildinfo.gen.go and b/libflux/go/libflux/buildinfo.gen.go differ\n", "new_path": "libflux/go/libflux/buildinfo.gen.go", "old_path": "libflux/go/libflux/buildinfo.gen.go" }, { "change_type": "MODIFY", "diff": "@@ -148,...
Go
MIT License
influxdata/flux
feat(stdlib): optimize pivot transformation (#3785)
1
feat
stdlib
749,548
14.07.2021 12:03:04
25,200
ce29ad245b0585cf9479d28e944a9590e07475b0
chore(changelog): add v8.39.0 [skip ci]
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,18 @@ _Note: Gaps between patch versions are faulty, broken or test releases._\n<!-- DO NOT MODIFY BELOW THIS COMMENT -->\n<!-- insert-new-changelog-here -->\n+## v8.39.0 (2021-07-14)\n+\n+#### :rocket: New Feature\n+\n+- `dropdowns`, `forms`\n+ - [#1126](htt...
TypeScript
Apache License 2.0
zendeskgarden/react-components
chore(changelog): add v8.39.0 [skip ci]
1
chore
changelog
306,309
14.07.2021 12:31:04
-3,600
f001a9a06ba86ddeaed4a5a873f1bb4d8ae9b5fa
chore: bump the TF version
[ { "change_type": "MODIFY", "diff": "FROM golang:1.16 as builder\nARG ARCH=linux\n-ARG DEFAULT_TERRAFORM_VERSION=0.15.4\n-ARG TERRAGRUNT_VERSION=0.29.6\n+ARG DEFAULT_TERRAFORM_VERSION=0.15.5\n+ARG TERRAGRUNT_VERSION=0.29.10\n# Set Environment Variables\nSHELL [\"/bin/bash\", \"-c\"]\n@@ -13,7 +13,7 @@ ENV CG...
Go
Apache License 2.0
infracost/infracost
chore: bump the TF version
1
chore
null
277,007
14.07.2021 12:41:51
10,800
7d9504c8dd18781730398e2d2335b2d739bfc5da
feat(snackbar): add variant behavior
[ { "change_type": "MODIFY", "diff": "+import { CheckedFull, AlertTriangle, AlertCircle } from '@gympass/yoga-icons';\n+\nconst Snackbar = ({ colors, elevations, radii, spacing }) => ({\nborder: {\nradius: radii.small,\n@@ -9,12 +11,23 @@ const Snackbar = ({ colors, elevations, radii, spacing }) => ({\npaddin...
JavaScript
MIT License
gympass/yoga
feat(snackbar): add variant behavior
1
feat
snackbar
756,013
14.07.2021 13:18:05
21,600
c49a2ea92c6bd910316e939274a4ff80e41cdd18
fix(cosmic-swingset): messagePool ordering and authz indirection
[ { "change_type": "MODIFY", "diff": "@@ -94,7 +94,7 @@ scenario2-use-client-account: t1/$(BASE_PORT)/owner-address\nt1/$(BASE_PORT)/owner-address:\nrm -rf t1/$(BASE_PORT)/owner\n- $(AGCH) --home=t1/$(BASE_PORT)/owner keys --keyring-backend=test add owner | jq.address > $@.tmp\n+ $(AGCH) --home=t1/$(BASE_PORT...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(cosmic-swingset): messagePool ordering and authz indirection
1
fix
cosmic-swingset
756,013
14.07.2021 13:28:41
21,600
dc0839b44d489bccb3bdb9ab666c410863b15647
fix(SwingSet): simplify makeVatConsole to always use a wrapper
[ { "change_type": "MODIFY", "diff": "@@ -150,7 +150,9 @@ export function makeLocalVatManagerFactory(tools) {\nconst endowments = harden({\n...vatEndowments,\n...ls.vatGlobals,\n- console: makeVatConsole(vatConsole, !consensusMode),\n+ console: makeVatConsole(vatConsole, (logger, args) => {\n+ consensusMode |...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(SwingSet): simplify makeVatConsole to always use a wrapper
1
fix
SwingSet
185,944
14.07.2021 13:33:12
18,000
133597bbe4668c2ba99e6cd9fd577478b8e70fc1
fix: publishing gists with empty files to Github
[ { "change_type": "MODIFY", "diff": "@@ -409,19 +409,9 @@ export class GistActionButton extends React.Component<\n};\nprivate gistFilesList = (values: EditorValues) => {\n- const filesList: EditorValues = {};\n-\n- // Add files for default editors.\n- for (const editor of DEFAULT_EDITORS) {\n- filesList[edit...
TypeScript
MIT License
electron/fiddle
fix: publishing gists with empty files to Github (#777)
1
fix
null
342,869
14.07.2021 13:43:16
-7,200
d69f9da2f9e6e5b7697912167c6730d890a6fa0d
feat(docs): don't hide search results when out of focus
[ { "change_type": "MODIFY", "diff": "@@ -108,13 +108,8 @@ export default function SearchModal({ onClose }: Props) {\nreturn item.breadcrumbs.join(\" / \");\n}\n- const {\n- isOpen,\n- getMenuProps,\n- getInputProps,\n- getComboboxProps,\n- getItemProps,\n- } = useCombobox<SearchResult>({\n+ const { getMenuPr...
JavaScript
MIT License
kiwicom/orbit
feat(docs): don't hide search results when out of focus (#3030)
1
feat
docs
104,844
14.07.2021 13:43:21
14,400
656ec09c67906fdff906806730554ebe751a6581
chore(repo): remove record flag since throwing error
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,10 @@ jobs:\n- name: Checkout code\nuses: actions/checkout@v2\n+ - name: Check git version\n+ run: |\n+ git --version\n+\n- uses: dorny/paths-filter@v2\nid: changes\nwith:\n", "new_path": ".github/workflows/test.yml", "old_path": ".github/workflows/te...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(repo): remove record flag since throwing error
1
chore
repo
915,035
14.07.2021 13:45:35
0
46b438ed3265c4edea2fea3bd63d2530437c9dbd
autogen: add v1.10.3-pre.1 to version.schema.json
[ { "change_type": "MODIFY", "diff": "\"$ref\": \"https://raw.githubusercontent.com/ory/hydra/v1.10.2/spec/config.json\"\n}\n]\n+ },\n+ {\n+ \"allOf\": [\n+ {\n+ \"properties\": {\n+ \"version\": {\n+ \"const\": \"v1.10.3-pre.1\"\n+ }\n+ }\n+ },\n+ {\n+ \"$ref\": \"https://raw.githubusercontent.com/ory/hydra/...
Go
Apache License 2.0
ory/hydra
autogen: add v1.10.3-pre.1 to version.schema.json
1
autogen
null
777,389
14.07.2021 14:12:26
25,200
a77e3b9cd1e5a8da18aceb82cafea5d344a313b6
chore: temporarily disable automatic updates to the preview cluster
[ { "change_type": "MODIFY", "diff": "@@ -1816,7 +1816,7 @@ workflows:\nfilters:\nbranches:\nonly:\n- - master\n+ - non-existing-branch-zxcv7 # to be reverted back to \"master\"\nrequires:\n- package-and-push-system-dev\nmax-dynamic-agents: 1\n", "new_path": ".circleci/config.yml", "old_path": ".circl...
Python
Apache License 2.0
determined-ai/determined
chore: temporarily disable automatic updates to the preview cluster (#2733)
1
chore
null
126,295
14.07.2021 14:36:47
-7,200
506c566aa13bd18f8eee5c190db21697546d5d4e
test(pkg/pgsql/server): fix error log message and increase server coverage
[ { "change_type": "ADD", "diff": "+/*\n+Copyright 2021 CodeNotary, Inc. All rights reserved.\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...
Go
Apache License 2.0
codenotary/immudb
test(pkg/pgsql/server): fix error log message and increase server coverage Signed-off-by: Michele Meloni <cleaversdev@gmail.com>
1
test
pkg/pgsql/server
104,844
14.07.2021 14:45:04
14,400
83d5e86294376dfb8b87dbc10bfeab67a99b4a96
chore(repo): update action script to update git if version too low
[ { "change_type": "MODIFY", "diff": "@@ -14,7 +14,15 @@ jobs:\n- name: Check git version\nrun: |\n- git --version\n+ currentver=\"$(git version | cut -f3 -d\" \")\"\n+ requiredver=\"2.22.0\"\n+ if [ \"$(printf '%s\\n' \"$requiredver\" \"$currentver\" | sort -V | head -n1)\" = \"$requiredver\" ]; then\n+ sudo...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(repo): update action script to update git if version too low
1
chore
repo
104,844
14.07.2021 14:52:12
14,400
c885333bc28715910f1fbd1f17a29395819749b0
chore(repo): fix mixed arguments in script
[ { "change_type": "MODIFY", "diff": "@@ -16,7 +16,7 @@ jobs:\nrun: |\ncurrentver=\"$(git version | cut -f3 -d\" \")\"\nrequiredver=\"2.22.0\"\n- if [ \"$(printf '%s\\n' \"$requiredver\" \"$currentver\" | sort -V | head -n1)\" = \"$requiredver\" ]; then\n+ if [ \"$(printf '%s\\n' \"$currentver\" \"$requiredve...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(repo): fix mixed arguments in script
1
chore
repo
503,968
14.07.2021 15:03:15
14,400
2e21929ee91b4d92d5a7754a14c46c06202963f7
fix(VncConsole): persist rfc instance in VncConsole
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport { css } from '@patternfly/react-styles';\n-import { EmptyState, EmptyStateBody, EmptyStateIcon, Spinner } from '@patternfly/react-core';\n+import { Button, EmptyState, EmptyStateBody, EmptyStateIcon, Spinner } from '@patternfly/react-cor...
TypeScript
MIT License
patternfly/patternfly-react
fix(VncConsole): persist rfc instance in VncConsole (#6012)
1
fix
VncConsole
104,828
14.07.2021 15:03:16
-7,200
07248ce067d06b14146f16e3418525f47446101f
fix(rowactionscell): fixed rendering of icons by name
[ { "change_type": "MODIFY", "diff": "@@ -70,6 +70,10 @@ const onClick = (e, id, action, onApplyRowAction) => {\ne.preventDefault();\ne.stopPropagation();\n};\n+const renderBundledIconUsingName = (iconName, label) => {\n+ const Icon = icons[iconName];\n+ return <Icon aria-label={label} />;\n+};\nclass RowActi...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(rowactionscell): fixed rendering of icons by name
1
fix
rowactionscell
104,828
14.07.2021 15:09:11
-7,200
c015974a83f0c878476e36cfc673132102967f6d
test(rowactionscell): improved unit test coverage
[ { "change_type": "MODIFY", "diff": "@@ -69,6 +69,14 @@ describe('RowActionsCell', () => {\nexpect(btns[1].id).toEqual('tableId-rowId-row-actions-cell-overflow');\n});\n+ it('handles no actions', () => {\n+ const tableRow = document.createElement('tr');\n+ render(<RowActionsCell {...commonRowActionsProps} />...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(rowactionscell): improved unit test coverage
1
test
rowactionscell
915,255
14.07.2021 15:10:05
-7,200
3d50ab4cbf84757e693c6e43905c2ab43c5e1afa
fix: update docs deps
[ { "change_type": "MODIFY", "diff": "\"@docusaurus/theme-classic\": \"2.0.0-beta.3\",\n\"@docusaurus/theme-search-algolia\": \"2.0.0-beta.3\",\n\"classnames\": \"2.3.1\",\n- \"docusaurus-theme-redoc\": \"^0.4.4\",\n\"file-loader\": \"6.2.0\",\n\"mermaid\": \"8.11.0\",\n\"node-fetch\": \"2.6.1\",\n", "new...
Go
Apache License 2.0
ory/oathkeeper
fix: update docs deps
1
fix
null
342,861
14.07.2021 15:14:06
-7,200
cc78f47016163423d13798300f7b6bc99be90ad7
fix(sandbox): rename Code to Code editor
[ { "change_type": "MODIFY", "diff": "@@ -36,7 +36,7 @@ const Board = ({ exampleId, code, isEditorOpened, onOpenEditor, origin }: Props)\nariaExpanded={isEditorOpened}\niconRight={isEditorOpened ? <ChevronUp /> : <ChevronDown />}\n>\n- Editor\n+ Code editor\n</ButtonLink>\n</Stack>\n<Stack inline justify=\"en...
JavaScript
MIT License
kiwicom/orbit
fix(sandbox): rename Code to Code editor
1
fix
sandbox
104,828
14.07.2021 15:14:38
-7,200
27989ae1f9184cd4076f9f86057d0b98a4ac62a5
test(rowactionscell): increased test threshold
[ { "change_type": "MODIFY", "diff": "@@ -33,6 +33,7 @@ module.exports = {\n'./src/components/ComposedModal/ComposedModal.jsx': all90Covered,\n'./src/components/Table/TableBody/TableBodyRow/TableBodyRow.jsx': all90Covered,\n'./src/components/Accordion/AccordionItemDefer.jsx': all90Covered,\n+ './src/component...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(rowactionscell): increased test threshold
1
test
rowactionscell
104,844
14.07.2021 15:15:06
14,400
eef68c4639a02db8e68ddd262629a3ee8870f5c8
chore(repo): fix script in action
[ { "change_type": "MODIFY", "diff": "@@ -14,9 +14,9 @@ jobs:\n- name: Check git version\nrun: |\n- currentver=\"$(git version | cut -f3 -d\" \")\"\n+ currentver=\"$(git --version)\"\nrequiredver=\"2.22.0\"\n- if [ \"$(printf '%s\\n' \"$currentver\" \"$requiredver\" | sort -V | head -n1)\" = \"$requiredver\" ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(repo): fix script in action
1
chore
repo
129,363
14.07.2021 15:17:34
-7,200
7a347788b87ac6cbfff55dd556f5bd84e1ac6944
docs(README): fix URL in README.md
[ { "change_type": "MODIFY", "diff": "@@ -178,7 +178,7 @@ See [Third-Party Commitizen Templates](third-party-commitizen.md).\n### Why are `revert` and `chore` valid types in the check pattern of cz conventional_commits but not types we can select?\n`revert` and `chore` are added to the \"pattern\" in `cz chec...
Python
MIT License
commitizen-tools/commitizen
docs(README): fix URL in README.md
1
docs
README
791,270
14.07.2021 15:20:38
14,400
10fd81639b746e99dc787e945fe3b7991bd3d5db
chore: go mod tidy is related.
[ { "change_type": "MODIFY", "diff": "@@ -32,5 +32,5 @@ require (\ncloud.google.com/go/pubsublite v0.86.0\ncloud.google.com/go/spanner v0.86.0\ngoogle.golang.org/api v0.50.0\n- google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a\n+ google.golang.org/genproto v0.0.0-20210714021259-044028024a4f\n)\n",...
Go
Apache License 2.0
googleapis/google-cloud-go
chore: go mod tidy (#4436) https://github.com/googleapis/google-cloud-go/issues/4434 is related.
1
chore
null
306,309
14.07.2021 15:21:25
-3,600
dfd514069c123e90749271f305f8f5d16a691cba
fix(aws): LightSail has added a free tier but only for Windows
[ { "change_type": "MODIFY", "diff": "@@ -39,12 +39,12 @@ func NewLightsailInstance(d *schema.ResourceData, u *schema.UsageData) *schema.R\noperatingSystem := \"Linux\"\noperatingSystemLabel := \"Linux/UNIX\"\n- if strings.Contains(d.Get(\"bundle_id\").String(), \"_win_\") {\n+ if strings.Contains(strings.ToL...
Go
Apache License 2.0
infracost/infracost
fix(aws): LightSail has added a free tier but only for Windows
1
fix
aws
104,844
14.07.2021 15:22:06
14,400
e48c840d8c570ca62913ada5e8862b302e44ccd1
chore(repo): remove usage of sudo
[ { "change_type": "MODIFY", "diff": "@@ -17,8 +17,8 @@ jobs:\ncurrentver=\"$(git --version)\"\nrequiredver=\"2.22.0\"\nif [ \"$(printf '%s\\n' \"$requiredver\" \"$currentver\" | sort -V | head -n1)\" = \"$requiredver\" ]; then\n- sudo apt-get update\n- sudo apt-get install git\n+ apt-get update\n+ apt-get in...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(repo): remove usage of sudo
1
chore
repo
915,035
14.07.2021 15:25:27
0
4a66d0c564728ba24a361ce4724ecafd1c9979be
autogen: add v1.10.3 to version.schema.json
[ { "change_type": "MODIFY", "diff": "\"$ref\": \"https://raw.githubusercontent.com/ory/hydra/v1.10.3-pre.1/spec/config.json\"\n}\n]\n+ },\n+ {\n+ \"allOf\": [\n+ {\n+ \"properties\": {\n+ \"version\": {\n+ \"const\": \"v1.10.3\"\n+ }\n+ }\n+ },\n+ {\n+ \"$ref\": \"https://raw.githubusercontent.com/ory/hydra/...
Go
Apache License 2.0
ory/hydra
autogen: add v1.10.3 to version.schema.json
1
autogen
null
915,255
14.07.2021 15:29:47
-7,200
d33e3e17d2774c1018ffed3538d190fc132b262b
revert: fix goreleaser/render-version-schema step This reverts commit
[ { "change_type": "MODIFY", "diff": "@@ -86,7 +86,6 @@ workflows:\nonly: /.*/\n-\ngoreleaser/render-version-schema:\n- schema-path: .schema/config.schema.json\nrequires:\n- goreleaser/release\nfilters:\n", "new_path": ".circleci/config.yml", "old_path": ".circleci/config.yml" }, { "change_typ...
Go
Apache License 2.0
ory/oathkeeper
revert: fix goreleaser/render-version-schema step (#789) (#790) This reverts commit d306aa61401b047c232352da47f189a5cd0d4f23.
1
revert
null
104,844
14.07.2021 15:31:55
14,400
cc0f6a16eebf8f5bb08eada8230cd17ab115f1ab
chore(repo): remove docker container since the git version is too low
[ { "change_type": "MODIFY", "diff": "@@ -6,24 +6,11 @@ jobs:\ntest-react:\nname: Test React\nruns-on: ubuntu-latest\n- container: cypress/browsers:node14.16.0-chrome89-ff86\nsteps:\n- name: Checkout code\nuses: actions/checkout@v2\n- - name: Check git version\n- run: |\n- currentver=\"$(git --version)\"\n- r...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(repo): remove docker container since the git version is too low
1
chore
repo
815,609
14.07.2021 15:32:54
-28,800
7d9e11b17c53704374bb3f77f78c02268fd67ed1
chore(hardfork): merge two features with strong association into one
[ { "change_type": "MODIFY", "diff": "@@ -134,7 +134,7 @@ index = 1\n# Spec: ckb_dev\n[ckb_dev]\n-spec_hash = \"0xee8912acecf5f17dc044a70b9c83677a23bd8942a263c7c9b222cb1259ddaf3d\"\n+spec_hash = \"0x1a3243940bd91553ecf1a6eb577ef2600a48b19afb624e6798fd642e8b3b2d6f\"\ngenesis = \"0x823b2ff5785b12da8b1363cac9a5c...
Rust
MIT License
nervosnetwork/ckb
chore(hardfork): merge two features with strong association into one
1
chore
hardfork
401,135
14.07.2021 16:04:11
14,400
6349f36fd99331fd45968f748a386d661551cf22
docs(core): update descriptions affects: update descriptions
[ { "change_type": "MODIFY", "diff": "@@ -30,7 +30,7 @@ export interface DatePickerProps extends Omit<HTMLProps<HTMLInputElement>, 'valu\ndisplayFormat?: DisplayFormat;\n/** Disable date selection */\ndisabled?: boolean;\n- /** re-purpose into a content-card field */\n+ /** Hide all prefix/suffix/decorator el...
TypeScript
MIT License
medly/medly-components
docs(core): update descriptions affects: @medly-components/core, @medly-components/forms update descriptions
1
docs
core
104,844
14.07.2021 16:04:15
14,400
e1dda8fc4a73102a16495e14a20128116d1501fb
chore(repo): had to add node action back since no longer container
[ { "change_type": "MODIFY", "diff": "@@ -18,6 +18,12 @@ jobs:\nreact:\n- 'packages/react/**'\n+ - name: Use Node.js\n+ uses: actions/setup-node@v1\n+ if: steps.changes.outputs.react == 'true'\n+ with:\n+ node-version: '14.x'\n+\n- name: Cache dependencies\nuses: actions/cache@v2\nif: steps.changes.outputs.re...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(repo): had to add node action back since no longer container
1
chore
repo
141,585
14.07.2021 16:18:22
-36,000
07d258a19a8c3be7a9824d3809e3d7b9af73d671
docs: Remove unnecessary wrapping of stories docs: Remove unnecessary wrapping of stories. * Where possible, we should use existing layout components (such as Box) to lay out components in stories. * Move collapsible stories from within the package, to sit within `docs` (not versioned + packaged)
[ { "change_type": "MODIFY", "diff": "import * as colorTokens from \"@kaizen/design-tokens/tokens/color.json\"\nimport configureIcon from \"@kaizen/component-library/icons/configure.icon.svg\"\n-\nimport * as React from \"react\"\nimport { IconButton } from \"..\"\nexport default {\ntitle: \"IconButton (React...
TypeScript
MIT License
cultureamp/kaizen-design-system
docs: Remove unnecessary wrapping of stories (#1754) docs: Remove unnecessary wrapping of stories. * Where possible, we should use existing layout components (such as Box) to lay out components in stories. * Move collapsible stories from within the package, to sit within `docs` (not versioned + packaged)
1
docs
null
826,708
14.07.2021 16:20:19
-7,200
ac247d2c1d58437ac6c26b2367155f89b0934385
fix: docker build See
[ { "change_type": "MODIFY", "diff": "FROM openjdk:12-alpine\n-RUN apk add --no-cache \\\n+RUN apk -U upgrade\n+RUN apk add -U --no-cache \\\nca-certificates\n# set up nsswitch.conf for Go's \"netgo\" implementation\n@@ -61,8 +62,20 @@ ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH\nENV GO111MODULE=on\nRUN mkdi...
C#
Apache License 2.0
ory/sdk
fix: docker build (#89) See https://github.com/ory/sdk/pull/88#issuecomment-879923456
1
fix
null
342,861
14.07.2021 16:25:51
-7,200
c7674c3a7261b37b9b20748a545335ecf502cfc7
feat(sandbox): github stars button
[ { "change_type": "MODIFY", "diff": "\"gatsby-transformer-sharp\": \"^3.3.0\",\n\"js-yaml\": \"^4.0.0\",\n\"lodash\": \"^4.17.21\",\n+ \"react-github-btn\": \"^1.2.0\",\n\"react-live\": \"^2.2.3\",\n\"react-scrollspy\": \"^3.4.3\",\n\"rehype-parse\": \"^7.0.1\",\n", "new_path": "docs/package.json", "...
JavaScript
MIT License
kiwicom/orbit
feat(sandbox): github stars button (#3034)
1
feat
sandbox
667,635
14.07.2021 16:32:53
-28,800
36a94501617ad48764026adece5be93406cc9356
fix(ios): fix hippybaselistview crash when hippyfooterfresh exists
[ { "change_type": "MODIFY", "diff": "[scrollView addObserver:self forKeyPath:@\"contentSize\" options:NSKeyValueObservingOptionNew context:NULL];\n}\n+- (void)unsetFromScrollView {\n+ [_scrollView removeObserver:self forKeyPath:@\"contentSize\"];\n+ [super unsetFromScrollView];\n+}\n+\n- (void)observeValueFo...
C++
Apache License 2.0
tencent/hippy
fix(ios): fix hippybaselistview crash when hippyfooterfresh exists
1
fix
ios
277,007
14.07.2021 16:33:48
10,800
b66e900d0486e68091846f67d59f2f1eb69490ab
test(snackbar): add snapshot for snackbar
[ { "change_type": "ADD", "diff": "+// Jest Snapshot v1, https://goo.gl/fbAQLP\n+\n+exports[`<Snackbar /> should match snapshot 1`] = `\n+<View\n+ collapsable={true}\n+ pointerEvents=\"box-none\"\n+ style={\n+ Object {\n+ \"flex\": 1,\n+ }\n+ }\n+>\n+ <Text\n+ style={\n+ Array [\n+ Object {\n+ \"height\": \"u...
JavaScript
MIT License
gympass/yoga
test(snackbar): add snapshot for snackbar
1
test
snackbar
277,007
14.07.2021 16:39:07
10,800
3835fefbb61a1099d75dc0819e71889592c0955a
feat(snackbar): add size behavior
[ { "change_type": "MODIFY", "diff": "@@ -12,8 +12,15 @@ const Snackbar = ({ colors, elevations, radii, spacing }) => ({\ndefault: spacing.small,\n},\nposition: {\n- bottom: 40,\n- right: 40,\n+ desktop: {\n+ bottom: spacing.xxlarge,\n+ right: spacing.xxlarge,\n+ },\n+ mobile: {\n+ bottom: spacing.small,\n+ r...
JavaScript
MIT License
gympass/yoga
feat(snackbar): add size behavior
1
feat
snackbar
306,385
14.07.2021 16:45:55
-7,200
8c06302e54903eec4a1bdce8591ec869117f9c7a
chore: fix documentation of how to import core elements
[ { "change_type": "ADD", "diff": "+---\n+'@lion/core': patch\n+---\n+\n+fix documentation of how to import core elements\n", "new_path": ".changeset/pink-poems-think.md", "old_path": null }, { "change_type": "MODIFY", "diff": "@@ -67,7 +67,7 @@ npm i @lion/<package-name>\n**This is the ma...
JavaScript
MIT License
ing-bank/lion
chore: fix documentation of how to import core elements
1
chore
null
277,007
14.07.2021 17:05:42
10,800
c56712c995a6a7561815c2c37c1f9a046ef6059c
feat(snackbar): add autoClose behavior
[ { "change_type": "MODIFY", "diff": "-import React from 'react';\n+import React, { useEffect, useState } from 'react';\nimport styled, { withTheme } from 'styled-components';\n-import { func, string, bool, oneOf } from 'prop-types';\n+import { func, string, bool, number, oneOf } from 'prop-types';\nimport { ...
JavaScript
MIT License
gympass/yoga
feat(snackbar): add autoClose behavior
1
feat
snackbar
915,255
14.07.2021 17:06:35
0
d9b53ed5707c86a99578e0ffd5b7a145bea18a49
autogen: add v0.38.14-beta.1 to version.schema.json
[ { "change_type": "MODIFY", "diff": "\"$ref\": \"https://raw.githubusercontent.com/ory/oathkeeper/v0.38.9-beta.1/.schema/config.schema.json\"\n}\n]\n+ },\n+ {\n+ \"allOf\": [\n+ {\n+ \"properties\": {\n+ \"version\": {\n+ \"const\": \"v0.38.14-beta.1\"\n+ }\n+ }\n+ },\n+ {\n+ \"$ref\": \"https://raw.githubus...
Go
Apache License 2.0
ory/oathkeeper
autogen: add v0.38.14-beta.1 to version.schema.json
1
autogen
null
342,861
14.07.2021 17:08:09
-7,200
6c268c1a8c8ce487206b37b426bef9ed637bb28f
fix(docs): navbar imports order
[ { "change_type": "MODIFY", "diff": "@@ -14,8 +14,8 @@ import {\nmediaQueries as mq,\n} from \"@kiwicom/orbit-components\";\nimport { Search as SearchIcon, MenuHamburger, StarEmpty } from \"@kiwicom/orbit-components/icons\";\n-\nimport GitHubButton from \"react-github-btn\";\n+\nimport Logo from \"../images/...
JavaScript
MIT License
kiwicom/orbit
fix(docs): navbar imports order
1
fix
docs
531,793
14.07.2021 17:18:34
-3,600
7b8e8bb17a4364f46f98f7e3625b6280e46ed790
feat(api): limit group alerts
[ { "change_type": "MODIFY", "diff": "- Added a dedicated API endpoint for silence previews.\n- Added a dedicated API endpoint for overview modal.\n+- Individual alert details are now lazy-loaded to improve performance\n+ when dealing with a huge number of alerts per group.\n### Changed\n", "new_path": "C...
TypeScript
Apache License 2.0
prymitive/karma
feat(api): limit group alerts
1
feat
api
531,793
14.07.2021 17:18:45
-3,600
8663e94c0b021b76db66f1ea8f47ce98199df9b1
feat(ui): support group limits
[ { "change_type": "MODIFY", "diff": "@@ -149,7 +149,7 @@ describe(\"<Fetcher />\", () => {\nconst fetchSpy = jest.spyOn(alertStore, \"fetchWithThrottle\");\nsettingsStore.gridConfig.setSortOrder(\"default\");\nmount(<Fetcher alertStore={alertStore} settingsStore={settingsStore} />);\n- expect(fetchSpy).toHav...
TypeScript
Apache License 2.0
prymitive/karma
feat(ui): support group limits
1
feat
ui
688,448
14.07.2021 17:52:26
-10,800
66a17a31aa31154dc8e522b897eaa98523339e5c
fix(Popper): fix popper shaking on each render
[ { "change_type": "MODIFY", "diff": "@@ -58,7 +58,7 @@ const getAnchorEl = (\nanchorEl: null | ReferenceObject | (() => ReferenceObject)\n) => (typeof anchorEl === 'function' ? anchorEl() : anchorEl)\n-const getPopperOptions = (popperOptions: PopperOptions) => ({\n+export const getPopperOptions = (popperOpti...
TypeScript
MIT License
toptal/picasso
fix(Popper): fix popper shaking on each render (#2119)
1
fix
Popper
401,109
14.07.2021 17:54:29
-19,080
75c4f0a5f2d3f0c00958f5741decf99f3af22e07
feat(core): add prop to switch between row highlighter outlined & shadow affects:
[ { "change_type": "MODIFY", "diff": "@@ -4,17 +4,33 @@ import { rgba } from 'polished';\nimport Checkbox from '../../../../Checkbox';\nimport { RowActionProps } from './types';\n+const getRowHoveredState = (style: 'shadow' | 'outlined') => {\n+ let state = css`\n+ left: 0;\n+ top: 0;\n+ height: 100%;\n+ `;\n...
TypeScript
MIT License
medly/medly-components
feat(core): add prop to switch between row highlighter outlined & shadow affects: @medly-components/core, @medly-components/theme
1
feat
core
277,002
14.07.2021 18:03:06
10,800
3a20f9331b4ee66563ae95959d2335f1e423af1e
test: for component avatar
[ { "change_type": "MODIFY", "diff": "@@ -127,6 +127,7 @@ import {\nUpload2,\nUserAdd,\nUserFilled,\n+ UserFilledStar,\nUser,\nVideo,\nVisibilityOff,\n@@ -265,6 +266,7 @@ export {\nUpload2,\nUserAdd,\nUserFilled,\n+ UserFilledStar,\nUser,\nVideo,\nVisibilityOff,\n", "new_path": "packages/icons/src/index.j...
JavaScript
MIT License
gympass/yoga
test: for component avatar
1
test
null
815,609
14.07.2021 18:15:25
-28,800
33f8f3bfc832584481ff9464590e4f0124d35fd1
chore(hardfork): finalize all new features
[ { "change_type": "MODIFY", "diff": "@@ -134,7 +134,7 @@ index = 1\n# Spec: ckb_dev\n[ckb_dev]\n-spec_hash = \"0x1a3243940bd91553ecf1a6eb577ef2600a48b19afb624e6798fd642e8b3b2d6f\"\n+spec_hash = \"0x360b413b576acc041b778da1a030cfc98fd5d934e2b12ab750aeee1e4ea21017\"\ngenesis = \"0x823b2ff5785b12da8b1363cac9a5c...
Rust
MIT License
nervosnetwork/ckb
chore(hardfork): finalize all new features
1
chore
hardfork
815,598
14.07.2021 18:31:33
-28,800
56e61f0b419bec6ce29ff77fa1d2bd6f709539e2
chore: rename version 0.44.0 to 0.100.0 in code
[ { "change_type": "MODIFY", "diff": "@@ -3562,7 +3562,7 @@ Refer to RFC [CKB Block Structure](https://github.com/nervosnetwork/rfcs/blob/ma\n### Notice\n- This field is renamed from `uncles_hash` since 0.44.0. More details can be found in [CKB RFC 224](https://github.com/nervosnetwork/rfcs/blob/master/rfcs/0...
Rust
MIT License
nervosnetwork/ckb
chore: rename version 0.44.0 to 0.100.0 in code
1
chore
null
791,400
14.07.2021 18:58:12
14,400
09879ea80cb67f9bfd8fc9384b0fda335567cba9
fix(storage): retry LockRetentionPolicy This call is fully idempotent and retryable according to go/gcs-api-retry-guidance. Fixes
[ { "change_type": "MODIFY", "diff": "@@ -949,8 +949,10 @@ func (b *BucketHandle) LockRetentionPolicy(ctx context.Context) error {\nmetageneration = b.conds.MetagenerationMatch\n}\nreq := b.c.raw.Buckets.LockRetentionPolicy(b.name, metageneration)\n+ return runWithRetry(ctx, func() error {\n_, err := req.Cont...
Go
Apache License 2.0
googleapis/google-cloud-go
fix(storage): retry LockRetentionPolicy (#4439) This call is fully idempotent and retryable according to go/gcs-api-retry-guidance. Fixes #4437
1
fix
storage
71,174
14.07.2021 19:30:23
25,200
718d143a376893fb168121b0ff9b57f8a057281e
feat(appmesh): the App Mesh Construct Library is now Generally Available (stable) Shout out to all contributors! Special thanks to , , , and 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": "![cfn-resources: Stable](https://img.shields.io/badge/cfn--resources-stable-success.svg?style=for-the-badge)\n-> All classes with the `Cfn` prefix in this module ([CFN Resources]) are always stable and safe to use.\n->\n-> [CFN Resources]: https://docs.aws.amazon.com/cdk/...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(appmesh): the App Mesh Construct Library is now Generally Available (stable) (#15560) Shout out to all contributors! Special thanks to @skinny85 , @dfezzie , @alexbrjo , @sshver, and @rishijatia Closes #9489 ---- *By submitting this pull request, I confirm that my contribution is made under the terms ...
1
feat
appmesh
126,295
14.07.2021 19:35:30
-7,200
4d008d8177cab1aa39521063ec8b15f4f34187f1
chore(pkg/pgsql/server): protect parameters description message from int16 overflown
[ { "change_type": "MODIFY", "diff": "@@ -36,6 +36,7 @@ var ErrSSLNotSupported = errors.New(\"SSL not supported\")\nvar ErrMaxStmtNumberExceeded = errors.New(\"maximum number of statements in a single query exceeded\")\nvar ErrNoStatementFound = errors.New(\"no statement found\")\nvar ErrMessageCannotBeHandle...
Go
Apache License 2.0
codenotary/immudb
chore(pkg/pgsql/server): protect parameters description message from int16 overflown Signed-off-by: Michele Meloni <cleaversdev@gmail.com>
1
chore
pkg/pgsql/server
777,369
14.07.2021 19:41:14
36,000
90b87000cf0b73bbe9886becfb74926b38270b0f
fix: destroy hp-viz tabs when navigating away Merging despite `lint-python` not passing as no python code was touched and this [open PR](https://github.com/determined-ai/determined/pull/2736) will correct that issue.
[ { "change_type": "ADD", "diff": "+:orphan:\n+\n+**Bug Fixes**\n+\n+- WebUI: Fix the issue of hp-viz getting stuck showing an infinite\n+ spinner after clicking through all the different tabs.\n", "new_path": "docs/release-notes/2730-fix-too-many-streaming.txt", "old_path": null }, { "change_...
Python
Apache License 2.0
determined-ai/determined
fix: destroy hp-viz tabs when navigating away [DET-5794] (#2730) Merging despite `lint-python` not passing as no python code was touched and this [open PR](https://github.com/determined-ai/determined/pull/2736) will correct that issue.
1
fix
null
71,371
14.07.2021 19:43:01
-7,200
594d7c664abed631163ec6b5cfede0a61acb0602
fix(ecr-assets): There is already a Construct with name 'Staging' when using tarball image Use `this` and not `scope` for the scope of `AssetStaging` in `TarballImageAsset`. *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": "@@ -60,7 +60,7 @@ export class TarballImageAsset extends CoreConstruct implements IAsset {\nthrow new Error(`Cannot find file at ${props.tarballFile}`);\n}\n- const stagedTarball = new AssetStaging(scope, 'Staging', { sourcePath: props.tarballFile });\n+ const stagedTarba...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(ecr-assets): There is already a Construct with name 'Staging' when using tarball image (#15540) Use `this` and not `scope` for the scope of `AssetStaging` in `TarballImageAsset`. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
fix
ecr-assets
902,122
14.07.2021 20:26:34
-7,200
e5ac4ea8c03fbad854929e4a91d49277cbb42755
chore(release): v9.1.4
[ { "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.1.4](https://github.com/microlinkhq/browserless/compare/v9.1.3...v9.1.4) (2021-07-14)\n+\n+**Note:** Version bu...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v9.1.4
1
chore
release
401,135
14.07.2021 20:27:24
14,400
01a8655d92e0211e8fa70112bac77f077cc07714
refactor(core): rename readOnly mode to showDecorators on form; remove border props affects:
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,7 @@ export const DatePicker: React.FC<DatePickerProps> & WithStyle = React.memo(\nminWidth,\nrequired,\ndisabled,\n- readOnly,\n+ showDecorators,\nerrorText,\nclassName,\nvalidator,\n@@ -138,13 +138,13 @@ export const DatePicker: React.FC<DatePickerProps> & ...
TypeScript
MIT License
medly/medly-components
refactor(core): rename readOnly mode to showDecorators on form; remove border props affects: @medly-components/core, @medly-components/forms
1
refactor
core
865,921
14.07.2021 21:43:40
-7,200
d5ecca95b01736b4c8b6d54054886299c90e3ad8
docs(project): improve blogging documentation
[ { "change_type": "MODIFY", "diff": "# Release\n-__[Draft a release](https://github.com/camunda/camunda-modeler/issues/new?body=%23%23%20What%27s%20inside%3F%0A%0A%3C%21--%20link%20changelog%20if%20available%20and%2For%20a%20version%20range%20%28i.e.%20%5B%60v4.9.0...develop%60%5D%28https%3A%2F%2Fgithub.com%...
JavaScript
MIT License
camunda/camunda-modeler
docs(project): improve blogging documentation
1
docs
project
889,132
14.07.2021 22:52:50
-10,800
168389ce885e6e00c7f8d87fbda2564077ff5356
fix: missing "uuid" dependency
[ { "change_type": "MODIFY", "diff": "\"google-gax\": \"^2.17.1\",\n\"on-finished\": \"^2.3.0\",\n\"pumpify\": \"^2.0.1\",\n- \"stream-events\": \"^1.0.5\"\n+ \"stream-events\": \"^1.0.5\",\n+ \"uuid\": \"^8.0.0\"\n},\n\"devDependencies\": {\n\"@google-cloud/bigquery\": \"^5.0.0\",\n\"sinon\": \"^11.0.0\",\n\...
TypeScript
Apache License 2.0
googleapis/nodejs-logging
fix: missing "uuid" dependency (#1119)
1
fix
null
67,479
14.07.2021 22:53:47
-36,000
b0a95150be1807857b0ff271cc88368a1333ec64
refactor(render-context): prepare render context removal
[ { "change_type": "MODIFY", "diff": "@@ -114,7 +114,7 @@ export class AppRoot implements IDisposable {\nthis.enhanceDefinition,\n)) as Controller;\n- controller.hydrateCustomElement(null);\n+ controller.hydrateCustomElement(null, null);\nreturn onResolve(this.runAppTasks('hydrating'), () => {\ncontroller.hyd...
TypeScript
MIT License
aurelia/aurelia
refactor(render-context): prepare render context removal
1
refactor
render-context
104,828
14.07.2021 22:58:59
-7,200
bfc30f9ad7d789237ea4455ca31ca15877751f2f
test(table): improved unit test coverage
[ { "change_type": "MODIFY", "diff": "@@ -22,6 +22,7 @@ export const mockActions = {\nonApplyRowAction: jest.fn(),\nonEmptyStateAction: jest.fn(),\nonChangeOrdering: jest.fn(),\n+ onColumnResize: jest.fn(),\n},\n};\n", "new_path": "packages/react/src/components/Table/Table.test.helpers.js", "old_path"...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(table): improved unit test coverage
1
test
table
104,828
14.07.2021 23:02:09
-7,200
16b09ab71b89ae0e5c69d4de01a678bf5e3e2192
test(table): increased threshold
[ { "change_type": "MODIFY", "diff": "@@ -33,7 +33,11 @@ module.exports = {\n'./src/components/ComposedModal/ComposedModal.jsx': all90Covered,\n'./src/components/Table/TableBody/TableBodyRow/TableBodyRow.jsx': all90Covered,\n'./src/components/Accordion/AccordionItemDefer.jsx': all90Covered,\n+<<<<<<< HEAD\n'....
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(table): increased threshold
1
test
table
865,921
14.07.2021 23:22:32
-7,200
a562e9132a332cb1b961ec8839aaf9063700e8a0
chore: add link on author
[ { "change_type": "MODIFY", "diff": "# Release\n-__[Draft a release](https://github.com/camunda/camunda-modeler/issues/new?body=%23%23%20What%27s%20inside%3F%0A%0A%3C%21--%20link%20changelog%20if%20available%20and%2For%20a%20version%20range%20%28i.e.%20%5B%60v4.9.0...develop%60%5D%28https%3A%2F%2Fgithub.com%...
JavaScript
MIT License
camunda/camunda-modeler
chore: add link on author
1
chore
null
418,600
14.07.2021 23:29:49
-28,800
f0faf2f1fbdb14f26f157eb554520377c06e6ef8
feat: Optimize typeorm to initialize loading entities
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,7 @@ import {\ngetClassMetadata,\nlistModule,\n} from '@midwayjs/decorator';\n+import { join } from 'path';\nimport {\nConnection,\nConnectionOptions,\n@@ -18,8 +19,7 @@ import {\nEVENT_SUBSCRIBER_KEY,\nORM_MODEL_KEY,\n} from '.';\n-import { ORM_HOOK_KEY, OrmCo...
TypeScript
MIT License
midwayjs/midway
feat: Optimize typeorm to initialize loading entities (#1150)
1
feat
null
418,632
14.07.2021 23:30:01
-28,800
2df53c277bb33d31b5a86cd3daa04b937caedc48
fix: cors and trigger bugs in serverless
[ { "change_type": "MODIFY", "diff": "@@ -259,6 +259,14 @@ export class Framework\nres.setHeader('Access-Control-Allow-Methods', '*');\nres.setHeader('Access-Control-Allow-Headers', '*');\nif (req.method.toLowerCase() === 'options') {\n+ res.setHeader(\n+ 'Access-Control-Allow-Methods',\n+ req.get('Access-Con...
TypeScript
MIT License
midwayjs/midway
fix: cors and trigger bugs in serverless (#1156)
1
fix
null
67,479
14.07.2021 23:49:34
-36,000
58522996516e35343f887a23294cce83e0829410
refactor(render-context): prepare remove .render method
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ There are quite a few different lifecycle hooks you can leverage in your custom\n| Lifecycle Callback | Description |\n| :--- | :--- |\n| `constructor` | When the framework instantiates a component, it calls your class's constructor, just like any JavaSc...
TypeScript
MIT License
aurelia/aurelia
refactor(render-context): prepare remove .render method
1
refactor
render-context
67,479
15.07.2021 00:54:30
-36,000
747d8cf6fe05e8aa230654c80a13c97e043ff125
refactor(render-context): prepare to remove .createNodes() method
[ { "change_type": "MODIFY", "diff": "@@ -399,7 +399,8 @@ export class Controller<C extends IViewModel = IViewModel> implements IControlle\n}\n(this.viewModel as Writable<C>).$controller = this;\n- this.nodes = compiledContext.createNodes();\n+ // this.nodes = compiledContext.createNodes();\n+ this.nodes = th...
TypeScript
MIT License
aurelia/aurelia
refactor(render-context): prepare to remove .createNodes() method
1
refactor
render-context
777,374
15.07.2021 07:04:50
25,200
d7fd221aa537e86813f46d4875c2b80b7cd82e4a
fix: restrict google-cloud-storage dependency.
[ { "change_type": "MODIFY", "diff": "@@ -28,7 +28,8 @@ setup(\n\"backoff\",\n\"certifi\",\n\"filelock\",\n- \"google-cloud-storage>=1.20.0\",\n+ # google-cloud-storage<=1.40 is required for the latest google-cloud-core.\n+ \"google-cloud-storage>=1.20.0,<=1.40.0\",\n# google-cloud-core 1.4.2 breaks our windo...
Python
Apache License 2.0
determined-ai/determined
fix: restrict google-cloud-storage dependency. (#2736)
1
fix
null
306,385
15.07.2021 09:01:05
-7,200
9648d418f27c19fa4a3fd1975eb94d8dbbecee08
feat(localize): move parseNumber to
[ { "change_type": "ADD", "diff": "+---\n+'@lion/localize': minor\n+---\n+\n+added a parseNumber function\n", "new_path": ".changeset/dry-clocks-notice.md", "old_path": null }, { "change_type": "MODIFY", "diff": "export { LionInputAmount } from './src/LionInputAmount.js';\nexport { formatA...
JavaScript
MIT License
ing-bank/lion
feat(localize): move parseNumber to @lion/localize
1
feat
localize
494,249
15.07.2021 09:04:00
-7,200
3cfd7845730685a4493c2b5d1974b79d873eea86
fix: cleanup lint errors and add doc to x
[ { "change_type": "MODIFY", "diff": "@@ -29,6 +29,7 @@ func TestCleanPath(t *testing.T) {\nrequire.NoError(t, err)\ndefer res.Body.Close()\nbody, err := ioutil.ReadAll(res.Body)\n+ require.NoError(t, err)\nassert.Equal(t, string(body), tc[1])\n})\n}\n", "new_path": "x/clean_url_test.go", "old_path": ...
Go
Apache License 2.0
ory/kratos
fix: cleanup lint errors and add doc to x (#1545)
1
fix
null
503,933
15.07.2021 09:08:56
14,400
6761f2cbc3ad9aa934d420a9196c87dc80d5595f
chore(conextSelector): hide internal prop
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,7 @@ export interface ContextSelectorItemProps {\nisDisabled?: boolean;\n/** Callback for click event */\nonClick: (event: React.MouseEvent) => void;\n- /** internal index of the item */\n+ /** @hide internal index of the item */\nindex: number;\n/** Internal...
TypeScript
MIT License
patternfly/patternfly-react
chore(conextSelector): hide internal prop (#5986) Co-authored-by: Titani <tlabaj@redaht.com>
1
chore
conextSelector
104,844
15.07.2021 09:35:40
14,400
dd6a9a2d2e9f02710668d0ef50d4471f6adc7fc2
chore(repo): remove global thresh from Jest and run reports on commit
[ { "change_type": "MODIFY", "diff": "\"lint\": \"yarn lint:javascript && yarn lint:stylelint\",\n\"lint:javascript\": \"eslint --ext .jsx --ext .js .\",\n\"lint:stylelint\": \"stylelint './src/**/*.scss' --syntax scss --ignorePath .gitignore --custom-formatter ./config/stylelint/sassMsgFormatter.js\",\n- \"p...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(repo): remove global thresh from Jest and run reports on commit
1
chore
repo
104,844
15.07.2021 09:45:15
14,400
a4aa5c9480513fc0f0846b1192d3f8eb6e721826
chore(repo): remove the headless flag
[ { "change_type": "MODIFY", "diff": "\"lint\": \"yarn lint:javascript && yarn lint:stylelint\",\n\"lint:javascript\": \"eslint --ext .jsx --ext .js .\",\n\"lint:stylelint\": \"stylelint './src/**/*.scss' --syntax scss --ignorePath .gitignore --custom-formatter ./config/stylelint/sassMsgFormatter.js\",\n- \"p...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(repo): remove the headless flag
1
chore
repo
126,295
15.07.2021 09:54:58
-7,200
859c23670f5e4eee779d563b464d5c25cdc7b0f7
chore: move sqlutils package to schema
[ { "change_type": "DELETE", "diff": "-package sqlutils\n-\n-import (\n- \"github.com/codenotary/immudb/embedded/sql\"\n- \"github.com/codenotary/immudb/pkg/api/schema\"\n-)\n-\n-func EncodeParams(params map[string]interface{}) ([]*schema.NamedParam, error) {\n- if params == nil {\n- return nil, nil\n- }\n-\n...
Go
Apache License 2.0
codenotary/immudb
chore: move sqlutils package to schema Signed-off-by: Michele Meloni <cleaversdev@gmail.com>
1
chore
null
306,309
15.07.2021 10:01:08
-3,600
df516890c082730132eab01b50bb3ea1db035682
feat(aws): update aws_vpc_endpoint to use new pricing
[ { "change_type": "MODIFY", "diff": "@@ -21,6 +21,12 @@ resource \"aws_vpc_endpoint\" \"interface_withUsage\" {\nvpc_endpoint_type = \"Interface\"\n}\n+resource \"aws_vpc_endpoint\" \"interface_withBigUsage\" {\n+ service_name = \"com.amazonaws.region.ec2\"\n+ vpc_id = \"vpc-123456\"\n+ vpc_endpoint_type = \...
Go
Apache License 2.0
infracost/infracost
feat(aws): update aws_vpc_endpoint to use new pricing (#867) https://aws.amazon.com/about-aws/whats-new/2021/07/aws-lowers-data-processing-charges-aws-privatelink/
1
feat
aws
277,002
15.07.2021 10:01:14
10,800
070d987b1b6a83a9cd40e9daac00d6d7740c09eb
feat: remove component BoxAvatar
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport { BuildingFilled } from '@gympass/yoga-icons';\nimport { string, func, number } from 'prop-types';\n-import BoxAvatar from './BoxAvatar';\n+import Box from '../../Box';\nimport Image from './Image';\nimport Placeholder from './Placeholde...
JavaScript
MIT License
gympass/yoga
feat: remove component BoxAvatar
1
feat
null
306,320
15.07.2021 10:07:22
-3,600
c5b71c6f318604336249e7a63ad1aa14d651f681
fix: add new line after prompt
[ { "change_type": "MODIFY", "diff": "@@ -37,6 +37,8 @@ func registerCmd(ctx *config.RunContext) *cobra.Command {\nif !status {\nreturn nil\n}\n+\n+ fmt.Println()\n}\nfmt.Println(\"Please enter your name and email address to get an API key.\")\n", "new_path": "cmd/infracost/register.go", "old_path": "...
Go
Apache License 2.0
infracost/infracost
fix: add new line after prompt
1
fix
null
401,135
15.07.2021 10:14:29
14,400
0eb3dd9960f0a49f0f6b668910457af9c35a892c
style(core): refactor affects: refactor
[ { "change_type": "MODIFY", "diff": "@@ -138,7 +138,7 @@ export const DatePicker: React.FC<DatePickerProps> & WithStyle = React.memo(\nkey={inputKey}\nref={inputRef}\nrequired={required}\n- {...(showCalendarIcon && showDecorators && { suffix: suffixEl })}\n+ {...(showCalendarIcon && { suffix: suffixEl })}\nf...
TypeScript
MIT License
medly/medly-components
style(core): refactor affects: @medly-components/core, @medly-components/forms refactor
1
style
core
104,828
15.07.2021 10:15:20
-7,200
508d46a113ecaad59b697e0844f68dd860e10b61
test(table): fixed merge issue and pr feedback on tests
[ { "change_type": "MODIFY", "diff": "@@ -33,11 +33,8 @@ module.exports = {\n'./src/components/ComposedModal/ComposedModal.jsx': all90Covered,\n'./src/components/Table/TableBody/TableBodyRow/TableBodyRow.jsx': all90Covered,\n'./src/components/Accordion/AccordionItemDefer.jsx': all90Covered,\n-<<<<<<< HEAD\n'....
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(table): fixed merge issue and pr feedback on tests
1
test
table
366,946
15.07.2021 10:40:36
-32,400
bf59f8c720e9f1691fb5bea379dde9af7b0d8bf6
chore: change the way to disable controls addon
[ { "change_type": "MODIFY", "diff": "module.exports = {\nstories: ['../**/*.stories.tsx'],\n- addons: ['storybook-readme', '@storybook/addon-essentials', '@storybook/addon-a11y'],\n+ addons: [\n+ 'storybook-readme',\n+ {\n+ name: '@storybook/addon-essentials',\n+ options: {\n+ controls: false,\n+ },\n+ },\n+...
TypeScript
MIT License
kufu/smarthr-ui
chore: change the way to disable controls addon (#1745)
1
chore
null
711,597
15.07.2021 10:56:01
-7,200
7ae1e94ea3643369a6d4580c7f619ea4e4510e5a
fix(core): Fix race condition in worker when populating DB schema Relates to Relates to Possibly relates to
[ { "change_type": "MODIFY", "diff": "import { Injectable } from '@nestjs/common';\n+import { Logger } from '../config/logger/vendure-logger';\n+import { Administrator } from '../entity/administrator/administrator.entity';\n+\nimport { AdministratorService } from './services/administrator.service';\nimport { ...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Fix race condition in worker when populating DB schema Relates to https://github.com/vendure-ecommerce/vendure-docker-compose/issues/6 Relates to #205 Possibly relates to #462
1
fix
core
471,365
15.07.2021 11:05:41
-10,800
4bf3ad5b710af74fba7f0ad8a9d8853431ea186a
feat(aws-lambda): added customEventContextExtractor config option
[ { "change_type": "MODIFY", "diff": "@@ -47,6 +47,7 @@ In your Lambda function configuration, add or update the `NODE_OPTIONS` environm\n| `requestHook` | `RequestHook` (function) | Hook for adding custom attributes before lambda starts handling the request. Receives params: `span, { event, context }` |\n| `...
TypeScript
Apache License 2.0
open-telemetry/opentelemetry-js-contrib
feat(aws-lambda): added customEventContextExtractor config option (#566)
1
feat
aws-lambda
791,270
15.07.2021 11:08:06
14,400
cc70f77ac279a62e24e1b07f6e53fd126b7286b0
fix(internal/godocfx): set exit code, print cmd output, no go get ...
[ { "change_type": "MODIFY", "diff": "@@ -113,6 +113,8 @@ func main() {\n}\n// Use a fake module that doesn't start with cloud.google.com/go.\nrunCmd(workingDir, \"go\", \"mod\", \"init\", \"cloud.google.com/lets-build-some-docs\")\n+\n+ failed := false\nfor _, m := range mods {\nlog.Printf(\"Processing %s@%s...
Go
Apache License 2.0
googleapis/google-cloud-go
fix(internal/godocfx): set exit code, print cmd output, no go get ... (#4445)
1
fix
internal/godocfx