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
688,413
18.06.2021 22:16:10
-10,800
9de2732fb2d1c31f21c938a35c5869a752fb3305
fix(AppUpdateNotification): Fix non-intractable action buttons
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,17 @@ const ApplicationUpdateNotificationExample = () => {\ndata-testid='trigger'\nvariant='secondary'\nonClick={() =>\n- showCustom(<ApplicationUpdateNotification />, { persist: true })\n+ showCustom(\n+ <ApplicationUpdateNotification\n+ data-testid='applica...
TypeScript
MIT License
toptal/picasso
fix(AppUpdateNotification): [ER-12060] Fix non-intractable action buttons (#2103)
1
fix
AppUpdateNotification
185,950
19.06.2021 00:56:38
-7,200
d7a1637820df805f333bd087d12c6098e8365e39
feat: try downloading version if missing
[ { "change_type": "MODIFY", "diff": "@@ -85,8 +85,8 @@ async function downloadBinary(ver: RunnableVersion): Promise<void> {\n// Ensure the target path is empty\nawait fs.emptyDir(extractPath);\n- const electronFiles = await unzip(zipPath, extractPath);\n- console.log(`Binary: Unzipped ${version}`, electronFi...
TypeScript
MIT License
electron/fiddle
feat: try downloading version if missing (#720)
1
feat
null
791,682
19.06.2021 01:45:02
14,400
0be8d5265c5ab58a1dfab98c0fe5d0b48d1876f0
core(fr): convert service-worker gatherer
[ { "change_type": "MODIFY", "diff": "@@ -41,6 +41,7 @@ const artifacts = {\nPasswordInputsWithPreventedPaste: '',\nResponseCompression: '',\nRobotsTxt: '',\n+ ServiceWorker: '',\nScriptElements: '',\nSourceMaps: '',\nStacks: '',\n@@ -94,6 +95,7 @@ const defaultConfig = {\n{id: artifacts.PasswordInputsWithPre...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(fr): convert service-worker gatherer (#12662)
1
core
fr
401,123
19.06.2021 11:20:29
-19,080
63f7d7ccfdda9842c5b106a9137a4827f95411d2
style(core): increases height of modal's container in the sample code affects:
[ { "change_type": "MODIFY", "diff": "@@ -29,13 +29,17 @@ const Form = styled('form')`\n}\n`;\n+export const ModalStoryWrapper = styled('div')<{ expand: boolean }>`\n+ height: ${({ expand }) => (expand ? `50rem` : `5rem;`)};\n+`;\n+\nexport const Basic = () => {\nconst [modalState, setModalState] = useState(f...
TypeScript
MIT License
medly/medly-components
style(core): increases height of modal's container in the sample code affects: @medly-components/core
1
style
core
756,064
19.06.2021 18:21:19
25,200
a3bf0977abcea7dbef0c89b6c96887ac3f305dbe
fix(swingset): comms: deleteKernelMapping might free the object Just like in `deleteRemoteMapping`, `deleteKernelMapping` needs to mark the lref for refcount checking, to handle the case where the comms vat imports an object from the kernel, drops it, and then the kernel drives the retirement process (with a `dispatch....
[ { "change_type": "MODIFY", "diff": "@@ -429,6 +429,10 @@ export function makeState(syscall, identifierBase = 0) {\nif (type === 'object') {\nif (isImport) {\nremoveImporter(lref, 'kernel');\n+ } else {\n+ // deleting the upstream/export-side mapping should trigger\n+ // processMaybeFree\n+ lrefMightBeFree(l...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(swingset): comms: deleteKernelMapping might free the object Just like in `deleteRemoteMapping`, `deleteKernelMapping` needs to mark the lref for refcount checking, to handle the case where the comms vat imports an object from the kernel, drops it, and then the kernel drives the retirement process (with a `dispatch...
1
fix
swingset
756,064
19.06.2021 18:24:01
25,200
e30ad701454cca3e42f2e41f05f53da4496b918b
chore(swingset): lots more gc-comms tests
[ { "change_type": "MODIFY", "diff": "@@ -5,19 +5,26 @@ import { flipRemoteSlot } from '../src/vats/comms/parseRemoteSlot.js';\nimport { makeState } from '../src/vats/comms/state.js';\nimport { makeCListKit } from '../src/vats/comms/clist.js';\nimport { debugState } from '../src/vats/comms/dispatch.js';\n-imp...
JavaScript
Apache License 2.0
agoric/agoric-sdk
chore(swingset): lots more gc-comms tests
1
chore
swingset
756,064
19.06.2021 18:35:55
25,200
cec9bf6c45e5dd0352c52ae4b70301523c3d3df3
chore(swingset): comms/state.js: use parseInt rather than Number
[ { "change_type": "MODIFY", "diff": "@@ -174,7 +174,7 @@ export function makeState(syscall, identifierBase = 0) {\nfunction incrementRefCount(lref, _tag) {\nconst { type } = parseLocalSlot(lref);\nif (type === 'promise') {\n- const refCount = Number(store.get(`${lref}.refCount`)) + 1;\n+ const refCount = par...
JavaScript
Apache License 2.0
agoric/agoric-sdk
chore(swingset): comms/state.js: use parseInt rather than Number
1
chore
swingset
266,183
19.06.2021 18:35:58
14,400
87254ac89a9559864c0a245d6b150406439ce3d8
fix: Add `shopt -s nullglob` to dependencies script This prevents processing the unexpanded glob "**/.flattened-pom.xml" in repos which do not flatten any POMs.
[ { "change_type": "MODIFY", "diff": "# limitations under the License.\nset -eo pipefail\n+shopt -s nullglob\n## Get the directory of the build script\nscriptDir=$(realpath $(dirname \"${BASH_SOURCE[0]}\"))\n", "new_path": "synthtool/gcp/templates/java_library/.kokoro/dependencies.sh", "old_path": "sy...
Python
Apache License 2.0
googleapis/synthtool
fix: Add `shopt -s nullglob` to dependencies script (#1130) This prevents processing the unexpanded glob "**/.flattened-pom.xml" in repos which do not flatten any POMs.
1
fix
null
756,064
19.06.2021 18:38:10
25,200
0abb12d251f3aeca706418dd7f042c13648bf25a
chore(swingset): comms/dispatch.js: prefer forEach over map
[ { "change_type": "MODIFY", "diff": "@@ -132,7 +132,7 @@ export function buildCommsDispatch(\n// crank). The resulting abrupt comms vat termination should serve as a\n// diagnostic signal that we have a bug that must be corrected.\n- args.slots.map(s =>\n+ args.slots.forEach(s =>\nassert(\n!state.hasMetaObje...
JavaScript
Apache License 2.0
agoric/agoric-sdk
chore(swingset): comms/dispatch.js: prefer forEach over map
1
chore
swingset
756,064
19.06.2021 19:13:17
25,200
51b1c0c8e20b8d2faa798bc9b3eaabcde6d983f9
chore(swingset): comms: prefer parseInt over Number
[ { "change_type": "MODIFY", "diff": "@@ -147,10 +147,7 @@ export function makeDeliveryKit(state, syscall, transmit, clistKit) {\ndelim2 >= 0,\nX`received message ${message} lacks ackSeqNum delimiter`,\n);\n- const ackSeqNum = Number.parseInt(\n- message.substring(delim1 + 1, delim2),\n- 10,\n- );\n+ const ac...
JavaScript
Apache License 2.0
agoric/agoric-sdk
chore(swingset): comms: prefer parseInt over Number
1
chore
swingset
185,950
19.06.2021 20:04:58
-7,200
675575135d65e331b11852f5d8d928461dda046e
fix: show warning dialog for missing local versions
[ { "change_type": "MODIFY", "diff": "-import { Button, IButtonProps, Spinner } from '@blueprintjs/core';\n+import { Button, ButtonProps, Spinner } from '@blueprintjs/core';\nimport { observer } from 'mobx-react';\nimport * as React from 'react';\n@@ -26,7 +26,7 @@ export class Runner extends React.Component<...
TypeScript
MIT License
electron/fiddle
fix: show warning dialog for missing local versions (#727)
1
fix
null
67,479
19.06.2021 22:26:12
-36,000
490cb2e49f561b58a14eb4bc499ff94d0b63e6b5
chore(ci): fix **.lock file error in benchmark pipeline
[ { "change_type": "MODIFY", "diff": "@@ -384,6 +384,7 @@ jobs:\nelse\npr_comment_url=$(echo $pr_response | jq -r \".[]._links.comments.href\")\n+ git reset --hard\ngit checkout master\nmaster_commit=$(git rev-parse HEAD)\n", "new_path": ".circleci/config.yml", "old_path": ".circleci/config.yml" } ]
TypeScript
MIT License
aurelia/aurelia
chore(ci): fix **.lock file error in benchmark pipeline
1
chore
ci
380,828
19.06.2021 22:59:43
-25,200
ea00f551cbae2ae7596f7fe3055cb8442863f53a
fix: add extract-template for po-gettext format The previous implemented of `lingui extract-template` command does not work with po-gettext format because of hard-coded `po`. This change support any further `po-xyz` format in the future.
[ { "change_type": "MODIFY", "diff": "@@ -359,8 +359,7 @@ export class Catalog {\nfs.mkdirpSync(basedir)\n}\nconst options = { ...this.config.formatOptions, locale: undefined }\n- const poFormat = getFormat(\"po\")\n- poFormat.write(filename, messages, options)\n+ this.format.write(filename, messages, options...
TypeScript
MIT License
lingui/js-lingui
fix: add extract-template for po-gettext format (#1089) The previous implemented of `lingui extract-template` command does not work with po-gettext format because of hard-coded `po`. This change support any further `po-xyz` format in the future.
1
fix
null
104,825
19.06.2021 23:55:56
14,400
875302cbe529e3540a6427f23e1ce9de2172914d
feat(list): add drag and drop support
[ { "change_type": "MODIFY", "diff": "@@ -22,9 +22,9 @@ export class AIListModel {\n*/\nset items(items: AIListItem[]) {\n// Initialize `nestingLevel`s, `id`s, and `parentId`s if they are not already set.\n- this._items = this.initializeListItems(items);\n- this.expandedIds = [...this.expandedIds, ...this.get...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(list): add drag and drop support
1
feat
list
847,143
20.06.2021 10:13:12
-28,800
1df809abd1b59aea87b8a20bef7d29645ba57032
chore(seo2): update filename
[ { "change_type": "RENAME", "diff": "@@ -20,7 +20,7 @@ const addMeta = (\nif (content) meta.push([\"meta\", { [attribute]: name, content }]);\n};\n-export const appendMeta = (\n+export const appendSEO = (\nhead: HeadConfig[],\ncontent: SeoContent,\noptions: SeoOptions\n", "new_path": "packages/seo2/src/n...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
chore(seo2): update filename
1
chore
seo2
847,143
20.06.2021 10:13:55
-28,800
51f1fe6e868c0516dbfeedf8827017a1392969ef
feat(theme): update dropdown arrow
[ { "change_type": "MODIFY", "diff": "{{ item.text }}\n</span>\n</slot>\n- <span class=\"arrow down\" />\n+ <span class=\"arrow\" />\n</button>\n<ul class=\"nav-dropdown\">\n", "new_path": "packages/theme/src/client/components/navbar/DropdownLink.vue", "old_path": "packages/theme/src/client/components...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
feat(theme): update dropdown arrow
1
feat
theme
847,143
20.06.2021 10:53:23
-28,800
7d51d906dbb6846ccc36f44306447e662a9386df
fix(shared): fix useCustomServer
[ { "change_type": "MODIFY", "diff": "import { path } from \"@vuepress/utils\";\n-import { getLocales } from \"@mr-hope/vuepress-shared\";\n-// import { getRootLangPath, useCustomDevServer } from \"@mr-hope/vuepress-shared\";\n+import { getLocales, useCustomDevServer } from \"@mr-hope/vuepress-shared\";\nimpo...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(shared): fix useCustomServer
1
fix
shared
847,143
20.06.2021 10:53:58
-28,800
3886f9017eee6413322a0392a1fbce7a483599da
chore: add missing externals
[ { "change_type": "MODIFY", "diff": "@@ -11,14 +11,14 @@ export default [\n}),\n...rollupTypescript(\"client/appSetup\", {\nexternal: [\n- \"@mr-hope/vuepress-shared/styles/config/index.scss\",\n+ \"@mr-hope/vuepress-shared/client\",\n\"@vuepress/client\",\n- \"balloon-css\",\n+ \"balloon-css/balloon.css\",\...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
chore: add missing externals
1
chore
null
847,143
20.06.2021 10:54:22
-28,800
d8a90cd868582292a3a795cc1424948f56045c6a
feat(theme): update navbar
[ { "change_type": "MODIFY", "diff": "@@ -125,13 +125,17 @@ export default defineComponent({\nreturn item.value.link !== \"/\";\n});\n- // if this link is active in subpath\n- const isActive = computed(() => {\n- if (!isRouterLink.value || !shouldBeActiveInSubpath.value) {\n- return false;\n- }\n- return rout...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
feat(theme): update navbar
1
feat
theme
426,696
20.06.2021 11:13:20
-7,200
c46104c7ee1cf144d20a45ffaa75b9afa8e3d277
fix(test-runner): branch coverage for multiple test suites
[ { "change_type": "MODIFY", "diff": "@@ -25,7 +25,20 @@ export interface TestCoverage {\n}\nconst locEquals = (a: Location, b: Location) => a.column === b.column && a.line === b.line;\n+const locBefore = (a: Location, b: Location) => a.line < b.line || (a.line === b.line && a.column <= b.column)\nconst range...
TypeScript
MIT License
modernweb-dev/web
fix(test-runner): branch coverage for multiple test suites
1
fix
test-runner
815,601
20.06.2021 15:45:58
-28,800
bd4fecadc3a9f261747512933548066a4625ba64
feat: resumable script verify
[ { "change_type": "MODIFY", "diff": "@@ -136,6 +136,14 @@ impl ScriptError {\ncause: self,\n}\n}\n+\n+ /// Creates a script error with unknown source, usually a internal error\n+ pub fn unknown_source(self) -> TransactionScriptError {\n+ TransactionScriptError {\n+ source: TransactionScriptErrorSource::Unkno...
Rust
MIT License
nervosnetwork/ckb
feat: resumable script verify
1
feat
null
104,825
20.06.2021 16:56:13
14,400
473c83358120fe2c34a312067d6e3a74f782ed78
feat(list): add header
[ { "change_type": "MODIFY", "diff": "@@ -23,8 +23,7 @@ export class AIListModel {\nset items(items: AIListItem[]) {\n// Initialize `nestingLevel`s, `id`s, and `parentId`s if they are not already set.\nthis._items = this.initializeListItems(items, this.getAdjustedNestingLevel(items, 0), null);\n- this.expande...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(list): add header
1
feat
list
847,143
20.06.2021 17:28:18
-28,800
991c21c8fb6e11b228921405b17d3b8a3f19333a
feat(theme): extact transition
[ { "change_type": "MODIFY", "diff": "<template>\n- <transition\n+ <Transition\nv-if=\"type === 'single'\"\nname=\"drop\"\nappear\n@before-leave=\"setStyle\"\n>\n<slot />\n- </transition>\n- <transition-group\n+ </Transition>\n+ <TransitionGroup\nv-if=\"type === 'group'\"\nname=\"drop\"\nappear\n@before-leave...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
feat(theme): extact transition
1
feat
theme
756,013
20.06.2021 17:28:51
21,600
1ff1244f74e0e438333047d1d63efb6f60c9a1b0
fix(wallet): Nat values are now BigInts, so fix the parse output
[ { "change_type": "MODIFY", "diff": "@@ -36,7 +36,7 @@ export function parseValue(str, displayInfo) {\nX`${str} exceeds ${decimalPlaces} decimal places`,\n);\n- return parseInt(`${unitstr}${dec0str0}`, 10);\n+ return BigInt(`${unitstr}${dec0str0}`);\n}\n/**\n", "new_path": "packages/dapp-svelte-wallet/ui...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(wallet): Nat values are now BigInts, so fix the parse output
1
fix
wallet
847,143
20.06.2021 17:32:03
-28,800
8d96c8d8aadbc502cccc5e8d71cd7749ee4fb468
fix(demo): fix demo logo
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,6 @@ const packages = fs.readdirSync(path.resolve(__dirname, \"packages\"));\nmodule.exports = {\nextends: [\"@commitlint/config-conventional\"],\nrules: {\n- \"scope-enum\": [2, \"always\", [\"release\", ...packages]],\n+ \"scope-enum\": [2, \"always\", [\"dem...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(demo): fix demo logo
1
fix
demo
104,825
20.06.2021 17:36:28
14,400
efef94bdc6c544dec710adec01101d86572ccd6e
refactor(list): improve handleExpansion
[ { "change_type": "MODIFY", "diff": "@@ -77,9 +77,13 @@ export class AIListModel {\nthis.selectedIds = [...new Set([...this.selectedIds, ...this.getSelectedIdsFromListItems(items)])];\n}\n- handleExpansion(id: string) {\n+ handleExpansion(id: string, expand: boolean) {\nconst indexOfId = this.expandedIds.ind...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
refactor(list): improve handleExpansion
1
refactor
list
815,601
20.06.2021 18:09:57
-28,800
244407dbad19025f643592f04845dc0d44311b45
feat: cache suspended snapshot
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,6 @@ mod verify_env;\npub use crate::error::{ScriptError, TransactionScriptError};\npub use crate::ill_transaction_checker::IllTransactionChecker;\n-pub use crate::types::{ScriptGroup, ScriptGroupType};\n+pub use crate::types::{ScriptGroup, ScriptGroupType, T...
Rust
MIT License
nervosnetwork/ckb
feat: cache suspended snapshot
1
feat
null
269,409
20.06.2021 19:34:09
-7,200
3db788bba5357893491905e9b6f5e32f26bb3c3a
feat(nfpm): add support for APK pre/post upgrade scripts
[ { "change_type": "MODIFY", "diff": "@@ -306,6 +306,10 @@ func create(ctx *context.Context, fpm config.NFPM, format, arch string, binaries\n},\nKeyName: overridden.APK.Signature.KeyName,\n},\n+ Scripts: nfpm.APKScripts{\n+ PreUpgrade: overridden.APK.Scripts.PreUpgrade,\n+ PostUpgrade: overridden.APK.Scripts....
Go
MIT License
goreleaser/goreleaser
feat(nfpm): add support for APK pre/post upgrade scripts (#2308)
1
feat
nfpm
847,143
20.06.2021 19:50:24
-28,800
3b131fbe7674feaee3ee2092b1cb401d84b1e612
feat: update layout
[ { "change_type": "MODIFY", "diff": "\"dependencies\": {\n\"@mr-hope/vuepress-plugin-components\": \"2.0.0-alpha.5\",\n\"@mr-hope/vuepress-shared\": \"2.0.0-alpha.5\",\n+ \"@types/lodash.throttle\": \"^4.1.6\",\n\"@vuepress/client\": \"2.0.0-beta.19\",\n\"@vuepress/core\": \"2.0.0-beta.19\",\n\"@vuepress/plu...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
feat: update layout
1
feat
null
756,013
20.06.2021 21:24:06
21,600
8f38d01eae8ba9b9c849e66cc1c16efa4416a7bb
fix(SwingSet): protect against null kpid when resolving errors
[ { "change_type": "MODIFY", "diff": "@@ -410,7 +410,9 @@ export default function buildKernel(\nkernelKeeper.incStat('dispatchDeliver');\n// eslint-disable-next-line no-use-before-define\nif (!vatWarehouse.lookup(vatID)) {\n+ if (msg.result) {\nresolveToError(msg.result, VAT_TERMINATION_ERROR);\n+ }\n} else {...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(SwingSet): protect against null kpid when resolving errors
1
fix
SwingSet
756,013
20.06.2021 21:25:05
21,600
11ce03abf1fd64e99b9a5c49ee21c96296990691
refactor: report kernel errors in block-manager, not the chain
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import anylogger from 'anylogger';\nimport { assert, details as X } from '@agoric/assert';\n-const log = anylogger('block-manager');\n+const console = anylogger('block-manager');\nconst BEGIN_BLOCK = 'BEGIN_BLOCK';\nconst DELIVER_INBOUND = 'DELIVER_INBOUND...
JavaScript
Apache License 2.0
agoric/agoric-sdk
refactor: report kernel errors in block-manager, not the chain
1
refactor
null
756,013
20.06.2021 21:49:17
21,600
f0d2e686a68cffbee2e97697594a7669051f0b40
fix: move COMMIT_BLOCK immediately before the Cosmos SDK commit
[ { "change_type": "MODIFY", "diff": "@@ -639,10 +639,9 @@ func (app *GaiaApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci\n// Commit tells the controller that the block is commited\nfunc (app *GaiaApp) Commit() abci.ResponseCommit {\n- // Wrap the BaseApp's Commit method\n- res := app.BaseAp...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix: move COMMIT_BLOCK immediately before the Cosmos SDK commit
1
fix
null
104,825
20.06.2021 22:22:39
14,400
57ad7753145739b8cd716bd35565bc9ea2c31128
feat(list): add support for row actions
[ { "change_type": "MODIFY", "diff": "@@ -49,8 +49,8 @@ export class AIListModel {\n}\n/**\n- * This function initializes the `nestingLevel`s, as well as the `id`s, and `parentId`s\n- * of the given `AIListItem`s if they are not already set.\n+ * This function initializes the `nestingLevel`s, `id`s, and `pare...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(list): add support for row actions
1
feat
list
599,886
21.06.2021 01:25:05
-32,400
b71c07391a5caee84fe0211cc79f940eea62ebc2
refactor(ui): new menu design
[ { "change_type": "MODIFY", "diff": "\"sqlite3\": \"^5.0.2\",\n\"swagger-ui-express\": \"^4.1.6\",\n\"swr\": \"^0.5.6\",\n- \"typeorm\": \"0.2.34\",\n+ \"typeorm\": \"0.2.32\",\n\"web-push\": \"^3.4.4\",\n\"winston\": \"^3.3.3\",\n\"winston-daily-rotate-file\": \"^4.5.5\",\n", "new_path": "package.json",...
TypeScript
MIT License
sct/overseerr
refactor(ui): new menu design
1
refactor
ui
269,464
21.06.2021 02:26:17
0
097c456a3b4f8f522a9d168bfb4f6a5d2661e659
chore(ci): publish to fury
[ { "change_type": "MODIFY", "diff": "@@ -94,6 +94,7 @@ jobs:\nTWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }}\nTWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}\nTWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}\n+ FURY_TOKEN: ${{ secrets.FURY_TOKEN }}\nrun: |\ni...
Go
MIT License
goreleaser/goreleaser
chore(ci): publish to fury Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
1
chore
ci
269,464
21.06.2021 02:52:31
0
f7983ea83ea5cb8e06620a5e35d8503a3872c7ce
fix: fury upload, maybe
[ { "change_type": "MODIFY", "diff": "set -e\nif [ \"${1: -4}\" == \".deb\" ] || [ \"${1: -4}\" == \".rpm\" ]; then\ncd dist\n- curl -F package=\"@$1\" \"https://$FURY_TOKEN@push.fury.io/goreleaser/\"\n+ echo \"uploading $1\"\n+ curl -q -s -F package=\"@$1\" \"https://$FURY_TOKEN@push.fury.io/goreleaser/\" >/...
Go
MIT License
goreleaser/goreleaser
fix: fury upload, maybe Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
1
fix
null
438,917
21.06.2021 07:48:31
-7,200
29813d3dec88feb8e4721b0516d2a3c7881c6d9e
docs(api): fix missing comma for append load Fix the api documentation to enable working copy-paste. Fixes: ("feat(api): Intent to ship append load")
[ { "change_type": "MODIFY", "diff": "@@ -61,7 +61,7 @@ export default {\n* columns: [\n* // with 'append' option, the 'data1' will have `[20,30,40,50,60]`.\n* [\"data1\", 50, 60]\n- * ]\n+ * ],\n* append: true\n* });\n* @example\n", "new_path": "src/Chart/api/load.ts", "old_path": "src/Chart/api/load...
TypeScript
MIT License
naver/billboard.js
docs(api): fix missing comma for append load (#2147) Fix the api documentation to enable working copy-paste. Fixes: 80767955cedd ("feat(api): Intent to ship append load") Signed-off-by: Adrian Schmutzler <dev@schmutzler.it>
1
docs
api
815,817
21.06.2021 07:54:11
18,000
636ae2b0a5b57961498442c5944a2771b25052e2
fix: update peer dep declaration ng 12
[ { "change_type": "MODIFY", "diff": "@@ -15,6 +15,7 @@ See [Demo](https://ng-select.github.io/ng-select) page.\n| Angular| ng-select|\n| ------|:------:|\n+| >=12.0.0 <13.0.0 | v7.x |\n| >=11.0.0 <12.0.0 | v6.x |\n| >=10.0.0 <11.0.0 | v5.x |\n| >=9.0.0 <10.0.0 | v4.x |\n", "new_path": "README.md", "o...
TypeScript
MIT License
ng-select/ng-select
fix: update peer dep declaration ng 12 (#1920)
1
fix
null
426,696
21.06.2021 08:52:00
-7,200
e08bb12abea52f038c470143b8f7a537ed2f917d
feat: separate key finding method for branches and functions
[ { "change_type": "MODIFY", "diff": "@@ -66,10 +66,7 @@ function findEncompassingKey<T extends BranchMapping | FunctionMapping>(\nrangeEncompass(m.loc, item.loc),\n);\n- if (!encompassingEntries.length) {\n- return null;\n- }\n-\n+ if (encompassingEntries.length) {\n// Sort the encompassing branches by dista...
TypeScript
MIT License
modernweb-dev/web
feat: separate key finding method for branches and functions
1
feat
null
756,064
21.06.2021 08:54:46
25,200
3354bbf6e100dcd96a0813b15a8bae0dfffa80d3
fix(swingset): only mark refs for processing if refcount hits zero This should remove some unnecessary work done by `processRefcounts` on objects which have lost one reference, but not all of them. refs
[ { "change_type": "MODIFY", "diff": "@@ -853,7 +853,9 @@ export default function makeKernelKeeper(kvStore, streamStore, kernelSlog) {\nreachable -= 1;\n}\nrecognizable -= 1;\n+ if (!reachable || !recognizable) {\nmaybeFreeKrefs.add(kernelSlot);\n+ }\nsetObjectRefCount(kernelSlot, { reachable, recognizable })...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(swingset): only mark refs for processing if refcount hits zero This should remove some unnecessary work done by `processRefcounts` on objects which have lost one reference, but not all of them. refs #3106
1
fix
swingset
815,598
21.06.2021 09:36:25
-28,800
ee2c864d60ccfc4d1ceb4d03b6bf12f0a40869d1
chore: CHANGELOG for v0.43.0
[ { "change_type": "MODIFY", "diff": "+# [v0.43.0](https://github.com/nervosnetwork/ckb/compare/v0.42.0...v0.43.0) (2021-06-21)\n+\n+### Features\n+\n+* #2663: Try to increase file descriptor soft limit (@zhangsoledad)\n+* #2647: Sort txs in pool by indirect dep (@zhangsoledad)\n+* #2746: Update tx-pool for r...
Rust
MIT License
nervosnetwork/ckb
chore: CHANGELOG for v0.43.0
1
chore
null
791,323
21.06.2021 10:01:40
25,200
22ffc18e522c0f943db57f8c943e7356067bedfd
fix(pubsub): fix memory leak issue in publish scheduler
[ { "change_type": "MODIFY", "diff": "@@ -39,8 +39,8 @@ type PublishScheduler struct {\nBufferedByteLimit int\nmu sync.Mutex\n- bundlers map[string]*bundler.Bundler\n- outstanding map[string]int\n+ bundlers sync.Map // keys -> *bundler.Bundler\n+ outstanding sync.Map // keys -> num outstanding messages\nkeysM...
Go
Apache License 2.0
googleapis/google-cloud-go
fix(pubsub): fix memory leak issue in publish scheduler (#4282)
1
fix
pubsub
67,474
21.06.2021 10:19:29
-36,000
520ab8efc69ef76b6d56daa2ac0eaa1b5f6f1fc2
fix(jest): fix jest v27 exports
[ { "change_type": "MODIFY", "diff": "import { IFileUnit, IOptionalPreprocessOptions, preprocess } from '@aurelia/plugin-conventions';\n-import { _createTransformer } from '@aurelia/babel-jest';\n+import babelJest from '@aurelia/babel-jest';\n+const { _createTransformer } = babelJest;\nimport { TransformOptio...
TypeScript
MIT License
aurelia/aurelia
fix(jest): fix jest v27 exports
1
fix
jest
127,957
21.06.2021 10:35:28
-10,800
bf022afe2bcb095958ed6a7615bdae200160bc5f
improvement: add onStateChange
[ { "change_type": "MODIFY", "diff": "@@ -32,10 +32,11 @@ Collapsible sidebar component\n## Props\n| Name | Type | Description |\n-| :------------ | :-------------- | :--------------------- |\n+| :------------ | :----------------------- | :----------------------- |\n| isOpen | boolean | Initial sidebar state ...
TypeScript
MIT License
coingaming/moon-design
improvement: add onStateChange (#1230)
1
improvement
null
127,957
21.06.2021 10:35:47
-10,800
a094098e32eb560819f5f7c24e45e5ea57217c68
improvement: update dependencies
[ { "change_type": "MODIFY", "diff": "\"@heathmont/moon-utils\": \"^5.0.1\",\n\"@types/react-simple-maps\": \"1.0.3\",\n\"@types/react-transition-group\": \"4.4.0\",\n- \"@types/recharts\": \"1.8.19\",\n\"react-simple-maps\": \"2.3.0\",\n\"react-transition-group\": \"4.4.1\",\n\"react-use\": \"15.3.8\",\n- \"...
TypeScript
MIT License
coingaming/moon-design
improvement: update dependencies (#1231)
1
improvement
null
104,825
21.06.2021 10:49:37
14,400
ad7e156e5b44b9e9c9ce2ed610ecab33986093b7
refactor(list): come up with a better way to render template
[ { "change_type": "MODIFY", "diff": "@@ -36,18 +36,8 @@ export class AIListModel {\nindeterminateIds: string[] = [];\n- /**\n- * This is needed to initiate the recursive rendering of list items.\n- */\n- id = 'list-model';\n-\nprotected _items: AIListItem[] = [];\n- constructor() {\n- // This is needed to in...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
refactor(list): come up with a better way to render template
1
refactor
list
847,143
21.06.2021 11:15:11
-28,800
f9b8b8ffd3ddcee2efdfd1c7e1c86fa913156632
chore(theme): update components
[ { "change_type": "ADD", "diff": "+import { defineComponent, h } from \"vue\";\n+import NavLink from \"../NavLink\";\n+import RepoLink from \"../RepoLink\";\n+import SidebarDropdownLink from \"./DropdownLink.vue\";\n+import { useNavbarConfig, useNavbarRepo } from \"../../composables\";\n+\n+import type { VNo...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
chore(theme): update components
1
chore
theme
667,713
21.06.2021 11:17:52
-28,800
fe0e1e2258e7603c5191dfa02ac206039192ba89
chore(android): update minSdkVersion to 19
[ { "change_type": "MODIFY", "diff": "@@ -17,7 +17,7 @@ android.enableR8=false\n#android base config\nCOMPILE_SDK_VERSION=29\n-MIN_SDK_VERSION=17\n+MIN_SDK_VERSION=19\nTARGET_SDK_VERSION=29\nARCHIVES_BASE_NAME=android-sdk\n# r21e\n", "new_path": "android/sdk/gradle.properties", "old_path": "android/sd...
C++
Apache License 2.0
tencent/hippy
chore(android): update minSdkVersion to 19
1
chore
android
756,051
21.06.2021 11:41:35
18,000
67e6a512d5c16ec32734e2fb4c046182142b85a0
fix(xsnap): fxMeterHostFunction is no more `fx_Array_prototype_meter` was obsolete but it still caused a link error.
[ { "change_type": "MODIFY", "diff": "@@ -50,7 +50,9 @@ static void fxPatchBuiltIns(txMachine* the);\nstatic void fxPrintUsage();\nstatic void fx_issueCommand(xsMachine *the);\n+#if 0\nstatic void fx_Array_prototype_meter(xsMachine* the);\n+#endif\nextern void fx_clearTimer(txMachine* the);\nstatic void fx_de...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(xsnap): fxMeterHostFunction is no more `fx_Array_prototype_meter` was obsolete but it still caused a link error.
1
fix
xsnap
756,051
21.06.2021 11:42:52
18,000
59e6bd4f5a32ec5ebc5bb472ba2068736131ecb0
test(xsnap): metering for regex, bigint
[ { "change_type": "MODIFY", "diff": "/** The version identifier for our meter type.\n* TODO Bump this whenever there's a change to metering semantics.\n*/\n-export const METER_TYPE = 'xs-meter-7';\n+export const METER_TYPE = 'xs-meter-8';\nexport const ExitCode = {\nE_UNKNOWN_ERROR: -1,\n", "new_path": "...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test(xsnap): metering for regex, bigint
1
test
xsnap
67,475
21.06.2021 11:49:52
0
e5cb37f408e8d58fc8a4b7e9e1f4ceab49303fc1
GitBook: [master] 98 pages modified
[ { "change_type": "MODIFY", "diff": "* [Creating Your First App](getting-started/quick-start-guide/creating-your-first-app.md)\n* [Your First Component - Part 1: The View-Model](getting-started/quick-start-guide/your-first-component-part-1-the-view-model.md)\n* [Your First Component - Part 2: The View](getti...
TypeScript
MIT License
aurelia/aurelia
GitBook: [master] 98 pages modified
1
gitbook
null
756,051
21.06.2021 11:54:45
18,000
4af7080c46519ec7c07101a2496723744ca37005
test(xsnap): test that extra meters are non-zero
[ { "change_type": "MODIFY", "diff": "@@ -63,6 +63,8 @@ test('meter details', async t => {\n},\n'auxiliary (non-consensus) meters are available',\n);\n+ // @ts-ignore extra meters not declared on RunResult (yet?)\n+ t.true(meters.mapSetAddCount > 20000);\nt.is(meterType, 'xs-meter-8');\n});\n", "new_path"...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test(xsnap): test that extra meters are non-zero
1
test
xsnap
791,690
21.06.2021 12:16:05
18,000
c5b01fc6f37df838d0c4008bb7f446a156f841f5
core(total-byte-weight): count partially finished requests
[ { "change_type": "MODIFY", "diff": "const ByteEfficiencyAudit = require('./byte-efficiency-audit.js');\nconst i18n = require('../../lib/i18n/i18n.js');\n+const NetworkRequest = require('../../lib/network-request.js');\nconst NetworkRecords = require('../../computed/network-records.js');\nconst UIStrings = {...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(total-byte-weight): count partially finished requests (#12665)
1
core
total-byte-weight
847,143
21.06.2021 12:18:45
-28,800
351c1c24cff2fb89e0586163ea3c0e70fff44de7
feat(theme): add slide layout
[ { "change_type": "MODIFY", "diff": "+@import \"//at.alicdn.com/t/font_2410206_kxwb6og9m5.css\";\n+\n:root {\nscroll-behavior: smooth;\n}\n", "new_path": "demo/src/.vuepress/styles/index.scss", "old_path": "demo/src/.vuepress/styles/index.scss" }, { "change_type": "MODIFY", "diff": "---\n...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
feat(theme): add slide layout
1
feat
theme
276,934
21.06.2021 12:21:20
10,800
f19059720f290d1d2b78e3fd053d1b70514f7d18
feat(event card): update and create small version
[ { "change_type": "MODIFY", "diff": "@@ -160,6 +160,61 @@ const CardPage = () => {\n/>\n</ScrollView>\n+ <ScrollView horizontal style={{ height: 140 }}>\n+ <EventCard\n+ style={{ marginRight: 8, marginLeft: 8 }}\n+ date={{\n+ day: '19',\n+ dayOfWeek: 'thu',\n+ month: 'dez',\n+ }}\n+ small\n+ onPress={() => {...
JavaScript
MIT License
gympass/yoga
feat(event card): update and create small version
1
feat
event card
780,866
21.06.2021 12:30:45
10,800
e6b1ca5f470661bd02573b9e97a448013044473f
feat(components/product): new `maxVariationOptionsBtns` prop bypassed to `ProductVariations` child component
[ { "change_type": "MODIFY", "diff": "<product-variations\n:product=\"body\"\n:selected-id.sync=\"selectedVariationId\"\n+ :max-options-btns=\"maxVariationOptionsBtns\"\n@select-option=\"handleGridOption\"\n/>\n<a-alert :can-show=\"hasClickedBuy && !selectedVariationId\">\n", "new_path": "@ecomplus/storef...
JavaScript
MIT License
ecomplus/storefront
feat(components/product): new `maxVariationOptionsBtns` prop bypassed to `ProductVariations` child component
1
feat
components/product
780,866
21.06.2021 12:32:49
10,800
c667ae7ba2f2a57d86830848836e90d3db3e468f
feat(widget-product/cms): handle more `TheProduct` props from cms config add `lowQuantityToWarn` and `maxVariationOptionsBtns` to widget options fixes
[ { "change_type": "MODIFY", "diff": "@@ -32,6 +32,12 @@ export default (options = {}, elId = 'product') => {\nmounted = removeSpinner\n}\n+ const {\n+ buyText,\n+ lowQuantityToWarn,\n+ maxVariationOptionsBtns\n+ } = options\n+\nnew Vue({\nrender: h => h(TheProduct, {\nattrs: {\n@@ -40,7 +46,9 @@ export defau...
JavaScript
MIT License
ecomplus/storefront
feat(widget-product/cms): handle more `TheProduct` props from cms config (#315) add `lowQuantityToWarn` and `maxVariationOptionsBtns` to widget options fixes https://github.com/ecomplus/storefront/issues/315
1
feat
widget-product/cms
276,934
21.06.2021 12:33:12
10,800
c7185961c1b95b3373e9c5d32336179ced8a618e
feat(event card): fix web component
[ { "change_type": "MODIFY", "diff": "@@ -78,7 +78,7 @@ const DateInfo = styled.div`\nflex-shrink: 0;\nwidth: 56px;\n- background-color: ${event.date.backgroundColor};\n+ background-color: ${event.date.backgroundColor.active};\n`}\n`;\n", "new_path": "packages/yoga/src/Card/web/EventCard/EventCard.jsx", ...
JavaScript
MIT License
gympass/yoga
feat(event card): fix web component
1
feat
event card
791,682
21.06.2021 12:37:47
14,400
1ef36e8cc7ba9780adc23530b364da0fd96b529b
core(fr): add snapshot support to ImageElements gatherer
[ { "change_type": "MODIFY", "diff": "'use strict';\nconst ByteEfficiencyAudit = require('./byte-efficiency-audit.js');\n+const ImageRecords = require('../../computed/image-records.js');\nconst URL = require('../../lib/url-shim.js');\nconst i18n = require('../../lib/i18n/i18n.js');\n@@ -102,10 +103,14 @@ clas...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(fr): add snapshot support to ImageElements gatherer (#12663)
1
core
fr
104,825
21.06.2021 13:08:11
14,400
526575920dc5db23ae646ffe2e3f5d55942efc77
docs(list): improve documentation for angular list
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ export enum SelectionType {\nexport class AIListModel {\n/**\n- * This is used for the generation of unique ids.\n+ * This is used for the generation of unique list item ids.\n*/\nprotected static COUNT = 0;\n@@ -21,7 +21,6 @@ export class AIListModel {\n*...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
docs(list): improve documentation for angular list
1
docs
list
791,704
21.06.2021 13:08:31
25,200
dd50407b1ba4ac6ff1db01cc3ab60cd01457cb47
misc(scripts): error handling for pptr-run-devtools.js
[ { "change_type": "MODIFY", "diff": "@@ -136,7 +136,7 @@ async function testPage(browser, url) {\nawait page.close();\n- return JSON.stringify(remoteLhrResponse.result.value);\n+ return JSON.stringify(remoteLhrResponse.result.value, null, 2);\n}\n/**\n@@ -180,8 +180,12 @@ async function run() {\nconst urlLis...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(scripts): error handling for pptr-run-devtools.js (#12679)
1
misc
scripts
756,051
21.06.2021 13:16:55
18,000
3a6ddbb4b2ab1ab551888ad7e4ec86d32189caf0
fix(xsnap): don't risk NULL in gxSnapshotCallbacks We aren't really preserving snapshot compatibility across this change, since the bound callback got added to the middle of the list in xsSnapshot.c. So never mind holding a slot for `fx_Array_prototype_meter`.
[ { "change_type": "MODIFY", "diff": "@@ -83,15 +83,13 @@ static char* fxWriteNetStringError(int code);\n// The order of the callbacks materially affects how they are introduced to\n// code that runs from a snapshot, so must be consistent in the face of\n// upgrade.\n-#define mxSnapshotCallbackCount 6\n+#defi...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(xsnap): don't risk NULL in gxSnapshotCallbacks We aren't really preserving snapshot compatibility across this change, since the bound callback got added to the middle of the list in xsSnapshot.c. So never mind holding a slot for `fx_Array_prototype_meter`.
1
fix
xsnap
104,825
21.06.2021 13:17:48
14,400
a194eca628a7f2d0a122cad31acee6f85dd62f9c
refactor(list): format code
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import { AIListItem } from './list-item/ai-list-item.interface';\nexport enum SelectionType {\nSINGLE = 'single',\n- MULTI = 'multi'\n+ MULTI = 'multi',\n}\nexport class AIListModel {\n@@ -66,7 +66,7 @@ export class AIListModel {\nthis.getAdjustedNestingLe...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
refactor(list): format code
1
refactor
list
104,825
21.06.2021 13:31:47
14,400
f7d078fff49f0594d366e3540dd2c12a29aa9db1
fix(sortable-list): revert offset to original
[ { "change_type": "MODIFY", "diff": "@@ -16,7 +16,7 @@ import { Component, ElementRef, EventEmitter, Input, Output } from '@angular/cor\nclass=\"handle\"\nscDraggable\n[dragImage]=\"elementRef.nativeElement\"\n- [imageOffset]=\"{ x: 4, y: 40 }\"\n+ [imageOffset]=\"{ x: 4, y: 20 }\"\n(start)=\"!disabled ? dra...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(sortable-list): revert offset to original
1
fix
sortable-list
932,456
21.06.2021 14:00:06
-7,200
934ee73699f131bf9a72b5a60f78df7e12b78574
feat(husky): add support for Husky v6
[ { "change_type": "MODIFY", "diff": "@@ -71,6 +71,7 @@ export type CommitTaskDesc = {\nexport type CommitMsgTaskDesc = {\nname: 'commitmsg';\nconfig: string;\n+ edit?: string;\n} & TaskDesc;\nexport type ReleaseTaskDesc = {\n", "new_path": "packages/web-scripts/src/SharedTypes.ts", "old_path": "packa...
TypeScript
Apache License 2.0
spotify/web-scripts
feat(husky): add support for Husky v6
1
feat
husky
276,934
21.06.2021 14:33:40
10,800
050e8c7ef6537ed4af6e678851b74460e6c5eaa7
feat(event card): refactor to use yoga api
[ { "change_type": "MODIFY", "diff": "@@ -174,23 +174,9 @@ const Card = ({\ndayOfWeek: {\nfontWeight: fontWeights.regular,\nmarginBottom: spacing.xxsmall,\n- color: {\n- default: colors.deep,\n- active: colors.white,\n- },\n- },\n- day: {\n- color: {\n- default: colors.text.primary,\n- active: colors.white,\n...
JavaScript
MIT License
gympass/yoga
feat(event card): refactor to use yoga api
1
feat
event card
780,866
21.06.2021 14:58:48
10,800
162ec4adbf1e0ef0622e50771dc218e177b99f22
feat(components/price): add new `canShowPriceOptions` boolean prop
[ { "change_type": "MODIFY", "diff": "<div\nkey=\"installments\"\n- v-if=\"installmentsNumber > 1\"\n+ v-if=\"installmentsNumber > 1 && installmentValue\"\nclass=\"prices__installments\"\n>\n<small v-if=\"isLiteral\">\n", "new_path": "@ecomplus/storefront-components/src/html/APrices.html", "old_path":...
JavaScript
MIT License
ecomplus/storefront
feat(components/price): add new `canShowPriceOptions` boolean prop
1
feat
components/price
756,051
21.06.2021 14:59:43
18,000
95c52ab62f7be855d084b70626b67e8ca516714f
fix(xsnap): 1e7 was too small for crank meter limit ... as shown in solo tests
[ { "change_type": "MODIFY", "diff": "@@ -17,7 +17,7 @@ import * as netstring from './netstring.js';\nimport * as node from './node-stream.js';\n// This will need adjustment, but seems to be fine for a start.\n-export const DEFAULT_CRANK_METERING_LIMIT = 1e7;\n+export const DEFAULT_CRANK_METERING_LIMIT = 1e8;...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(xsnap): 1e7 was too small for crank meter limit ... as shown in solo tests
1
fix
xsnap
780,866
21.06.2021 15:00:21
10,800
75c8898b1ff5a3ac7eca678bc0aa479b0fd3d467
fix(app/order-summary): always use `APrices` for amount total bypass `canShowPriceOptions` prop
[ { "change_type": "MODIFY", "diff": "<div class=\"summary__amount__row summary__amount__row--total\">\n<span>{{ paidInAdvance ? i19toPay : i19total }}</span>\n<a-prices\n- v-if=\"canShowPriceOptions\"\n:product=\"{ price: amountToPay }\"\n:discount-option=\"{ value: amount.discount }\"\n:is-literal=\"true\"\...
JavaScript
MIT License
ecomplus/storefront
fix(app/order-summary): always use `APrices` for amount total bypass `canShowPriceOptions` prop
1
fix
app/order-summary
276,934
21.06.2021 15:16:16
10,800
234fbed11acf90b1fb5076b3b316fbace896d528
feat(event card): refactor to remove component theme
[ { "change_type": "MODIFY", "diff": "@@ -10,18 +10,14 @@ import Box from '../../../Box';\nconst Event = styled(Card)`\n${({\ntheme: {\n- yoga: {\n- components: {\n- card: { event },\n- },\n- },\n+ yoga: { radii },\n},\nsmall,\n}) => `\nflex-direction: row;\nwidth: ${small ? 56 : 280};\nheight: 104px;\n- bord...
JavaScript
MIT License
gympass/yoga
feat(event card): refactor to remove component theme
1
feat
event card
889,620
21.06.2021 15:17:26
-28,800
dc5ab0ca0828f612fd2e2ad2a36b908e119b6877
test: fix BookImporterTest.kt
[ { "change_type": "MODIFY", "diff": "@@ -89,7 +89,7 @@ class BookImporterTest(\n}\n// then\n- assertThat(thrown).isInstanceOf(FileNotFoundException::class.java)\n+ assertThat(thrown).hasCauseInstanceOf(FileNotFoundException::class.java)\n}\n@Test\n@@ -109,7 +109,7 @@ class BookImporterTest(\n}\n// then\n- as...
Kotlin
MIT License
gotson/komga
test: fix BookImporterTest.kt
1
test
null
889,620
21.06.2021 15:23:55
-28,800
65f5e5d1371ef380800edba3e7480a05d97c4cc0
docs: update shields in README.md
[ { "change_type": "MODIFY", "diff": "-[![Open Collective backers and sponsors](https://img.shields.io/opencollective/all/komga?label=OpenCollective%20Sponsors&color=success)](https://opencollective.com/komga) ![GitHub Sponsors](https://img.shields.io/github/sponsors/gotson?label=Github%20Sponsors&color=succe...
Kotlin
MIT License
gotson/komga
docs: update shields in README.md
1
docs
null
791,682
21.06.2021 15:30:13
14,400
adbe9363b9198353a596e0896f9e0c2b9e0db4c2
core(installable-manifest): align descriptions with applicatons panel
[ { "change_type": "MODIFY", "diff": "@@ -53,13 +53,13 @@ const UIStrings = {\n* @description Error message explaining that the manifest does not contain a suitable icon.\n* @example {192} value0\n*/\n- 'manifest-missing-suitable-icon': `Manifest does not contain a suitable icon - PNG, SVG or WebP format of a...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(installable-manifest): align descriptions with applicatons panel (#12678)
1
core
installable-manifest
847,143
21.06.2021 15:34:25
-28,800
025a4ba1880a24525090da9ce75354129989be2e
fix(theme): fix style issues
[ { "change_type": "MODIFY", "diff": "@@ -62,6 +62,8 @@ export default defineUserConfig<HopeThemeOptions>({\ndocsDir: \"demo/src\",\n+ darkmode: true,\n+\n// theme-level locales config\nlocales: {\n/**\n", "new_path": "demo/src/.vuepress/config.ts", "old_path": "demo/src/.vuepress/config.ts" }, { ...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(theme): fix style issues
1
fix
theme
276,934
21.06.2021 15:50:21
10,800
3539421431eba3f458b25fb6261b99441d7fb7b8
feat(event card): add link button
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,7 @@ import React from 'react';\nimport styled, { withTheme } from 'styled-components';\nimport { shape, string, bool, oneOfType } from 'prop-types';\nimport { Time } from '@gympass/yoga-icons';\n+import { TouchableWithoutFeedback } from 'react-native';\nimport...
JavaScript
MIT License
gympass/yoga
feat(event card): add link button
1
feat
event card
71,499
21.06.2021 15:51:17
-3,600
0fe236a14bbcaab70b1af7348ba6cf578fbb93cf
chore: clarify PR title and message in the contribution guide Previously, the format was focused on the commit message. Apply the same rules, instead, to the pull request title and message. *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": "@@ -15,9 +15,8 @@ let us know if it's not up-to-date (even better, submit a PR with your correcti\n- [Step 1: Find something to work on](#step-1-find-something-to-work-on)\n- [Step 2: Design (optional)](#step-2-design-optional)\n- [Step 3: Work your Magic](#step-3-work-yo...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: clarify PR title and message in the contribution guide (#15225) Previously, the format was focused on the commit message. Apply the same rules, instead, to the pull request title and message. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0...
1
chore
null
780,866
21.06.2021 16:00:39
10,800
f08d90760e21d842c75868fd175f021feba0e68b
feat(app/payment-methods): get default mocked payment gateways from `window.ecomPaymentGateways`
[ { "change_type": "MODIFY", "diff": "@@ -117,7 +117,7 @@ export default {\neditAccount: false,\neditShippingService: !this.shippingService,\nlocalZipCode: this.shippingZipCode,\n- paymentGateways: [],\n+ paymentGateways: window.ecomPaymentGateways || [],\nloyaltyPointsApplied: {},\nloyaltyPointsAmount: 0,\nh...
JavaScript
MIT License
ecomplus/storefront
feat(app/payment-methods): get default mocked payment gateways from `window.ecomPaymentGateways`
1
feat
app/payment-methods
667,713
21.06.2021 16:02:20
-28,800
5f133c3b568c2f12f39fd84b3ad5bd1b9c643c9d
refactor(android): should mkdirs before call runScriptFromUri
[ { "change_type": "MODIFY", "diff": "@@ -158,6 +158,15 @@ public class HippyBridgeImpl implements HippyBridge, DevRemoteDebugProxy.OnRecei\nif (!TextUtils.isEmpty(codeCacheTag) && !TextUtils.isEmpty(mCodeCacheRootDir)) {\nString codeCacheDir = mCodeCacheRootDir + codeCacheTag + File.separator;\n+ File codeCa...
C++
Apache License 2.0
tencent/hippy
refactor(android): should mkdirs before call runScriptFromUri
1
refactor
android
756,029
21.06.2021 16:04:55
25,200
f55982fccf211fba9625cd8015b5c06e9644ee60
feat(swingset-vat): Thread dev dependencies explicitly
[ { "change_type": "MODIFY", "diff": "@@ -70,7 +70,8 @@ function byName(a, b) {\n* 'bootstrap.js'.\n*\n* @param {string} basedir The directory to scan\n- *\n+ * @param {Object} [options]\n+ * @param {boolean} [options.dev] whether to include devDependencies\n* @returns {SwingSetConfig} a swingset config objec...
JavaScript
Apache License 2.0
agoric/agoric-sdk
feat(swingset-vat): Thread dev dependencies explicitly
1
feat
swingset-vat
711,664
21.06.2021 16:14:25
-7,200
391ee4bd66c38ecab9e7477ee0fd2d217853078c
docs: Correct settlePayment function return type
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,7 @@ This two-step workflow can also be applied to other non-card forms of payment: e\nPayment integrations are created by defining a new [PaymentMethodHandler]({{< relref \"payment-method-handler\" >}}) and passing that handler into the [`paymentOptions.paym...
TypeScript
MIT License
vendure-ecommerce/vendure
docs: Correct settlePayment function return type (#942)
1
docs
null
266,179
21.06.2021 16:28:42
0
b0eb8a8b30b46a3c98d23c23107acb748c6601a1
chore: add kokoro 3.9 config templates fixes
[ { "change_type": "ADD", "diff": "+# Format: //devtools/kokoro/config/proto/build.proto\n+\n+# Build logs will be here\n+action {\n+ define_artifacts {\n+ regex: \"**/*sponge_log.xml\"\n+ }\n+}\n+\n+# Specify which tests to run\n+env_vars: {\n+ key: \"RUN_TESTS_SESSION\"\n+ value: \"py-3.9\"\n+}\n+\n+# Decla...
Python
Apache License 2.0
googleapis/synthtool
chore: add kokoro 3.9 config templates (#1128) fixes #907
1
chore
null
889,620
21.06.2021 17:03:00
-28,800
b447101bccda6b4b31a80c048288346026e8292c
fix(webui): query param doesn't work with values containing comma closes
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ export function sortOrFilterActive (sortActive: SortActive, sortDefault: SortAct\nexport function mergeFilterParams (filter: FiltersActive, query: any) {\nfor (const f of Object.keys(filter)) {\n- if (filter[f].length !== 0) query[f] = `${filter[f]}`\n+ if...
Kotlin
MIT License
gotson/komga
fix(webui): query param doesn't work with values containing comma closes #557
1
fix
webui
780,866
21.06.2021 17:11:18
10,800
0260440aa4a89e630b281a75b79bc8ea152e71f2
perf(components/product-gallery): delay (dynamic) importing photoswipe on zoom click only
[ { "change_type": "MODIFY", "diff": "v-if=\"localPictures.length > 4\"\ntype=\"button\"\nclass=\"gallery__open btn btn-dark\"\n+ :style=\"zoomLinkStyle\"\n:title=\"i19openGallery\"\n@click.prevent=\"openZoom(4)\"\n>\n<a-picture\nv-if=\"!elFirstPicture\"\nclass=\"gallery__big-image\"\n+ :style=\"zoomLinkStyle...
JavaScript
MIT License
ecomplus/storefront
perf(components/product-gallery): delay (dynamic) importing photoswipe on zoom click only
1
perf
components/product-gallery
756,051
21.06.2021 17:25:43
18,000
3f739cef3ed5f659d57aeb4b9a520785b42f72c2
test(xsnap): update replay test for larger meteringLimit
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,7 @@ const io = { spawn: proc.spawn, os: os.type() }; // WARNING: ambient\nconst transcript1 = [\n[\n'/xsnap-tests/00000-options.json',\n- '{\"os\":\"Linux\",\"name\":\"xsnap test worker\",\"debug\":false,\"meteringLimit\":10000000}',\n+ '{\"os\":\"Linux\",\"...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test(xsnap): update replay test for larger meteringLimit
1
test
xsnap
756,051
21.06.2021 17:28:13
18,000
c69526d4ee35388b2300fc52689c82093f2198b3
docs(xsnap): cite instrumentation TODO by issue #
[ { "change_type": "MODIFY", "diff": "@@ -63,7 +63,7 @@ test('meter details', async t => {\n},\n'auxiliary (non-consensus) meters are available',\n);\n- // @ts-ignore extra meters not declared on RunResult (yet?)\n+ // @ts-ignore extra meters not declared on RunResult (TODO: #3139)\nt.true(meters.mapSetAddCou...
JavaScript
Apache License 2.0
agoric/agoric-sdk
docs(xsnap): cite instrumentation TODO by issue #
1
docs
xsnap
756,051
21.06.2021 17:30:47
18,000
e0a663459ab354fc5da29829ac0c0c3789a0ea4e
chore(xsnap): prune all reference to fxPatchHostFunction This experimental metering design was removed from the XS sources Jun 14 in .
[ { "change_type": "MODIFY", "diff": "@@ -46,13 +46,9 @@ static void fxCheckAliasesError(txMachine* the, txAliasIDList* list, txFlag flag\nstatic void fxCheckEnvironmentAliases(txMachine* the, txSlot* environment, txAliasIDList* list);\nstatic void fxCheckInstanceAliases(txMachine* the, txSlot* instance, txAl...
JavaScript
Apache License 2.0
agoric/agoric-sdk
chore(xsnap): prune all reference to fxPatchHostFunction This experimental metering design was removed from the XS sources Jun 14 in b594c62acaee .
1
chore
xsnap
780,866
21.06.2021 18:06:03
10,800
2ee52452315e02023b60b9f2c57c6c9ac8e07bef
chore(framework/webpack): fix corejs version to 3.15
[ { "change_type": "MODIFY", "diff": "@@ -169,7 +169,7 @@ let config = {\npresets: [\n['@babel/preset-env', {\nuseBuiltIns: 'usage',\n- corejs: '3.14',\n+ corejs: '3.15',\nmodules: false\n}]\n],\n", "new_path": "@ecomplus/storefront-framework/src/webpack.config.js", "old_path": "@ecomplus/storefront-f...
JavaScript
MIT License
ecomplus/storefront
chore(framework/webpack): fix corejs version to 3.15
1
chore
framework/webpack
815,593
21.06.2021 18:08:01
-32,400
bea2fa3e0fa7cbf33a0f27f31cdaf9df348995ac
chore: remove lru cache from SinceVerifier
[ { "change_type": "MODIFY", "diff": "@@ -15,8 +15,6 @@ use ckb_types::{\npacked::Byte32,\nprelude::*,\n};\n-use lru::LruCache;\n-use std::cell::RefCell;\nuse std::collections::HashSet;\n/// The time-related TX verification\n@@ -563,7 +561,6 @@ pub struct SinceVerifier<'a, DL> {\nconsensus: &'a Consensus,\nda...
Rust
MIT License
nervosnetwork/ckb
chore: remove lru cache from SinceVerifier
1
chore
null
780,866
21.06.2021 18:12:39
10,800
4c14924ead53b78ee9f45acb451f9df159a9e2ac
chore(deps): fix core-js version range
[ { "change_type": "MODIFY", "diff": "\"babel-loader\": \"^8.2.2\",\n\"clean-webpack-plugin\": \"^3.0.0\",\n\"copy-webpack-plugin\": \"^6.4.1\",\n- \"core-js\": \">=3.13.1 <3.16\",\n+ \"core-js\": \">=3.15.0 <3.16\",\n\"css-loader\": \"^3.6.0\",\n\"cssnano\": \"^4.1.11\",\n\"ejs\": \"^3.1.6\",\n", "new_pa...
JavaScript
MIT License
ecomplus/storefront
chore(deps): fix core-js version range
1
chore
deps
217,922
21.06.2021 19:10:17
-7,200
c5a3851cd8bd4599608fa7cb60a2f8e16def79c3
perf(lists): lowering RAM usage over time by removing some runtime cache
[ { "change_type": "MODIFY", "diff": "@@ -74,8 +74,6 @@ export class ListRow extends DataModel {\nfinalItem?: boolean;\n}\n-const cache = {};\n-\nexport function getItemSource<T = any>(item: ListRow, type: DataType.CRAFTED_BY, isObject?: boolean): CraftedBy[]\nexport function getItemSource<T = any>(item: List...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
perf(lists): lowering RAM usage over time by removing some runtime cache
1
perf
lists
129,350
21.06.2021 19:15:06
-7,200
00f81d3bc4fc53982898af7bac9e176b648cce18
fix: add support for jinja2 v3 Closes
[ { "change_type": "MODIFY", "diff": "@@ -51,7 +51,7 @@ colorama = \"^0.4.1\"\ntermcolor = \"^1.1\"\npackaging = \">=19,<21\"\ntomlkit = \">=0.5.3,<1.0.0\"\n-jinja2 = \"^2.10.3\"\n+jinja2 = \">=2.10.3\"\npyyaml = \">=3.08\"\nargcomplete = \"^1.12.1\"\n@@ -71,6 +71,7 @@ freezegun = \"^0.3.15\"\npydocstyle = \"...
Python
MIT License
commitizen-tools/commitizen
fix: add support for jinja2 v3 Closes #391
1
fix
null
756,064
21.06.2021 19:20:44
25,200
d77c5fe3104e8b5d477309b14bd34dd1da4b4fa6
chore(spawner): stop using install-metering-and-ses refs
[ { "change_type": "MODIFY", "diff": "\"devDependencies\": {\n\"@agoric/babel-standalone\": \"^7.14.3\",\n\"@agoric/bundle-source\": \"^1.3.9\",\n- \"@agoric/install-metering-and-ses\": \"^0.2.15\",\n\"@agoric/install-ses\": \"^0.5.15\",\n\"@agoric/swingset-vat\": \"^0.18.0\",\n\"ava\": \"^3.12.1\",\n", "...
JavaScript
Apache License 2.0
agoric/agoric-sdk
chore(spawner): stop using install-metering-and-ses refs #3373
1
chore
spawner
756,064
21.06.2021 19:21:12
25,200
8c66401e2aa8c8ed6c7ad65331a7907aae0cb98e
chore(zoe): stop using install-metering-and-ses The tests that actually need to exercise metering now use `xs-worker` instead of enabling global metering. This speeds those tests up by 4x-6x. refs
[ { "change_type": "MODIFY", "diff": "},\n\"devDependencies\": {\n\"@agoric/babel-standalone\": \"^7.14.3\",\n- \"@agoric/install-metering-and-ses\": \"^0.2.15\",\n\"@agoric/install-ses\": \"^0.5.15\",\n\"ava\": \"^3.12.1\",\n\"esm\": \"agoric-labs/esm#Agoric-built\",\n", "new_path": "packages/zoe/package...
JavaScript
Apache License 2.0
agoric/agoric-sdk
chore(zoe): stop using install-metering-and-ses The tests that actually need to exercise metering now use `xs-worker` instead of enabling global metering. This speeds those tests up by 4x-6x. refs #3373
1
chore
zoe
756,064
21.06.2021 19:21:58
25,200
b21fb615016386edd206dfbe8f364cf42398b4d4
fix(solo): stop using install-metering-and-ses All metered vats should now be using xsnap, so we no longer need to meter 'local' vats, and can remove the performance-costly global metering wrapper. refs
[ { "change_type": "MODIFY", "diff": "\"@agoric/dapp-svelte-wallet\": \"^0.10.4\",\n\"@agoric/eventual-send\": \"^0.13.16\",\n\"@agoric/import-bundle\": \"^0.2.16\",\n- \"@agoric/install-metering-and-ses\": \"^0.2.15\",\n+ \"@agoric/install-ses\": \"^0.5.15\",\n\"@agoric/marshal\": \"^0.4.13\",\n\"@agoric/not...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(solo): stop using install-metering-and-ses All metered vats should now be using xsnap, so we no longer need to meter 'local' vats, and can remove the performance-costly global metering wrapper. refs #3373
1
fix
solo
756,064
21.06.2021 19:23:14
25,200
331700772a3c679643f5cd66a2b9d17b40b4ec1e
fix(cosmic-swingset): stop using install-metering-and-ses All metered vats should now be using xsnap, so we no longer need to meter 'local' vats, and can remove the performance-costly global metering wrapper. refs
[ { "change_type": "MODIFY", "diff": "\"@agoric/cosmos\": \"^0.26.4\",\n\"@agoric/dapp-svelte-wallet\": \"^0.10.4\",\n\"@agoric/import-bundle\": \"^0.2.16\",\n- \"@agoric/install-metering-and-ses\": \"^0.2.15\",\n+ \"@agoric/install-ses\": \"^0.5.15\",\n\"@agoric/store\": \"^0.4.16\",\n\"@agoric/swing-store-l...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(cosmic-swingset): stop using install-metering-and-ses All metered vats should now be using xsnap, so we no longer need to meter 'local' vats, and can remove the performance-costly global metering wrapper. refs #3373
1
fix
cosmic-swingset
780,866
21.06.2021 19:24:27
10,800
fe230a7d235c722952cfe882c5efd39fa6c30567
fix(components/product): fix rendering product prices when variation selected prevent 'as of $' when price is set properlly mock `ghostProductForPrices` for child `APrices` [skip ci]
[ { "change_type": "MODIFY", "diff": "<slot name=\"prices\">\n<p class=\"product__prices\">\n<a-prices\n- :product=\"{ ...body, ...selectedVariation, ...finalPrices }\"\n+ :product=\"ghostProductForPrices\"\n:is-literal=\"true\"\n:is-big=\"true\"\n@fix-price=\"price => fixedPrice = price\"\n", "new_path":...
JavaScript
MIT License
ecomplus/storefront
fix(components/product): fix rendering product prices when variation selected prevent 'as of $' when price is set properlly mock `ghostProductForPrices` for child `APrices` [skip ci]
1
fix
components/product
780,866
21.06.2021 19:29:27
10,800
49af58521909297401951bd53b6a65339091efcf
fix(components/product): remove `v-once` to make payment options properly reactive with price was not working to force reload with new state :confused: [skip ci]
[ { "change_type": "MODIFY", "diff": "v-bind=\"{ paymentOptions }\"\nv-if=\"!isQuickview && paymentOptions.length\"\n>\n- <article :key=\"`payment-${fixedPrice}`\">\n- <div\n- v-once\n- class=\"product__payment card mb-3\"\n- >\n+ <article>\n+ <div class=\"product__payment card mb-3\">\n<a\nid=\"product-payme...
JavaScript
MIT License
ecomplus/storefront
fix(components/product): remove `v-once` to make payment options properly reactive with price was not working to force reload with new state :confused: [skip ci]
1
fix
components/product
551,643
21.06.2021 19:50:56
-7,200
48d0a80ba2ad860409f3b74ff2f480e8691e9e33
chore: add discussions, milestones to README
[ { "change_type": "MODIFY", "diff": "@@ -101,14 +101,16 @@ The following table shows query execution time of a billion rows run on a\nhow to run and configure QuestDB with technical references.\n- [Our Slack workspace](https://slack.questdb.io) is a great place for technical\ndiscussions and to meet other us...
Java
Apache License 2.0
questdb/questdb
chore: add discussions, milestones to README (#1138)
1
chore
null
815,598
21.06.2021 20:20:11
-28,800
aafdebdb5b14ed5e317a8d20f90116c4d21626b1
ci: GitHub Actions already sets CI
[ { "change_type": "MODIFY", "diff": "@@ -32,14 +32,11 @@ jobs:\nscript_run: make test\n- os: win-runner\nscript_run: devtools/windows/make test\n- CI: true\nneeds: Security_Audit_Licenses\nsteps:\n- uses: actions/checkout@v2\n- name: UnitTest\nrun: ${{ matrix.script_run }}\n- env:\n- CI: ${{ matrix.CI }}\nIn...
Rust
MIT License
nervosnetwork/ckb
ci: GitHub Actions already sets CI
1
ci
null
815,598
21.06.2021 20:33:03
-28,800
16586b7eb9ae830cea5570653cbbc8547f4faeb4
ci: remove travis and azure
[ { "change_type": "DELETE", "diff": "-language: rust\n-rust: 1.51.0\n-dist: xenial\n-sudo: true\n-cache:\n- directories:\n- - $HOME/.cargo\n- timeout: 1024\n-\n-git:\n- depth: 2\n- submodules: false\n-\n-env:\n- global:\n- - RUST_BACKTRACE=full\n- - CKB_CLI_VERSION=v0.42.1\n-\n-addons:\n- apt:\n- sources:\n-...
Rust
MIT License
nervosnetwork/ckb
ci: remove travis and azure
1
ci
null