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
777,399
18.08.2021 12:16:29
25,200
03cd749b188fda54c3872a70e1d77ef41b49918a
docs: describe how to set task priorities
[ { "change_type": "MODIFY", "diff": "@@ -67,6 +67,20 @@ due to checkpointing low priority tasks, which might be expensive for some model\nNotebooks, tensorboards, shells, and commands are not preemptible. These tasks will continue to\noccupy cluster resources until they complete or are terminated.\n+The prio...
Python
Apache License 2.0
determined-ai/determined
docs: describe how to set task priorities (#2850)
1
docs
null
866,394
18.08.2021 12:38:47
14,400
7e610e6db1e637d9aa85d9d3793e16a06c578a2b
chore(analytics): deprecation of scroll tracker ### Related Ticket(s) Refs ### Description This removed the scroll tracking functionality, and replaces with a deprecation notice. ### Changelog **Removed** `AnalyticsAPI.initScrollTracker`
[ { "change_type": "MODIFY", "diff": "@@ -16,9 +16,6 @@ MARKETING_SEARCH_HOST=<host for ibm.com marketing search, e.g. https://www.ibm.c\n# Geolocation\nGEO_API=<endpoint for getting user country by geolocation>\n-# Analytics - scroll\n-SCROLL_TRACKING=<boolean to enable scroll tracking, e.g. false>\n-\n# Vid...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(analytics): deprecation of scroll tracker (#6898) ### Related Ticket(s) Refs #6789 ### Description This removed the scroll tracking functionality, and replaces with a deprecation notice. ### Changelog **Removed** - `AnalyticsAPI.initScrollTracker`
1
chore
analytics
471,536
18.08.2021 12:55:24
-10,800
f0f4f5a53a31c7df8c02b79ef47202eb727bbbe2
docs: add "extending" docs to generator page
[ { "change_type": "MODIFY", "diff": "@@ -105,7 +105,7 @@ const componentLibraries = [\n{\nname: 'Patternfly Elements',\nurl: 'https://patternflyelements.org/',\n- description: 'Red Hat\\'s set of community-created web components based on PatternFly design.',\n+ description: \"Red Hat's set of community-creat...
JavaScript
MIT License
open-wc/open-wc
docs: add "extending" docs to generator page
1
docs
null
777,401
18.08.2021 12:56:36
14,400
4eb5c3b45c049aac631571468339663e00539b73
feat: collect sync_optimizer and backwards pass timings This change just adds "accumulated timings" that get aggregated over a batch (since there may be many calls to ctx.backward() or ctx.step_optimizer()), and adds code to collect new metrics depending on this.
[ { "change_type": "MODIFY", "diff": "@@ -54,6 +54,7 @@ def test_streaming_observability_metrics_apis(\nrequest_profiling_system_metrics(trial_id, \"gpu_util\")\nif framework_timings_enabled:\nrequest_profiling_pytorch_timing_metrics(trial_id, \"train_batch\")\n+ request_profiling_pytorch_timing_metrics(trial...
Python
Apache License 2.0
determined-ai/determined
feat: collect sync_optimizer and backwards pass timings [DET-5724] (#2820) This change just adds "accumulated timings" that get aggregated over a batch (since there may be many calls to ctx.backward() or ctx.step_optimizer()), and adds code to collect new metrics depending on this.
1
feat
null
104,828
18.08.2021 13:47:14
-7,200
e0b6777366046b33322e1f03ba69270eaf6a9dfc
fix(table): resize works after all hidden columns - 2
[ { "change_type": "MODIFY", "diff": "@@ -507,6 +507,80 @@ describe('TableHead', () => {\n]);\n});\n+ it('handles column toggle show after all has been hidden, using min width if needed', () => {\n+ myProps.options = {\n+ hasResize: true,\n+ preserveColumnWidths: false,\n+ };\n+\n+ myProps.columns = [\n+ { id...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(table): resize works after all hidden columns - 2
1
fix
table
531,793
18.08.2021 13:51:34
-3,600
973ef191baf2b652b4e4125e4b7f4b6365ab7001
fix(backend): fix history rewrite rule handling
[ { "change_type": "MODIFY", "diff": "# Changelog\n+## [unreleased]\n+\n+### Fixed\n+\n+- Alert history rewrite rule wouldn't work unless they had a `/` suffix in\n+ `source` field, this is now fixed and rewrite rules works as documented.\n+\n## v0.90\n### Fixed\n", "new_path": "CHANGELOG.md", "old_pa...
TypeScript
Apache License 2.0
prymitive/karma
fix(backend): fix history rewrite rule handling
1
fix
backend
386,595
18.08.2021 13:53:04
-7,200
01237e3340b3547ae88cc7248eed7daa1ac5e4c5
feat(engine): Add ResetValidation action.
[ { "change_type": "MODIFY", "diff": "@@ -27,28 +27,31 @@ class Blocks {\n.toString(36)\n.replace(/[^a-z]+/g, '')\n.substr(0, 5);\n- this.context = context;\nthis.areas = serializer.copy(areas || []);\nthis.arrayIndices = type.isArray(arrayIndices) ? arrayIndices : [];\n- this.subBlocks = {};\n+ this.context ...
JavaScript
Apache License 2.0
lowdefy/lowdefy
feat(engine): Add ResetValidation action.
1
feat
engine
386,595
18.08.2021 13:53:36
-7,200
8c9de14c3f26a64adf2a5dbb93b86105978c62d4
fix(engine): Refactor Validate to work with getBlockMatcher.
[ { "change_type": "MODIFY", "diff": "limitations under the License.\n*/\n-import { type } from '@lowdefy/helpers';\n-\n-const getMatch = (params) => (id) => {\n- if (params.blockIds === true || (type.isArray(params.blockIds) && params.blockIds.includes(id))) {\n- return true;\n- }\n- if (type.isArray(params....
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(engine): Refactor Validate to work with getBlockMatcher.
1
fix
engine
386,595
18.08.2021 13:54:16
-7,200
d5a5b7f8e5ad818c19ecb75c6d40eb2d714042cc
fix(docs): Fix sentences on Validation docs.
[ { "change_type": "MODIFY", "diff": "@@ -31,12 +31,11 @@ _ref:\n```\ndescription: |\nThe `Validate` action is used to validate a users input, usually before information is inserted into a database using a request.\n- It is used in conjunction with the `required` and `validate` fields on input blocks. If the ...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(docs): Fix sentences on Validation docs.
1
fix
docs
386,595
18.08.2021 13:54:36
-7,200
289c762696cdf35f28a53d8d7ce1c340f8ca3b9f
feat(docs): Add ResetValidation docs.
[ { "change_type": "ADD", "diff": "+# 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
feat(docs): Add ResetValidation docs.
1
feat
docs
386,595
18.08.2021 14:07:32
-7,200
67ebd0d0ca118427322100185880b5ceaa023a78
chore(docs): Clarify regex param on validation blocks.
[ { "change_type": "MODIFY", "diff": "@@ -23,14 +23,13 @@ _ref:\n(void): void\n(blockId: string): void\n(blockIds: string[]): void\n- (blockIds: string[]): void\n(params: {\nblockId?: string|string[],\nregex?: string|string[],\n}): void\n```\ndescription: |\n- The `ResetValidation` action is used to reset val...
JavaScript
Apache License 2.0
lowdefy/lowdefy
chore(docs): Clarify regex param on validation blocks.
1
chore
docs
711,662
18.08.2021 14:15:02
-10,800
aee8416bebb43210c5a1fcda47eab5ea72e3b3f9
fix(admin-ui): Fix Channel dropdown auto-select in Safari Fixes
[ { "change_type": "MODIFY", "diff": "formControlName=\"defaultTaxZoneId\"\n[vdrDisabled]=\"!(updatePermission | hasPermission)\"\n>\n+ <option selected value style=\"display: none\"></option>\n<option *ngFor=\"let zone of zones$ | async\" [value]=\"zone.id\">{{ zone.name }}</option>\n</select>\n</vdr-form-fi...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Fix Channel dropdown auto-select in Safari (#1040) Fixes #1036
1
fix
admin-ui
401,109
18.08.2021 14:22:30
-19,080
c0f46feede765db491dc224c8b85181e0268f7f5
fix(core): update the start day of the date range's current week selection affects:
[ { "change_type": "MODIFY", "diff": "@@ -434,7 +434,7 @@ describe('DateRangePicker', () => {\n});\ntest.each([\n- ['Current Week', { startDate: new Date(2021, 7, 8), endDate: new Date(2021, 7, 14, 23, 59, 59, 999) }],\n+ ['Current Week', { startDate: new Date(2021, 7, 9), endDate: new Date(2021, 7, 15, 23, 5...
TypeScript
MIT License
medly/medly-components
fix(core): update the start day of the date range's current week selection affects: @medly-components/core
1
fix
core
865,926
18.08.2021 14:35:05
-7,200
58e23056576ac8ec9f18815b9a3418286fa029de
feat(menu): ignore plugin & edit menu shortcuts triggered from devtools Closes
[ { "change_type": "MODIFY", "diff": "@@ -316,7 +316,7 @@ class MenuBuilder {\nif (action) {\nmenuItemOptions = {\n...menuItemOptions,\n- click: () => app.emit('menu:action', action, options)\n+ click: wrapActionInactiveInDevtools(() => app.emit('menu:action', action, options))\n};\n}\n@@ -475,7 +475,7 @@ cla...
JavaScript
MIT License
camunda/camunda-modeler
feat(menu): ignore plugin & edit menu shortcuts triggered from devtools Closes #2389
1
feat
menu
276,951
18.08.2021 14:49:55
10,800
cb650db7e46633832bb45d1678a5022ed875f113
fix(plancard): change color on fill prop
[ { "change_type": "MODIFY", "diff": "@@ -51,7 +51,7 @@ const ListItem = withTheme(\n<Icon\nwidth={16}\nheight={16}\n- fill={yogaTheme.yoga.colors.elements.selectionAndIcons}\n+ fill={yogaTheme.yoga.colors.secondary}\n/>\n)}\n</IconWrapper>\n", "new_path": "packages/yoga/src/Card/native/PlanCard/List.jsx"...
JavaScript
MIT License
gympass/yoga
fix(plancard): change color on fill prop
1
fix
plancard
276,951
18.08.2021 14:53:42
10,800
5c3ce3e07666746456e66936f0d1d00c4b28b4cd
docs(card): fix passed value to stroke prop
[ { "change_type": "MODIFY", "diff": "as={Star}\nheight=\"small\"\nwidth=\"small\"\n- stroke=\"medium\"\n+ stroke=\"secondary\"\n/>\n}\ntext=\"1-on-1 training sessions\"\n", "new_path": "packages/doc/content/components/components/card/plancard-native.mdx", "old_path": "packages/doc/content/components/...
JavaScript
MIT License
gympass/yoga
docs(card): fix passed value to stroke prop
1
docs
card
756,013
18.08.2021 15:04:09
21,600
e89b5253f9a30b3a22f8a461ef3e92a8cb85072b
chore(solo): clean up Cosmos SDK console logging
[ { "change_type": "MODIFY", "diff": "@@ -248,10 +248,10 @@ export async function connectToChain(\n});\nif (r.stderr) {\n- console.error(r.stderr);\n+ console.error(r.stderr.trimRight());\n}\nif (!r.stdout) {\n- console.error(`\\\n+ console.error(`\n=============\n${chainID} chain does not yet know of address...
JavaScript
Apache License 2.0
agoric/agoric-sdk
chore(solo): clean up Cosmos SDK console logging
1
chore
solo
756,013
18.08.2021 15:05:29
21,600
0c1be922f3742ea2e7fb7e82f567ab04b85f7ae1
fix(cosmos): properly fail when querying missing egress/mailbox
[ { "change_type": "MODIFY", "diff": "@@ -51,6 +51,9 @@ func (k Querier) Egress(c context.Context, req *types.QueryEgressRequest) (*type\nctx := sdk.UnwrapSDKContext(c)\negress := k.GetEgress(ctx, req.Peer)\n+ if egress.Peer == nil {\n+ return nil, status.Error(codes.NotFound, \"egress not found\")\n+ }\nretu...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(cosmos): properly fail when querying missing egress/mailbox
1
fix
cosmos
711,597
18.08.2021 15:07:26
-7,200
3911059da167c4db4212bb8b4f58660b0d59fb96
fix(core): Improve def of Translated<T> to allow customField typings Fixes
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,8 @@ export type TranslatableRelationsKeys<T> = {\nT[K] extends string[] ? never :\nT[K] extends number[] ? never :\nT[K] extends boolean[] ? never :\n- K extends 'translations' ? never : K\n+ K extends 'translations' ? never :\n+ K extends 'customFields' ? n...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Improve def of Translated<T> to allow customField typings Fixes #1021
1
fix
core
756,013
18.08.2021 15:11:23
21,600
1010ede160059a404494a40f692909b959c70057
feat(agoric): allow querying deploy state without running scripts
[ { "change_type": "MODIFY", "diff": "@@ -63,11 +63,6 @@ export default async function deployMain(progname, rawArgs, powers, opts) {\n.filter(dep => dep && !provide.includes(dep))\n.sort();\n- if (args.length === 0 && !provide.length) {\n- console.error('you must specify at least one deploy.js (or --provide=X...
JavaScript
Apache License 2.0
agoric/agoric-sdk
feat(agoric): allow querying deploy state without running scripts
1
feat
agoric
756,013
18.08.2021 15:12:13
21,600
ae092a47ad67163f42cde527066c29884320421a
fix(cosmic-swingset): provide 50 RUN to provisioned clients
[ { "change_type": "MODIFY", "diff": "@@ -12,9 +12,9 @@ import {\nimport { makePspawn, getSDKBinaries } from './helpers.js';\n-const PROVISION_COINS = `100000000${STAKING_DENOM},50000000000${CENTRAL_DENOM},100provisionpass,100sendpacketpass`;\n+const PROVISION_COINS = `100000000${STAKING_DENOM},50000000000000...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(cosmic-swingset): provide 50 RUN to provisioned clients
1
fix
cosmic-swingset
503,988
18.08.2021 15:13:27
14,400
a1df3925e3e464d0caa27cb94b3162ad7cb7212b
fix(DualListSelector): respect initial chosen opts, select subfolders, reset selected on all
[ { "change_type": "MODIFY", "diff": "@@ -138,7 +138,8 @@ export class DualListSelector extends React.Component<DualListSelectorProps, Dua\nremoveSelectedAriaLabel: 'Remove selected',\nremoveAllAriaLabel: 'Remove all'\n};\n- private originalCopy = this.props.availableOptions;\n+ private originalAvailableCopy ...
TypeScript
MIT License
patternfly/patternfly-react
fix(DualListSelector): respect initial chosen opts, select subfolders, reset selected on all (#6180)
1
fix
DualListSelector
71,765
18.08.2021 15:13:46
25,200
2372b3c360d13fb0224fc981a7bb1ae318581265
feat(aws-stepfunctions): add support to heartbeat error inside catch block Step Functions recently added a feature to catch States.HeartbeatTimeout. This change adds support to that. 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": "@@ -555,6 +555,22 @@ new cloudwatch.Alarm(this, 'ThrottledAlarm', {\n});\n```\n+## Error names\n+\n+Step Functions identifies errors in the Amazon States Language using case-sensitive strings, known as error names.\n+The Amazon States Language defines a set of built-in st...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(aws-stepfunctions): add support to heartbeat error inside catch block (#16078) Step Functions recently added a feature to catch States.HeartbeatTimeout. This change adds support to that. https://docs.aws.amazon.com/step-functions/latest/dg/concepts-error-handling.html closes #16084 ---- *By submitting...
1
feat
aws-stepfunctions
438,921
18.08.2021 15:33:58
-32,400
ec783e943b9235377e07a8e06108881e7da0a698
feat(tooltip): Enhance tooltip.position passing curr pos * feat(tooltip): Enhance tooltip.position passing curr pos Pass position object argument to tooltip.position callback to facilitate position value control. Fix
[ { "change_type": "MODIFY", "diff": "import {select as d3Select} from \"d3-selection\";\nimport {document} from \"../../module/browser\";\nimport CLASS from \"../../config/classes\";\n+import {IDataRow} from \"../data/IData\";\nimport {getPointer, isFunction, isObject, isString, isValue, callFn, sanitise, tp...
TypeScript
MIT License
naver/billboard.js
feat(tooltip): Enhance tooltip.position passing curr pos * feat(tooltip): Enhance tooltip.position passing curr pos Pass position object argument to tooltip.position callback to facilitate position value control. Fix #2267
1
feat
tooltip
791,474
18.08.2021 15:36:44
25,200
fcf13b0abad4f837d4f4f53fad6c55eba1a0fe56
fix(datastore): Initialize commit sentinel to avoid cross use of commits
[ { "change_type": "MODIFY", "diff": "@@ -213,6 +213,7 @@ func (t *Transaction) Commit() (c *Commit, err error) {\nreturn nil, err\n}\n+ c = &Commit{}\n// Copy any newly minted keys into the returned keys.\nfor i, p := range t.pending {\nif i >= len(resp.MutationResults) || resp.MutationResults[i].Key == nil ...
Go
Apache License 2.0
googleapis/google-cloud-go
fix(datastore): Initialize commit sentinel to avoid cross use of commits (#4599)
1
fix
datastore
386,595
18.08.2021 15:48:44
-7,200
c78090640bbbcd8c2d3fcc09a5fd52c166ee8f41
chore: Clarify ResetValidation docs and optimisations.
[ { "change_type": "MODIFY", "diff": "@@ -29,11 +29,11 @@ _ref:\n}): void\n```\ndescription: |\n- The `ResetValidation` action is used to reset validation flags on input fields, usually after a `Validation` flag was called to remove input error and warning indications from fields.\n+ The `ResetValidation` act...
JavaScript
Apache License 2.0
lowdefy/lowdefy
chore: Clarify ResetValidation docs and optimisations.
1
chore
null
401,123
18.08.2021 15:51:51
-19,080
8c376bedbd0bea399e2d414ac96c243f057cfe7f
perf(utils): returns function if same key is pressed more than one time affects:
[ { "change_type": "MODIFY", "diff": "import { useCallback, useEffect, useState } from 'react';\n+/**\n+ * A custom hook to detect when the user is pressing a specific key or a collection of keys\n+ *\n+ * @param {targetKeys} - The key(s) to watch\n+ * @param {defaultPrevented} - To prevent the default action...
TypeScript
MIT License
medly/medly-components
perf(utils): returns function if same key is pressed more than one time (#390) affects: @medly-components/utils
1
perf
utils
791,704
18.08.2021 15:56:33
18,000
8a3f755238544a602ea24fb5a366791c4b49a763
tests(dom): fix node 16 createObjectURL bug
[ { "change_type": "MODIFY", "diff": "@@ -19,16 +19,16 @@ describe('DOM', () => {\n/** @type {DOM} */\nlet dom;\nlet window;\n+ let nativeCreateObjectURL;\nbeforeAll(() => {\nUtil.i18n = new I18n('en', {...Util.UIStrings});\nwindow = new jsdom.JSDOM().window;\n- // Make a lame \"polyfill\" since JSDOM doesn't...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests(dom): fix node 16 createObjectURL bug (#12935)
1
tests
dom
711,597
18.08.2021 15:57:24
-7,200
a3aa3e2b68e1ccebff8fa4abdc597b16b78277e3
test(core): Extract gql definition to shop-definitions.ts
[ { "change_type": "MODIFY", "diff": "@@ -703,3 +703,24 @@ export const GET_PRODUCT_WITH_STOCK_LEVEL = gql`\n}\n}\n`;\n+\n+export const ADD_ITEM_TO_ORDER_WITH_CUSTOM_FIELDS = gql`\n+ mutation AddItemToOrderWithCustomFields(\n+ $productVariantId: ID!\n+ $quantity: Int!\n+ $customFields: OrderLineCustomFieldsIn...
TypeScript
MIT License
vendure-ecommerce/vendure
test(core): Extract gql definition to shop-definitions.ts
1
test
core
217,922
18.08.2021 15:57:39
-7,200
d050a03618ef7fb5458cc7ccf921421517f438ca
fix(profile): removed veteran tag as it's not working as expected
[ { "change_type": "MODIFY", "diff": "<nz-tag *ngIf=\"user.patron\" [nzColor]=\"'purple'\">{{'PROFILE.Patreon_supporter' | translate}}</nz-tag>\n<nz-tag *ngIf=\"user.stats?.listsCreated > 100\"\n[nzColor]=\"'orange'\">{{'PROFILE.More_than_100_lists_created' | translate}}</nz-tag>\n- <!-- Yup, this is one year...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(profile): removed veteran tag as it's not working as expected
1
fix
profile
711,597
18.08.2021 15:58:27
-7,200
bd32a6c23e4f90c930c7914510a7c8cb64fb6e38
test(core): Add e2e tests for PR Relates to relates to
[ { "change_type": "MODIFY", "diff": "@@ -49,6 +49,7 @@ import {\n} from './graphql/shared-definitions';\nimport {\nADD_ITEM_TO_ORDER,\n+ ADD_ITEM_TO_ORDER_WITH_CUSTOM_FIELDS,\nADD_PAYMENT,\nGET_PRODUCT_WITH_STOCK_LEVEL,\nSET_SHIPPING_ADDRESS,\n@@ -63,6 +64,9 @@ describe('Stock control', () => {\npaymentOptio...
TypeScript
MIT License
vendure-ecommerce/vendure
test(core): Add e2e tests for PR #1029 Relates to #1029, relates to #1028
1
test
core
217,922
18.08.2021 16:02:18
-7,200
db584e8b146ce3413fc18b9fcb0dc90878840afd
fix(overlay): fixed height not 100% when clock is disabled
[ { "change_type": "MODIFY", "diff": "</div>\n</nz-sider>\n<nz-content>\n- <div [class.overlay]=\"overlay\" class=\"page-container\">\n+ <div [class.overlay]=\"overlay\" [class.with-clock]=\"settings.getOverlayClockDisplay(ipc.overlayUri)\" class=\"page-container\">\n<nz-alert *ngIf=\"(newVersionAvailable$ | ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(overlay): fixed height not 100% when clock is disabled
1
fix
overlay
791,621
18.08.2021 16:14:24
14,400
c37e0fd5ee8864597241623e19ec495b5b99d5c3
fix: export publish and subscribe options Fixes Some of the options objects that are passed down deep don't have all of the types exposed, so users of TypeScript can't set them gracefully.
[ { "change_type": "MODIFY", "diff": "@@ -90,7 +90,8 @@ export {\nTestIamPermissionsCallback,\nIAM,\n} from './iam';\n-export {Attributes, PublishCallback} from './publisher';\n+export {Attributes, PublishCallback, PublishOptions} from './publisher';\n+export {BatchPublishOptions} from './publisher/message-ba...
TypeScript
Apache License 2.0
googleapis/nodejs-pubsub
fix: export publish and subscribe options (#1371) Fixes https://github.com/googleapis/nodejs-pubsub/issues/1227 Some of the options objects that are passed down deep don't have all of the types exposed, so users of TypeScript can't set them gracefully.
1
fix
null
865,922
18.08.2021 16:15:31
-7,200
18562ba0da5031eb1367af6ec1ce969ba5bcfc99
feat(app): add file-explorer-open utility function
[ { "change_type": "ADD", "diff": "+/**\n+ * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH\n+ * under one or more contributor license agreements. See the NOTICE file\n+ * distributed with this work for additional information regarding copyright\n+ * ownership.\n+ *\n+ * Camunda lice...
JavaScript
MIT License
camunda/camunda-modeler
feat(app): add file-explorer-open utility function
1
feat
app
711,597
18.08.2021 16:18:18
-7,200
496ce5e177592cbfc8477c0c8133355b93139f48
fix(admin-ui): Correctly display OrderLine custom field values Fixes
[ { "change_type": "MODIFY", "diff": "@@ -38,8 +38,8 @@ export class OrderTableComponent implements OnInit {\n}\nprivate getLineCustomFields() {\n- const formGroup = new FormGroup({});\nfor (const line of this.order.lines) {\n+ const formGroup = new FormGroup({});\nconst result = this.orderLineCustomFields\n....
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Correctly display OrderLine custom field values Fixes #1031
1
fix
admin-ui
756,013
18.08.2021 16:20:02
21,600
91650e0dd5a8bea20f161b9225edb1792ca17b55
feat(solo): allow rpc servers to be specified as an URL
[ { "change_type": "MODIFY", "diff": "@@ -99,7 +99,12 @@ export async function connectToChain(\n// would live in the build tree along with bin/ag-solo . But for now we\n// assume that 'ag-cosmos-helper' is on $PATH somewhere.\n- // Shuffle our rpcAddresses, to help distribute load.\n+ const rpcHrefs = rpcAddr...
JavaScript
Apache License 2.0
agoric/agoric-sdk
feat(solo): allow rpc servers to be specified as an URL
1
feat
solo
865,922
18.08.2021 16:22:12
-7,200
b225d71692927c18cb33b56aa9c2d53be52d282c
feat(client): add <dialog:open-file-explorer> remote event
[ { "change_type": "MODIFY", "diff": "@@ -42,6 +42,7 @@ const {\n} = require('./file-system');\nconst browserOpen = require('./util/browser-open');\n+const fileExplorerOpen = require('./util/file-explorer-open');\nconst renderer = require('./util/renderer');\nconst errorTracking = require('./util/error-tracki...
JavaScript
MIT License
camunda/camunda-modeler
feat(client): add <dialog:open-file-explorer> remote event
1
feat
client
865,922
18.08.2021 16:26:53
-7,200
c0d92067a0221bc03543183494e4ebfb8cb977b6
feat(app): add reveal file action for tabs closes
[ { "change_type": "MODIFY", "diff": "@@ -86,6 +86,8 @@ class MenuBuilder {\n.appendSeparator()\n.appendContextCloseTab()\n.appendSeparator()\n+ .appendContextRevealInFileExplorerTab()\n+ .appendSeparator()\n.appendReopenLastTab();\n}\n@@ -621,6 +623,24 @@ class MenuBuilder {\nreturn this;\n}\n+ appendContext...
JavaScript
MIT License
camunda/camunda-modeler
feat(app): add reveal file action for tabs closes #1834
1
feat
app
304,864
18.08.2021 16:31:05
25,200
71ae96569097957dbb84e6accf4085a27fdca29f
fix: return json for WASM
[ { "change_type": "MODIFY", "diff": "@@ -78,7 +78,7 @@ pub fn get_json_documentation(flux_path: &str) -> JsValue {\n// look for the given identifier\nif flux_path == i.path {\n// return that doc package\n- let param = format!(\"{:?}\", i);\n+ let param = serde_json::to_string(i).unwrap();\ndoc = JsValue::fro...
Go
MIT License
influxdata/flux
fix: return json for WASM (#3973)
1
fix
null
401,147
18.08.2021 16:37:35
-19,080
6bbc50dd5a0960bccc1b462a922fe7b6ac4a2119
feat: add onClick prop in Logo component * feat: add onClick prop in Logo component affects: * fix: failing snapshots affects: * refactor: change div tag to button tag in logo component affects:
[ { "change_type": "MODIFY", "diff": "import { styled } from '@medly-components/utils';\n-export const Container = styled.div`\n+export const Container = styled.button`\ndisplay: inline-grid;\ngrid-auto-flow: column;\ngrid-column-gap: 0.8rem;\nalign-items: center;\n-`\n+ user-select: none;\n+ padding: 0;\n+ b...
TypeScript
MIT License
medly/medly-components
feat: add onClick prop in Logo component (#389) * feat: add onClick prop in Logo component affects: @medly-components/core * fix: failing snapshots affects: @medly-components/layout * refactor: change div tag to button tag in logo component affects: @medly-components/core, @medly-components/layout
1
feat
null
711,597
18.08.2021 16:49:25
-7,200
4d7032b47603fa4ff1af523e148b61d5098424b1
fix(admin-ui): Improve display of long Collection paths in dropdown Fixes
[ { "change_type": "MODIFY", "diff": "(click)=\"move(collection, item.id)\"\n[disabled]=\"!(hasUpdatePermission$ | async)\"\n>\n+ <div class=\"move-to-item\">\n+ <div class=\"move-icon\">\n<clr-icon shape=\"child-arrow\"></clr-icon>\n+ </div>\n+ <div class=\"path\">\n{{ item.path }}\n+ </div>\n+ </div>\n</but...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Improve display of long Collection paths in dropdown Fixes #1042
1
fix
admin-ui
306,653
18.08.2021 17:08:23
-19,080
1d41c6cc4e828d19770bbee78afe9864c2c3ecbe
feat(Checkbox): adds helptext in checkbox
[ { "change_type": "MODIFY", "diff": "@@ -34,6 +34,10 @@ export interface CheckboxProps extends BaseProps, OmitNativeProps<HTMLInputEleme\n* Describes Label of the `Checkbox`\n*/\nlabel?: string;\n+ /**\n+ * Describes Help Text of the `Checkbox`\n+ */\n+ helpText?: string;\n/**\n* Name of the `Checkbox`\n*/\n...
TypeScript
MIT License
innovaccer/design-system
feat(Checkbox): adds helptext in checkbox
1
feat
Checkbox
104,828
18.08.2021 17:12:52
-7,200
6d8fd3267de91ccd19beb46eefcfa7c3b39ce933
fix(tablehead): fixed typo and removed comment
[ { "change_type": "MODIFY", "diff": "@@ -208,10 +208,8 @@ export const calculateWidthOnShow = (currentColumnWidths, ordering, colToShowIDs\n(col) => col.width > MIN_COLUMN_WIDTH\n);\n- // const newColsLacking = newColumnsToShow.filter((col) => col.width === MIN_COLUMN_WIDTH);\n-\nconst adjustedCols = [\n- //...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(tablehead): fixed typo and removed comment
1
fix
tablehead
902,122
18.08.2021 17:25:32
-7,200
2994a0bebc0205d9e694bc9391b82a1a32e8ce86
test: little update
[ { "change_type": "MODIFY", "diff": "Binary files a/packages/browserless/test/snapshots/example.jpeg and b/packages/browserless/test/snapshots/example.jpeg differ\n", "new_path": "packages/browserless/test/snapshots/example.jpeg", "old_path": "packages/browserless/test/snapshots/example.jpeg" }, ...
JavaScript
MIT License
microlinkhq/browserless
test: little update
1
test
null
902,122
18.08.2021 17:27:48
-7,200
eb64814557b48bf4af6b4a7b4203af9ccfd6a65f
chore(release): v9.1.9
[ { "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.9](https://github.com/microlinkhq/browserless/compare/v9.1.8...v9.1.9) (2021-08-18)\n+\n+**Note:** Version bu...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v9.1.9
1
chore
release
777,369
18.08.2021 17:37:01
21,600
1bd92e7a3a3125e2396136aa2221329f6137f118
style: adjust styles to render exp config and logs to render properly on mobile
[ { "change_type": "MODIFY", "diff": "@@ -446,6 +446,7 @@ const LogViewerTimestamp: React.FC<Props> = ({\n<Section\nbodyBorder\nbodyNoPadding\n+ bodyScroll\nfilters={FilterComponent && <FilterComponent\nfilter={filter}\nfilterOptions={filterOptions}\n", "new_path": "webui/react/src/components/LogViewerTim...
Python
Apache License 2.0
determined-ai/determined
style: adjust styles to render exp config and logs to render properly on mobile (#2851)
1
style
null
791,704
18.08.2021 17:38:07
18,000
a1dfe6c5d85e300d53538ac1bf607b99da12989f
clients(devtools): tsc type override bug workaround
[ { "change_type": "MODIFY", "diff": "@@ -152,7 +152,7 @@ function compileTemplate(tmpEl) {\nconst functionName = `create${upperFirst(componentName)}Component`;\nconst jsdoc = `\n/**\n- * @param {DOM_} dom\n+ * @param {DOM} dom\n*/`;\nconst functionCode = jsdoc + '\\n' + createFunctionCode(functionName, lines...
JavaScript
Apache License 2.0
googlechrome/lighthouse
clients(devtools): tsc type override bug workaround (#12933)
1
clients
devtools
127,948
18.08.2021 17:45:10
-10,800
0e7f20231fa14527b5a7a27e6e0cd9fa2c903d2a
fix: styling fixes for search component in mobile
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import React, { useRef, useState } from 'react';\nimport Popup from './private/components/Popup';\nimport { SearchResults } from './private/components/SearchResults';\n-import { SearchForm } from './private/components/Form';\n+import { SearchForm } from '....
TypeScript
MIT License
coingaming/moon-design
fix: B1M2-2163 styling fixes for search component in mobile (#1326)
1
fix
null
438,921
18.08.2021 17:56:09
-32,400
9d352b618d646bc86a93b3000936b4f7b9ef1435
refactor(zoom): prevent some unintended zoom transition
[ { "change_type": "MODIFY", "diff": "@@ -160,6 +160,10 @@ export default {\nreturn;\n}\n+ if (event.sourceEvent) {\n+ state.zooming = true;\n+ }\n+\nconst isMousemove = sourceEvent?.type === \"mousemove\";\nconst isZoomOut = sourceEvent?.wheelDelta < 0;\nconst {transform} = event;\n@@ -175,7 +179,7 @@ export...
TypeScript
MIT License
naver/billboard.js
refactor(zoom): prevent some unintended zoom transition
1
refactor
zoom
217,922
18.08.2021 18:17:57
-7,200
d98d17efe94c6ae8de614da84302b258b5980558
fix(alarms): fixed weather transition timers sometimes acting up
[ { "change_type": "MODIFY", "diff": "@@ -357,6 +357,8 @@ export class AlarmsFacade {\ndate.setUTCMilliseconds(0);\n// Adding 3 seconds margin for days computation\nconst days = Math.max(Math.floor((weatherSpawn.spawn.getTime() - time + 3000 * EorzeanTimeService.EPOCH_TIME_FACTOR) / 86400000), 0);\n+ // If it...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(alarms): fixed weather transition timers sometimes acting up
1
fix
alarms
530,386
18.08.2021 20:00:15
-7,200
2a756a3a044e30e6f89963add79abc3ea036701a
fix(upgrade): set commit author in upgrade workflow
[ { "change_type": "MODIFY", "diff": "@@ -91,6 +91,8 @@ jobs:\n*Automatically created by projen via the \"upgrade\" workflow*\n+ author: Automation <github-actions@github.com>\n+ committer: Automation <github-actions@github.com>\n- name: Update status check\nif: steps.create-pr.outputs.pull-request-url != ''\...
TypeScript
Apache License 2.0
projen/projen
fix(upgrade): set commit author in upgrade workflow (#989)
1
fix
upgrade
71,080
18.08.2021 20:17:08
14,400
f2d77d336d535ef718813b4ed6b88b5d2af05cb9
revert(cli): 'deploy' and 'diff' silently does nothing when given unknown stack name Broke integration tests when `synth`ing without providing a stack name reverts aws/aws-cdk#16073
[ { "change_type": "MODIFY", "diff": "@@ -397,7 +397,7 @@ export class CdkToolkit {\ndefaultBehavior: DefaultSelection.OnlySingle,\n});\n- await this.validateStacks(stacks, selector.patterns);\n+ await this.validateStacks(stacks);\nreturn stacks;\n}\n@@ -415,7 +415,7 @@ export class CdkToolkit {\n? allStacks....
TypeScript
Apache License 2.0
aws/aws-cdk
revert(cli): 'deploy' and 'diff' silently does nothing when given unknown stack name (#16125) Broke integration tests when `synth`ing without providing a stack name reverts aws/aws-cdk#16073
1
revert
cli
730,428
18.08.2021 21:13:43
0
2f04bf1a4e76d92a69a242c3408f57c90cb5cc9d
chore(release): 0.23.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.23.0](https://github.com/webex/react-widgets/compare/v0.22.0...v0.23.0) (2021-08-18)\n+\n...
JavaScript
MIT License
webex/react-widgets
chore(release): 0.23.0 [skip ci]
1
chore
release
791,621
18.08.2021 22:08:25
14,400
97fd4f041c195e0388b0613b2cf9710b89ab4e15
fix: don't require a `data` attribute to be passed when sending a message Fixes We chatted about this and came to the conclusion that the Node library is probably just wrong here.
[ { "change_type": "MODIFY", "diff": "@@ -154,11 +154,21 @@ export class Publisher {\npublishMessage(message: PubsubMessage, callback: PublishCallback): void {\nconst {data, attributes = {}} = message;\n- if (!(data instanceof Buffer)) {\n+ // We must have at least one of:\n+ // - `data` as a Buffer\n+ // - `...
TypeScript
Apache License 2.0
googleapis/nodejs-pubsub
fix: don't require a `data` attribute to be passed when sending a message (#1370) Fixes https://github.com/googleapis/nodejs-pubsub/issues/1363 We chatted about this and came to the conclusion that the Node library is probably just wrong here.
1
fix
null
306,660
18.08.2021 22:18:57
-19,080
f0de36cdb6100fff1cc69d134e999bffcccef72e
fix(EditableInput): fixes done button and adds support for uncontrolled editable input
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,7 @@ export interface EditableInputProps extends BaseProps {\n/**\n* Value of the `Editable Input`\n*/\n- value: string;\n+ value?: string;\n/**\n* String to show inside `Editable Input` when value is not defined\n*/\n@@ -41,16 +41,22 @@ export interface Editab...
TypeScript
MIT License
innovaccer/design-system
fix(EditableInput): fixes done button and adds support for uncontrolled editable input
1
fix
EditableInput
780,866
18.08.2021 22:50:49
10,800
0e1f0493ea3f6a6c8b46e6bb734cb03a544a03ab
fix(components/cart-item): prevent reseting quantity while input focused validate quantity on change/blur only fixes
[ { "change_type": "MODIFY", "diff": ":max=\"maxQuantity\"\n:step=\"isIntegerQnt ? null : 0.001\"\nclass=\"form-control\"\n- placeholder=\"1\"\nv-model.number=\"quantity\"\n:readonly=\"!price\"\n@blur=\"updateInputType\"\n", "new_path": "@ecomplus/storefront-components/src/html/CartItem.html", "old_pa...
JavaScript
MIT License
ecomplus/storefront
fix(components/cart-item): prevent reseting quantity while input focused [#521] validate quantity on change/blur only fixes https://github.com/ecomplus/storefront/issues/521
1
fix
components/cart-item
306,660
18.08.2021 22:58:17
-19,080
16a844be3e0955b9bacabcf421c26d15333219d1
fix(EditableChipInput): fixes done button and adds support for uncontrolled editable chip input
[ { "change_type": "MODIFY", "diff": "@@ -29,16 +29,22 @@ export interface EditableChipInputProps extends BaseProps {\n}\nexport const EditableChipInput = (props: EditableChipInputProps) => {\n- const { placeholder, value, onChange, className, disableSaveAction, chipInputOptions } = props;\n+ const { placehol...
TypeScript
MIT License
innovaccer/design-system
fix(EditableChipInput): fixes done button and adds support for uncontrolled editable chip input
1
fix
EditableChipInput
780,866
18.08.2021 23:37:33
10,800
6a8cdd0eef6b94ed69828736b1aee17ec8f196c6
feat(widget-search-engine/url-params): test `sort` option from url param
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,7 @@ export default (options = {}, elId = 'search-engine', paginationElId = 'search-p\nconst $dock = document.getElementById(`${elId}-dock`)\nlet $productItems\nconst getScopedSlots = window.storefront && window.storefront.getScopedSlots\n+ const { dataset } ...
JavaScript
MIT License
ecomplus/storefront
feat(widget-search-engine/url-params): test `sort` option from url param
1
feat
widget-search-engine/url-params
386,581
18.08.2021 23:48:07
-7,200
b66cc5a38db08666a8edc0312045c2b8ea20f66e
fix(build): refactor buildRefs function.
[ { "change_type": "MODIFY", "diff": "*/\nimport recursiveBuild from './recursiveBuild';\n+import makeRefDefinition from './makeRefDefinition';\nasync function buildRefs({ context }) {\nreturn recursiveBuild({\ncontext,\n- path: 'lowdefy.yaml',\n- vars: {},\n+ refDef: makeRefDefinition('lowdefy.yaml'),\ncount...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(build): refactor buildRefs function.
1
fix
build
386,581
19.08.2021 00:07:42
-7,200
8d43e004e52384c143524645f36544d4795affe9
fix(build): Refactor buildRefs.
[ { "change_type": "MODIFY", "diff": "@@ -21,6 +21,22 @@ import YAML from 'js-yaml';\nimport parseNunjucks from './parseNunjucks';\n+function parseRefContent({ content, vars, path }) {\n+ let ext = getFileExtension(path);\n+ if (ext === 'njk') {\n+ content = parseNunjucks(content, vars, path);\n+ ext = getFil...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(build): Refactor buildRefs.
1
fix
build
306,653
19.08.2021 00:21:55
-19,080
fc8869898658a4f0a4f56d3b96bfeb703e6d17d0
feat(Radio): adds helptext in radio
[ { "change_type": "MODIFY", "diff": "@@ -22,6 +22,10 @@ export interface RadioProps extends BaseProps, OmitNativeProps<HTMLInputElement,\n* Describes Label of the `Radio`\n*/\nlabel?: string;\n+ /**\n+ * Describes Help Text of the `Radio`\n+ */\n+ helpText?: string;\n/**\n* Name of the `Radio`\n*/\n@@ -55,14...
TypeScript
MIT License
innovaccer/design-system
feat(Radio): adds helptext in radio
1
feat
Radio
306,660
19.08.2021 00:36:22
-19,080
3a8415f7244998ff510d6c7c49008271e710214c
fix(EditableChipInput): adds default state delete functionality
[ { "change_type": "MODIFY", "diff": "@@ -40,10 +40,13 @@ export const EditableChipInput = (props: EditableChipInputProps) => {\nconst baseProps = extractBaseProps(props);\nconst isWithChips = inputValue && inputValue.length;\n- const isControlled = value !== undefined;\n+ const isControlled = props.value !==...
TypeScript
MIT License
innovaccer/design-system
fix(EditableChipInput): adds default state delete functionality
1
fix
EditableChipInput
865,922
19.08.2021 08:29:56
-7,200
3352cde03c2b543584c9c54af966e702c65c847b
chore(CHANGELOG): add reveal in file explorer
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,8 @@ All notable changes to the [Camunda Modeler](https://github.com/camunda/camunda-\n___Note:__ Yet to be released changes appear here._\n+* `FEAT`: add context action to tabs to reveal respective file in file explorer ([#1834](https://github.com/camunda/camu...
JavaScript
MIT License
camunda/camunda-modeler
chore(CHANGELOG): add reveal in file explorer
1
chore
CHANGELOG
141,516
19.08.2021 08:31:23
-36,000
713c160c4554e62a5cc80eccec4f6e4c0d9cebb7
docs: remove reference of draft in main readme
[ { "change_type": "MODIFY", "diff": "@@ -74,10 +74,6 @@ To update a component in code:\nSee the [design tokens](https://github.com/cultureamp/kaizen-design-system/tree/master/packages/generator) package.\n-### Building a new draft component\n-\n-See the [draft package generator](https://github.com/cultureamp...
TypeScript
MIT License
cultureamp/kaizen-design-system
docs: remove reference of draft in main readme (#1855)
1
docs
null
865,918
19.08.2021 08:55:35
-7,200
5f819451ef431b070fbb8d145c4e0baa5c83114e
fix(dmn): enable backspace in literalExpressions closes
[ { "change_type": "MODIFY", "diff": "@@ -394,6 +394,11 @@ export class DmnEditor extends CachedComponent {\nselectAll: true\n});\n+ // The literalExpressions editor does not fire events when\n+ // elements are selected, so we always set inputActive to true.\n+ // cf. https://github.com/camunda/camunda-modele...
JavaScript
MIT License
camunda/camunda-modeler
fix(dmn): enable backspace in literalExpressions closes #2095
1
fix
dmn
276,951
19.08.2021 09:01:47
10,800
1199864c204a1bbdde276543d20f2f2d119a436a
fix(plancard): change secondary to text primary color
[ { "change_type": "MODIFY", "diff": "@@ -51,7 +51,7 @@ const ListItem = withTheme(\n<Icon\nwidth={16}\nheight={16}\n- fill={yogaTheme.yoga.colors.secondary}\n+ fill={yogaTheme.yoga.colors.text.primary}\n/>\n)}\n</IconWrapper>\n", "new_path": "packages/yoga/src/Card/native/PlanCard/List.jsx", "old_pat...
JavaScript
MIT License
gympass/yoga
fix(plancard): change secondary to text primary color
1
fix
plancard
777,374
19.08.2021 09:01:48
25,200
3d898190d22a24c41d62ce59076c936c9784dcdc
fix: test credentials for test_tf_keras_mnist_data_layer_
[ { "change_type": "MODIFY", "diff": "-from typing import Callable\n+from typing import Callable, Dict\nimport pytest\n@@ -142,7 +142,10 @@ def test_tf_keras_mnist_data_layer_lfs(\n@pytest.mark.parametrize(\"tf2\", [False]) # type: ignore\n@pytest.mark.parametrize(\"storage_type\", [\"s3\"]) # type: ignore\nd...
Python
Apache License 2.0
determined-ai/determined
fix: test credentials for test_tf_keras_mnist_data_layer_ (#2853)
1
fix
null
426,730
19.08.2021 09:09:01
-7,200
62369e4de4e938a567a66a2bcc6e7f4d3ca7c2e3
feat: bump playwright to 1.14.0 to enable prefers-reduced-motion
[ { "change_type": "ADD", "diff": "+---\n+'@web/test-runner-commands': patch\n+'@web/test-runner-playwright': patch\n+---\n+\n+Upgrade playwright to 1.14.0 which enables prefers-reduced-motion\n", "new_path": ".changeset/lemon-dots-collect.md", "old_path": null }, { "change_type": "MODIFY", ...
TypeScript
MIT License
modernweb-dev/web
feat: bump playwright to 1.14.0 to enable prefers-reduced-motion (#1631)
1
feat
null
756,038
19.08.2021 09:11:17
25,200
63cecef36ef74e1c844574573c1433ecc653765a
docs: concepts for lien and account state
[ { "change_type": "ADD", "diff": "+<!--\n+order: 1\n+-->\n+\n+# Concepts\n+\n+## Notes on Terminology\n+\n+* \"Bonded\", \"delegated\", and \"staked\" are all synonyms.\n+* \"Unlocking\" is a time-delayted process by which tokens become available for\n+ withdrawal. \"Vesting\" is a time-delayed process where...
JavaScript
Apache License 2.0
agoric/agoric-sdk
docs: concepts for lien and account state
1
docs
null
756,038
19.08.2021 09:20:14
25,200
30dbeaa7ef64f2c2dee9ddeb0a8c3929a611c21e
fix: bugfixes, comments
[ { "change_type": "MODIFY", "diff": "@@ -14,8 +14,12 @@ message GenesisState {\n];\n}\n+// The lien on a particular account\nmessage AccountLien {\n+ // Account address, bech32-encoded.\nstring address = 1;\n+\n+ // The liened amount. Should be nonzero.\nrepeated cosmos.base.v1beta1.Coin lien = 2 [\n(gogopro...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix: bugfixes, comments
1
fix
null
756,038
19.08.2021 09:21:09
25,200
34be75d8754a1499140b90a0531e6db300068304
test: keeper tests
[ { "change_type": "ADD", "diff": "+package keeper\n+\n+import (\n+ \"testing\"\n+\n+ \"github.com/Agoric/agoric-sdk/golang/cosmos/x/lien/types\"\n+ sdk \"github.com/cosmos/cosmos-sdk/types\"\n+ authtypes \"github.com/cosmos/cosmos-sdk/x/auth/types\"\n+)\n+\n+var (\n+ coins = sdk.NewCoins\n+)\n+\n+func testCo...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test: keeper tests
1
test
null
504,057
19.08.2021 09:47:00
14,400
c828e215d9cbdb46134280e5a0479b55fe6c9c53
fix(LogViewer): remove unused props
[ { "change_type": "MODIFY", "diff": "@@ -12,10 +12,6 @@ interface LogViewerProps {\ndata?: string;\n/** Consumer may turn off the visibility on the toolbar */\nhasToolbar?: boolean;\n- /** Consumers may define their own controls to feed to the toolbar for custom functionality. */\n- customControls?: React.Re...
TypeScript
MIT License
patternfly/patternfly-react
fix(LogViewer): remove unused props (#6186)
1
fix
LogViewer
815,609
19.08.2021 10:06:12
-28,800
64018bfc80cf15f21c1e490f54bbc21e96628b1e
chore(hardfork): reject block extension from JSON-RPC temporarily
[ { "change_type": "MODIFY", "diff": "@@ -1607,6 +1607,7 @@ Response\n\"cycles_limit\": \"0xd09dc300\",\n\"dao\": \"0xd495a106684401001e47c0ae1d5930009449d26e32380000000721efd0030000\",\n\"epoch\": \"0x7080019000001\",\n+ \"extension\": null,\n\"number\": \"0x401\",\n\"parent_hash\": \"0xa5f5c85987a15de25661e...
Rust
MIT License
nervosnetwork/ckb
chore(hardfork): reject block extension from JSON-RPC temporarily
1
chore
hardfork
386,581
19.08.2021 10:06:14
-7,200
809f09a51fb46d94c54a35042cd0fb6c58f11fbd
fix(build): Add tests for readConfigFile.
[ { "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(build): Add tests for readConfigFile.
1
fix
build
277,273
19.08.2021 10:26:15
25,200
920e94c1232d06fb05d727d48b1c9c742904442a
feat: Print API member frequencies after wavegen compilation
[ { "change_type": "MODIFY", "diff": "@@ -919,12 +919,22 @@ const\nreturn { types, lookup }\n},\n- measureStats = (protocol: Protocol) => {\n- let n = 0\n+ printStats = (protocol: Protocol) => {\n+ console.log('-----------------------------------------------------')\n+ console.log('API attribute frequencies:'...
Python
Apache License 2.0
h2oai/wave
feat: Print API member frequencies after wavegen compilation
1
feat
null
277,273
19.08.2021 10:32:59
25,200
a208cbca04d911e5e6d61d905cbb2f34c8f9ce16
feat: Print API enum attributes during wavegen compilation
[ { "change_type": "MODIFY", "diff": "@@ -933,6 +933,16 @@ const\nfor (const t of protocol.types) {\ncount += t.members.length\n}\n+\n+ console.log('-----------------------------------------------------')\n+ console.log('API attribute enums:')\n+ for (const t of protocol.types) {\n+ for (const m of t.members)...
Python
Apache License 2.0
h2oai/wave
feat: Print API enum attributes during wavegen compilation
1
feat
null
711,597
19.08.2021 10:39:46
-7,200
a1cae24c97b26426b39476219217515f4aa669b4
chore(core): Refactor e2e tests to allow codegen to work again
[ { "change_type": "MODIFY", "diff": "@@ -703,24 +703,3 @@ export const GET_PRODUCT_WITH_STOCK_LEVEL = gql`\n}\n}\n`;\n-\n-export const ADD_ITEM_TO_ORDER_WITH_CUSTOM_FIELDS = gql`\n- mutation AddItemToOrderWithCustomFields(\n- $productVariantId: ID!\n- $quantity: Int!\n- $customFields: OrderLineCustomFieldsIn...
TypeScript
MIT License
vendure-ecommerce/vendure
chore(core): Refactor e2e tests to allow codegen to work again
1
chore
core
104,835
19.08.2021 10:55:55
14,400
9b52103a74c09760c128f301352c69d59b6b65e7
fix(datetimepicker): add customized date format
[ { "change_type": "MODIFY", "diff": "@@ -240,6 +240,7 @@ export class DateTimePickerComponent implements OnChanges, OnInit {\n@Input() hasRelative = true;\n@Input() hasAbsolute = true;\n@Input() theme: 'light' | null = null;\n+ @Input() dateFormat: string = 'yyyy-M-d';\n@Input() batchText: BatchLabelText = {...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(datetimepicker): add customized date format
1
fix
datetimepicker
711,597
19.08.2021 11:02:10
-7,200
d9531fd19cc2a27d2d00fea71e8fe5ee3991b366
fix(admin-ui): Correctly set content lang based on available langs Fixes
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,7 @@ import { createUploadLink } from 'apollo-upload-client';\nimport { getAppConfig } from '../app.config';\nimport { introspectionResult } from '../common/introspection-result-wrapper';\n+import { getDefaultUiLanguage } from '../common/utilities/get-default-u...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Correctly set content lang based on available langs Fixes #1033
1
fix
admin-ui
438,921
19.08.2021 11:20:36
-32,400
5efa615c40b5b6e3a139b30bcadea9cc01f94c77
refactor(all): simplify condition by optional chaining Replace all condtional checking property existence by optional chaining operator.
[ { "change_type": "MODIFY", "diff": "@@ -57,10 +57,10 @@ export default {\n// reset possible zoom scale when is called from resize event\n// eslint-disable-next-line prefer-rest-params\nif (state.resizing) { // arguments[1] is given when is called from resize\n- $$.brush && $$.brush.updateResize();\n+ $$.bru...
TypeScript
MIT License
naver/billboard.js
refactor(all): simplify condition by optional chaining (#2271) Replace all condtional checking property existence by optional chaining operator.
1
refactor
all
104,835
19.08.2021 11:36:00
14,400
0a63ecb49d6100d3a7726b371ad4e25c1ae1626d
fix(datetimepicker): remove type
[ { "change_type": "MODIFY", "diff": "@@ -240,7 +240,7 @@ export class DateTimePickerComponent implements OnChanges, OnInit {\n@Input() hasRelative = true;\n@Input() hasAbsolute = true;\n@Input() theme: 'light' | null = null;\n- @Input() dateFormat: string = 'yyyy-M-d';\n+ @Input() dateFormat = 'yyyy-M-d';\n@...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(datetimepicker): remove type
1
fix
datetimepicker
217,922
19.08.2021 11:52:46
-7,200
168e1bfaa2f8dee315d89c1daf5f7f26f4dcd735
fix(universalis): fixed possible bug with null cid
[ { "change_type": "MODIFY", "diff": "@@ -22,7 +22,7 @@ export class UniversalisService {\nprivate cid$: Observable<string> = this.authFacade.user$.pipe(\nmap(user => user.cid),\n- filter(cid => cid !== undefined),\n+ filter(cid => !!cid),\ndistinctUntilChanged(),\nshareReplay(1)\n);\n", "new_path": "apps...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(universalis): fixed possible bug with null cid
1
fix
universalis
304,864
19.08.2021 12:03:44
25,200
5daaedac25dfa11cf577e9a662e59e5c721f80ed
feat(bootstrap.rs): added type to JSON for values
[ { "change_type": "MODIFY", "diff": "@@ -40,6 +40,7 @@ pub struct Error {\n/// Doc is an enum that can take the form of the various types of flux documentation structures through polymorphism.\n#[derive(PartialEq, Debug, Serialize, Deserialize)]\n+#[serde(tag = \"kind\")]\npub enum Doc {\n/// Package represe...
Go
MIT License
influxdata/flux
feat(bootstrap.rs): added type to JSON for values (#3978)
1
feat
bootstrap.rs
711,597
19.08.2021 12:11:47
-7,200
a3d4377ec902b46b1dd543358196ba5cba403f2c
test(core): Add some e2e product entity resolver tests
[ { "change_type": "MODIFY", "diff": "@@ -501,6 +501,49 @@ describe('Product resolver', () => {\nexpect(product.slug).toBe(en_translation.slug);\n});\n});\n+\n+ describe('product.variants', () => {\n+ it('returns product variants', async () => {\n+ const { product } = await adminClient.query<\n+ GetProductWit...
TypeScript
MIT License
vendure-ecommerce/vendure
test(core): Add some e2e product entity resolver tests
1
test
core
104,835
19.08.2021 12:13:30
14,400
dc9f64cf67d771e9fef6217ad5eb38d36ee69534
fix(datetimepicker): handle null select
[ { "change_type": "MODIFY", "diff": "@@ -48,6 +48,7 @@ export type DateRange = [Date, Date];\n(keydown.space)=\"togglePicker()\"\n[ibmTooltip]=\"formatCurrentRange()\"\n[offset]=\"tooltipOffset\"\n+ [disabled]=\"!formatCurrentRangeTitle()\"\ntrigger=\"hover\"\nplacement=\"bottom\"\nrole=\"button\"\n@@ -233,1...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(datetimepicker): handle null select
1
fix
datetimepicker
386,595
19.08.2021 12:40:03
-7,200
003cb0b1ec13a246aa4848f2c5020a937b97ac3d
feat(engine): Add debounce option to events.
[ { "change_type": "MODIFY", "diff": "@@ -18,7 +18,9 @@ import { type } from '@lowdefy/helpers';\nclass Events {\nconstructor({ arrayIndices, block, context }) {\n+ this.defaultDebounceMs = 300;\nthis.events = {};\n+ this.timeouts = {};\nthis.arrayIndices = arrayIndices;\nthis.block = block;\nthis.context = c...
JavaScript
Apache License 2.0
lowdefy/lowdefy
feat(engine): Add debounce option to events.
1
feat
engine
711,597
19.08.2021 12:49:05
-7,200
df3d3f42f1c0cbe23bb12ae1622788b96325e9ae
fix(admin-ui): Apply variant name auto-generation for new translations Closes
[ { "change_type": "MODIFY", "diff": "@@ -163,9 +163,9 @@ export class ProductDetailService {\nif (productInput) {\nupdateOperations.push(this.dataService.product.updateProduct(productInput));\n- const productOldName = findTranslation(product, languageCode)?.name;\n+ const productOldName = findTranslation(pro...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Apply variant name auto-generation for new translations Closes #600
1
fix
admin-ui
386,588
19.08.2021 13:02:05
-7,200
9ac3fc9711df889a1d58d83a68ed2e6baf8f0946
fix(blocksAntd): Add option to define `showTotal` as a string or function.
[ { "change_type": "MODIFY", "diff": "type: Pagination\nproperties:\ntotal: 500\n-- id: \"properties.size: small\"\n+- id: 'properties.size: small'\ntype: Pagination\nproperties:\nsize: small\n-- id: \"properties.size: default\"\n+- id: 'properties.size: default'\ntype: Pagination\nproperties:\nsize: default\...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(blocksAntd): Add option to define `showTotal` as a string or function.
1
fix
blocksAntd
386,581
19.08.2021 13:14:47
-7,200
3eb00dc7eb13cfdf5839ac55f52108837940263c
chore: Remove unused test files.
[ { "change_type": "DELETE", "diff": "-File loader text file 1.\n\\ No newline at end of file\n", "new_path": null, "old_path": "packages/build/src/test/fileLoader/fileLoader1.txt" }, { "change_type": "DELETE", "diff": "-File loader text file 2.\n\\ No newline at end of file\n", "new_p...
JavaScript
Apache License 2.0
lowdefy/lowdefy
chore: Remove unused test files.
1
chore
null
306,309
19.08.2021 13:20:58
-3,600
d1d92eb10b2a61de19e7c871d37ea0536a949363
docs: update hiring text
[ { "change_type": "MODIFY", "diff": "@@ -83,7 +83,7 @@ See [this page](https://www.infracost.io/docs/usage_based_resources) for details\nIssues and pull requests are welcome! For development details, see the [contributing](CONTRIBUTING.md) guide. For major changes, including CLI interface changes, please ope...
Go
Apache License 2.0
infracost/infracost
docs: update hiring text
1
docs
null
865,922
19.08.2021 13:29:50
-7,200
cb97d25fc46df763d35ac5c264621bd19a7d2b8c
feat(icons): add Feedback icon
[ { "change_type": "ADD", "diff": "+<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\">\n+ <path fill=\"currentColor\" d=\"M19,4 L5,4 C3.9,4 3.01,4.9 3.01,6 L3,22 L7,18 L19,18 C20.1,18 21,17.1 21,16 L21,6 C21,4.9 20.1,4 19,4 Z M13,15 L11,15 L11,13 L13,13 L13,15 Z M13,11...
JavaScript
MIT License
camunda/camunda-modeler
feat(icons): add Feedback icon
1
feat
icons
276,989
19.08.2021 13:31:44
10,800
e4b6400e08a61f9905b973f35ff2645b201b4601
feat(system): create elevation for android in
[ { "change_type": "ADD", "diff": "+import { getElevation, generator } from './theme';\n+\n+const elevation = props =>\n+ generator({\n+ props,\n+ prop: ['boxShadow', 'bs', 'elevation'],\n+ cssProperty: 'elevation',\n+ getter: getElevation,\n+ });\n+\n+export { elevation };\n", "new_path": "packages/syste...
JavaScript
MIT License
gympass/yoga
feat(system): create elevation for android in @gympass/yoga-system
1
feat
system
386,595
19.08.2021 13:32:34
-7,200
2ff29cb772bc940bb59dc976c31d473771c8da97
feat(engine): Add tests for events debounce.
[ { "change_type": "MODIFY", "diff": "@@ -90,33 +90,36 @@ class Actions {\nconsole.error(errorCatch);\nreturn {\nblockId: block.blockId,\n+ bounced: false,\n+ endTimestamp: new Date(),\nerror,\nerrorCatch,\nevent,\neventName,\nresponses,\n- endTimestamp: new Date(),\nstartTimestamp,\nsuccess: false,\n};\n}\nr...
JavaScript
Apache License 2.0
lowdefy/lowdefy
feat(engine): Add tests for events debounce.
1
feat
engine
276,989
19.08.2021 13:33:55
10,800
c5ec426902c4a2f3f52d4de24677fd1ab72bdce0
feat(tokens): update our elevation token to have umbra, penumbra, and ambient values following material design guidelines and using as reference
[ { "change_type": "MODIFY", "diff": "import hexToRgb from './hexToRgb';\n+// values from\n+// https://github.com/material-components/material-components-web/blob/master/packages/mdc-elevation/_elevation-theme.scss\n+const UMBRA_OPACITY = 0.2;\n+const PEUMBRA_OPACITY = 0.14;\n+const AMBIENT_OPACITY = 0.12;\n+...
JavaScript
MIT License
gympass/yoga
feat(tokens): update our elevation token to have umbra, penumbra, and ambient values following material design guidelines and using https://github.com/material-components/material-components-web/blob/master/packages/mdc-elevation/_elevation-theme.scss as reference
1
feat
tokens
386,595
19.08.2021 13:41:55
-7,200
ccf2281eca7d1e44766c272ac67a478924113e32
chore(engine): Remove useless await.
[ { "change_type": "MODIFY", "diff": "@@ -92,7 +92,7 @@ class Events {\n// no debounce\nif (type.isNone(eventDescription.debounce)) {\n- return await actionHandle();\n+ return actionHandle();\n}\n// leading edge: bounce\n", "new_path": "packages/engine/src/Events.js", "old_path": "packages/engine/src/...
JavaScript
Apache License 2.0
lowdefy/lowdefy
chore(engine): Remove useless await.
1
chore
engine
276,989
19.08.2021 13:53:53
10,800
fb388034981fa30dcfa2102110097a057892f872
test(system): add tests for elevation and for each platform different platform with different values need to be handle different and tested differently as well
[ { "change_type": "MODIFY", "diff": "import { css } from 'styled-components';\nimport { elevation } from './elevation';\n+import { elevation as androidElevation } from './elevation.android';\n+describe('Web and iOS', () => {\nconst shadow = umbra =>\nNumber(umbra) && umbra > 0\n? `0 ${umbra}px ${umbra * 2}px...
JavaScript
MIT License
gympass/yoga
test(system): add tests for elevation and for each platform different platform with different values need to be handle different and tested differently as well
1
test
system
276,989
19.08.2021 13:55:13
10,800
f60221b87e6b447af299ff979e5715df7757ae65
feat(tokens): add elevation tokens for Android platform
[ { "change_type": "ADD", "diff": "+/**\n+ * @module elevation\n+ * @desc Elevation (z-index) tokens module.\n+ *\n+ * @memberof @gympass/yoga-tokens\n+ */\n+\n+/**\n+ * An elevation\n+ * @typedef Elevation\n+ *\n+ * @type {Object}\n+ * @property {String} zero\n+ * @property {String} small\n+ * @property {Str...
JavaScript
MIT License
gympass/yoga
feat(tokens): add elevation tokens for Android platform
1
feat
tokens
276,989
19.08.2021 13:57:09
10,800
316ddec95ad474f630c525e488439b1b5045f0c7
refactor(avatar): adjusting Avatar to receive elevation prop correctly
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport { BuildingFilled } from '@gympass/yoga-icons';\nimport { string, func, number } from 'prop-types';\n+import { Image as ImageNative } from 'react-native';\n+\nimport Box from '../../Box';\nimport Image from './Image';\nimport Placeholder ...
JavaScript
MIT License
gympass/yoga
refactor(avatar): adjusting Avatar to receive elevation prop correctly Co-authored-by: @nypacheco
1
refactor
avatar
756,038
19.08.2021 13:58:18
25,200
37434a01db1dcf04d66cc74f813847840f8bdcb1
test: lien account state for staking and bugfix
[ { "change_type": "MODIFY", "diff": "@@ -118,9 +118,7 @@ func (lk Keeper) GetAccountState(ctx sdk.Context, addr sdk.AccAddress) AccountSt\nunbonding := lk.getUnbonding(ctx, addr)\nlocked := lk.getLocked(ctx, addr)\nliened := lk.GetLien(ctx, addr).Coins\n- total := lk.bankKeeper.GetAllBalances(ctx, addr)\n- t...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test: lien account state for staking and bugfix
1
test
null
67,479
19.08.2021 14:21:06
-36,000
4f18a7ec82f84a83dc1fe1a9a1fd560f2fe01c14
chore: add attr transfering doc, tweak doc links
[ { "change_type": "MODIFY", "diff": "* [Template references and variables](getting-to-know-aurelia/introduction/template-references-and-variables.md)\n* [Portalling elements](getting-to-know-aurelia/introduction/portalling-elements.md)\n* [Templating - Local Template](getting-to-know-aurelia/introduction/loc...
TypeScript
MIT License
aurelia/aurelia
chore: add attr transfering doc, tweak doc links
1
chore
null