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
386,581
01.10.2021 12:56:48
-7,200
8899e6f642181d9345c33edbab09c74d3580a2e0
fix(blocksBasic): Remove Context block tests.
[ { "change_type": "DELETE", "diff": "-- id: default\n- type: Context\n-- id: properties.content\n- type: Context\n- properties:\n- content: Foo\n-- id: properties.style\n- type: Context\n- properties:\n- style:\n- border: '1px solid blue'\n-- id: areas.content\n- type: Context\n- areas:\n- content:\n- blocks...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(blocksBasic): Remove Context block tests.
1
fix
blocksBasic
386,581
01.10.2021 13:06:31
-7,200
67141dd2c1f86b98cca4cdacced3aad2d01e4a77
fix(graphql): Fix graphql tests fro removed contextId.
[ { "change_type": "MODIFY", "diff": "@@ -81,7 +81,6 @@ const loaders = {\nconst context = testBootstrapContext({ loaders, getSecrets });\nconst defaultInput = {\n- blockId: 'contextId',\npageId: 'pageId',\npayload: {},\nrequestId: 'requestId',\n@@ -101,10 +100,10 @@ const defaultLoadConnectionImp = (id) => {...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(graphql): Fix graphql tests fro removed contextId.
1
fix
graphql
306,653
01.10.2021 13:59:26
-19,080
718a1a370c91a82536cf7ef005a946b7045a0a56
fix(table): fixes the arrow icon in case of sorting the table column
[ { "change_type": "MODIFY", "diff": "@@ -58,8 +58,8 @@ const HeaderCell = (props: HeaderCellProps) => {\nconst el = React.createRef<HTMLDivElement>();\nconst sortOptions: DropdownProps['options'] = [\n- { label: 'Sort Ascending', value: 'sortAsc', icon: 'arrow_downward' },\n- { label: 'Sort Descending', valu...
TypeScript
MIT License
innovaccer/design-system
fix(table): fixes the arrow icon in case of sorting the table column
1
fix
table
877,026
01.10.2021 14:52:03
-7,200
cf54633e0b0ed503037860f6f1d456c413cf9874
fix(storybook): fix deprecated content
[ { "change_type": "MODIFY", "diff": "-import {\n- Meta,\n- ColorPalette,\n- ColorItem,\n- Source,\n-} from '@storybook/addon-docs/blocks';\n+import { Meta, ColorPalette, ColorItem, Source } from '@storybook/addon-docs';\nimport tailwindConfig from '@vtmn/css-tailwind-config';\n<Meta title=\"Guidelines / Colo...
JavaScript
Apache License 2.0
decathlon/vitamin-web
fix(storybook): fix deprecated content (#639) Co-authored-by: Gaspard MATHON <gaspard.mathon@decathlon.com>
1
fix
storybook
71,101
01.10.2021 14:54:12
-7,200
ceab036fa9dfcd13c58c7d818339cd05ed515bec
fix: CDK does not honor NO_PROXY settings CDK was extracting the value of `HTTPS?_PROXY` and passing this to `proxy-agent` explicitly, which resulted in not honoring the `NO_PROXY` setting. This removes that behavior and lets `proxy-agent` delegate to `proxy-from-env`, which will leverage values in `HTTPS?_PROXY` and N...
[ { "change_type": "MODIFY", "diff": "@@ -39,15 +39,13 @@ export abstract class ResourceHandler {\nRoleSessionName: `AWSCDK.EKSCluster.${this.requestType}.${this.requestId}`,\n});\n- const proxyAddress = this.httpProxyFromEnvironment();\n- if (proxyAddress) {\n- this.log(`Using proxy server: ${proxyAddress}`)...
TypeScript
Apache License 2.0
aws/aws-cdk
fix: CDK does not honor NO_PROXY settings (#16751) CDK was extracting the value of `HTTPS?_PROXY` and passing this to `proxy-agent` explicitly, which resulted in not honoring the `NO_PROXY` setting. This removes that behavior and lets `proxy-agent` delegate to `proxy-from-env`, which will leverage values in `HTT...
1
fix
null
386,581
01.10.2021 16:33:42
-7,200
09d63cfdcc17a9b031a2572b6bf053bfdf0cb0eb
feat(render): Remove support for nested contexts on a page. Closes BREAKING CHANGE: Multple contexts on a page are no longer supported. Context category blocks no longer exist, and the first block on a bage no longer needs to be of category context.
[ { "change_type": "RENAME", "diff": "import React, { useEffect, useState } from 'react';\nimport getContext from '@lowdefy/engine';\n-import MountEvents from './MountEvents';\n-import LoadingBlock from './LoadingBlock';\n+import MountEvents from './block/MountEvents';\n+import LoadingBlock from './block/Load...
JavaScript
Apache License 2.0
lowdefy/lowdefy
feat(render): Remove support for nested contexts on a page. Closes #884 BREAKING CHANGE: Multple contexts on a page are no longer supported. Context category blocks no longer exist, and the first block on a bage no longer needs to be of category context.
1
feat
render
866,394
01.10.2021 16:55:52
14,400
7bedb528ee86794734cde33658d13e725aebcb14
test(cypress): bumping timeout configuration for web components e2e ### Related Ticket(s) No related issue ### Description When enabling web components e2e tests, the CI seems to need additional time to run some tests, so this will bump up the timeout to accommodate. ### Changelog **Changed** `cypress.json` config for ...
[ { "change_type": "MODIFY", "diff": "\"nodeVersion\": \"system\",\n\"includeShadowDom\": true,\n\"testFiles\": \"**/*.e2e.js\",\n- \"pageLoadTimeout\": 20000,\n- \"defaultCommandTimeout\": 20000\n+ \"pageLoadTimeout\": 30000,\n+ \"defaultCommandTimeout\": 30000\n}\n", "new_path": "packages/web-components...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
test(cypress): bumping timeout configuration for web components e2e (#7307) ### Related Ticket(s) No related issue ### Description When enabling web components e2e tests, the CI seems to need additional time to run some tests, so this will bump up the timeout to accommodate. ### Changelog **Changed** ...
1
test
cypress
699,189
01.10.2021 17:10:17
18,000
52779450c531d21d1da2413c37c0374580d5a062
feat(utils): add package
[ { "change_type": "ADD", "diff": "+---\n+'@twilio-paste/core': minor\n+'@twilio-paste/utils': minor\n+---\n+\n+Added a new Paste package: @twilio-paste/utils. This package contains utilities such as React hooks that are used within or alongside Paste components.\n", "new_path": ".changeset/warm-clouds-ya...
TypeScript
MIT License
twilio-labs/paste
feat(utils): add @twilio-paste/utils package
1
feat
utils
699,189
01.10.2021 17:24:55
18,000
da38673e0726010eecaafc4762e927180ab3e120
chore(types): adding typings for 2 lodash packages
[ { "change_type": "ADD", "diff": "+---\n+'@twilio-paste/core': patch\n+'@twilio-paste/types': patch\n+---\n+\n+Adding lodash.debounce and lodash.iselement typings to @twilio-paste/types\n", "new_path": ".changeset/thick-bobcats-ring.md", "old_path": null }, { "change_type": "MODIFY", "dif...
TypeScript
MIT License
twilio-labs/paste
chore(types): adding typings for 2 lodash packages
1
chore
types
401,106
01.10.2021 17:25:19
-19,080
56a6101fdffb9b1d22a0e34d153b3c6bf8134e5b
refactor(markdown): extract out tomorrow prism theme affects:
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport { CodeComponent } from 'react-markdown/lib/ast-to-react';\nimport { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';\n-import { tomorrow } from 'react-syntax-highlighter/dist/cjs/styles/prism';\n+import tomorrow from './tomo...
TypeScript
MIT License
medly/medly-components
refactor(markdown): extract out tomorrow prism theme (#473) affects: @medly-components/markdown
1
refactor
markdown
699,189
01.10.2021 17:26:22
18,000
bec21fa0e7d247202994d962d504ef1bb32f22e4
feat(design-tokens): added shadow-focus-inset token
[ { "change_type": "ADD", "diff": "+---\n+'@twilio-paste/core': minor\n+'@twilio-paste/design-tokens': minor\n+---\n+\n+Added 'shadow-focus-inset', a box-shadow token representing an inset focus outline.\n", "new_path": ".changeset/cool-yaks-rule.md", "old_path": null }, { "change_type": "MODI...
TypeScript
MIT License
twilio-labs/paste
feat(design-tokens): added shadow-focus-inset token
1
feat
design-tokens
699,189
01.10.2021 17:26:58
18,000
ca2a8669b9d9ea57ccc5c39e234e13a9dc59ab5b
chore(table): improve typing on Th
[ { "change_type": "ADD", "diff": "+---\n+'@twilio-paste/core': patch\n+'@twilio-paste/table': patch\n+---\n+\n+Replaced deprecated 'HTMLTableHeaderCellElement' typing for 'HTMLTableCellElement' in Th component.\n", "new_path": ".changeset/many-boxes-flow.md", "old_path": null }, { "change_typ...
TypeScript
MIT License
twilio-labs/paste
chore(table): improve typing on Th
1
chore
table
73,343
01.10.2021 17:27:10
25,200
c8d0c1d028e8fbe6f012f7547e6cf2a2c0d73144
chore: set response-requested length to 2 and closing-soon to 5 By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license]. [Apache 2.0 license]:
[ { "change_type": "MODIFY", "diff": "@@ -32,8 +32,8 @@ jobs:\nclosed-for-staleness-label: closed-for-staleness\n# Issue timing\n- days-before-stale: 7\n- days-before-close: 4\n+ days-before-stale: 2\n+ days-before-close: 5\ndays-before-ancient: 730\n# If you don't want to mark a issue as being ancient based ...
TypeScript
Apache License 2.0
aws/jsii
chore: set response-requested length to 2 and closing-soon to 5 (#3014) --- By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license]. [Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
1
chore
null
699,189
01.10.2021 17:27:34
18,000
7edfbcfb54ff9bedcaa1a3439461dd1a96665e07
chore(skeleton-loader): minor perf improvement
[ { "change_type": "ADD", "diff": "+---\n+'@twilio-paste/core': patch\n+'@twilio-paste/skeleton-loader': patch\n+---\n+\n+Minor performance improvement to the animation code.\n", "new_path": ".changeset/flat-forks-end.md", "old_path": null }, { "change_type": "MODIFY", "diff": "@@ -13,6 +1...
TypeScript
MIT License
twilio-labs/paste
chore(skeleton-loader): minor perf improvement
1
chore
skeleton-loader
699,189
01.10.2021 17:28:05
18,000
28f122360e1e474b60b44837fe427d0f05f55c88
chore(inline-control-group): fix responsive fieldset browser bug
[ { "change_type": "ADD", "diff": "+---\n+'@twilio-paste/core': patch\n+'@twilio-paste/inline-control-group': patch\n+---\n+\n+Fixes a browser quirk around responsive 'fieldset' HTML elements.\n", "new_path": ".changeset/thick-seahorses-try.md", "old_path": null }, { "change_type": "MODIFY", ...
TypeScript
MIT License
twilio-labs/paste
chore(inline-control-group): fix responsive fieldset browser bug
1
chore
inline-control-group
366,946
01.10.2021 18:05:27
-32,400
4e1455942dd01dec91e7a975f07af918a552232e
fix: fix flex shorthand for IE
[ { "change_type": "MODIFY", "diff": "@@ -93,7 +93,7 @@ const Wrapper = styled.div<{ themes: Theme; disabled?: boolean }>`\nconst ItemLabel = styled.div<{ enableEllipsis?: boolean; themes: Theme }>`\n${({ enableEllipsis, themes: { border, spacingByChar } }) => {\nreturn css`\n- flex: 1;\n+ flex: 1 1 0;\npaddi...
TypeScript
MIT License
kufu/smarthr-ui
fix: fix flex shorthand for IE (#1932)
1
fix
null
438,921
01.10.2021 18:57:50
-32,400
f1dcb278f5fdee4d2e36cfda48b62c44e545fec1
fix(zoom): Fix error throw on drag zoom interaction Check event source prop value by optional chaining, to not throw unexpected error. Fix
[ { "change_type": "MODIFY", "diff": "@@ -210,7 +210,7 @@ export default {\nif (startEvent?.type.indexOf(\"touch\") > -1) {\nstartEvent = startEvent.changedTouches[0];\n- e = e.changedTouches[0];\n+ e = e?.changedTouches?.[0];\n}\n// if click, do nothing. otherwise, click interaction will be canceled.\n", ...
TypeScript
MIT License
naver/billboard.js
fix(zoom): Fix error throw on drag zoom interaction Check event source prop value by optional chaining, to not throw unexpected error. Fix #2343
1
fix
zoom
217,922
01.10.2021 19:33:11
-7,200
f731269f5cd9bb66ed9890ee93c8b7ad9ec917c8
docs(core): updated CONTRIBUTING.md closes
[ { "change_type": "MODIFY", "diff": "+# How to contribute\n+\n+## Summary\n+* [Prepare your environment](#prepare-your-environment)\n+* [Live Development Server](#live-development-server)\n+- [Contributing](#contributing)\n+ * [Branch names](#branch-names)\n+ * [Commit Messages](#commit-messages)\n+- [The de...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
docs(core): updated CONTRIBUTING.md closes #1978
1
docs
core
915,082
01.10.2021 21:03:49
-7,200
8d0e5e65dddae4f510448c136be91c28e2d091e0
fix: add content-type header to hook request
[ { "change_type": "MODIFY", "diff": "@@ -81,6 +81,7 @@ func RefreshTokenHook(config *config.Provider) AccessRequestHook {\nWithDebug(\"refresh token hook: new http request\"),\n)\n}\n+ req.Header.Set(\"Content-Type\", \"application/json; charset=UTF-8\")\nresp, err := client.Do(req)\nif err != nil {\n", ...
Go
Apache License 2.0
ory/hydra
fix: add content-type header to hook request (#2775)
1
fix
null
756,013
01.10.2021 21:46:32
21,600
d8b8b41268cefd8a1a6c5c79247fda40c5b87999
build(deps): upgrade eslint-plugin-jsdoc
[ { "change_type": "MODIFY", "diff": "\"eslint-config-airbnb-base\": \"^14.2.0\",\n\"eslint-config-prettier\": \"^6.15.0\",\n\"eslint-plugin-import\": \"^2.22.0\",\n- \"eslint-plugin-jsdoc\": \"^30.7.0\",\n+ \"eslint-plugin-jsdoc\": \"^36.1.0\",\n\"eslint-plugin-jsx-a11y\": \"^6.4.0\",\n\"eslint-plugin-pretti...
JavaScript
Apache License 2.0
agoric/agoric-sdk
build(deps): upgrade eslint-plugin-jsdoc
1
build
deps
756,013
01.10.2021 21:46:52
21,600
91fd093bf95f80e19cde520c920b89c50dbf9782
fix(eslint-config): adapt new JSDoc rules
[ { "change_type": "MODIFY", "diff": "\"@endo\",\n\"plugin:@jessie.js/recommended\"\n],\n+ \"rules\": {\n+ \"jsdoc/no-multi-asterisks\": \"off\",\n+ \"jsdoc/multiline-blocks\": \"off\",\n+ // Use these rules to warn about JSDoc type problems, such as after\n+ // upgrading eslint-plugin-jsdoc.\n+ // Bump the 1...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(eslint-config): adapt new JSDoc rules
1
fix
eslint-config
756,013
01.10.2021 22:42:06
21,600
eec31203c07a307b8673612d1b1b0b4bb721cce4
test(SwingSet): update golden snapshot hashes
[ { "change_type": "MODIFY", "diff": "@@ -173,7 +173,7 @@ test('XS + SES snapshots are long-term deterministic', async t => {\nconst h3 = await store.save(vat.snapshot);\nt.is(\nh3,\n- '834f6333c6c51aec41cb9aa8e8665c04a868c7c57ff0a356a0b72d82eeca578b',\n+ '125612bce84c13e18dafc7805d7041094ea4251d62de57590aa6c...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test(SwingSet): update golden snapshot hashes
1
test
SwingSet
96,876
02.10.2021 00:33:24
-19,080
7e8b638e87d495f0bb88d2c6703808cfe5f1918c
fix(zeebe): timer events documentation links Closes Related to
[ { "change_type": "MODIFY", "diff": "@@ -344,7 +344,7 @@ function getTimerEventDefinitionValueDescription(timerDefinitionType, translate)\n<li><code>2019-10-01T12:00:00Z</code> - { translate('UTC time') }</li>\n<li><code>2019-10-02T08:09:40+02:00</code> - { translate('UTC plus 2 hours zone offset') }</li>\n<...
JavaScript
MIT License
bpmn-io/bpmn-js-properties-panel
fix(zeebe): timer events documentation links Closes #123 Related to https://github.com/camunda/camunda-modeler/issues/2413
1
fix
zeebe
877,017
02.10.2021 00:54:52
-7,200
1a45fcefa864b7f735b4a8be737b7551ccf8dfa4
fix(@vtmn/svelte): add on:click on VtmnButton to handle click events
[ { "change_type": "MODIFY", "diff": ");\n</script>\n-<button type=\"button\" class={componentClass} {...$$restProps}>\n+<button on:click type=\"button\" class={componentClass} {...$$restProps}>\n{#if !iconAlone && iconLeft}\n<span class={`vtmx-${iconLeft}`} />\n{/if}\n", "new_path": "packages/sources/sve...
JavaScript
Apache License 2.0
decathlon/vitamin-web
fix(@vtmn/svelte): add on:click on VtmnButton to handle click events (#636)
1
fix
@vtmn/svelte
877,015
02.10.2021 02:18:27
-7,200
07f876afb7850f85ff01aac79f01ea24ccaf1916
docs(@vtmn/css): add use case for checkbox
[ { "change_type": "MODIFY", "diff": "<label for=\"choice4\">Football</label>\n</div>\n</div>\n+<div class=\"block\">\n+ <div>\n+ <input\n+ class=\"vtmn-checkbox\"\n+ type=\"checkbox\"\n+ id=\"accept-terms-and-conditions\"\n+ />\n+ <label for=\"accept-terms-and-conditions\">\n+ <span\n+ >I accept the\n+ <a hr...
JavaScript
Apache License 2.0
decathlon/vitamin-web
docs(@vtmn/css): add use case for checkbox
1
docs
@vtmn/css
877,015
02.10.2021 03:54:54
-7,200
fb18548e2b802f1033bfd28859d9e219846fcdb9
chore: upgrade typescript dependency
[ { "change_type": "MODIFY", "diff": "\"prettier-plugin-svelte\": \"^2.4.0\",\n\"shx\": \"^0.3.3\",\n\"sort-package-json\": \"^1.52.0\",\n- \"typescript\": \"4.2.4\"\n+ \"typescript\": \"4.4.3\"\n},\n\"engines\": {\n\"node\": \"^12 || ^14\",\n", "new_path": "package.json", "old_path": "package.json" ...
JavaScript
Apache License 2.0
decathlon/vitamin-web
chore: upgrade typescript dependency
1
chore
null
791,942
02.10.2021 08:15:17
-28,800
81cfde3ed2a081a7d8c139f4ee4c7fdfd3e21398
docs: correct the Node.js version base
[ { "change_type": "MODIFY", "diff": "\"smokehouse\": \"./lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js\"\n},\n\"engines\": {\n- \"node\": \">=12.13.0\"\n+ \"node\": \">=12.20.0 && 12.* || >=14.13 && 14.* || >=15\"\n},\n\"scripts\": {\n\"build-all\": \"npm-run-posix-or-windows build-all:task\",\n...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs: correct the Node.js version base (#13099)
1
docs
null
217,922
02.10.2021 11:47:06
-7,200
6c564d63bec6767ddb4b79a3b2b98a83043522a0
fix(db): fixed a bug with fishing spot bite times chart and baits with few data points
[ { "change_type": "MODIFY", "diff": "@@ -70,7 +70,7 @@ export class AppComponent implements OnInit {\npublic newFeatureName = 'allagan-reports';\n- public showNewFeatureBanner = localStorage.getItem(`new-feature:${name}`) !== 'true';\n+ public showNewFeatureBanner = localStorage.getItem(`new-feature:${this.n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): fixed a bug with fishing spot bite times chart and baits with few data points
1
fix
db
217,922
02.10.2021 12:00:04
-7,200
d43a0f7c0317f208a9d2a7f54ba2d43d7a60ff0a
feat(db): added # of records for hookset and tug display in fish details
[ { "change_type": "MODIFY", "diff": "<div>\n<div>{{ row.hookset | actionName | i18n }}</div>\n<div>{{ row.percent | number: '1.0-1' }}%</div>\n+ <div>({{ row.amount | number: '1.0-1' }})</div>\n</div>\n</div>\n</div>\n<div fxLayout=\"row\" fxLayoutGap=\"10px\" fxLayoutAlign=\"space-between center\" *ngFor=\"...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(db): added # of records for hookset and tug display in fish details
1
feat
db
217,922
02.10.2021 13:28:17
-7,200
0d45857b30182374abc95090da3dca8f0c97f920
chore: minGathering field in fishing allagan reports
[ { "change_type": "MODIFY", "diff": "</ng-container>\n</ng-template>\n</nz-form-control>\n+ </nz-form-item> <nz-form-item>\n+ <nz-form-label [nzSpan]=\"3\">{{'DB.FISH.Min_gathering' | translate}}</nz-form-label>\n+ <nz-form-control [nzSpan]=\"10\" [nzExtra]=\"gubalAnalysisMinGathering\">\n+ <nz-input-number ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: minGathering field in fishing allagan reports
1
chore
null
217,922
02.10.2021 14:08:40
-7,200
6766621b40a87bedd8747860a049cc6cceed3c49
chore: build hotfix
[ { "change_type": "MODIFY", "diff": "@@ -28,6 +28,7 @@ export interface GatheringNode {\nsnagging?: boolean;\ngig?: 'Small' | 'Normal' | 'Large';\ntug?: number;\n+ oceanFishingTime?: number;\n/**\n* Search stuff\n", "new_path": "apps/client/src/app/core/data/model/gathering-node.ts", "old_path": "app...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: build hotfix
1
chore
null
438,921
02.10.2021 14:43:18
-32,400
56a7457a706feace58db73a1d2719e4cb0463665
chore(build): upgrade node version for nightly build Upgrade Node 12 -> 14, to use latest ECMAScript spec
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,7 @@ jobs:\n- name: Setup Node.js\nuses: actions/setup-node@v1\nwith:\n- node-version: 12\n+ node-version: 14\n- name: Install dependencies\nrun: |\n", "new_path": ".github/workflows/nightly-build.yml", "old_path": ".github/workflows/nightly-build.yml...
TypeScript
MIT License
naver/billboard.js
chore(build): upgrade node version for nightly build Upgrade Node 12 -> 14, to use latest ECMAScript spec
1
chore
build
471,509
02.10.2021 17:04:26
14,400
5cc7b56a378338a823de0219a2c2f39f450dd185
fix(testing-helpers): correct type error for getScopedElementsTemplate
[ { "change_type": "MODIFY", "diff": "@@ -32,7 +32,7 @@ const isUsefulNode = ({ nodeType, textContent }) => {\n* @template {Element} T - Is an element or a node\n* @param {LitHTMLRenderable} template\n* @param {import('./fixture-no-side-effect.js').FixtureOptions} [options]\n- * @param {import('./scopedElemen...
JavaScript
MIT License
open-wc/open-wc
fix(testing-helpers): correct type error for getScopedElementsTemplate
1
fix
testing-helpers
269,418
02.10.2021 17:46:27
-7,200
20e14dd20408eaca6902be75df8b732d9d7a3ca8
feat: add template support for homebrew tap owner
[ { "change_type": "MODIFY", "diff": "@@ -182,6 +182,12 @@ func doRun(ctx *context.Context, brew config.Homebrew, cl client.Client) error {\n}\nbrew.Name = name\n+ tapOwner, err := tmpl.New(ctx).Apply(brew.Tap.Owner)\n+ if err != nil {\n+ return err\n+ }\n+ brew.Tap.Owner = tapOwner\n+\ncontent, err := buildF...
Go
MIT License
goreleaser/goreleaser
feat: add template support for homebrew tap owner (#2544)
1
feat
null
471,475
02.10.2021 19:17:07
-3,600
9d275bd3a489d29325ca9f1ea5f887ffb4c1cb08
docs: update broken link to main testing page
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,7 @@ npm i -D lit\n# Usage\n-We recommend using this library through [@open-wc/testing](https://open-wc.org/testing/testing.html) which preconfigures and combines this library with other testing libraries.\n+We recommend using this library through [@open-wc/t...
JavaScript
MIT License
open-wc/open-wc
docs: update broken link to main testing page
1
docs
null
217,922
02.10.2021 19:58:35
-7,200
725422a654270d554512e70226401eafff27bae8
feat(settings): new button to reload you gubal auth token
[ { "change_type": "MODIFY", "diff": "@@ -357,4 +357,12 @@ export class AuthFacade {\nprivate oauthPopup(provider: any): Observable<UserCredential> {\nreturn this.oauthService.login(provider);\n}\n+\n+ reloadGubalToken(): void {\n+ this.af.user.pipe(\n+ first()\n+ ).subscribe(user => {\n+ user.getIdTokenResul...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(settings): new button to reload you gubal auth token
1
feat
settings
756,038
02.10.2021 20:08:35
25,200
50a881be4971cd5c006867daca66eb6138276492
fix: don't use manual key prefix
[ { "change_type": "MODIFY", "diff": "@@ -10,20 +10,16 @@ const (\nStoreKey = ModuleName\n)\n-var (\n- LienByAddressPrefix = []byte{0x01}\n-)\n-\n-// The lien-by-address space maps prefixed addresses to Lien messages.\n-// The keys are raw address bytes with the appropriate prefix.\n+// The lien-by-address sp...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix: don't use manual key prefix
1
fix
null
756,038
02.10.2021 20:11:11
25,200
9833554c1ebf3e5b177e1a2337bc0938fbb29d34
test: add tests for LIEN_SET_LIENED (and change name)
[ { "change_type": "MODIFY", "diff": "@@ -43,7 +43,7 @@ func NewPortHandler(k Keeper) vm.PortHandler {\nconst (\nLIEN_GET_ACCOUNT_STATE = \"LIEN_GET_ACCOUNT_STATE\"\n- LIEN_SET_TOTAL = \"LIEN_SET_TOTAL\"\n+ LIEN_SET_LIENED = \"LIEN_SET_LIENED\"\n)\n// Receive implements the vm.PortHandler method.\n@@ -60,8 +6...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test: add tests for LIEN_SET_LIENED (and change name)
1
test
null
104,825
02.10.2021 20:29:23
14,400
6fcf26ea86cd549ceebb6d59cf4e57e25aeaa1f0
fix(list-header): change imports
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ export { ListModule } from './list/list.module';\n// Components\nexport { AIListComponent, SelectionType } from './list/ai-list.component';\n-export { AIListHeaderComponent } from './list/list-header/ai-list-header';\n+export { AIListHeaderComponent } from...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(list-header): change imports
1
fix
list-header
756,038
02.10.2021 20:41:39
25,200
3bf2e8604772024deba3a1562a6dee6426de65ea
test: improve test coverage
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,7 @@ var (\nb = testCoin(\"B\")\nc = testCoin(\"C\")\nd = testCoin(\"D\")\n- // e = testCoin(\"E\")\n+ e = testCoin(\"E\")\n)\nfunc TestMaxCoins(t *testing.T) {\n@@ -40,9 +40,9 @@ func TestMaxCoins(t *testing.T) {\n{\"disjoint\", coins(a(3)), coins(b(2)), coi...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test: improve test coverage
1
test
null
104,825
02.10.2021 20:56:28
14,400
7add9612ca3e2977c3902ae5a9efc0baa370c578
test(list): fix imports
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import { CommonModule } from '@angular/common';\nimport { TestBed } from '@angular/core/testing';\nimport { By } from '@angular/platform-browser';\n-import { AIListComponent, ListModule } from './index';\n+import { AIListComponent, ListModule } from '../li...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(list): fix imports
1
test
list
104,825
02.10.2021 21:18:32
14,400
fdd935142dc0df46ac976a62d8672c5cfe6a0134
fix(icons): move entry point up a level
[ { "change_type": "ADD", "diff": "+export * from './empty-state/empty-state.module';\n+export { EmptyStateComponent } from './empty-state/empty-state.component';\n", "new_path": "packages/angular/src/empty-state-index.ts", "old_path": null }, { "change_type": "MODIFY", "diff": "@@ -9,7 +9...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(icons): move entry point up a level
1
fix
icons
4,988
02.10.2021 22:10:17
-7,200
5888f76e3b7653d9cd6abf91e90da1d695459003
refactor(csv): move es5 and browser to dist
[ { "change_type": "RENAME", "diff": "", "new_path": "packages/csv/dist/browser/index.js", "old_path": "packages/csv/lib/browser/index.js" }, { "change_type": "RENAME", "diff": "@@ -51,7 +51,10 @@ exports.mutate = function mutate() {\n}\nfor (name in source) {\n- if (name === '__proto__') ...
JavaScript
MIT License
adaltas/node-csv
refactor(csv): move es5 and browser to dist
1
refactor
csv
603,467
03.10.2021 00:17:11
-3,600
762ca8406389a720d2ac6b8ab49b2519fbecfc21
fix(protractor): fixed the interaction to Switch
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,7 @@ import { pageFromTemplate } from '../../fixtures';\nimport { UIActors } from '../../UIActors';\n/** @test {Switch} */\n-describe.skip('Switch', () => {\n+describe('Switch', () => {\nconst\nh1 = Target.the('header').located(by.css('h1')),\n", "new_pat...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(protractor): fixed the interaction to Switch
1
fix
protractor
135,572
03.10.2021 04:10:55
18,000
9c17f8d423404b484f72df41358a18bd90014ecd
fix(load): added a direct dependency on typescript in order to satisfy the peer requirement from `@endemolshinegroup/cosmiconfig-typescript-loader`. this could be removed if EndemolShineGroup/cosmiconfig-typescript-loader#147 is satisfied upstream fixes
[ { "change_type": "MODIFY", "diff": "\"chalk\": \"^4.0.0\",\n\"cosmiconfig\": \"^7.0.0\",\n\"lodash\": \"^4.17.19\",\n- \"resolve-from\": \"^5.0.0\"\n+ \"resolve-from\": \"^5.0.0\",\n+ \"typescript\": \"^4.4.3\"\n},\n\"gitHead\": \"70f7f4688b51774e7ac5e40e896cdaa3f132b2bc\"\n}\n", "new_path": "@commitlin...
TypeScript
MIT License
conventional-changelog/commitlint
fix(load): added a direct dependency on typescript (#2785) in order to satisfy the peer requirement from `@endemolshinegroup/cosmiconfig-typescript-loader`. this could be removed if EndemolShineGroup/cosmiconfig-typescript-loader#147 is satisfied upstream fixes #2779
1
fix
load
317,646
03.10.2021 06:56:34
-7,200
1f3127cdb1f2f3b75549467e0327c826e09cc135
fix(fish): cache status code resolves
[ { "change_type": "MODIFY", "diff": "@@ -3,8 +3,9 @@ set -g POWERLINE_COMMAND \"oh-my-posh\"\nset -g CONDA_PROMPT_MODIFIER false\nfunction fish_prompt\n- set -l omp_stack_count (count $dirstack)\n- set -l omp_duration \"$CMD_DURATION$cmd_duration\"\n+ set omp_status_cache $status\n+ set omp_stack_count (coun...
Go
MIT License
jandedobbeleer/oh-my-posh
fix(fish): cache status code resolves #1013
1
fix
fish
317,646
03.10.2021 07:27:18
-7,200
a118e178b57edefb826330b98ee04875190a3f2c
feat(cache): set cache directory correctly resolves
[ { "change_type": "MODIFY", "diff": "@@ -85,6 +85,7 @@ type environmentInfo interface {\nisWsl() bool\nstackCount() int\ngetTerminalWidth() (int, error)\n+ getCachePath() string\ncache() cache\nclose()\n}\n@@ -155,13 +156,13 @@ func (env *environment) init(args *args) {\nenv.cmdCache = &commandCache{\ncomman...
Go
MIT License
jandedobbeleer/oh-my-posh
feat(cache): set cache directory correctly resolves #1017
1
feat
cache
317,646
03.10.2021 08:53:03
-7,200
1cff56a7093ead5a7b427c99532677732633b6db
refactor: do not write empty cache list
[ { "change_type": "MODIFY", "diff": "@@ -40,7 +40,11 @@ func (fc *fileCache) init(cachePath string) {\n}\nfunc (fc *fileCache) close() {\n- if dump, err := json.MarshalIndent(fc.cache.list(), \"\", \" \"); err == nil {\n+ cache := fc.cache.list()\n+ if len(cache) == 0 {\n+ return\n+ }\n+ if dump, err := json...
Go
MIT License
jandedobbeleer/oh-my-posh
refactor: do not write empty cache list
1
refactor
null
269,464
03.10.2021 11:25:31
10,800
57f79e91f88296c84c05d55fe6bccd0d0d29820c
docs: update gofish and scoop docs refs
[ { "change_type": "MODIFY", "diff": "@@ -44,6 +44,9 @@ rigs:\nrig:\nowner: repo-owner\nname: gofish-rig\n+ # Optionally a branch can be provided. If the branch does not exist, it\n+ # will be created. If no branch is listed, the default branch will be used\n+ branch: main\n# Optionally a token can be provide...
Go
MIT License
goreleaser/goreleaser
docs: update gofish and scoop docs refs #2539 Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
1
docs
null
217,922
03.10.2021 11:35:02
-7,200
2119c0f0d973fa2bf1fc485dcf36f05e2343e76e
fix(db): removed ocean fishing time details shown on every single gathering node details
[ { "change_type": "MODIFY", "diff": "@@ -22,7 +22,8 @@ export class VenturesExtractor extends AbstractExtractor<number[]> {\n}\nprotected canExtract(item: Item): boolean {\n- return item.ventures !== undefined && item.ventures.length > 0;\n+ const deterministic = this.lazyData.data.retainerTasks.filter(task ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): removed ocean fishing time details shown on every single gathering node details
1
fix
db
217,922
03.10.2021 11:39:19
-7,200
46c4f3af6d5f0466155511718f06365e01f949ae
fix(list): fixed instance details not displayed properly
[ { "change_type": "MODIFY", "diff": "[nzTitle]=\"title\">\n<ng-template #title>\n<div fxLayout=\"row\" fxLayoutAlign=\"flex-start center\" fxLayoutGap=\"5px\">\n- <div>{{(instance.id | instanceName | i18n) || instance.name}}</div>\n+ <div>{{instance | instanceName | i18n}}</div>\n<app-db-button [id]=\"instan...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list): fixed instance details not displayed properly
1
fix
list
217,922
03.10.2021 11:41:45
-7,200
321b43c3866fa4e1d2485d364bb23aac696961b3
fix(nodes): fixed fishing spot db button opening spearfishing spot page instead
[ { "change_type": "MODIFY", "diff": "@@ -60,7 +60,7 @@ export class GatheringNodesService {\nid: spot.id,\nitems: spot.fishes,\nlevel: spot.level,\n- type: 4,\n+ type: -5,\nlegendary: false,\nephemeral: false,\nzoneId: spot.zoneId,\n", "new_path": "apps/client/src/app/core/data/gathering-nodes.service.ts...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(nodes): fixed fishing spot db button opening spearfishing spot page instead
1
fix
nodes
902,122
03.10.2021 11:49:34
-7,200
3a9d4e265c401d6ff559e65e5a796ecd42d07a3c
fix: control document.fonts.ready forever waiting
[ { "change_type": "MODIFY", "diff": "@@ -57,13 +57,14 @@ module.exports = ({ goto, ...gotoOpts }) => {\n) => {\nlet screenshot\nlet response\n+\nconst beforeScreenshot = response =>\n- pReflect(\n- Promise.all([\n- page.evaluate(() => document.fonts.ready),\n+ Promise.all(\n+ [\n+ page.evaluate('document.fon...
JavaScript
MIT License
microlinkhq/browserless
fix: control document.fonts.ready forever waiting (#313)
1
fix
null
902,122
03.10.2021 11:50:27
-7,200
966ae6a064a47367a92427b93acb891a9d27830b
chore(release): v9.2.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.2.9](https://github.com/microlinkhq/browserless/compare/v9.2.8...v9.2.9) (2021-10-03)\n+\n+\n+### Bug Fixes\n+\...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v9.2.9
1
chore
release
217,922
03.10.2021 12:17:20
-7,200
001b61c8fe9a3ff1f51436641fcfd27727839001
fix(db): fixed multiple predator fish not being displayed properly
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,7 @@ export class VenturesExtractor extends AbstractExtractor<number[]> {\nprotected canExtract(item: Item): boolean {\nconst deterministic = this.lazyData.data.retainerTasks.filter(task => task.item === item.id).map(task => task.id);\n- return uniq([...deter...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): fixed multiple predator fish not being displayed properly
1
fix
db
679,913
03.10.2021 15:18:38
-7,200
8e5d2db6815ad1bf0e20cbbf7ab6628340125e10
refactor(pixel): replace static PackedBuffer methods BREAKING CHANGE: replace static PackedBuffer methods w/ standalone functions add packedBufferFromImage() add packedBufferFromCanvas() remove deprecated buffer() ctor fn
[ { "change_type": "MODIFY", "diff": "@@ -65,22 +65,6 @@ export function packedBuffer(...args: any[]) {\nnew PackedBuffer(...args);\n}\n-/**\n- * @deprecated use {@link packedBuffer} instead.\n- */\n-export const buffer = packedBuffer;\n-\n-export class PackedBuffer\n- implements\n- IPixelBuffer<UIntArray, nu...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(pixel): replace static PackedBuffer methods BREAKING CHANGE: replace static PackedBuffer methods w/ standalone functions - add packedBufferFromImage() - add packedBufferFromCanvas() - remove deprecated buffer() ctor fn
1
refactor
pixel
679,913
03.10.2021 15:20:38
-7,200
2db3a8cca975f760a880e97f25a0e91ccdd41239
minor(tools): update destructuring
[ { "change_type": "MODIFY", "diff": "@@ -55,7 +55,7 @@ type ThemeStat = { id: string; sortKey: number; key: number; theme: string[] };\nconst themeStats = transduce(\nmap(([id, theme]) => {\nconst lchTheme = THEMES[<keyof typeof THEMES>id].map((x) => lch(x));\n- const [minC, maxC] = transduce(pluck(\"c\"), m...
TypeScript
Apache License 2.0
thi-ng/umbrella
minor(tools): update destructuring
1
minor
tools
217,922
03.10.2021 15:21:05
-7,200
66732ef7dcfbff773317aab8002df42b54bfb952
feat(retainers): new button to open details in Universalis and better duplicate management
[ { "change_type": "MODIFY", "diff": "<div nz-col nzMd=\"6\" *ngIf=\"item.mbStatus\">\n<nz-tag class=\"custom-tag\"\n[style.border-color]=\"getDiffTagColor(item.mbStatus.diff)\"\n- nz-tooltip [nzTooltipTitle]=\"(item.mbStatus.diff > 0 ? 'RETAINERS.X%_above' : 'RETAINERS.X%_below') | translate:{diff: item.mbSt...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(retainers): new button to open details in Universalis and better duplicate management
1
feat
retainers
217,922
03.10.2021 15:43:51
-7,200
5834c2e86d1e18a85d758e23ee3ef97fa6558d2a
chore: last improvements for 8.6.1
[ { "change_type": "MODIFY", "diff": "@@ -82,7 +82,6 @@ export class AllaganReportsComponent {\n}\npublic handleCheckboxClick($event: MouseEvent, rows: AllaganReportQueueEntry[], index: number): void {\n- console.log($event.shiftKey, index);\nif ($event.shiftKey) {\nconst slice = rows.slice(0, index).reverse(...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: last improvements for 8.6.1
1
chore
null
217,922
03.10.2021 16:26:17
-7,200
afbe41cfd82d2b45c41cc70bbea9d8825a6eb363
chore: gotta use wss !
[ { "change_type": "MODIFY", "diff": "@@ -199,7 +199,7 @@ export class AppComponent implements OnInit {\nfirst()\n).subscribe(token => {\nconst ws = new WebSocketLink({\n- uri: `ws://gubal.hasura.app/v1/graphql`,\n+ uri: `wss://gubal.hasura.app/v1/graphql`,\noptions: {\nreconnect: true,\nconnectionParams: () ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: gotta use wss !
1
chore
null
135,449
03.10.2021 17:20:54
-28,800
e89d3cb0ccad41d2c738315613a3762c0647fb6b
chore: add carrots to some more deps
[ { "change_type": "MODIFY", "diff": "\"devDependencies\": {\n\"@babel/core\": \"^7.12.10\",\n\"@babel/preset-env\": \"^7.12.11\",\n- \"@lerna/project\": \"4.0.0\",\n- \"@types/jest\": \"27.0.2\",\n- \"@types/node\": \"12.20.27\",\n+ \"@lerna/project\": \"^4.0.0\",\n+ \"@types/jest\": \"^27.0.2\",\n+ \"@types...
TypeScript
MIT License
conventional-changelog/commitlint
chore: add carrots to some more deps
1
chore
null
679,913
03.10.2021 19:13:36
-7,200
9381d83c80c0853ba80c404b89e089ff1e459614
refactor(pointfree-lang): migrate CLI to TS
[ { "change_type": "ADD", "diff": "+#!/bin/bash\n+DIR=\"$( cd \"$( dirname \"$0\" )\" &> /dev/null && pwd )\"\n+if [ \"$(echo $DIR | grep '.nvm')\" ]; then\n+ DIR=\"$(dirname \"$(readlink -f \"$0\")\")\"\n+fi\n+\n+/usr/bin/env node --experimental-specifier-resolution=node --loader ts-node/esm node_modules/@th...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(pointfree-lang): migrate CLI to TS
1
refactor
pointfree-lang
679,913
03.10.2021 19:14:14
-7,200
61ce3f1782a1975977a5fdb5520b87717c60b4a9
fix(testament): re-quote CLI args in bash wrapper
[ { "change_type": "MODIFY", "diff": "@@ -4,5 +4,4 @@ if [ \"$(echo $DIR | grep '.nvm')\" ]; then\nDIR=\"$(dirname \"$(readlink -f \"$0\")\")\"\nfi\n-# /usr/bin/env node --experimental-specifier-resolution=node --loader ts-node/esm -e 'import(\"@thi.ng/testament/cli\")' -- $DIR $@\n-/usr/bin/env node --experi...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(testament): re-quote CLI args in bash wrapper
1
fix
testament
679,913
03.10.2021 19:16:26
-7,200
8764de0dcc502fc9b973075affc781aa91025048
build: update package deps/exports in various
[ { "change_type": "MODIFY", "diff": "\"files\": [\n\"*.js\",\n\"*.d.ts\",\n- \"i18n\"\n+ \"i18n\",\n+ \"internal\"\n],\n\"exports\": {\n\".\": {\n", "new_path": "packages/date/package.json", "old_path": "packages/date/package.json" }, { "change_type": "MODIFY", "diff": "},\n\"files\": [\n...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: update package deps/exports in various
1
build
null
217,922
03.10.2021 19:53:17
-7,200
572fd598788cb68e589e1b6fe5c0316eeb0611a8
fix(db): fixed gathering nodes not listing bonuses anymore
[ { "change_type": "MODIFY", "diff": "@@ -18,6 +18,7 @@ import { AlarmsFacade } from '../../../core/alarms/+state/alarms.facade';\nimport { MapService } from '../../../modules/map/map.service';\nimport { SettingsService } from '../../../modules/settings/settings.service';\nimport { GatheringNodesService } fro...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): fixed gathering nodes not listing bonuses anymore
1
fix
db
104,825
03.10.2021 19:59:47
14,400
8857f1a6b7e6bc95671fe5d2ecb365d39e39021e
fix(empty state): fix build
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ import { Component, Input, TemplateRef } from '@angular/core';\n<div class=\"iot--empty-state\">\n<div class=\"iot--empty-state--content\">\n<ng-container *ngIf=\"icon !== 'no-icon'\">\n- <ng-container *ngIf=\"isTemplate(icon)\" [ngTemplateOutlet]=\"icon\"...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(empty state): fix build
1
fix
empty state
551,670
03.10.2021 23:08:43
-7,200
84c55242f456b1a1be525d8425669893b3a47599
feat(http): add support for schema boolean attribute index, to flag a symbol column as indexed
[ { "change_type": "MODIFY", "diff": "@@ -40,6 +40,7 @@ import io.questdb.network.PeerIsSlowToReadException;\nimport io.questdb.network.ServerDisconnectException;\nimport io.questdb.std.*;\nimport io.questdb.std.str.CharSink;\n+import io.questdb.std.str.StringSink;\nimport java.io.Closeable;\n@@ -414,7 +415,1...
Java
Apache License 2.0
questdb/questdb
feat(http): add support for schema boolean attribute index, to flag a symbol column as indexed (#1352)
1
feat
http
679,913
03.10.2021 23:49:55
-7,200
d8b733d27a849e1ae3d834f15bc4a659927e13ab
fix(testament): update bash wrapper
[ { "change_type": "MODIFY", "diff": "-#!/bin/bash\n-DIR=\"$( cd \"$( dirname \"$0\" )\" &> /dev/null && pwd )\"\n-if [ \"$(echo $DIR | grep '.nvm')\" ]; then\n- DIR=\"$(dirname \"$(readlink -f \"$0\")\")\"\n-fi\n+#!/usr/bin/env bash\n-/usr/bin/env node --experimental-specifier-resolution=node --loader ts-nod...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(testament): update bash wrapper
1
fix
testament
679,913
03.10.2021 23:50:21
-7,200
4170b4b0f025281ca5ce5140a049490ada300ce0
fix(pointfree-lang): update bash wrapper
[ { "change_type": "MODIFY", "diff": "-#!/bin/bash\n-DIR=\"$( cd \"$( dirname \"$0\" )\" &> /dev/null && pwd )\"\n-if [ \"$(echo $DIR | grep '.nvm')\" ]; then\n- DIR=\"$(dirname \"$(readlink -f \"$0\")\")\"\n-fi\n+#!/usr/bin/env bash\n-/usr/bin/env node --experimental-specifier-resolution=node --loader ts-nod...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(pointfree-lang): update bash wrapper
1
fix
pointfree-lang
679,913
03.10.2021 23:53:14
-7,200
8954e85345ea744a0769f24afaecefb7eb1745e5
build(simd): update/fix build script & binary
[ { "change_type": "MODIFY", "diff": "\"doc:readme\": \"../../scripts/node-esm ../../tools/src/readme.ts\",\n\"doc:stats\": \"../../scripts/node-esm ../../tools/src/module-stats.ts\",\n\"pub\": \"yarn build:release && yarn publish --access public\",\n- \"test\": \"node --experimental-specifier-resolution=node...
TypeScript
Apache License 2.0
thi-ng/umbrella
build(simd): update/fix build script & binary
1
build
simd
679,913
03.10.2021 23:53:41
-7,200
56558fcd56539f5356335f3d1c2e4720e86bfd90
fix(examples): fix imports
[ { "change_type": "MODIFY", "diff": "@@ -65,13 +65,13 @@ const updateParticles = (particles: Particle[]) => {\nconst particle = (p: Particle) => {\n// compute point on cubic bezier\n- const pos = pointAt(p.curve, p.pos);\n+ const pos = pointAt(p.curve, p.pos)!;\n// need to use translate here only because of ...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(examples): fix imports
1
fix
examples
342,861
04.10.2021 00:32:27
-7,200
322739dfc9b458c94f9de22e4a24c7671ae3cea2
test(ReactExample): add tests
[ { "change_type": "MODIFY", "diff": "@@ -2,22 +2,31 @@ const { graphql } = require(\"gatsby\");\nconst DefaultValue = {\nname: \"DefaultValue\",\n- description: \"DefaultValue\",\n+ description: \"DefaultValue primitives\",\nserialize(value) {\n+ if (typeof value !== \"string\" && typeof value !== \"boolean\...
JavaScript
MIT License
kiwicom/orbit
test(ReactExample): add tests
1
test
ReactExample
71,350
04.10.2021 01:40:52
25,200
c89fb0452382d6cd052ca5bc393705c5f9295db0
chore(s3-deployments): update python version on BucketDeployment handler fixes *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": "\"Ref\": \"EnvFileDeploymentAwsCliLayerA8FC897D\"\n}\n],\n- \"Runtime\": \"python3.6\",\n+ \"Runtime\": \"python3.7\",\n\"Timeout\": 900\n},\n\"DependsOn\": [\n", "new_path": "packages/@aws-cdk/aws-ecs/test/ec2/integ.environment-file.expected.json", "old_path": "p...
TypeScript
Apache License 2.0
aws/aws-cdk
chore(s3-deployments): update python version on BucketDeployment handler (#16771) fixes :#16669 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
chore
s3-deployments
306,320
04.10.2021 09:02:09
-3,600
500cb335dfc5bce8d679e5485e00fe5d95e38f1f
fix: sync usage nil pointers
[ { "change_type": "MODIFY", "diff": "@@ -94,7 +94,7 @@ func runMain(cmd *cobra.Command, runCtx *config.RunContext) error {\nreturn err\n}\n- if runCtx.Config.SyncUsageFile {\n+ if runCtx.Config.SyncUsageFile && projectCfg.UsageFile != \"\" {\nspinnerOpts := ui.SpinnerOptions{\nEnableLogging: runCtx.Config.Is...
Go
Apache License 2.0
infracost/infracost
fix: sync usage nil pointers (#1014)
1
fix
null
679,913
04.10.2021 09:26:51
-7,200
208f0832d11925060e8ee5ffbf07e7f423a74d7f
feat(shader-ast-glsl): add float precision option
[ { "change_type": "MODIFY", "diff": "@@ -7,10 +7,26 @@ export enum GLSLVersion {\n}\nexport interface GLSLOpts {\n+ /**\n+ * Shader type: vertex / fragment\n+ */\ntype: \"vs\" | \"fs\";\n+ /**\n+ * Syntax version (default GLES_300)\n+ */\nversion: GLSLVersion;\n+ /**\n+ * If true (default), emit `#version` p...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(shader-ast-glsl): add float precision option
1
feat
shader-ast-glsl
679,913
04.10.2021 09:27:02
-7,200
a9abcfe7304fd6f8273ed1c2c7d190abedeaca13
feat(shader-ast-js): add float precision option
[ { "change_type": "MODIFY", "diff": "@@ -248,3 +248,10 @@ export interface JSEnv {\nsampler2DShadow: JSBuiltinsSampler;\nsamplerCubeShadow: JSBuiltinsSampler;\n}\n+\n+export interface JSTargetOpts {\n+ /**\n+ * Float precision (number of fractional digits).\n+ */\n+ prec: number;\n+}\n", "new_path": "pac...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(shader-ast-js): add float precision option
1
feat
shader-ast-js
679,913
04.10.2021 09:49:55
-7,200
8a3f1ff0497ed54d97515fa3c78a907a8dcfdf7a
feat(shader-ast): update & export gensym() add opt prefix arg for better re-use
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,9 @@ let symID = 0;\nexport const resetSymID = () => (symID = 0);\n/**\n- * Generates a new symbol name, e.g. `_sa2`. Uses base36 for counter to\n- * keep names short.\n+ * Generates a new symbol name with optional given `prefix` (default: \"_s\"),\n+ * e.g. `_...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(shader-ast): update & export gensym() - add opt prefix arg for better re-use
1
feat
shader-ast
217,922
04.10.2021 10:12:31
-7,200
26ed9f4e8a6daafa5787b21ce8c285a17f250a18
fix(auth): better JWT token management
[ { "change_type": "MODIFY", "diff": "@@ -236,6 +236,11 @@ export class AuthFacade {\n});\n}\n+ public async getIdTokenResult(forceRefresh = false) {\n+ const user = await this.af.currentUser;\n+ return await user.getIdTokenResult(forceRefresh);\n+ }\n+\nresetPassword(email: string): void {\nthis.af.sendPassw...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(auth): better JWT token management
1
fix
auth
679,913
04.10.2021 10:22:45
-7,200
faefb2b049632e0fa3bfef45dff8987916bf152b
refactor(tools): migrate link update script to TS
[ { "change_type": "RENAME", "diff": "-#!/usr/bin/env node\n-const fs = require(\"fs\");\n-const getIn = require(\"@thi.ng/paths\").getIn;\n-const execSync = require(\"child_process\").execSync;\n+import { getIn } from \"@thi.ng/paths\";\n+import { execSync } from \"child_process\";\n+import { readdirSync, st...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(tools): migrate link update script to TS
1
refactor
tools
777,396
04.10.2021 10:27:35
21,600
b21d88ee4a7de010e8f163297a3dcf2de1cd87ff
fix: use str for FileLock
[ { "change_type": "MODIFY", "diff": "@@ -171,7 +171,7 @@ class TokenStore:\nself.path.parent.mkdir(mode=0o700, parents=True, exist_ok=True)\n# Decide on paths for a lock file and a temp files (during writing)\nself.temp = pathlib.Path(str(self.path) + \".temp\")\n- self.lock = pathlib.Path(str(self.path) + \...
Python
Apache License 2.0
determined-ai/determined
fix: use str for FileLock (#3036)
1
fix
null
342,861
04.10.2021 10:33:57
-7,200
c19ea3a39a704579130cdcf622a3e41bd875e94c
docs(DocsLayout): add storybook button fix: fixes after review fix: fixes after review
[ { "change_type": "MODIFY", "diff": "import React from \"react\";\n-import { Box, Collapse, Grid, Heading, Hide, Stack, Text } from \"@kiwicom/orbit-components\";\n+import {\n+ Box,\n+ Collapse,\n+ Grid,\n+ Heading,\n+ Hide,\n+ Stack,\n+ Text,\n+ ButtonLink,\n+} from \"@kiwicom/orbit-components\";\nimport { ...
JavaScript
MIT License
kiwicom/orbit
docs(DocsLayout): add storybook button fix: fixes after review fix: fixes after review
1
docs
DocsLayout
266,219
04.10.2021 10:34:16
21,600
e33d52a94c3e25a281a5ebeb51f86c08a7509afd
chore: use cov_level in coveragerc
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ omit =\ngoogle/cloud/__init__.py\n[report]\n-fail_under = 100\n+fail_under = {{ cov_level if cov_level != None else '100' }}\nshow_missing = True\nexclude_lines =\n# Re-enable the standard pragma\n", "new_path": "synthtool/gcp/templates/python_librar...
Python
Apache License 2.0
googleapis/synthtool
chore: use cov_level in coveragerc (#1233)
1
chore
null
217,922
04.10.2021 10:44:25
-7,200
78e530ce9b37be27d2f0e0882a17f078c061c8e3
fix(db): fixed "include misses" toggle in fishing spot pages
[ { "change_type": "MODIFY", "diff": "@@ -438,7 +438,7 @@ export class AlarmsFacade {\npublic generateAlarms(node: GatheringNode): Alarm[] {\n// If no spawns and no weather, no alarms.\n- if (!node.spawns?.length && !node.weathers?.length) {\n+ if (!node?.spawns?.length && !node?.weathers?.length) {\nreturn [...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): fixed "include misses" toggle in fishing spot pages
1
fix
db
791,323
04.10.2021 11:03:32
25,200
2fa096d6883a436d6742a6f460d25db2ce0eb9c5
test(pubsub): increase ordering key test timeout
[ { "change_type": "MODIFY", "diff": "@@ -1182,8 +1182,8 @@ func TestIntegration_OrderedKeys_Basic(t *testing.T) {\nif got, want := r, fmt.Sprintf(\"item-%d\", i); got != want {\nt.Fatalf(\"%d: got %s, want %s\", i, got, want)\n}\n- case <-time.After(5 * time.Second):\n- t.Fatalf(\"timed out after 5s waiting ...
Go
Apache License 2.0
googleapis/google-cloud-go
test(pubsub): increase ordering key test timeout (#4897)
1
test
pubsub
104,844
04.10.2021 11:11:26
14,400
4bd6c7a3f55004c950f3d073a109a61739a78f4a
chore(changelog): missed a merge conflict notation.
[ { "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-<<<<<<< HEAD\n-\n-=======\n# [2.147.0-next.8](https://github.com/carbon-design-system/carbon-addons-iot-react/compare...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(changelog): missed a merge conflict notation.
1
chore
changelog
791,370
04.10.2021 11:19:39
21,600
906fb7c1c884b133e8c548ca7846708419360305
test(internal/btree): fix bug in benchmark Fixes:
[ { "change_type": "MODIFY", "diff": "@@ -232,7 +232,7 @@ func BenchmarkFind(b *testing.B) {\nfunc findBinary(k Key, s []item) (int, bool) {\ni := sort.Search(len(s), func(i int) bool { return less(k, s[i].key) })\n// i is the smallest index of s for which key.Less(s[i].Key), or len(s).\n- if i > 0 && !less(s...
Go
Apache License 2.0
googleapis/google-cloud-go
test(internal/btree): fix bug in benchmark (#4942) Fixes: #4941
1
test
internal/btree
217,922
04.10.2021 11:26:11
-7,200
f59f41e339329757332d08db557ebf599b150401
fix(alarms): fixed double weather alarms not computed properly
[ { "change_type": "MODIFY", "diff": "@@ -351,7 +351,7 @@ export class AlarmsFacade {\nconst weatherStart = weatherSpawn.spawn.getUTCHours();\nconst normalWeatherStop = new Date(this.weatherService.getNextDiffWeatherTime(weatherSpawn.spawn.getTime(), weatherSpawn.weather, alarm.mapId)).getUTCHours() || 24;\nc...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(alarms): fixed double weather alarms not computed properly
1
fix
alarms
269,464
04.10.2021 11:29:17
10,800
f58f86a439b3f785714091feaa9e3ab96bfa2927
chore: twitter link
[ { "change_type": "MODIFY", "diff": "@@ -206,6 +206,7 @@ release:\n- Check out the [GoReleaser Pro](https://goreleaser.com/pro) distribution;\n- Join our [Discord server](https://discord.gg/RGEBtg8vQ6);\n+ - Follow us on [Twitter](https://twitter.com/goreleaser);\n- Read the [documentation](https://gorelease...
Go
MIT License
goreleaser/goreleaser
chore: twitter link Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
1
chore
null
866,404
04.10.2021 11:32:42
10,800
0c3281849cd2b3426d01f4a107c6748a3fc9dc58
docs(data-table): updating `sort-direction` docs
[ { "change_type": "MODIFY", "diff": "/**\n* @license\n*\n- * Copyright IBM Corp. 2019, 2020\n+ * Copyright IBM Corp. 2019, 2021\n*\n* This source code is licensed under the Apache-2.0 license found in the\n* LICENSE file in the root directory of this source tree.\n@@ -95,7 +95,7 @@ class BXTableHeaderCell ex...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
docs(data-table): updating `sort-direction` docs (#706) Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1
docs
data-table
815,593
04.10.2021 11:36:08
-28,800
8331e56df3d982e4380258a6801f39a53505d8f8
test: add test for orphan tx pool
[ { "change_type": "MODIFY", "diff": "@@ -389,6 +389,7 @@ fn all_specs() -> Vec<Box<dyn Spec>> {\nBox::new(BlockTemplates),\nBox::new(BootstrapCellbase),\nBox::new(TemplateSizeLimit),\n+ Box::new(OrphanTxAccepted),\nBox::new(GetRawTxPool),\nBox::new(PoolReconcile),\nBox::new(PoolResurrect),\n", "new_path"...
Rust
MIT License
nervosnetwork/ckb
test: add test for orphan tx pool
1
test
null
826,656
04.10.2021 11:37:29
-7,200
3b946d09e357285d782249e86639798239f583ec
test: add migration tests
[ { "change_type": "MODIFY", "diff": "@@ -17,7 +17,7 @@ Migrate the database up\n### Synopsis\nRun this command on a fresh SQL installation and when you upgrade Ory Keto from\n-version v0.7.0-alpha.0.pre.0 and later.\n+version v0.7.0 and later.\nIt is recommended to run this command close to the SQL instance ...
Go
Apache License 2.0
ory/keto
test: add migration tests (#749)
1
test
null
472,067
04.10.2021 11:52:38
-32,400
d79f43aed32dc4b6576d4f665413bc8e5f8067a7
ci: create workflow to build tokens
[ { "change_type": "ADD", "diff": "+name: build design tokens via webhook\n+\n+on:\n+ workflow_dispatch:\n+\n+jobs:\n+ build_tokens:\n+ runs-on: ubuntu-latest\n+ steps:\n+ - uses: actions/checkout@v2\n+ - uses: actions/setup-node@v2-beta\n+ with:\n+ node-version: 14\n+ - name: restore lerna\n+ uses: actions/c...
TypeScript
MIT License
openameba/spindle
ci: create workflow to build tokens
1
ci
null
380,787
04.10.2021 12:16:22
25,200
82a32655d2cd362ec4d7164822585cbd3ae5dd6e
fix: stripping origin if line numbers already strippped
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ const LOCALE = \"{locale}\"\nconst LOCALE_SUFFIX_RE = /\\{locale\\}.*$/\nconst PATHSEP = \"/\" // force posix everywhere\n-type MessageOrigin = [string, number]\n+type MessageOrigin = [string, number?]\nexport type ExtractedMessageType = {\nmessage?: str...
TypeScript
MIT License
lingui/js-lingui
fix: stripping origin if line numbers already strippped (#1143)
1
fix
null
756,013
04.10.2021 12:26:11
21,600
b8aaf7f18e08fa28e63e1046ca5a66b4e8c6d765
ci(Mergify): add `automerge:rebase`
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,15 @@ pull_request_rules:\nmethod: merge\nstrict: true\ncommit_message: title+body\n+ - name: automerge to master with label automerge:rebase and branch protection passing\n+ conditions:\n+ - base=master\n+ - label=automerge:rebase\n+ actions:\n+ merge:\n+ meth...
JavaScript
Apache License 2.0
agoric/agoric-sdk
ci(Mergify): add `automerge:rebase`
1
ci
Mergify
401,147
04.10.2021 12:38:09
-19,080
bd2cb267933c1dc4f71683dc299bd47fd1667d49
fix: fix strict null issue in Drawer and DialogBox component * fix: fix strict null issue in Drawer and DialogBox component affects: * fix: fix failing snapshot tests affects:
[ { "change_type": "MODIFY", "diff": "@@ -4,11 +4,12 @@ import { Actions } from './Actions';\nimport { DialogBoxActionUserProps } from './types';\ndescribe('DialogBox action component', () => {\n- test.each([\n+ const testData: [DialogBoxActionUserProps['alignItems'], string][] = [\n['left', 'flex-start'],\n[...
TypeScript
MIT License
medly/medly-components
fix: fix strict null issue in Drawer and DialogBox component (#474) * fix: fix strict null issue in Drawer and DialogBox component affects: @medly-components/core * fix: fix failing snapshot tests affects: @medly-components/core
1
fix
null
679,913
04.10.2021 13:07:37
-7,200
8a7ec9c1209bbb1d39ff4617dbf1e836f7559843
refactor(pixel): internal restructure
[ { "change_type": "MODIFY", "diff": "\"./canvas\": {\n\"import\": \"./canvas.js\"\n},\n+ \"./checks\": {\n+ \"import\": \"./checks.js\"\n+ },\n\"./convolve\": {\n\"import\": \"./convolve.js\"\n},\n\"./pyramid\": {\n\"import\": \"./pyramid.js\"\n},\n+ \"./range\": {\n+ \"import\": \"./range.js\"\n+ },\n\"./sa...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(pixel): internal restructure
1
refactor
pixel
472,067
04.10.2021 13:09:51
-32,400
0eaf1a16ce8aec36cfae94f0e6c78f3641d2e2ed
docs(spindle-tokens): update README
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/packages/spindle-tokens/spindle-tokens.png differ\n", "new_path": "packages/spindle-tokens/spindle-tokens.png", "old_path": "packages/spindle-tokens/spindle-tokens.png" } ]
TypeScript
MIT License
openameba/spindle
docs(spindle-tokens): update README
1
docs
spindle-tokens
791,704
04.10.2021 13:16:23
18,000
f66b0fe6d044d55a0d8c57cadf1d9b559e0716b7
misc(scripts): fix run-devtools sniffing, add error checking
[ { "change_type": "MODIFY", "diff": "@@ -75,12 +75,22 @@ const sniffLhr = `\nnew Promise(resolve => {\n(${addSniffer.toString()})(\nUI.panels.lighthouse.__proto__,\n- '_buildReportUI',\n+ 'buildReportUI',\n(lhr, artifacts) => resolve(lhr)\n);\n});\n`;\n+const sniffLighthouseStarted = `\n+new Promise(resolve ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(scripts): fix run-devtools sniffing, add error checking (#13163)
1
misc
scripts
104,825
04.10.2021 13:36:58
14,400
1780147a05ee83903e3d0ebec41a4541423df666
feat(table): add helpers for column alignment
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,6 @@ import { EmptyStateErrorIcon } from './empty-state-error-icon.component';\nimport { EmptyStateSuccessIcon } from './empty-state-success-icon.component';\nimport { EmptyStateNotAuthorizedIcon } from './empty-state-not-authorized-icon.component';\n-\n@NgModu...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(table): add helpers for column alignment
1
feat
table
304,866
04.10.2021 13:40:47
25,200
81a987a2ef0c6e52fed2b20337c2637659041b70
fix(csv): create new annotations when group key columns change
[ { "change_type": "MODIFY", "diff": "@@ -894,6 +894,7 @@ func (e *ResultEncoder) Encode(w io.Writer, result flux.Result) (int64, error) {\nwriter := e.csvWriter(writeCounter)\nvar lastCols []colMeta\n+ var lastGroupCols []flux.ColMeta\nvar lastEmpty bool\nresultName := result.Name()\n@@ -911,9 +912,7 @@ func...
Go
MIT License
influxdata/flux
fix(csv): create new annotations when group key columns change (#4063)
1
fix
csv