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
277,277
20.09.2021 07:02:36
-7,200
928fc2af09b7b71805e1ee140680988f0d02e1b8
feat: Introduce more values to ui.inline justify.
[ { "change_type": "MODIFY", "diff": "@@ -36,9 +36,9 @@ async def show_red_dashboard(q: Q):\nsubtitle=next(sample_caption),\nitems=[\nui.label(label='Start:'),\n- ui.date_picker(name='target_date', label='', value='2020-12-20'),\n+ ui.date_picker(name='target_date1', label='', value='2020-12-20'),\nui.label(l...
Python
Apache License 2.0
h2oai/wave
feat: Introduce more values to ui.inline justify. #534 (#971)
1
feat
null
599,886
20.09.2021 08:05:13
-32,400
4c6009bc2c3ff5f657a806363e3bdf7cd83d4261
fix(rt-api): correctly format movie urls
[ { "change_type": "MODIFY", "diff": "@@ -109,7 +109,7 @@ class RottenTomatoes extends ExternalAPI {\nreturn {\ntitle: movie.name,\n- url: movie.url,\n+ url: `https://www.rottentomatoes.com${movie.url}`,\ncriticsRating:\nmovie.meterClass === 'certified_fresh'\n? 'Certified Fresh'\n", "new_path": "server/a...
TypeScript
MIT License
sct/overseerr
fix(rt-api): correctly format movie urls
1
fix
rt-api
273,683
20.09.2021 08:29:20
-7,200
40d7a9c751a818625d39ad3918483d9b7881771f
chore: update to latest webpack-dev-server
[ { "change_type": "MODIFY", "diff": "@@ -62,7 +62,7 @@ module.exports = async (context, args) => {\nconsole.log()\n})\n- server.listen()\n+ await server.start()\n}\nasync function createDevServer(app, compiler) {\n", "new_path": "gridsome/lib/develop.js", "old_path": "gridsome/lib/develop.js" }, ...
JavaScript
MIT License
gridsome/gridsome
chore: update to latest webpack-dev-server
1
chore
null
126,276
20.09.2021 08:34:50
10,800
e770aa7b4fadddc3d775245ec944b1d1cfaa8cf3
fix(embedded/sql): return error when joint table doest not exist
[ { "change_type": "MODIFY", "diff": "@@ -101,7 +101,10 @@ func (jointr *jointRowReader) colsBySelector() (map[string]*ColDescriptor, error\nfor _, jspec := range jointr.joins {\ntableRef := jspec.ds.(*tableRef)\n- table, _ := tableRef.referencedTable(jointr.e, jointr.implicitDB)\n+ table, err := tableRef.ref...
Go
Apache License 2.0
codenotary/immudb
fix(embedded/sql): return error when joint table doest not exist Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
fix
embedded/sql
273,683
20.09.2021 08:48:41
-7,200
b145217e46c10e0acad4e7ac1e69efdb5fa3900f
refactor: make configureServer a sync hook
[ { "change_type": "MODIFY", "diff": "@@ -100,8 +100,8 @@ class Plugins {\nthis._app.schema.buildSchema()\n}\n- async configureServer(server) {\n- return this.run('configureServer', null, server)\n+ configureServer(server) {\n+ return this.runSync('configureServer', null, server)\n}\nasync createPages() {\n@@...
JavaScript
MIT License
gridsome/gridsome
refactor: make configureServer a sync hook (#1557)
1
refactor
null
273,683
20.09.2021 09:30:41
-7,200
7c81f8c0f96b14ed8da8645280af10ac519ec327
fix(g-image): maintain blur placeholder aspect ratio
[ { "change_type": "MODIFY", "diff": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n-exports[`disable blur filter 1`] = `\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAOCAMAAAACJixMAAAABlBMVEXMzMy+vr5KbP3DAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAGklEQVQYlWNgGMyAkZGREUZiSIDBADmMSAAADPUAEl9Gig0AAAAASUVORK5CYII=\"`...
JavaScript
MIT License
gridsome/gridsome
fix(g-image): maintain blur placeholder aspect ratio
1
fix
g-image
599,886
20.09.2021 09:39:56
-32,400
afda9c7dc222137b0e6654a6beb4737cf2c1752e
feat(plex-scan): plex scanner improvements
[ { "change_type": "MODIFY", "diff": "\"semantic-release\": \"^17.4.4\",\n\"semantic-release-docker-buildx\": \"^1.0.1\",\n\"tailwindcss\": \"^2.2.2\",\n- \"ts-node\": \"^10.0.0\",\n- \"typescript\": \"^4.3.4\"\n+ \"ts-node\": \"^10.2.1\",\n+ \"typescript\": \"^4.4.3\"\n},\n\"resolutions\": {\n\"sqlite3/node-...
TypeScript
MIT License
sct/overseerr
feat(plex-scan): plex scanner improvements (#2105)
1
feat
plex-scan
711,595
20.09.2021 09:57:12
-7,200
cc45254056d0bce1f5401d64c18124c552407f46
fix(core): Fix wrong event type when a variant is created Closes
[ { "change_type": "MODIFY", "diff": "@@ -321,7 +321,7 @@ export class ProductVariantService {\nids.push(id);\n}\nconst createdVariants = await this.findByIds(ctx, ids);\n- this.eventBus.publish(new ProductVariantEvent(ctx, createdVariants, 'updated'));\n+ this.eventBus.publish(new ProductVariantEvent(ctx, cr...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Fix wrong event type when a variant is created (#1102) Closes #1095
1
fix
core
273,683
20.09.2021 10:00:03
-7,200
7a2080ef39621d4e15f97fffa3442404549009ac
fix(g-image): improve edges in blurred placeholders
[ { "change_type": "MODIFY", "diff": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n-exports[`disable blur filter 1`] = `\"data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%22600%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cimage%20href%3D%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAA...
JavaScript
MIT License
gridsome/gridsome
fix(g-image): improve edges in blurred placeholders
1
fix
g-image
277,277
20.09.2021 10:23:17
-7,200
91b24d77d5e1dd8edc12f6947d294ac1fada443e
ci: setup nightly builds
[ { "change_type": "ADD", "diff": "+name: Release Wave Nightly\n+\n+on:\n+ workflow_dispatch: # TMP testing\n+ inputs:\n+ version:\n+ description: 'Release Version'\n+ required: true\n+ schedule:\n+ - cron: \"0 22,7 * * *\" # Schedule on 12am of CET and PST.\n+\n+env:\n+ VERSION: nightly\n+ TAG: nightly\n+\n+...
Python
Apache License 2.0
h2oai/wave
ci: setup nightly builds (#1011)
1
ci
null
386,595
20.09.2021 10:25:24
-7,200
eddc631ebbe1d6ad25f5fa9ec80ff20695cd5695
chore(blocksAntd): Update CheckboxSwitch tests.
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport { Checkbox } from 'antd';\n-import { type } from '@lowdefy/helpers';\n-import { blockDefaultProps, RenderHtml } from '@lowdefy/block-tools';\n+import { blockDefaultProps, renderHtml } from '@lowdefy/block-tools';\nimport Label from '../L...
JavaScript
Apache License 2.0
lowdefy/lowdefy
chore(blocksAntd): Update CheckboxSwitch tests.
1
chore
blocksAntd
273,683
20.09.2021 10:39:03
-7,200
ee64443fec47546cd7039c2b0f56bde0f284f2f5
feat(critical): upgrade to critical v4
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,6 @@ exports.processHtmlFile = async function (filename, options = {}) {\nhtml: sourceHTML,\ncss: stylesheets,\ninline: false,\n- minify: true,\nignore: {\natrule: ['@font-face'],\ndecl: (node, value) => /url\\(/.test(value),\n", "new_path": "packages/plu...
JavaScript
MIT License
gridsome/gridsome
feat(critical): upgrade to critical v4
1
feat
critical
711,653
20.09.2021 10:52:39
-10,800
725392fe2aaef7b803cff8540feacb45f3933c6d
fix(elastic-search-plugin): fix bug with facetValueMaxSize Relates to
[ { "change_type": "MODIFY", "diff": "@@ -267,7 +267,7 @@ export class ElasticsearchService implements OnModuleInit, OnModuleDestroy {\nenabledOnly: boolean = false,\n): Promise<Array<{ facetValue: FacetValue; count: number }>> {\nconst { groupByProduct } = input;\n- const buckets = await this.getDistinctBuck...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(elastic-search-plugin): fix bug with facetValueMaxSize (#1098) Relates to #1086
1
fix
elastic-search-plugin
932,455
20.09.2021 11:03:13
14,400
3ee6086c2316c2d89a856277121e73628d56195a
ci(nodejs): default to building with 16.9 (LTS in a few weeks)
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ jobs:\nrun: git fetch --depth=1 origin +refs/tags/*:refs/tags/*\n- uses: actions/setup-node@v2\nwith:\n- node-version: 14.17\n+ node-version: 16.9\n- name: yarn install\nrun: yarn\n- name: yarn build\n", "new_path": ".github/workflows/publish-develop...
TypeScript
Apache License 2.0
spotify/web-scripts
ci(nodejs): default to building with 16.9 (LTS in a few weeks)
1
ci
nodejs
277,286
20.09.2021 11:03:20
-7,200
142e82eb9f66f536f4dfc51e54ed310d98bf4ada
ci: fix asset paths for nightly build
[ { "change_type": "MODIFY", "diff": "@@ -46,10 +46,10 @@ jobs:\nuses: softprops/action-gh-release@v1\nwith:\nfiles: |\n- \"./build/wave-${{ env.VERSION }}-darwin-amd64.tar.gz\"\n- \"./build/wave-${{ env.VERSION }}-linux-amd64.tar.gz\"\n- \"./build/wave-${{ env.VERSION }}-windows-amd64.tar.gz\"\n- \"./py/dist...
Python
Apache License 2.0
h2oai/wave
ci: fix asset paths for nightly build
1
ci
null
873,686
20.09.2021 11:03:32
-7,200
3bb2516aaebfad0892f95799f63ebf4d45a68e0c
refactor: use shortenStorageUnit from shared
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport { DropdownList, DropdownListItem } from '@contentful/forma-36-react-components';\n+import { shortenStorageUnit } from '@contentful/field-editor-shared';\nimport { css } from 'emotion';\nimport { File } from '../../types';\nimport get fro...
TypeScript
MIT License
contentful/field-editors
refactor: use shortenStorageUnit from shared (#855)
1
refactor
null
932,455
20.09.2021 11:06:25
14,400
1822cd466e36306149b3662b8b1b897451d85dab
build(deps): one last yarn upgrade-interactive for the road
[ { "change_type": "MODIFY", "diff": "jest-util \"^27.2.0\"\nslash \"^3.0.0\"\n-\"@jest/core@^27.2.0\":\n- version \"27.2.0\"\n- resolved \"https://registry.yarnpkg.com/@jest/core/-/core-27.2.0.tgz#61fc27b244e9709170ed9ffe41b006add569f1b3\"\n- integrity sha512-E/2NHhq+VMo18DpKkoty8Sjey8Kps5Cqa88A8NP757s6JjYqP...
TypeScript
Apache License 2.0
spotify/web-scripts
build(deps): one last yarn upgrade-interactive for the road
1
build
deps
777,401
20.09.2021 11:09:17
14,400
5a43b3ba38cef1c13a45760a2fbb224e27efb15a
chore: remove start_time from get_checkpoints_for_trial
[ { "change_type": "MODIFY", "diff": "@@ -20,4 +20,4 @@ LEFT JOIN validations v ON v.total_batches = c.total_batches AND v.trial_id = c.\nJOIN trials t ON c.trial_id = t.id\nJOIN experiments e ON t.experiment_id = e.id\nWHERE t.id = $1\n-ORDER BY start_time DESC\n+ORDER BY end_time DESC\n", "new_path": "m...
Python
Apache License 2.0
determined-ai/determined
chore: remove start_time from get_checkpoints_for_trial (#2975)
1
chore
null
277,286
20.09.2021 11:16:40
-7,200
68e893be4d08098d64d0f3d247ef344282158084
ci: force update and push tags in nightly build
[ { "change_type": "MODIFY", "diff": "@@ -40,7 +40,7 @@ jobs:\nrun: make release\n- name: Update tag\n- run: git tag ${{ env.TAG }} && git push --tags\n+ run: git tag -f ${{ env.TAG }} && git push -f --tags\n- name: Release\nuses: softprops/action-gh-release@v1\n", "new_path": ".github/workflows/release-w...
Python
Apache License 2.0
h2oai/wave
ci: force update and push tags in nightly build
1
ci
null
866,394
20.09.2021 11:24:32
14,400
93a4a12cbd4d489b0c5bfa3f9e576ec1a4f52471
chore(expressive): removing carbon expressive from github workflows ### Related Ticket(s) No related issue ### Description This deactivates publishing of the carbon expressive storybook and percy baseline updates. ### Changelog **Removed** Carbon expressive related github actions
[ { "change_type": "MODIFY", "diff": "@@ -356,41 +356,3 @@ jobs:\nwith:\nstatus: ${{ job.status }}\nif: failure()\n- carbon-expressive:\n- runs-on: ubuntu-20.04\n- env:\n- SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}\n- steps:\n- - uses: actions/checkout@master\n- - name: Use Node.js 14.x\n- uses: acti...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(expressive): removing carbon expressive from github workflows (#7193) ### Related Ticket(s) No related issue ### Description This deactivates publishing of the carbon expressive storybook and percy baseline updates. ### Changelog **Removed** - Carbon expressive related github actions
1
chore
expressive
942,581
20.09.2021 11:25:19
21,600
24b9b4d4beccb9a5186421c3881f75b7b089b1d5
ci: Add npm debug information
[ { "change_type": "MODIFY", "diff": "@@ -116,7 +116,7 @@ jobs:\n## Publish to npm. Must be run after a build\n- name: Publish\n- run: npm config set //registry.npmjs.org/:_authToken=${{secrets.NPM_CI_PUBLISH_TOKEN}} && yarn lerna publish from-package --yes\n+ run: npm config set //registry.npmjs.org/:_authTo...
TypeScript
Apache License 2.0
workday/canvas-kit
ci: Add npm debug information
1
ci
null
277,286
20.09.2021 11:36:27
-7,200
eb1f56d6c9ead63965ef01ba7b6b52361fdb1557
ci: list release assets without doublequotes
[ { "change_type": "MODIFY", "diff": "@@ -46,10 +46,10 @@ jobs:\nuses: softprops/action-gh-release@v1\nwith:\nfiles: |\n- \"build/wave-${{ env.VERSION }}-darwin-amd64.tar.gz\"\n- \"build/wave-${{ env.VERSION }}-linux-amd64.tar.gz\"\n- \"build/wave-${{ env.VERSION }}-windows-amd64.tar.gz\"\n- \"py/dist/h2o_wav...
Python
Apache License 2.0
h2oai/wave
ci: list release assets without doublequotes
1
ci
null
942,581
20.09.2021 11:36:50
21,600
f5b9045de90e28a41e4afe0fb29fb693fdc874c0
ci: Fix npm publish for release
[ { "change_type": "MODIFY", "diff": "@@ -27,6 +27,7 @@ jobs:\n- uses: actions/setup-node@v2\nwith:\nnode-version: 14.x\n+ registry-url: 'https://registry.npmjs.org'\n## The caching steps create a cache key based on the OS and hash of the yarn.lock file. A\n## cache hit will copy files from Github cache into ...
TypeScript
Apache License 2.0
workday/canvas-kit
ci: Fix npm publish for release
1
ci
null
401,147
20.09.2021 11:37:23
-19,080
85e1912236e3477768026837c55abd2f923b9290
feat: add onInputChange prop in MultiSelect component * feat: add onInputChange prop in MultiSelect component affects: * fix: call onInputChange with empty string on hiding the options affects:
[ { "change_type": "MODIFY", "diff": "@@ -127,6 +127,15 @@ describe('MultiSelect component', () => {\nexpect(queryByText('Dummy1')).toBeNull();\n});\n+ it('should call onInputChange on changing the input value', async () => {\n+ const mockInputChange = jest.fn();\n+ render(<MultiSelect options={options} onCha...
TypeScript
MIT License
medly/medly-components
feat: add onInputChange prop in MultiSelect component (#430) * feat: add onInputChange prop in MultiSelect component affects: @medly-components/core * fix: call onInputChange with empty string on hiding the options affects: @medly-components/core
1
feat
null
942,581
20.09.2021 11:54:56
21,600
27b71e9154629aa3daf4500e7d71a6c6bc5d95a6
ci: Fix npm token
[ { "change_type": "MODIFY", "diff": "@@ -117,7 +117,7 @@ jobs:\n## Publish to npm. Must be run after a build\n- name: Publish\n- run: npm whoami && yarn lerna publish from-package --yes\n+ run: yarn lerna publish from-package --yes\nenv:\nNODE_AUTH_TOKEN: ${{secrets.NPM_CI_PUBLISH_TOKEN}}\n", "new_path":...
TypeScript
Apache License 2.0
workday/canvas-kit
ci: Fix npm token
1
ci
null
802,869
20.09.2021 12:01:21
10,800
bf15d4ca1c3c32d777ec0a2d8b32d3194d05533b
fix: add button role link
[ { "change_type": "MODIFY", "diff": "@@ -45,7 +45,7 @@ export const Button: React.FunctionComponent<IButtonProps> = ({\n<>\n<ButtonComponent\nas={href ? 'a' : 'button'}\n- role={href ? '' : 'button'}\n+ role={href ? 'link' : 'button'}\naria-busy={isLoading}\nonClick={(e: React.MouseEvent<HTMLButtonElement>) ...
TypeScript
Apache License 2.0
juntossomosmais/venice
fix: add button role link
1
fix
null
277,286
20.09.2021 12:03:39
-7,200
813d334f85ae821042a368e2d3f30744d8b5f534
chore: remove tmp nighly build action manual dispatch, keep schedule only
[ { "change_type": "MODIFY", "diff": "name: Release Wave Nightly\non:\n- workflow_dispatch: # TMP testing\n- inputs:\n- version:\n- description: 'Release Version'\n- required: true\nschedule:\n- cron: \"0 22,7 * * *\" # Schedule on 12am of CET and PST.\n", "new_path": ".github/workflows/release-wave-night...
Python
Apache License 2.0
h2oai/wave
chore: remove tmp nighly build action manual dispatch, keep schedule only
1
chore
null
126,276
20.09.2021 12:05:27
10,800
a443f2f7268c73588bd0b46c1c1504b2c5ec5ef2
chore: remove wip warning for fully implemented features
[ { "change_type": "MODIFY", "diff": "@@ -78,10 +78,6 @@ func (cl *commandline) database(cmd *cobra.Command) {\nreturn err\n}\n- if settings.Replica {\n- c.PrintfColorW(cmd.OutOrStdout(), c.Yellow, \"Replication is a work-in-progress feature. Not ready for production use\\n\")\n- }\n-\nif err := cl.immuClient...
Go
Apache License 2.0
codenotary/immudb
chore: remove wip warning for fully implemented features Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
null
756,029
20.09.2021 12:05:58
25,200
b6f823b7ab0d53e5c2eda69acbb9d4ea4f7ac951
refactor(vats): Pare down CRC and meet style
[ { "change_type": "MODIFY", "diff": "/*\n- https://en.wikipedia.org/wiki/Cyclic_redundancy_check\n- Copyright (c) 2018 Vladimir Latyshev\n- License: MIT\n- Algorithms ported from https://pycrc.org/\n- Forked from npm polycrc@1.1.0 for module system compatibility.\n+ * https://en.wikipedia.org/wiki/Cyclic_red...
JavaScript
Apache License 2.0
agoric/agoric-sdk
refactor(vats): Pare down CRC and meet style
1
refactor
vats
802,869
20.09.2021 12:09:59
10,800
43d16328626f61d1a52c13f212d4d5b265e39464
test: button getByRole link
[ { "change_type": "MODIFY", "diff": "@@ -97,7 +97,8 @@ describe('<Button />', () => {\n})\nit('should be add a href in <a> if it has href', () => {\n- const { container } = render(<Button href=\"href\">Send</Button>)\n+ const { container, getByRole } = render(<Button href=\"href\">Send</Button>)\n+ expect(ge...
TypeScript
Apache License 2.0
juntossomosmais/venice
test: button getByRole link
1
test
null
756,013
20.09.2021 12:16:17
21,600
656514e5937389c57e139bc1302fa435edd2e674
feat(solo): make client objects appear earlier, parallelise chain
[ { "change_type": "MODIFY", "diff": "@@ -177,7 +177,7 @@ const main = async (progname, rawArgs, powers) => {\n.option(\n'--need <subsystems>',\n'comma-separated names of subsystems to wait for',\n- 'agoric,wallet',\n+ 'local,agoric,wallet',\n)\n.option(\n'--provide <subsystems>',\n", "new_path": "package...
JavaScript
Apache License 2.0
agoric/agoric-sdk
feat(solo): make client objects appear earlier, parallelise chain
1
feat
solo
126,276
20.09.2021 12:16:50
10,800
ebfecb3304633dc2e63f61acda18f268c07b0847
chore(embedded/sql): disable TIMESTAMP data-type
[ { "change_type": "MODIFY", "diff": "@@ -15,6 +15,8 @@ limitations under the License.\n*/\npackage sql\n+import \"fmt\"\n+\ntype Catalog struct {\ndbsByID map[uint32]*Database\ndbsByName map[string]*Database\n@@ -305,6 +307,10 @@ func (db *Database) newTable(name string, colsSpec []*ColSpec) (table *Table, e...
Go
Apache License 2.0
codenotary/immudb
chore(embedded/sql): disable TIMESTAMP data-type Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
embedded/sql
756,013
20.09.2021 12:17:14
21,600
d6d472445a05b8c3d83fc9621879c3c91bf4d737
fix(solo): make `localTimerService` in ms, and update correctly
[ { "change_type": "MODIFY", "diff": "@@ -41,20 +41,32 @@ measured in milliseconds).\nconst timerService = E(vats.timerWrapper).createTimerService(devices.timer);\n```\n-Then users in the REPL can use the `localTimerService` or `chainTimerService`\n-(both in seconds) to schedule wakeups.\n+Then users in the R...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(solo): make `localTimerService` in ms, and update correctly
1
fix
solo
756,013
20.09.2021 12:17:50
21,600
3f49a779f253ff01fe7e71d0295efbfa99b669a9
fix(sim-chain): update `chainTimerService` correctly
[ { "change_type": "MODIFY", "diff": "@@ -104,12 +104,11 @@ export async function connectToFakeChain(basedir, GCI, delay, inbound) {\nconst withBlockQueue = makeWithQueue();\nconst unhandledSimulateBlock = withBlockQueue(\nasync function unqueuedSimulateBlock() {\n- const actualStart = Date.now();\n// Gather ...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(sim-chain): update `chainTimerService` correctly
1
fix
sim-chain
756,013
20.09.2021 12:28:35
21,600
b45c66d6d5aadcd91bd2e50d31104bce8d4d78f6
fix(timer): remove deprecated `createRepeater`
[ { "change_type": "MODIFY", "diff": "* @property {(waker: ERef<TimerWaker>) => Array<Timestamp>} removeWakeup Remove the waker\n* from all its scheduled wakeups, whether produced by `timer.setWakeup(h)` or\n* `repeater.schedule(h)`.\n- * @property {(delay: RelativeTime, interval: RelativeTime) => TimerRepeat...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(timer): remove deprecated `createRepeater`
1
fix
timer
756,013
20.09.2021 12:31:31
21,600
365471757974502d57139aee883e47f0ef379710
refactor: remove duplicate manualTimer code from `swingset-runner`
[ { "change_type": "MODIFY", "diff": "import { E } from '@agoric/eventual-send';\nimport { Far } from '@agoric/marshal';\nimport { makeIssuerKit, AmountMath } from '@agoric/ertp';\n-import buildManualTimer from './manualTimer.js';\n+import buildManualTimer from '@agoric/zoe/tools/manualTimer.js';\nimport { ma...
JavaScript
Apache License 2.0
agoric/agoric-sdk
refactor: remove duplicate manualTimer code from `swingset-runner`
1
refactor
null
317,646
20.09.2021 12:46:07
-7,200
8d35689170f8ae466dc58c3b6ad60d370353b1a1
refactor: split concurrent map from cache implementation
[ { "change_type": "MODIFY", "diff": "@@ -80,24 +80,15 @@ type environmentInfo interface {\n}\ntype commandCache struct {\n- commands map[string]string\n- lock sync.RWMutex\n+ commands *concurrentMap\n}\nfunc (c *commandCache) set(command, path string) {\n- c.lock.Lock()\n- defer c.lock.Unlock()\n- c.commands...
Go
MIT License
jandedobbeleer/oh-my-posh
refactor: split concurrent map from cache implementation
1
refactor
null
942,581
20.09.2021 13:14:59
21,600
98e9fb9955c7db1128ee2d1a8646c7c8df69f7a3
ci: Fix npm publish
[ { "change_type": "MODIFY", "diff": "@@ -24,10 +24,10 @@ jobs:\n## This step installs node and sets up several matchers (regex matching for Github\n## Annotations). See\n## https://github.com/actions/setup-node/blob/25316bbc1f10ac9d8798711f44914b1cf3c4e954/src/main.ts#L58-L65\n- - uses: actions/setup-node@v2...
TypeScript
Apache License 2.0
workday/canvas-kit
ci: Fix npm publish
1
ci
null
777,369
20.09.2021 13:18:04
21,600
100f9b101f275dc5203211741b22de98fd7691d0
feat: allow experiment owner to delete their own experiments
[ { "change_type": "ADD", "diff": "+:orphan:\n+\n+**New Features**\n+\n+- WebUI: Allow experiment owners to be able to delete their own experiments. .. image::\n+ https://user-images.githubusercontent.com/220971/134048799-cd663a75-cb24-4f44-9a8a-c2ff23222cef.png\n", "new_path": "docs/release-notes/2977-ow...
Python
Apache License 2.0
determined-ai/determined
feat: allow experiment owner to delete their own experiments [DET-5989] (#2977)
1
feat
null
777,367
20.09.2021 13:27:51
14,400
36ba4c3584be8a932e8070b443377e1078e30a77
chore: use mock library in doc building
[ { "change_type": "MODIFY", "diff": "@@ -55,6 +55,8 @@ extensions = [\nautosummary_generate = True\nautoclass_content = \"class\"\n+autodoc_mock_imports = [\"mmcv\", \"mmdet\", \"transformers\", \"pytorch_lightning\", \"datasets\"]\n+\n# List of patterns, relative to source directory, that match files and\n#...
Python
Apache License 2.0
determined-ai/determined
chore: use mock library in doc building (#2968)
1
chore
null
756,029
20.09.2021 13:32:28
25,200
3efb36eb48521aeb9479f27bd691be485ecda234
fix(SwingSet): Adjust SES change detectors
[ { "change_type": "MODIFY", "diff": "@@ -109,7 +109,7 @@ test('SES bootstrap, save, compress', async t => {\nconst zfile = path.resolve(pool.name, `${h}.gz`);\nt.is(\nrelativeSize(zfile, snapSize.SESboot),\n- snapSize.compression,\n+ 0.2,\n'compressed snapshots are smaller',\n);\n});\n@@ -167,7 +167,7 @@ tes...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(SwingSet): Adjust SES change detectors
1
fix
SwingSet
679,913
20.09.2021 13:54:05
-7,200
3fcf9a91857afeb813ff2ca588b1a9dde6fb28c5
refactor(associative): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import type { Fn3, ICopy, IEmpty, IEquiv, IObjectOf, Pair } from \"@thi.ng/api\";\nimport { SEMAPHORE } from \"@thi.ng/api/constants\";\nimport { isPlainObject } from \"@thi.ng/checks/is-plain-object\";\nimport { equiv } from \"@thi.ng/equiv\";\n-import { ...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(associative): update imports (transducers)
1
refactor
associative
679,913
20.09.2021 13:54:50
-7,200
e2db0ddfcc8ac74b2b9477b23560f5d34d7e9b95
refactor(bencode): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,7 @@ import { unsupported } from \"@thi.ng/errors/unsupported\";\nimport type { BinStructItem } from \"@thi.ng/transducers-binary\";\nimport { bytes, str, u8, u8array } from \"@thi.ng/transducers-binary/bytes\";\nimport { utf8Decode, utf8Length } from \"@thi....
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(bencode): update imports (transducers)
1
refactor
bencode
679,913
20.09.2021 13:55:23
-7,200
09fb93e0de75f30d7c2ec2ba6dfb1f9421769666
refactor(cache): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "import type { Fn0 } from \"@thi.ng/api\";\nimport { ConsCell, DCons } from \"@thi.ng/dcons/dcons\";\n-import { map } from \"@thi.ng/transducers/xform/map\";\n+import { map } from \"@thi.ng/transducers/map\";\nimport type { CacheEntry, CacheOpts, ICache } from \"./api\";\n...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(cache): update imports (transducers)
1
refactor
cache
679,913
20.09.2021 13:56:06
-7,200
0bc002c2bcb3d8aefb064d2e50f79fd53ca3c2bd
refactor(color): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -2,14 +2,14 @@ import type { FnU, FnU2, NumericArray } from \"@thi.ng/api\";\nimport { partial } from \"@thi.ng/compose/partial\";\nimport { TAU } from \"@thi.ng/math/api\";\nimport { clamp01 } from \"@thi.ng/math/interval\";\n-import { comp } from \"@thi.ng/transducer...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(color): update imports (transducers)
1
refactor
color
679,913
20.09.2021 13:56:33
-7,200
4705acc50d140005f74fb05dcecfc3401d83ffc8
refactor(csp): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -4,10 +4,10 @@ import { isFunction } from \"@thi.ng/checks/is-function\";\nimport { DCons } from \"@thi.ng/dcons/dcons\";\nimport { illegalArity } from \"@thi.ng/errors/illegal-arity\";\nimport type { Reducer, Transducer } from \"@thi.ng/transducers\";\n-import { cycle...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(csp): update imports (transducers)
1
refactor
csp
332,702
20.09.2021 14:02:48
14,400
dedde3f5c90c65df4c27dcf16dd619d8be36fc2c
fix(semver): Switching to using project graph functions directly, instead of the CLI.
[ { "change_type": "MODIFY", "diff": "@@ -9,15 +9,13 @@ import { readPackageJson } from './utils/project';\nimport type { TestingWorkspace } from './testing';\nimport type { VersionBuilderSchema } from './schema';\n-import { execAsync } from './utils/exec-async';\n-import { of } from 'rxjs';\n+import { create...
TypeScript
MIT License
jscutlery/semver
fix(semver): Switching to using project graph functions directly, instead of the CLI.
1
fix
semver
679,913
20.09.2021 14:04:39
-7,200
4bdecc9df71c125be9d7e9c9f1c05685c44f14c9
refactor(csv): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -4,12 +4,12 @@ import { isIterable } from \"@thi.ng/checks/is-iterable\";\nimport type { Stringer } from \"@thi.ng/strings\";\nimport { wrap } from \"@thi.ng/strings/wrap\";\nimport type { Reducer, Transducer } from \"@thi.ng/transducers\";\n-import { compR } from \"@t...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(csv): update imports (transducers)
1
refactor
csv
915,035
20.09.2021 14:17:45
-7,200
d772748be7902dd76366c16359ead2e84b54b4c6
docs: clarify endpoint Closes
[ { "change_type": "MODIFY", "diff": "@@ -30,7 +30,7 @@ Another helpful resource is\nconst token = 'the access token'\nconst body = qs.stringify({ token })\n-fetch('http://ory-hydra/oauth2/introspect', {\n+fetch('http://<ory-hydra-admin-api>/oauth2/introspect', {\nheaders: {\n'Content-Type': 'application/x-ww...
Go
Apache License 2.0
ory/hydra
docs: clarify endpoint (#2757) Closes #2751
1
docs
null
777,369
20.09.2021 14:19:36
21,600
8d98692d81a8c6e36e54b95dcfd5a47109c3f519
chore: popout new tab when clicking on task list links
[ { "change_type": "ADD", "diff": "+:orphan:\n+\n+**Changes**\n+\n+- WebUI: Change the task list page to open new tabs when user clicks on task links.\n", "new_path": "docs/release-notes/2979-new-notebook-tabs.txt", "old_path": null }, { "change_type": "MODIFY", "diff": "@@ -124,7 +124,7 @...
Python
Apache License 2.0
determined-ai/determined
chore: popout new tab when clicking on task list links [DET-5998] (#2979)
1
chore
null
791,690
20.09.2021 14:32:24
18,000
515331aed7aeb4f5ec2ebb56af782b996595ed98
tests: update SVGOMG expectations
[ { "change_type": "MODIFY", "diff": "@@ -46,9 +46,6 @@ const svgomg = {\n},\n'apple-touch-icon': {\nscore: 1,\n- warnings: [\n- /apple-touch-icon-precomposed/,\n- ],\n},\n// \"manual\" audits. Just verify in the results.\n", "new_path": "lighthouse-cli/test/smokehouse/test-definitions/pwa/pwa2-expectatio...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests: update SVGOMG expectations (#13088)
1
tests
null
14,244
20.09.2021 14:43:22
-7,200
8c1eedeb84812422b92d8d953bb24d875a4ebc6e
fix(examples): remove redundant setting
[ { "change_type": "MODIFY", "diff": "@@ -85,7 +85,6 @@ export function Autocomplete(\nconst inputProps = autocomplete.getInputProps({\ninputElement: (inputRef.current as unknown) as HTMLInputElement,\n- spellCheck: false,\nautoFocus: true,\nmaxLength: 280,\n});\n", "new_path": "examples/twitter-compose-w...
TypeScript
MIT License
algolia/autocomplete
fix(examples): remove redundant setting
1
fix
examples
679,913
20.09.2021 14:46:34
-7,200
6e7bf71c5036190fbf9128a4d2c47f144231ace3
refactor(dsp): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -10,12 +10,12 @@ import {\nu32,\nu8,\n} from \"@thi.ng/transducers-binary/bytes\";\n-import { comp } from \"@thi.ng/transducers/func/comp\";\n-import { concat } from \"@thi.ng/transducers/iter/concat\";\n+import { comp } from \"@thi.ng/transducers/comp\";\n+import { co...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(dsp): update imports (transducers)
1
refactor
dsp
679,913
20.09.2021 14:47:25
-7,200
441d708b0ed323ad3c0f19dad1d9527033e7ae91
refactor(dgraph): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -4,8 +4,8 @@ import { EquivMap } from \"@thi.ng/associative/equiv-map\";\nimport { union } from \"@thi.ng/associative/union\";\nimport { equiv } from \"@thi.ng/equiv\";\nimport { illegalArgs } from \"@thi.ng/errors/illegal-arguments\";\n+import { filter } from \"@thi.n...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(dgraph): update imports (transducers)
1
refactor
dgraph
679,913
20.09.2021 14:47:49
-7,200
e9406478b4a74ba385742056847fd7c5f124d1e7
refactor(ecs): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ import { isString } from \"@thi.ng/checks/is-string\";\nimport { IDGen } from \"@thi.ng/idgen\";\nimport type { IMemPoolArray } from \"@thi.ng/malloc\";\nimport { NativePool } from \"@thi.ng/malloc/native\";\n-import { filter } from \"@thi.ng/transducers/x...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(ecs): update imports (transducers)
1
refactor
ecs
679,913
20.09.2021 14:49:41
-7,200
d2c6eadfc776c70914c18630abcaa9c0254a0868
refactor(gp): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "import { assert } from \"@thi.ng/api/assert\";\nimport { SYSTEM } from \"@thi.ng/random/system\";\n-import { iterate } from \"@thi.ng/transducers/iter/iterate\";\n-import { repeatedly } from \"@thi.ng/transducers/iter/repeatedly\";\n+import { iterate } from \"@thi.ng/tran...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(gp): update imports (transducers)
1
refactor
gp
679,913
20.09.2021 14:49:58
-7,200
cab1ea8e040ecee93947577b3ce645e9923c8ee2
refactor(grid-iterators): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "-import { range2d } from \"@thi.ng/transducers/iter/range2d\";\n-import { map } from \"@thi.ng/transducers/xform/map\";\n+import { range2d } from \"@thi.ng/transducers/range2d\";\n+import { map } from \"@thi.ng/transducers/map\";\nimport { swapxy } from \"./utils\";\n/**\...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(grid-iterators): update imports (transducers)
1
refactor
grid-iterators
679,913
20.09.2021 14:50:49
-7,200
4707563e4f5093718a769b9d5accd91a37ce8c87
refactor(hdom-components): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "-import { range } from \"@thi.ng/transducers/iter/range\";\n-import { map } from \"@thi.ng/transducers/xform/map\";\n+import { map } from \"@thi.ng/transducers/map\";\n+import { range } from \"@thi.ng/transducers/range\";\n/**\n* Configuration options for pager components...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hdom-components): update imports (transducers)
1
refactor
hdom-components
679,913
20.09.2021 14:51:14
-7,200
f3e12726d606de21fa4c1a81070398f3ded7f9e9
refactor(hiccup-css): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -6,13 +6,13 @@ import { isPlainObject } from \"@thi.ng/checks/is-plain-object\";\nimport { isString } from \"@thi.ng/checks/is-string\";\nimport { illegalArgs } from \"@thi.ng/errors/illegal-arguments\";\nimport type { Transducer } from \"@thi.ng/transducers\";\n-impor...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hiccup-css): update imports (transducers)
1
refactor
hiccup-css
679,913
20.09.2021 14:51:35
-7,200
3ddf8f3aa935a164bc12369cfa2af45e089e215d
refactor(hiccup-markdown): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -9,8 +9,8 @@ import { repeat } from \"@thi.ng/fsm/repeat\";\nimport { seq } from \"@thi.ng/fsm/seq\";\nimport { str } from \"@thi.ng/fsm/str\";\nimport { untilStr } from \"@thi.ng/fsm/until\";\n-import { comp } from \"@thi.ng/transducers/func/comp\";\n-import { filter ...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hiccup-markdown): update imports (transducers)
1
refactor
hiccup-markdown
679,913
20.09.2021 14:52:22
-7,200
09f223d6f2783f41347351d56f0347fa7616ca17
refactor(iges): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -4,15 +4,15 @@ import { float } from \"@thi.ng/strings/float\";\nimport { hstr } from \"@thi.ng/strings/hollerith\";\nimport { padLeft } from \"@thi.ng/strings/pad-left\";\nimport { padRight } from \"@thi.ng/strings/pad-right\";\n-import { comp } from \"@thi.ng/transdu...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(iges): update imports (transducers)
1
refactor
iges
679,913
20.09.2021 14:52:51
-7,200
1ffb3576783094792fd3e4ab5dba61f15b035d09
refactor(imgui): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,7 @@ import { polygon } from \"@thi.ng/geom/ctors/polygon\";\nimport { centroid } from \"@thi.ng/geom/ops/centroid\";\nimport { vertices } from \"@thi.ng/geom/ops/vertices\";\nimport { mod } from \"@thi.ng/math/prec\";\n-import { mapIndexed } from \"@thi.ng/tra...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(imgui): update imports (transducers)
1
refactor
imgui
679,913
20.09.2021 14:54:24
-7,200
5a20982a3ff9ae9b164f1e0bdd0524bc212ecc21
refactor(lsys): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -6,10 +6,10 @@ import { cossin } from \"@thi.ng/math/angle\";\nimport { HALF_PI } from \"@thi.ng/math/api\";\nimport type { IRandom } from \"@thi.ng/random\";\nimport { SYSTEM } from \"@thi.ng/random/system\";\n-import { iterate } from \"@thi.ng/transducers/iter/iterat...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(lsys): update imports (transducers)
1
refactor
lsys
679,913
20.09.2021 14:54:48
-7,200
a82f44122b21163c5e12a7bb266416fb66a7a972
refactor(markdown-table): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -9,15 +9,15 @@ import { padRight } from \"@thi.ng/strings/pad-right\";\nimport { repeat } from \"@thi.ng/strings/repeat\";\nimport { wrap } from \"@thi.ng/strings/wrap\";\nimport type { Transducer } from \"@thi.ng/transducers\";\n-import { comp } from \"@thi.ng/transdu...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(markdown-table): update imports (transducers)
1
refactor
markdown-table
679,913
20.09.2021 14:55:31
-7,200
2fd76194ba8e16613eef85fe7ec2b3248bd4880b
refactor(rdom): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ import { $sub } from \"@thi.ng/rdom/sub\";\nimport type { ISubscription } from \"@thi.ng/rstream\";\nimport { isSubscribable } from \"@thi.ng/rstream/checks\";\nimport { reactive } from \"@thi.ng/rstream/stream\";\n-import { sideEffect } from \"@thi.ng/tra...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(rdom): update imports (transducers)
1
refactor
rdom
679,913
20.09.2021 14:55:49
-7,200
1a111e147a426072d570a0dc564f340881f95a11
refactor(poisson): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "import { SYSTEM } from \"@thi.ng/random/system\";\n-import { rangeNd } from \"@thi.ng/transducers/iter/range-nd\";\n-import { repeatedly } from \"@thi.ng/transducers/iter/repeatedly\";\n-import { mapcat } from \"@thi.ng/transducers/xform/mapcat\";\n+import { mapcat } from...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(poisson): update imports (transducers)
1
refactor
poisson
679,913
20.09.2021 14:55:57
-7,200
6de47ecfde2c633ef3746d3f0726bd8473250cb0
refactor(ramp): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "import { norm } from \"@thi.ng/math/fit\";\nimport { mix, mixCubicHermite, tangentCardinal } from \"@thi.ng/math/mix\";\n-import { comp } from \"@thi.ng/transducers/func/comp\";\n-import { extendSides } from \"@thi.ng/transducers/iter/extend-sides\";\n-import { normRange ...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(ramp): update imports (transducers)
1
refactor
ramp
679,913
20.09.2021 14:57:11
-7,200
4bad707faaba05440674433370d207f4c2bd3e4c
refactor(sax): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import type { IObjectOf } from \"@thi.ng/api\";\nimport { NO_OP } from \"@thi.ng/api/constants\";\nimport type { Transducer } from \"@thi.ng/transducers\";\nimport { fsm, FSMState, FSMStateMap } from \"@thi.ng/transducers-fsm\";\n-import { $iter, iterator ...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(sax): update imports (transducers)
1
refactor
sax
679,913
20.09.2021 14:57:25
-7,200
86fdea7c63fcc4c29c139869663191786766c368
refactor(sparse): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "import { ensureIndex2 } from \"@thi.ng/errors/out-of-bounds\";\n-import { partition } from \"@thi.ng/transducers/xform/partition\";\n+import { partition } from \"@thi.ng/transducers/partition\";\nimport { ASparseMatrix } from \"./amatrix\";\nimport type { NzEntry } from \...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(sparse): update imports (transducers)
1
refactor
sparse
679,913
20.09.2021 14:57:53
-7,200
a5a1b2d6e2ebc61cdd37b4328b0c087e4147c238
refactor(text-canvas): update imports (transducers)
[ { "change_type": "MODIFY", "diff": "@@ -3,7 +3,7 @@ import { fract } from \"@thi.ng/math/prec\";\nimport { padLeft } from \"@thi.ng/strings/pad-left\";\nimport { padRight } from \"@thi.ng/strings/pad-right\";\nimport { repeat } from \"@thi.ng/strings/repeat\";\n-import { map } from \"@thi.ng/transducers/xfo...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(text-canvas): update imports (transducers)
1
refactor
text-canvas
679,913
20.09.2021 14:59:53
-7,200
4ca18e4d845ba542a860dedaceec00085e390604
refactor(viz): update imports
[ { "change_type": "MODIFY", "diff": "@@ -2,8 +2,8 @@ import { mergeDeepObj } from \"@thi.ng/associative/merge-deep\";\nimport { fit } from \"@thi.ng/math/fit\";\nimport { inRange } from \"@thi.ng/math/interval\";\nimport { roundTo } from \"@thi.ng/math/prec\";\n-import { range } from \"@thi.ng/transducers/it...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(viz): update imports
1
refactor
viz
821,198
20.09.2021 15:05:44
25,200
4cd0c1da0949aa2b1443e16068f1de75dc7be08f
ci: update jobs run with sf orb & rm nightly cron
[ { "change_type": "MODIFY", "diff": "@@ -32,8 +32,6 @@ jobs:\ntest:\n<<: *lint\nparameters:\n- test:\n- type: string\nimage:\ntype: string\ndocker:\n@@ -43,7 +41,7 @@ jobs:\n- restore_cache: *restore_cache\n- attach_workspace: {at: node_modules}\n- run: .circleci/setup_git\n- - run: yarn exec nps test.<< par...
TypeScript
MIT License
oclif/oclif
ci: update jobs run with sf orb & rm nightly cron (#671)
1
ci
null
679,913
20.09.2021 15:20:55
-7,200
7030a6aecd50367cbc08bccb13e05b3af41f4eca
feat(errors): migrate assert() from thi.ng/api add existing assert() fn from api pkg add AssertionError class update pkg
[ { "change_type": "MODIFY", "diff": "\"@thi.ng/testament\": \"^0.0.1\"\n},\n\"keywords\": [\n+ \"assert\",\n\"error\",\n\"typescript\"\n],\n\".\": {\n\"import\": \"./index.js\"\n},\n+ \"./assert\": {\n+ \"import\": \"./assert.js\"\n+ },\n\"./deferror\": {\n\"import\": \"./deferror.js\"\n},\n", "new_path"...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(errors): migrate assert() from thi.ng/api - add existing assert() fn from api pkg - add AssertionError class - update pkg
1
feat
errors
791,690
20.09.2021 15:21:36
18,000
577ef75fbab8d259f372c4d10db5b2e2c3511b0a
core(fr): cleanup driver on run completion
[ { "change_type": "MODIFY", "diff": "@@ -28,6 +28,7 @@ const defaultSession = {\naddSessionAttachedListener: throwNotConnectedFn,\nremoveSessionAttachedListener: throwNotConnectedFn,\nsendCommand: throwNotConnectedFn,\n+ dispose: throwNotConnectedFn,\n};\n/** @implements {LH.Gatherer.FRTransitionalDriver} */...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(fr): cleanup driver on run completion (#13062)
1
core
fr
679,913
20.09.2021 15:22:13
-7,200
5f6ec5c37d9268c2b40d74011219529e146a0aca
chore(api): remove obsolete assert() BREAKING CHANGE: assert() moved to thi.ng/errors pkg see for details
[ { "change_type": "MODIFY", "diff": "\"./api/watch\": {\n\"import\": \"./api/watch.js\"\n},\n- \"./assert\": {\n- \"import\": \"./assert.js\"\n- },\n\"./constants\": {\n\"import\": \"./constants.js\"\n},\n", "new_path": "packages/api/package.json", "old_path": "packages/api/package.json" }, { ...
TypeScript
Apache License 2.0
thi-ng/umbrella
chore(api): remove obsolete assert() BREAKING CHANGE: assert() moved to thi.ng/errors pkg - see 7030a6aec for details
1
chore
api
821,216
20.09.2021 15:52:13
25,200
dd3c6c2ddab69ba6d979a6ddad8ec8b3e950fd39
refactor: rm unused class
[ { "change_type": "DELETE", "diff": "-\n-import Base from './command-base'\n-\n-export default abstract class AppCommand extends Base {\n- static flags = {\n- }\n-\n- static args = [\n- {name: 'name', required: true, description: 'directory name of new project'},\n- ]\n-\n- async run() {\n- const {args} = th...
TypeScript
MIT License
oclif/oclif
refactor: rm unused class
1
refactor
null
821,198
20.09.2021 15:57:19
25,200
25ace5f0641cbda3bf8ee0c204be8e6a47f187c6
feat: unhide releasing related cmds
[ { "change_type": "MODIFY", "diff": "@@ -3,8 +3,6 @@ import * as fs from 'fs-extra'\nimport * as path from 'path'\nexport default class Manifest extends Command {\n- static hidden = true\n-\nstatic description = 'generates plugin manifest json'\nstatic args = [\n", "new_path": "src/commands/manifest.ts",...
TypeScript
MIT License
oclif/oclif
feat: unhide releasing related cmds (#670)
1
feat
null
104,844
20.09.2021 16:04:07
14,400
b66d1bd6b3ff8c8071c9f0b2a5d0a87f931bba3c
chore(test-app): add build command and exit code on success
[ { "change_type": "MODIFY", "diff": "@@ -76,3 +76,11 @@ jobs:\ncd ../test-app\nyarn link carbon-addons-iot-react\nyarn build\n+\n+ - name: Build app\n+ if: ${{ success() }}\n+ run: npx serve -s build\n+\n+ - name: exit on success\n+ if: ${{ success() }}\n+ run: exit 1\n", "new_path": ".github/workflows/t...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(test-app): add build command and exit code on success
1
chore
test-app
791,682
20.09.2021 16:16:38
14,400
dabf4f3c20c797a1d9ee070a2f29c1c23724bc5f
report(flow): summary sections
[ { "change_type": "MODIFY", "diff": "--app-font-size: 12px;\n--base-spacing: 16px;\n--category-summary-font-size: 18px;\n+ --double-base-spacing: calc(var(--base-spacing) * 2);\n--gather-mode-icon-size: 16px;\n--half-base-spacing: calc(var(--base-spacing) / 2);\n--separator-color: var(--color-gray-300);\n}\n...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(flow): summary sections (#13086)
1
report
flow
104,844
20.09.2021 16:36:45
14,400
f639f267b6d7557ff227a75e94066e8a3bd0c721
chore(test-app): add exit code after build
[ { "change_type": "MODIFY", "diff": "@@ -79,8 +79,6 @@ jobs:\n- name: Build app\nif: ${{ success() }}\n- run: npx serve -s build\n-\n- - name: exit on success\n- if: ${{ success() }}\n- run: exit 1\n+ run: |\n+ npx serve -s build\n+ exit 0\n", "new_path": ".github/workflows/test-app.yml", "old_path":...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(test-app): add exit code after build
1
chore
test-app
942,581
20.09.2021 16:40:35
21,600
3cee630a5ce4d7bb57e00efaea46f321796a76d7
ci: Fix build process
[ { "change_type": "MODIFY", "diff": "@@ -111,7 +111,15 @@ jobs:\nrun: |\ngit add . && git commit -m \"chore: Release v${{steps.new-tag.outputs.tag}} [skip ci]\" && git tag -a v${{steps.new-tag.outputs.tag}} -m \"v${{steps.new-tag.outputs.tag}}\"\n- ## Build for packaging\n+ ## Build Storybook and extract com...
TypeScript
Apache License 2.0
workday/canvas-kit
ci: Fix build process
1
ci
null
273,730
20.09.2021 16:44:33
-28,800
7412b01654bbb38a88948a476911182bf425fb82
refactor: fallback to raw value when slug is empty
[ { "change_type": "MODIFY", "diff": "@@ -51,9 +51,12 @@ const makePath = (object, { routeKeys, createPath }, dateField = 'date', slugify\n) {\nreturn String(value.id)\n} else if (!isPlainObject(value)) {\n- return suffix === 'raw'\n- ? String(value)\n- : slugify(String(value))\n+ const slugifyValue = slugify...
JavaScript
MIT License
gridsome/gridsome
refactor: fallback to raw value when slug is empty (#1513)
1
refactor
null
942,581
20.09.2021 16:58:40
21,600
4654a8ada22ab10eddcd3edbead29e6bd1d20675
ci: Fix push GH token
[ { "change_type": "MODIFY", "diff": "@@ -133,7 +133,7 @@ jobs:\n- name: Push changes\nuses: ad-m/github-push-action@master\nwith:\n- github_token: ${{ secrets.ADMIN_GITHUB_TOKEN }}\n+ github_token: ${{ secrets.GH_RW_TOKEN }}\nbranch: ${{ github.ref }}\ntags: true\n", "new_path": ".github/workflows/releas...
TypeScript
Apache License 2.0
workday/canvas-kit
ci: Fix push GH token
1
ci
null
603,467
20.09.2021 17:18:00
-3,600
af2b686e2c0c1ddda5846bc73f0b4149431c8d92
test(web): migrated tests for the interaction to TakeScreenshot to the web module
[ { "change_type": "ADD", "diff": "+import 'mocha';\n+\n+import { EventRecorder, expect, PickEvent } from '@integration/testing-tools';\n+import { Clock, Serenity, serenity } from '@serenity-js/core';\n+import { ActivityRelatedArtifactGenerated } from '@serenity-js/core/lib/events';\n+import { Navigate, TakeS...
TypeScript
Apache License 2.0
serenity-js/serenity-js
test(web): migrated tests for the interaction to TakeScreenshot to the web module
1
test
web
306,320
20.09.2021 17:43:09
-3,600
2fa26d0b6b7bcc36bcd1394a1b36c40148f5b968
refactor: move CPU credit for instances to new generic resource
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,7 @@ import (\n)\nvar defaultEC2InstanceMetricCount = 7\n+var burstableInstanceTypePrefixes = []string{\"t2.\", \"t3.\", \"t4.\"}\ntype Instance struct {\n// \"required\" args that can't really be missing.\n@@ -32,13 +33,17 @@ type Instance struct {\nReserved...
Go
Apache License 2.0
infracost/infracost
refactor: move CPU credit for instances to new generic resource
1
refactor
null
777,396
20.09.2021 17:47:21
21,600
1825c546e42615b38b9d97ed3ce0ec78deae9a80
fix: make PIDServer send SIGKILL after waiting on SIGTERM In other words, try even harder to avoid hangs.
[ { "change_type": "MODIFY", "diff": "+import logging\nimport os\nimport selectors\nimport signal\n@@ -682,12 +683,24 @@ class PIDServer:\n# Let things finish logging, exiting on their own, etc.\ntime.sleep(grace_period)\np.send_signal(on_fail)\n+ if on_fail != signal.SIGKILL:\n+ try:\n+ return p.wait(timeout...
Python
Apache License 2.0
determined-ai/determined
fix: make PIDServer send SIGKILL after waiting on SIGTERM (#2976) In other words, try even harder to avoid hangs.
1
fix
null
679,913
20.09.2021 17:53:14
-7,200
323995fd70981a7e4d33f029f829ed0d0e3ce0bb
feat(expose): extract as new pkg migrate exposeGlobal() from thi.ng/api to new pkg
[ { "change_type": "ADD", "diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://www.apache.org/licenses/\n+\n+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n+\n+ 1. Definitions.\n+\n+ \"License\" shall mean the terms and conditions for use, reproduction,\n+ and distribution as defin...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(expose): extract as new pkg - migrate exposeGlobal() from thi.ng/api to new pkg
1
feat
expose
679,913
20.09.2021 17:54:33
-7,200
e0399a8f64af514e910719a3348d3e10261949df
feat(logger): extract as new pkg migrate logging related types & classes from thi.ng/api
[ { "change_type": "ADD", "diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://www.apache.org/licenses/\n+\n+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n+\n+ 1. Definitions.\n+\n+ \"License\" shall mean the terms and conditions for use, reproduction,\n+ and distribution as defin...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(logger): extract as new pkg - migrate logging related types & classes from thi.ng/api
1
feat
logger
603,467
20.09.2021 17:57:21
-3,600
b358c0b67c1de11af63e1e2142d3613692769cd6
fix(web): ensure all Web interactions extend the same base class
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import { Answerable, AnswersQuestions, Interaction, LogicError, UsesAbilities }\nimport { formatted } from '@serenity-js/core/lib/io';\nimport { UIElement } from '../../ui';\n-import { WebElementInteraction } from './WebElementInteraction';\n+import { UIEl...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(web): ensure all Web interactions extend the same base class
1
fix
web
603,467
20.09.2021 17:58:34
-3,600
c2b7b32be9de2fcf1f1b222a3851142300c5b1aa
refactor(protractor): removed helper method that's no longer needed
[ { "change_type": "DELETE", "diff": "-import { AnswersQuestions, Question, UsesAbilities } from '@serenity-js/core';\n-\n-/**\n- * @private\n- * @param actor\n- * @param maybeQuestion\n- * @param fn\n- */\n-export function withAnswerOf<T, O>(\n- actor: AnswersQuestions & UsesAbilities,\n- maybeQuestion: Ques...
TypeScript
Apache License 2.0
serenity-js/serenity-js
refactor(protractor): removed helper method that's no longer needed
1
refactor
protractor
679,913
20.09.2021 18:02:52
-7,200
0a8641a27f3d340880462541311f5a82360be62b
feat(defmulti): add .setDefault(), pkg restructure dissolve constants.ts: - move logging to logger.ts - move `DEFAULT` symbol to defmulti.ts update deps
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"^7.2.0\",\n- \"@thi.ng/errors\": \"^1.3.4\"\n+ \"@thi.ng/errors\": \"^1.3.4\",\n+ \"@thi.ng/logger\": \"^0.0.1\"\n},\n\"devDependencies\": {\n\"@thi.ng/testament\": \"^0.0.1\"\n\"./api\": {\n\"import\": \"./api.js\"\n},\n- \"./c...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(defmulti): add .setDefault(), pkg restructure - dissolve constants.ts: - move logging to logger.ts - move `DEFAULT` symbol to defmulti.ts - update deps
1
feat
defmulti
780,866
20.09.2021 18:45:45
10,800
1f8391a3d4c14dbf14adc527b9e05cf38bcac303
fix(app/checkout): hide checkout block on lp while cart empty (product with variations)
[ { "change_type": "MODIFY", "diff": "<div\nv-if=\"isLpCheckout\"\nclass=\"col-lg-4\"\n+ :class=\"cart.items.length ? null : 'offset-lg-4'\"\n>\n<div ref=\"product\"></div>\n</div>\n- <div class=\"col\">\n+ <div\n+ v-if=\"!isLpCheckout || cart.items.length\"\n+ class=\"col\"\n+ >\n<ec-checkout\n:is-guest-chec...
JavaScript
MIT License
ecomplus/storefront
fix(app/checkout): hide checkout block on lp while cart empty (product with variations)
1
fix
app/checkout
273,655
20.09.2021 19:08:02
-36,000
61dc64963449cc009b63c70f18961e536a4c00e0
feat(graphql): `position` argument for images
[ { "change_type": "MODIFY", "diff": "@@ -43,6 +43,59 @@ exports.createImageFitEnum = schemaComposer => {\n})\n}\n+exports.createImagePositionEnum = schemaComposer => {\n+ return schemaComposer.createEnumTC({\n+ name: 'ImagePosition',\n+ values: {\n+ top: {\n+ value: 'top',\n+ name: 'Top',\n+ description: 'Di...
JavaScript
MIT License
gridsome/gridsome
feat(graphql): `position` argument for images (#1471)
1
feat
graphql
276,962
20.09.2021 19:28:52
10,800
f95253e1bed52d31ba0bfd9b509273882b32af88
refactor(prop-types): update deprecated validation to use console.warn instead of warning
[ { "change_type": "MODIFY", "diff": "-import warning from 'warning';\n+/* eslint-disable no-console */\n-let warned = {};\n-\n-export default function deprecated(propType, explanation) {\n+const deprecated = (propType, explanation) => {\nreturn function validate(props, propName, componentName, ...rest) {\nif...
JavaScript
MIT License
gympass/yoga
refactor(prop-types): update deprecated validation to use console.warn instead of warning
1
refactor
prop-types
780,866
20.09.2021 19:37:38
10,800
1768fafcd6b047e5b8763fb0e836c65faaf24f81
fix(components/search-engine): minor style fixes for filter btn and buttons (truncate)
[ { "change_type": "MODIFY", "diff": ">\n<template v-once>\n<button\n- class=\"btn\"\n+ class=\"btn text-truncate\"\ntype=\"button\"\ndata-toggle=\"collapse\"\n:data-target=\"`#collapse-${filter}`\"\n:aria-expanded=\"i < 5 ? 'true' : 'false'\"\n:aria-controls=\"`collapse-${filter}`\"\n>\n- <i class=\"fas fa-c...
JavaScript
MIT License
ecomplus/storefront
fix(components/search-engine): minor style fixes for filter btn and buttons (truncate)
1
fix
components/search-engine
679,913
20.09.2021 20:33:11
-7,200
21214529f05f02e6c71277f9217c483258657c0b
refactor(ecs): pkg restructure dissolve constants.ts: - move event IDs to api.ts - move logging to logger.ts update deps
[ { "change_type": "MODIFY", "diff": "\"@thi.ng/binary\": \"^2.2.11\",\n\"@thi.ng/checks\": \"^2.9.11\",\n\"@thi.ng/dcons\": \"^2.3.34\",\n+ \"@thi.ng/errors\": \"^1.3.4\",\n\"@thi.ng/idgen\": \"^1.0.5\",\n+ \"@thi.ng/logger\": \"^0.0.1\",\n\"@thi.ng/malloc\": \"^5.0.14\",\n- \"@thi.ng/transducers\": \"^7.9.2...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(ecs): pkg restructure - dissolve constants.ts: - move event IDs to api.ts - move logging to logger.ts - update deps
1
refactor
ecs
217,922
20.09.2021 20:55:49
-7,200
203c804748e771300f9a3b1ab57e76cb7d6124d7
feat(retainers): you can now track items sold on MB
[ { "change_type": "MODIFY", "diff": "@@ -103,6 +103,7 @@ export class UniversalisService {\n})\n.map(listing => {\nreturn {\n+ ...listing,\nServer: listing.worldName,\nPricePerUnit: listing.pricePerUnit,\nPriceTotal: listing.total,\n@@ -116,6 +117,7 @@ export class UniversalisService {\n})\n.map(listing => {...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(retainers): you can now track items sold on MB
1
feat
retainers
71,371
20.09.2021 20:59:50
-7,200
1e9d8be0a81e1f875bf8b31c701e1069bb98728e
feat(rds): region replication for generated secrets Add a `replicaRegions` option to `fromGeneratedSecret()` both in `Credentials` and `SnapshotCredentials`. Closes *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "MODIFY", "diff": "@@ -200,6 +200,23 @@ new rds.DatabaseInstance(this, 'InstanceWithSecretLogin', {\n});\n```\n+Secrets generated by `fromGeneratedSecret()` can be customized:\n+\n+```ts\n+const myKey = kms.Key(this, 'MyKey');\n+\n+new rds.DatabaseInstance(this, 'InstanceWithCustomizedSecre...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(rds): region replication for generated secrets (#16497) Add a `replicaRegions` option to `fromGeneratedSecret()` both in `Credentials` and `SnapshotCredentials`. Closes #16480 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
feat
rds
306,320
20.09.2021 21:11:28
-3,600
634371a0466bbc43278369e9895efa52f89d4fc4
refactor: move Autoscaling Group with Launch Templates to new structure
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,7 @@ import (\n\"strings\"\n\"github.com/infracost/infracost/internal/resources/aws\"\n- log \"github.com/sirupsen/logrus\"\n+ \"github.com/shopspring/decimal\"\n\"github.com/tidwall/gjson\"\n\"github.com/infracost/infracost/internal/schema\"\n@@ -28,16 +28,39 ...
Go
Apache License 2.0
infracost/infracost
refactor: move Autoscaling Group with Launch Templates to new structure
1
refactor
null
306,320
20.09.2021 21:28:57
-3,600
f6fecc8d50a0dd57dc4191e268a28e2084a8d2d4
fix: Autoscaling group tests
[ { "change_type": "MODIFY", "diff": "@@ -49,18 +49,17 @@ func NewAutoscalingGroup(d *schema.ResourceData, u *schema.UsageData) *schema.Re\n} else if len(launchTemplateRef) > 0 {\ndata := launchTemplateRef[0]\n- onDemandCount := capacity\n- spotCount := int64(0)\n+ onDemandInstanceCount := capacity\n+ spotIns...
Go
Apache License 2.0
infracost/infracost
fix: Autoscaling group tests
1
fix
null