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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
126,276 | 31.08.2021 10:52:43 | 10,800 | 4931129b67c9d36961763de8bf604e6380e0bad7 | chore(embedded/sql): index prefix function | [
{
"change_type": "MODIFY",
"diff": "@@ -240,6 +240,18 @@ func (i *Index) sortableUsing(colID uint64, rangesByColID map[uint64]*typedValue\nreturn false\n}\n+func (i *Index) prefix() string {\n+ if i.isPrimary() {\n+ return PIndexPrefix\n+ }\n+\n+ if i.unique {\n+ return UIndexPrefix\n+ }\n+\n+ return SIndex... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/sql): index prefix function
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/sql |
127,945 | 31.08.2021 11:09:00 | -10,800 | 63e90833acbb6e35d5e880eb0769a22c04e9337c | fix: fix betadda logo color | [
{
"change_type": "MODIFY",
"diff": "@@ -9,7 +9,7 @@ const sharedDefaultProps = '';\nconst customDefaultProps = {\nLogoSportsbet: 'color: \"bulma.100\",',\nLogoSportsbetSponsor: 'color: \"bulma.100\",',\n- LogoBetaddaFull: 'color: \"goku.100\",',\n+ LogoBetaddaFull: 'color: \"bulma.100\",',\nPatternCircles: ... | TypeScript | MIT License | coingaming/moon-design | fix: fix betadda logo color (#1360) | 1 | fix | null |
791,282 | 31.08.2021 11:18:40 | 25,200 | 423c36c60e84cbc63dd2fc9529560db620ec7294 | chore(gapicgen)!: update microgen to v0.23.1
Updates microgen to v0.23.1. This incorporates a breaking change for compute that is intended. The heuristics for custom operation wrapping changed to exclude more RPCs (Wait RPCs).
BREAKING_CHANGE_ALLOWED: intended breaking change to alpha client. | [
{
"change_type": "MODIFY",
"diff": "@@ -58,7 +58,7 @@ type internalGlobalOperationsClient interface {\nDelete(context.Context, *computepb.DeleteGlobalOperationRequest, ...gax.CallOption) (*computepb.DeleteGlobalOperationResponse, error)\nGet(context.Context, *computepb.GetGlobalOperationRequest, ...gax.Call... | Go | Apache License 2.0 | googleapis/google-cloud-go | chore(gapicgen)!: update microgen to v0.23.1 (#4706)
Updates microgen to v0.23.1. This incorporates a breaking change for compute that is intended. The heuristics for custom operation wrapping changed to exclude more RPCs (Wait RPCs).
BREAKING_CHANGE_ALLOWED: intended breaking change to alpha client. | 1 | chore | gapicgen |
777,399 | 31.08.2021 11:40:54 | 25,200 | 164560ddc8284b33705b9fae03669df44575e30b | ci: push `latest` tag for master and agent Docker images
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -46,6 +46,7 @@ dockers:\n- goos: linux\ngoarch: amd64\nimage_templates:\n+ - \"determinedai/{{.ProjectName}}:latest\"\n- \"determinedai/{{.ProjectName}}:{{.Env.VERSION}}\"\n- \"determinedai/{{.ProjectName}}:{{.ShortCommit}}\"\n- \"determinedai/{{.ProjectName}}:{{.FullC... | Python | Apache License 2.0 | determined-ai/determined | ci: push `latest` tag for master and agent Docker images (#2891)
Closes #2630. | 1 | ci | null |
711,597 | 31.08.2021 11:47:45 | -7,200 | 29d898947f9f1e7b1ae729b95787339a0d57a5d4 | test(common): Fix failing test | [
{
"change_type": "MODIFY",
"diff": "@@ -3,6 +3,22 @@ import { omit } from './omit';\ndeclare const File: any;\ndescribe('omit()', () => {\n+ let patchedFileClass = false;\n+ beforeAll(() => {\n+ // In Node.js there is no File constructor, so we need to patch\n+ // a mock version.\n+ if (typeof File === 'und... | TypeScript | MIT License | vendure-ecommerce/vendure | test(common): Fix failing test | 1 | test | common |
889,620 | 31.08.2021 11:56:56 | -28,800 | f8cd7dfcf7bafe80a196fa8054575562d2cca1ad | fix: scan could fail with latest sqlite library
statement would be too long to execute
closes | [
{
"change_type": "ADD",
"diff": "+CREATE TABLE TEMP_URL_LIST\n+(\n+ URL varchar NOT NULL\n+);\n",
"new_path": "komga/src/flyway/resources/db/migration/sqlite/V20210831113524__temp_table_urls.sql",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,7 @@ interface BookRep... | Kotlin | MIT License | gotson/komga | fix: scan could fail with latest sqlite library
statement would be too long to execute
closes #644 | 1 | fix | null |
126,276 | 31.08.2021 11:58:17 | 10,800 | 95d72a90d69ed5163344679d2ea407d583de592b | test(embedded/sql): strengthen selectors range validations | [
{
"change_type": "MODIFY",
"diff": "@@ -1262,7 +1262,13 @@ func TestIndexing(t *testing.T) {\nrequire.False(t, scanSpecs.index.unique)\nrequire.Len(t, scanSpecs.index.colIDs, 1)\nrequire.Len(t, scanSpecs.rangesByColID, 1)\n- //require.Equal(t, uint64(1629902962), scanSpecs.valuesByColID[2].Value())\n+\n+ ts... | Go | Apache License 2.0 | codenotary/immudb | test(embedded/sql): strengthen selectors range validations
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | test | embedded/sql |
67,494 | 31.08.2021 12:26:24 | -7,200 | 35069fd76f5aa006c0429219a8d3e28040874eb6 | feat(router): add current step to Runner | [
{
"change_type": "MODIFY",
"diff": "@@ -217,6 +217,7 @@ export class Runner {\npublic static process<T = unknown>(step: Step<T> | null): void {\nconst root = step!.root;\nwhile (step !== null && !step.isDoing && !step.isDone) {\n+ root.current = step;\nif (step.isParallelParent) {\nstep.isDone = true;\n@@ -... | TypeScript | MIT License | aurelia/aurelia | feat(router): add current step to Runner | 1 | feat | router |
67,494 | 31.08.2021 12:29:08 | -7,200 | 79f121f78afad028132989610f32c591341ba4cf | refactor(router): add endpoint step to coordinator | [
{
"change_type": "MODIFY",
"diff": "@@ -185,7 +185,7 @@ export class Viewport extends Endpoint {\n*/\npublic get parentViewport(): Viewport | null {\nlet scope = this.connectedScope;\n- while (scope.parent !== null) {\n+ while (scope?.parent != null) {\nscope = scope.parent;\nif (scope.endpoint.isViewport) ... | TypeScript | MIT License | aurelia/aurelia | refactor(router): add endpoint step to coordinator | 1 | refactor | router |
67,494 | 31.08.2021 12:29:59 | -7,200 | 51fc746567927f3e2436c26b3eae91da2a0a08ad | test(router): add viewport default attribute tests | [
{
"change_type": "MODIFY",
"diff": "@@ -61,4 +61,46 @@ describe('Viewport', function () {\nawait tearDown();\n});\n+\n+ it('loads default component', async function () {\n+ const One = CustomElement.define({ name: 'one', template: '!one!' });\n+ const App = CustomElement.define({ name: 'app', template: '<au... | TypeScript | MIT License | aurelia/aurelia | test(router): add viewport default attribute tests | 1 | test | router |
530,289 | 31.08.2021 12:48:55 | 25,200 | 98e895b75b23c03de6ec765adad312bbac6329a9 | fix: collocated TypeScript compiler files not ignored
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": "@@ -42,8 +42,8 @@ junit.xml\n!/.github/workflows/upgrade.yml\n!/.github/pull_request_template.md\n!/src/__tests__/\n-/lib\n!/src/\n+/lib\n/dist/\n!/.projen/jest-snapshot-resolver.js\n!/.eslintrc.json\n",
"new_path": ".gitignore",
"old_path": ".gitignore"
},
{
... | TypeScript | Apache License 2.0 | projen/projen | fix: collocated TypeScript compiler files not ignored (#1022)
Fixes #1020
---
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. | 1 | fix | null |
306,320 | 31.08.2021 13:27:40 | -3,600 | dd3e2fe187edadd21178c25e8f34d53a29e4df07 | feat: add simple Terragrunt detection | [
{
"change_type": "MODIFY",
"diff": "@@ -6,6 +6,7 @@ import (\n\"fmt\"\n\"io/ioutil\"\n\"os\"\n+ \"path/filepath\"\n\"github.com/awslabs/goformation/v4\"\n\"github.com/infracost/infracost/internal/providers/cloudformation\"\n@@ -106,15 +107,14 @@ func isTerraformPlan(path string) bool {\n}\nfunc isTerragrunt... | Go | Apache License 2.0 | infracost/infracost | feat: add simple Terragrunt detection | 1 | feat | null |
503,965 | 31.08.2021 13:42:19 | 14,400 | 5d51551a091ffd0ca83c0bb0ceca652228ed8936 | fix(code-editor): remove uneeded peer dep | [
{
"change_type": "MODIFY",
"diff": "\"tslib\": \"^2.0.0\"\n},\n\"peerDependencies\": {\n- \"monaco-editor\": \"^0.21.3\",\n\"monaco-editor-webpack-plugin\": \"^2.1.0\",\n\"react\": \"^16.8.0 || ^17.0.0\",\n\"react-dom\": \"^16.8.0 || ^17.0.0\",\n",
"new_path": "packages/react-code-editor/package.json",
... | TypeScript | MIT License | patternfly/patternfly-react | fix(code-editor): remove uneeded peer dep (#6239) | 1 | fix | code-editor |
266,154 | 31.08.2021 13:48:32 | 25,200 | 1b32f451f6c82db7fc3faa044a7c767723287cb7 | fix(owl-bot): Reduce Risk of Git Conflicts When Updating PRs
* fix(owl-bot): Pull before Pushing To Reduce Risk of Git Conflicts
Fixes: 2307
* chore(owl-bot): Set default pull method to merge for update-pr | [
{
"change_type": "MODIFY",
"diff": "@@ -34,6 +34,14 @@ steps:\n- 'Owl Bot'\nenv:\n- 'HOME=/workspace'\n+ - name: 'gcr.io/cloud-builders/git'\n+ args:\n+ - config\n+ - --global\n+ - pull.rebase\n+ - 'false'\n+ env:\n+ - 'HOME=/workspace'\n# Populate credentials for cloning:\n- name: 'bash'\nargs:\n@@ -87,6 +... | TypeScript | Apache License 2.0 | googleapis/repo-automation-bots | fix(owl-bot): Reduce Risk of Git Conflicts When Updating PRs (#2422)
* fix(owl-bot): Pull before Pushing To Reduce Risk of Git Conflicts
Fixes: 2307
* chore(owl-bot): Set default pull method to merge for update-pr | 1 | fix | owl-bot |
104,857 | 31.08.2021 14:01:22 | 10,800 | 0bf83df682913f9935445e1458b84d7b7fbf8202 | feat(loading): table and list isLoadingMore support | [
{
"change_type": "MODIFY",
"diff": "import React, { forwardRef, useMemo } from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\n-import { Bee32, ArrowDown16 } from '@carbon/icons-react';\n+import { Bee32 } from '@carbon/icons-react';\n+import { Loading } from 'carbon-comp... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(loading): table and list isLoadingMore support | 1 | feat | loading |
889,620 | 31.08.2021 14:10:10 | -28,800 | 0384dcd99d0e750c7bfaca263fee2559bfdec5c5 | test: fix tests following last commit | [
{
"change_type": "MODIFY",
"diff": "@@ -68,6 +68,7 @@ class BookDao(\n// insert urls in a temporary table, else the select size can exceed the statement limit\ndsl.deleteFrom(u).execute()\n+ if (urls.isNotEmpty()) {\ndsl.batch(\ndsl.insertInto(u, u.URL).values(null as String?)\n).also { step ->\n@@ -75,6 +7... | Kotlin | MIT License | gotson/komga | test: fix tests following last commit | 1 | test | null |
127,980 | 31.08.2021 14:51:12 | -10,800 | ebd64b1c10856479f0a771ddb01357dabaa3fbdf | fix: use row object in onDropRow event | [
{
"change_type": "ADD",
"diff": "+import React from 'react';\n+import { DraggableTable } from '@heathmont/moon-draggabletable';\n+import Preview from '../../components/codePreview/Preview';\n+\n+const PreviewDraggableTable = () => {\n+ return (\n+ <Preview\n+ title=\"Draggable table\"\n+ preview={\n+ <Dragg... | TypeScript | MIT License | coingaming/moon-design | fix: use row object in onDropRow event (#1362) | 1 | fix | null |
471,334 | 31.08.2021 15:06:41 | -10,800 | aec15184ca50a3b1124905819fc3ec253ef5efe9 | chore(mysql2): remove unused test.js file | [
{
"change_type": "DELETE",
"diff": "-const mysql = require('mysql');\n-\n-process.env.MYSQL_HOST = '';\n-const port = Number(process.env.MYSQL_PORT) || 33306;\n-const database = process.env.MYSQL_DATABASE || 'test_db';\n-const host = process.env.MYSQL_HOST || '127.0.0.1';\n-const user = process.env.MYSQL_US... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js-contrib | chore(mysql2): remove unused test.js file (#636)
Co-authored-by: Daniel Dyla <dyladan@users.noreply.github.com> | 1 | chore | mysql2 |
815,574 | 31.08.2021 15:07:26 | -28,800 | f8899f7c72c168d5dd46731112a0e34b3290292d | feat(sync orphan_block_pool): cleanup expired blocks in orphan block pool periodically | [
{
"change_type": "MODIFY",
"diff": "use ckb_logger::debug;\n+use ckb_types::core::EpochNumber;\nuse ckb_types::{core, packed};\nuse ckb_util::{parking_lot::RwLock, shrink_to_fit};\nuse std::collections::{HashMap, HashSet, VecDeque};\npub type ParentHash = packed::Byte32;\nconst SHRINK_THRESHOLD: usize = 100... | Rust | MIT License | nervosnetwork/ckb | feat(sync orphan_block_pool): cleanup expired blocks in orphan block pool periodically | 1 | feat | sync orphan_block_pool |
667,713 | 31.08.2021 15:18:52 | -28,800 | 31fdc2e12a8609260725cad1d56e2ba7c9fd625a | refactor(android): add handleRequestCookie for HttpAdapter | [
{
"change_type": "MODIFY",
"diff": "@@ -17,6 +17,8 @@ package com.tencent.mtt.hippy.adapter.http;\nimport android.text.TextUtils;\n+import com.tencent.mtt.hippy.common.HippyArray;\n+import com.tencent.mtt.hippy.modules.nativemodules.network.NetworkModule;\nimport java.io.DataOutputStream;\nimport java.io.IO... | C++ | Apache License 2.0 | tencent/hippy | refactor(android): add handleRequestCookie for HttpAdapter | 1 | refactor | android |
217,922 | 31.08.2021 15:35:16 | -7,200 | 9f2ab0a9afe8727477723d564f3ff8b5e3fc9a09 | feat(log-tracker): added tug to fish details | [
{
"change_type": "MODIFY",
"diff": "@@ -149,6 +149,10 @@ export class GatheringNodesService {\nnode.hookset = gtFish.hookset.split(' ')[0].toLowerCase() as 'powerful' | 'precision';\n}\n+ if (gtFish.tug) {\n+ node.tug = ['Medium', 'Heavy', 'Light'].indexOf(gtFish.tug);\n+ }\n+\nif (gtFish.snagging === 1) {\... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(log-tracker): added tug to fish details | 1 | feat | log-tracker |
826,656 | 31.08.2021 15:48:19 | -7,200 | 7956decb995d5906c4a4632ebd500acb44b4a7ad | fix(cli): panic when printing empty expand trees | [
{
"change_type": "MODIFY",
"diff": "@@ -60,6 +60,9 @@ func NewExpandCmd() *cobra.Command {\ncmdx.PrintJSONAble(cmd, tree)\nswitch flagx.MustGetString(cmd, cmdx.FlagFormat) {\ncase string(cmdx.FormatDefault), \"\":\n+ if tree == nil && !flagx.MustGetBool(cmd, cmdx.FlagQuiet) {\n+ _, _ = fmt.Fprint(cmd.OutOrS... | Go | Apache License 2.0 | ory/keto | fix(cli): panic when printing empty expand trees (#686) | 1 | fix | cli |
889,620 | 31.08.2021 16:02:41 | -28,800 | 44460013103082c46a2990e7630f641e0522093a | refactor: single column select for subselect | [
{
"change_type": "MODIFY",
"diff": "@@ -81,7 +81,7 @@ class BookDao(\nreturn dsl.selectFrom(b)\n.where(b.LIBRARY_ID.eq(libraryId))\n.and(b.DELETED_DATE.isNull)\n- .and(b.URL.notIn(dsl.selectFrom(u)))\n+ .and(b.URL.notIn(dsl.select(u.URL).from(u)))\n.fetchInto(b)\n.map { it.toDomain() }\n}\n",
"new_path"... | Kotlin | MIT License | gotson/komga | refactor: single column select for subselect | 1 | refactor | null |
304,908 | 31.08.2021 16:05:49 | -3,600 | 0bfe152ccbffffbd533ad6a807a457a9b7feabb4 | fix(stdlib): panic with unknown type invalid in reduce function
if the reduce function has null value, the query is panicking with unkonown type.
So check has been added for nulls and if it exist, return the appropriate error message to the user. | [
{
"change_type": "MODIFY",
"diff": "@@ -183,6 +183,9 @@ func (t *reduceTransformation) Process(id execute.DatasetID, tbl flux.Table) err\nfor _, label := range columns {\nv, _ := m.Get(label)\n+ if v.IsNull() {\n+ return errors.Newf(codes.Invalid, `reduce object property \"%s\" is \"%v\" type which is not s... | Go | MIT License | influxdata/flux | fix(stdlib): panic with unknown type invalid in reduce function (#4007)
if the reduce function has null value, the query is panicking with unkonown type.
So check has been added for nulls and if it exist, return the appropriate error message to the user. | 1 | fix | stdlib |
815,609 | 31.08.2021 16:07:21 | -28,800 | eb1fb2a34544ec1ec8afdf884bddbad40dc22111 | fix: the default logger configuration doesn't have the default values | [
{
"change_type": "MODIFY",
"diff": "@@ -25,6 +25,7 @@ pub struct Config {\n/// [env_logger::Filter]: https://docs.rs/env_logger/*/env_logger/filter/struct.Filter.html\npub filter: Option<String>,\n/// Colorize the output which was written into the stdout.\n+ #[serde(default = \"default_values::color\")]\npu... | Rust | MIT License | nervosnetwork/ckb | fix: the default logger configuration doesn't have the default values | 1 | fix | null |
756,051 | 31.08.2021 16:14:37 | 18,000 | 5fc4b2e3f065ec0c2c9710f27726882d2a9b318e | build: update moddable for TextEncoder / TextDecoder integration
- TextEncoder that works with snapshots | [
{
"change_type": "MODIFY",
"diff": "-Subproject commit 6d7f33f8f318663bd5ba8d6ca6536443d42e68ea\n+Subproject commit 7957712d89f67b36dfa2e44c5dcdf73f21e0ac6f\n",
"new_path": "packages/xsnap/moddable",
"old_path": "packages/xsnap/moddable"
},
{
"change_type": "MODIFY",
"diff": "-Subproject... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | build: update moddable for TextEncoder / TextDecoder integration
- TextEncoder that works with snapshots | 1 | build | null |
471,431 | 31.08.2021 16:26:25 | -7,200 | 5fb3313b60a8d74af9ba8bacd260818545e4a1db | fix: GraphQL throws TypeError: Cannot read property 'startToken' of undefined | [
{
"change_type": "MODIFY",
"diff": "@@ -46,6 +46,12 @@ npm install\n```\n5. You can also write your own queries, open page `http://localhost:4000/graphql`\n+6. You can also test a `graphql-transform-federation`\n+ ```shell script\n+ # from this directory\n+ npm run server:federation\n+ npm run client:federa... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js-contrib | fix: GraphQL throws TypeError: Cannot read property 'startToken' of undefined (#619)
Co-authored-by: Daniel Dyla <dyladan@users.noreply.github.com> | 1 | fix | null |
471,357 | 31.08.2021 16:29:21 | -10,800 | 85844326445a0adfea1ef6919b830124aabef3fc | feat(mongodb): add db statement serializer config | [
{
"change_type": "MODIFY",
"diff": "@@ -51,6 +51,7 @@ Mongodb instrumentation has few options available to choose from. You can set th\n| ------- | ---- | ----------- |\n| [`enhancedDatabaseReporting`](https://github.com/open-telemetry/opentelemetry-js/blob/main/packages/opentelemetry-api/src/trace/instrume... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js-contrib | feat(mongodb): add db statement serializer config (#626) | 1 | feat | mongodb |
711,597 | 31.08.2021 16:33:08 | -7,200 | cd4777521b88b1a5c7e8686fffe52dda7ef0b1d7 | chore: Fix TS docgen script
Some internal API changes in latest version of TS | [
{
"change_type": "MODIFY",
"diff": "@@ -23,6 +23,7 @@ const sections: DocsSectionConfig[] = [\n'packages/asset-server-plugin/src/',\n'packages/email-plugin/src/',\n'packages/elasticsearch-plugin/src/',\n+ 'packages/job-queue-plugin/src/',\n'packages/testing/src/',\n'packages/ui-devkit/src/',\n],\n",
"ne... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Fix TS docgen script
Some internal API changes in latest version of TS | 1 | chore | null |
826,708 | 31.08.2021 16:33:18 | -10,800 | c874db1eb7979c160176fb75abdf013312f30aed | fix: incorrect dir | [
{
"change_type": "MODIFY",
"diff": "@@ -107,7 +107,7 @@ typescript() {\njava() {\nto_git \"java\" \"no\"\n- gitdir=\"repos/${GIT_REPO}-java\"\n+ gitdir=\"repos/${GIT_REPO}/java\"\n(cd \"${gitdir}\"; mvn clean)\nversion=$(echo \"${VERSION}\" | sed \"s/^v//\")\n@@ -121,7 +121,7 @@ java() {\n(cd \"${gitdir}\";... | C# | Apache License 2.0 | ory/sdk | fix: incorrect dir | 1 | fix | null |
711,597 | 31.08.2021 16:34:42 | -7,200 | 8339c3cb711233a68d867b3c8034d6d82703d583 | docs: Add some more docs on job queue plugin | [
{
"change_type": "MODIFY",
"diff": "@@ -19,6 +19,8 @@ Some operations however will need to perform much longer-running tasks. For exam\n## What does Vendure use the job queue for?\n+By default, Vendure uses the job queue for the following tasks:\n+\n- Re-building the search index\n- Updating the search inde... | TypeScript | MIT License | vendure-ecommerce/vendure | docs: Add some more docs on job queue plugin | 1 | docs | null |
869,317 | 31.08.2021 16:46:11 | -7,200 | 6dd205c1d0758c94f4397b3247fb88c52ef6dba1 | feat: blubitex driver | [
{
"change_type": "ADD",
"diff": "+const Driver = require('../models/driver');\n+const request = require('../lib/request');\n+const Ticker = require('../models/ticker');\n+const { parseToFloat } = require('../lib/utils');\n+\n+/**\n+ * @memberof Driver\n+ * @augments Driver\n+ */\n+class Blubitex extends Dri... | JavaScript | MIT License | coinranking/exchanges | feat: blubitex driver | 1 | feat | null |
815,609 | 31.08.2021 16:49:59 | -28,800 | fb41e7204d15e71aee31b24493de02fae1e16621 | fix: cause ambiguity since log file could be irrelevant to the `log_dir` | [
{
"change_type": "MODIFY",
"diff": "@@ -77,10 +77,19 @@ fn main() {\n..Default::default()\n};\nif let Some(log_file) = log_file_opt {\n- if log_file.is_relative() {\n- logger_config.log_dir = current_dir();\n- }\n- logger_config.file = log_file;\n+ let full_log_file = if log_file.is_relative() {\n+ current_... | Rust | MIT License | nervosnetwork/ckb | fix: cause ambiguity since log file could be irrelevant to the `log_dir` | 1 | fix | null |
141,572 | 31.08.2021 16:50:27 | -36,000 | d074b7d0d4bbbdf7eed6a0b7942ae4562b3a18c6 | chore: Revert design-tokens 4 | [
{
"change_type": "MODIFY",
"diff": "\"lottie-web\": \"^5.7.8\"\n},\n\"devDependencies\": {\n- \"@kaizen/design-tokens\": \"^4.0.0\",\n+ \"@kaizen/design-tokens\": \"^3.0.1\",\n\"@types/jszip\": \"^3.1.7\",\n\"elm-storybook\": \"cultureamp/elm-storybook#0.3.0\",\n\"rimraf\": \"^3.0.2\"\n",
"new_path": "d... | TypeScript | MIT License | cultureamp/kaizen-design-system | chore: Revert design-tokens 4 (#1908) | 1 | chore | null |
67,479 | 31.08.2021 16:52:28 | -36,000 | f74965879d730cbf1d41e506b365f2f1e37aca26 | feat(router): add basic failing tests for component factory | [
{
"change_type": "MODIFY",
"diff": "},\n\"version\": \"0.8.0\",\n\"scripts\": {\n+ \"dev\": \"npm run build -- -w\",\n\"build\": \"webpack --config webpack.config.js\",\n\"serve\": \"node ../../../node_modules/@aurelia/http-server/dist/esm/cli.js au.conf.js\",\n+ \"test:ci\": \"npm run build && npx playwrig... | TypeScript | MIT License | aurelia/aurelia | feat(router): add basic failing tests for component factory | 1 | feat | router |
826,708 | 31.08.2021 17:16:25 | -10,800 | 1ceb9682418decbb0c482527de331ff8a43c6d55 | fix: resuse git dir | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,11 @@ source scripts/prep.sh\nto_git() {\nlang=$1\n+ if [ -z ${3+x} ]; then\ngitdir=$(mktemp -d -t \"${GIT_REPO}-${lang}.XXXXXX\")\n+ else\n+ gitdir=\"$3\"\n+ fi\nsrcdir=\"clients/${PROJECT}/${lang}\"\nrepo=\"ory/${GIT_REPO}-${lang}\"\n@@ -105,9 +109,9 @@ types... | C# | Apache License 2.0 | ory/sdk | fix: resuse git dir | 1 | fix | null |
826,708 | 31.08.2021 17:19:16 | -10,800 | 2a2f19fe4f99729fe469d9c3e4baa156604ca9a7 | chore: add debug for dotnet | [
{
"change_type": "MODIFY",
"diff": "@@ -167,6 +167,7 @@ dotnet() {\n(cd \"${dir}\"; VERSION=${RAW_VERSION} command dotnet pack -o .)\n+ ls -la ${dir}\nnupkg_name=\"Ory.${PROJECT_UCF}.Client.${RAW_VERSION}.nupkg\"\nif [ ${PROJECT} == \"client\" ]; then\nnupkg_name=\"Ory.Client.${RAW_VERSION}.nupkg\"\n",
... | C# | Apache License 2.0 | ory/sdk | chore: add debug for dotnet | 1 | chore | null |
141,572 | 31.08.2021 17:20:32 | -36,000 | 437f179920e638fac55c16df4da6c641238f9988 | docs: Amend stylelint-plugin readme | [
{
"change_type": "MODIFY",
"diff": "@@ -31,10 +31,11 @@ These rules are included by default:\n- `kaizen/no-invalid-use-of-var-tokens-in-equations` - Detects invalid usages of Kaizen tokens within equations. It won't be able to automatically fix many cases, but it can for some simple cases for example negati... | TypeScript | MIT License | cultureamp/kaizen-design-system | docs: Amend stylelint-plugin readme (#1909) | 1 | docs | null |
826,708 | 31.08.2021 17:45:57 | -10,800 | 6aa96bfa910869d1b6a2ad86238cfedebef3d474 | fix: update before install and update openjdk | [
{
"change_type": "MODIFY",
"diff": "-FROM openjdk:16-slim-buster\n+FROM openjdk:16.0.2-slim-buster\nRUN apt-get update && apt-get install -y --no-install-recommends ca-certificates ssh bash\n@@ -52,6 +52,7 @@ RUN mkdir -p \"$GOPATH/src\" \"$GOPATH/bin\" && chmod -R 777 \"$GOPATH\"\nRUN curl -sL https://deb.... | C# | Apache License 2.0 | ory/sdk | fix: update before install and update openjdk | 1 | fix | null |
217,922 | 31.08.2021 17:46:01 | -7,200 | fa540fb0ca81923ca69d3d1176ec51be2526a126 | feat(list): added snagging icon to revalant fish gathering details | [
{
"change_type": "MODIFY",
"diff": "<ng-container *ngIf=\"node.baits !== undefined\" fxLayout=\"row\" fxLayoutGap=\"5px\" fxLayoutAlign=\"flex-start center\">\n<app-fishing-bait [baits]=\"node.baits\" flex=\"row\"></app-fishing-bait>\n</ng-container>\n+ <img *ngIf=\"node.snagging\" [nzTooltipTitle]=\"'GATHE... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(list): added snagging icon to revalant fish gathering details | 1 | feat | list |
217,922 | 31.08.2021 17:55:54 | -7,200 | a7130e33baa6348d05b2138666ece61062affa12 | fix(leveling-equipment): fixed wrong stat priorisation on lower level gear | [
{
"change_type": "MODIFY",
"diff": "@@ -125,7 +125,12 @@ export class LevelingEquipmentComponent extends TeamcraftComponent {\nonlyInventoryContent: filters.onlyInventoryContent.toString()\n}\n});\n- const mainStat = this.statsService.getMainStat(filters.job);\n+ let mainStat = this.statsService.getMainStat... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(leveling-equipment): fixed wrong stat priorisation on lower level gear | 1 | fix | leveling-equipment |
815,609 | 31.08.2021 18:05:02 | -28,800 | 3314c022baada4d7f2e331bc78076df7e63b4c92 | build: skip re-link ckb-bin when just test-related code were changed | [
{
"change_type": "MODIFY",
"diff": "@@ -10,10 +10,17 @@ fn rerun_if_changed(path_str: &str) -> bool {\n|| path.starts_with(\"docs\")\n|| path.starts_with(\"test\")\n|| path.starts_with(\".github\")\n+ || path.ends_with(\"tests.rs\")\n{\nreturn false;\n}\n+ for ancestor in path.ancestors() {\n+ if ancestor.e... | Rust | MIT License | nervosnetwork/ckb | build: skip re-link ckb-bin when just test-related code were changed | 1 | build | null |
791,834 | 31.08.2021 18:32:21 | 18,000 | 9a081578eb5db132df26fdbb1e3e9012c7bc1b4e | deps: update to typescript 4.4.2 | [
{
"change_type": "MODIFY",
"diff": "\"@types/ws\": \"^7.0.0\",\n\"@types/yargs\": \"^15.0.11\",\n\"@types/yargs-parser\": \"^15.0.0\",\n- \"@typescript-eslint/parser\": \"^4.21.0\",\n+ \"@typescript-eslint/parser\": \"^4.30.0\",\n\"@wardpeet/brfs\": \"2.1.0\",\n\"angular\": \"^1.7.4\",\n\"archiver\": \"^3.0... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | deps: update to typescript 4.4.2 (#12999) | 1 | deps | null |
826,708 | 31.08.2021 18:43:58 | -10,800 | 88e1a2bbbfdc465e3fa2bc6a0e88115dd0ec39d9 | fix: maybe maven who knows | [
{
"change_type": "MODIFY",
"diff": "-FROM openjdk:15-slim-buster\n+FROM openjdk:15-buster\nRUN apt-get update && apt-get install -y --no-install-recommends ca-certificates ssh bash\n@@ -53,7 +53,7 @@ RUN mkdir -p \"$GOPATH/src\" \"$GOPATH/bin\" && chmod -R 777 \"$GOPATH\"\nRUN curl -sL https://deb.nodesourc... | C# | Apache License 2.0 | ory/sdk | fix: maybe maven who knows | 1 | fix | null |
815,609 | 31.08.2021 18:52:54 | -28,800 | f2cdda69f02d9641e4f3dfe87a8f6ad3a59644e3 | build: skip re-link ckb-bin when under git control but no `.git/HEAD` file, e.g., in git worktree | [
{
"change_type": "MODIFY",
"diff": "@@ -46,9 +46,20 @@ fn main() {\n);\nprintln!(\"cargo:rerun-if-changed=build.rs\");\n- println!(\"cargo:rerun-if-changed=.git/HEAD\");\n- let head = std::fs::read_to_string(\".git/HEAD\").unwrap_or_default();\n+ let git_head = std::process::Command::new(\"git\")\n+ .args(&... | Rust | MIT License | nervosnetwork/ckb | build: skip re-link ckb-bin when under git control but no `.git/HEAD` file, e.g., in git worktree | 1 | build | null |
217,922 | 31.08.2021 19:04:06 | -7,200 | 7d96882c53450b7d1905a6f28c08a31d6b7f5268 | fix(alarms): fixed wrong alarm timers on last day before weather spawn at midnight | [
{
"change_type": "MODIFY",
"diff": "@@ -358,7 +358,9 @@ export class AlarmsFacade {\n// Adding 3 seconds margin for days computation\nconst days = Math.max(Math.floor((weatherSpawn.spawn.getTime() - time + 3000 * EorzeanTimeService.EPOCH_TIME_FACTOR) / 86400000), 0);\n// If it's for today, make sure it's no... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(alarms): fixed wrong alarm timers on last day before weather spawn at midnight | 1 | fix | alarms |
889,620 | 31.08.2021 19:28:34 | -28,800 | 20afd83356d1a153290b73cc7750e4140d27a34f | fix(webui): support pl pluralization | [
{
"change_type": "MODIFY",
"diff": "@@ -20,4 +20,34 @@ export default new VueI18n({\nlocale: process.env.VUE_APP_I18N_LOCALE || 'en',\nfallbackLocale: process.env.VUE_APP_I18N_FALLBACK_LOCALE || 'en',\nmessages: loadLocaleMessages(),\n+ pluralizationRules: {\n+ /**\n+ * @param choice {number} a choice index... | Kotlin | MIT License | gotson/komga | fix(webui): support pl pluralization
Co-authored-by: @SubZeroPL | 1 | fix | webui |
777,401 | 31.08.2021 19:33:41 | 14,400 | 6e4efcc35cd3545a01086417f965c6b6b3b40665 | chore: bump gke patch version | [
{
"change_type": "MODIFY",
"diff": "@@ -1540,7 +1540,7 @@ jobs:\ndefault: 1\ngke-version:\ntype: string\n- default: \"1.18.20-gke.501\"\n+ default: \"1.18.20-gke.4100\"\nmachine-type:\ntype: string\ndefault: \"n1-standard-8\"\n@@ -1623,7 +1623,7 @@ jobs:\ndefault: 1\ngke-version:\ntype: string\n- default: \... | Python | Apache License 2.0 | determined-ai/determined | chore: bump gke patch version (#2890) | 1 | chore | null |
67,516 | 31.08.2021 20:46:13 | -7,200 | f05684f30e7f9fe011adf3e8489a408e6a03834c | fix(runtime): correction in expression kinf flag
Needed to accomodate the destructing assignment in repeater context | [
{
"change_type": "MODIFY",
"diff": "@@ -19,45 +19,45 @@ import type {\nimport { IConnectableBinding } from './connectable.js';\nexport const enum ExpressionKind {\n- CallsFunction = 0b000000000100_00000, // Calls a function (CallFunction, CallScope, CallMember, TaggedTemplate) -> needs a valid function obje... | TypeScript | MIT License | aurelia/aurelia | fix(runtime): correction in expression kinf flag
Needed to accomodate the destructing assignment in repeater context | 1 | fix | runtime |
756,013 | 31.08.2021 21:50:48 | 21,600 | 22b55d4486b2d66f67783589ad2e1bb1615c5c70 | refactor(wallet-connection): simplify to just an onState event | [
{
"change_type": "MODIFY",
"diff": "@@ -48,35 +48,37 @@ environment that `agoric-wallet-connection` uses:\nimport './install-ses-lockdown.js';\n```\n-Somewhere else, you will need to define custom event handlers:\n+Somewhere else, you will need to define a custom state event handler:\n```js\nimport { E } fr... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | refactor(wallet-connection): simplify to just an onState event | 1 | refactor | wallet-connection |
67,479 | 31.08.2021 22:03:40 | -36,000 | 8541b4800882d14184a84a56c785cfac7cd7673c | feat(router): add support for component factory | [
{
"change_type": "MODIFY",
"diff": "@@ -23,6 +23,8 @@ const replacePluginCfg = replace({\nconst terserPluginCfg = terser({\ncompress: {\ndefaults: false,\n+ drop_console: false,\n+ drop_debugger: false\n},\nmangle: {\nproperties: {\n",
"new_path": "packages/router/rollup.config.js",
"old_path": "pac... | TypeScript | MIT License | aurelia/aurelia | feat(router): add support for component factory | 1 | feat | router |
679,913 | 31.08.2021 23:57:06 | -7,200 | 24aa2f43060ad2030797c6de031437a65ab783da | feat(vectors): add new distance metrics
add distBrayCurtis()
add distCanberra()
add distHamming()
add distJaccard()
add distMinkowski()
add distSorensenDice() | [
{
"change_type": "ADD",
"diff": "+import type { DistanceFn } from \"./api\";\n+\n+/**\n+ * Bray-Curtis **dissimilarity** metric. Result always in [0..1] interval.\n+ *\n+ * @remarks\n+ * Reference: https://en.wikipedia.org/wiki/Bray%E2%80%93Curtis_dissimilarity\n+ *\n+ * @example\n+ * ```ts\n+ * distBrayCur... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add new distance metrics
- add distBrayCurtis()
- add distCanberra()
- add distHamming()
- add distJaccard()
- add distMinkowski()
- add distSorensenDice() | 1 | feat | vectors |
71,279 | 01.09.2021 00:51:09 | -7,200 | 5a5da573149d45bf6e29bf7155715fa926804871 | feat(stepfunctions-tasks): support allocation strategies in EMR CreateCluster
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": "@@ -544,7 +544,7 @@ export namespace EmrCreateCluster {\n*\n*/\nexport enum SpotTimeoutAction {\n- /**\\\n+ /**\n* SWITCH_TO_ON_DEMAND\n*/\nSWITCH_TO_ON_DEMAND = 'SWITCH_TO_ON_DEMAND',\n@@ -554,6 +554,21 @@ export namespace EmrCreateCluster {\nTERMINATE_CLUSTER = 'TERMINA... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(stepfunctions-tasks): support allocation strategies in EMR CreateCluster (#16296)
fixes #16252
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | stepfunctions-tasks |
217,237 | 01.09.2021 01:28:09 | -10,800 | af62fc84c507725e6910e9eaec4904c9f7a7999e | feat(dummy-articles): resolve left issues | [
{
"change_type": "ADD",
"diff": "+---\n+sidebar_position: 5\n+---\n+\n+import WIP from '@site/src/shared/ui/wip/tmpl.mdx'\n+\n+# Pros & Cons\n+\n+> Profits and Costs from methodology\n+\n+<WIP ticket=\"145\" />\n\\ No newline at end of file\n",
"new_path": "website/i18n/en/docusaurus-plugin-content-docs... | JavaScript | MIT License | feature-sliced/documentation | feat(dummy-articles): resolve left issues | 1 | feat | dummy-articles |
815,609 | 01.09.2021 03:21:28 | -28,800 | 0d5ecb881ba385f1459983fc5803661909643bc0 | chore: remove useless `#[derive(Debug)]` | [
{
"change_type": "MODIFY",
"diff": "@@ -41,7 +41,6 @@ enum Message {\n/// When a CKB logger is created, a logging service will be started in a background thread.\n///\n/// [log::Log]: https://docs.rs/log/*/log/trait.Log.html\n-#[derive(Debug)]\npub struct Logger {\nsender: ckb_channel::Sender<Message>,\nhan... | Rust | MIT License | nervosnetwork/ckb | chore: remove useless `#[derive(Debug)]` | 1 | chore | null |
889,627 | 01.09.2021 05:42:54 | -7,200 | 619e51bdcdfbc37f7301e4a4a0ae925d28922b11 | docs(swagger): operation description for read-progress | [
{
"change_type": "MODIFY",
"diff": "@@ -483,6 +483,7 @@ class BookController(\nupdatedBooks.map { it.seriesId }.distinct().forEach { taskReceiver.aggregateSeriesMetadata(it) }\n}\n+ @Operation(description = \"Mark book as read and/or change page progress\")\n@PatchMapping(\"api/v1/books/{bookId}/read-progre... | Kotlin | MIT License | gotson/komga | docs(swagger): operation description for read-progress | 1 | docs | swagger |
317,842 | 01.09.2021 06:54:27 | -7,200 | d8c19d0c6d950545c7f8e1246f43902a782102e3 | fix(owm): icon display at night
Icon id is different for day/night | [
{
"change_type": "MODIFY",
"diff": "@@ -80,22 +80,40 @@ func (d *owm) setStatus() error {\nd.temperature = q.temperature.Value\nicon := \"\"\nswitch q.Data[0].TypeID {\n+ case \"01n\":\n+ fallthrough\ncase \"01d\":\nicon = \"\\ufa98\"\n+ case \"02n\":\n+ fallthrough\ncase \"02d\":\nicon = \"\\ufa94\"\n+ cas... | Go | MIT License | jandedobbeleer/oh-my-posh | fix(owm): icon display at night
Icon id is different for day/night | 1 | fix | owm |
306,309 | 01.09.2021 08:48:47 | -3,600 | 0e6495e0dbafa97fbb727f6826b6e7699085d0c5 | fix(cli): include quotes in help text
Without this the glob pattern is expanded by shells so the CLI sees the first path as the flag value, followed by arguments (that are ignored) | [
{
"change_type": "MODIFY",
"diff": "@@ -28,11 +28,11 @@ func outputCmd(ctx *config.RunContext) *cobra.Command {\nCreate HTML report from multiple Infracost JSON files:\n- infracost output --format html --path out*.json > output.html\n+ infracost output --format html --path \"out*.json\" > output.html\nMerge... | Go | Apache License 2.0 | infracost/infracost | fix(cli): include quotes in help text (#932)
Without this the glob pattern is expanded by shells so the CLI sees the first path as the flag value, followed by arguments (that are ignored) | 1 | fix | cli |
711,597 | 01.09.2021 09:52:19 | -7,200 | 05c0f957cd77f91ba4661be053933fe69b11a7b1 | chore: Add config for Italian language in Admin UI | [
{
"change_type": "MODIFY",
"diff": "@@ -17,4 +17,5 @@ export const defaultAvailableLanguages = [\nLanguageCode.fr,\nLanguageCode.ru,\nLanguageCode.uk,\n+ LanguageCode.it,\n];\n",
"new_path": "packages/admin-ui-plugin/src/constants.ts",
"old_path": "packages/admin-ui-plugin/src/constants.ts"
},
{... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Add config for Italian language in Admin UI | 1 | chore | null |
815,593 | 01.09.2021 10:12:35 | -28,800 | c2e6bcd5d487ed9a32dec656cd87dc9cd5233c4b | test: add test for get_block_template_cache | [
{
"change_type": "MODIFY",
"diff": "-use crate::{RpcServer, ServiceBuilder};\n+use crate::{\n+ tests::{always_success_transaction, next_block},\n+ RpcServer, ServiceBuilder,\n+};\nuse ckb_app_config::{\nBlockAssemblerConfig, NetworkAlertConfig, NetworkConfig, RpcConfig, RpcModule,\n};\n-use ckb_chain::chain... | Rust | MIT License | nervosnetwork/ckb | test: add test for get_block_template_cache | 1 | test | null |
699,207 | 01.09.2021 10:37:04 | 25,200 | f0737a279663a774e4d0a4beaa70ee6c11a55da7 | feat(table): add element customization | [
{
"change_type": "ADD",
"diff": "+---\n+'@twilio-paste/table': minor\n+'@twilio-paste/core': minor\n+---\n+\n+[Table]: Enable Component to respect element customizations set on the customization provider. Component now enables setting an element name on the underlying HTML element and checks the emotion the... | TypeScript | MIT License | twilio-labs/paste | feat(table): add element customization (#1817) | 1 | feat | table |
777,401 | 01.09.2021 10:55:11 | 14,400 | 4d08b0112197a02bf8212b43b013019affe63007 | fix: make k8s watchers more resilient | [
{
"change_type": "MODIFY",
"diff": "@@ -257,6 +257,7 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m\ngithub.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=\ngithub.com/envoyproxy/go-control-plane... | Python | Apache License 2.0 | determined-ai/determined | fix: make k8s watchers more resilient [DET-5910] (#2880) | 1 | fix | null |
777,401 | 01.09.2021 11:09:22 | 14,400 | beff21b508fdc217480fbaa73819e864fff2e5a5 | chore: augment fields displayed by describe checkpoint | [
{
"change_type": "MODIFY",
"diff": "@@ -46,6 +46,8 @@ def render_checkpoint(checkpoint: experimental.Checkpoint, path: Optional[str] =\n# Print information about the downloaded step/checkpoint.\ntable = [\n+ [\"Experiment ID\", checkpoint.experiment_id],\n+ [\"Trial ID\", checkpoint.trial_id],\n[\"Batch #\"... | Python | Apache License 2.0 | determined-ai/determined | chore: augment fields displayed by describe checkpoint (#2889) | 1 | chore | null |
915,075 | 01.09.2021 11:19:18 | 14,400 | dee4fa278701010a20ca8617d59dd21d7be83583 | fix: update client filter to client_name
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -233,7 +233,7 @@ type Filter struct {\n// The name of the clients to filter by.\n// in: query\n- Name string `json:\"name\"`\n+ Name string `json:\"client_name\"`\n// The owner of the clients to filter by.\n// in: query\n",
"new_path": "client/handler.go",
"old... | Go | Apache License 2.0 | ory/hydra | fix: update client filter to client_name (#2706)
Closes #2691 | 1 | fix | null |
342,861 | 01.09.2021 11:20:28 | -7,200 | 9fd15f2d5b6240d8c816ca4925bf52fbeeec9562 | feat(Illustration): add EVisa image | [
{
"change_type": "MODIFY",
"diff": "@@ -51,6 +51,7 @@ Table below contains all types of the props available in Illustration component.\n| `\"CompassSaveOnBooking\"` |\n| `\"DesktopSearch\"` |\n| `\"EnjoyApp\"` |\n+| `\"EVisa\"` |\n| `\"Error\"` |\n| `\"Error404\"` |\n| `\"FastTrack\"` |\n",
"new_path": ... | JavaScript | MIT License | kiwicom/orbit | feat(Illustration): add EVisa image (#3091) | 1 | feat | Illustration |
889,620 | 01.09.2021 11:36:17 | -28,800 | 07c2b5dd786a80251f8bdb6bd9f1a066c31c2b97 | ci: migrate to setup-java@v2 and setup-node@v2 | [
{
"change_type": "MODIFY",
"diff": "@@ -11,15 +11,12 @@ jobs:\nname: Test JDK ${{ matrix.java }}\nsteps:\n- uses: actions/checkout@v2\n- - uses: actions/setup-java@v1\n+ - uses: actions/setup-java@v2\nwith:\njava-version: ${{ matrix.java }}\n- - name: Cache Gradle packages\n- uses: actions/cache@v2\n- with:... | Kotlin | MIT License | gotson/komga | ci: migrate to setup-java@v2 and setup-node@v2 | 1 | ci | null |
392,551 | 01.09.2021 11:45:36 | -7,200 | 729296694b8d2a5686737328aaf856416f752b32 | fix(spatial): render spherical camera frames
Render camera frame lines on a sphere instead
of a plane to avoid large star shapes for
short focal lengths. | [
{
"change_type": "MODIFY",
"diff": "@@ -19,13 +19,12 @@ export class PerspectiveCameraFrame extends CameraFrameBase {\norigin: number[])\n: number[] {\n- const depth = size;\nconst [originX, originY, originZ] = origin;\nconst cameraCenter = [0, 0, 0];\nconst positions: number[] = [];\nfor (const vertex2d of... | TypeScript | MIT License | mapillary/mapillary-js | fix(spatial): render spherical camera frames
Render camera frame lines on a sphere instead
of a plane to avoid large star shapes for
short focal lengths. | 1 | fix | spatial |
889,620 | 01.09.2021 11:56:15 | -28,800 | 59c187f3b769550e788a5fbf8031fc59fa33b41b | fix(api): prevent retrieving own user activity in demo profile
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -161,6 +161,7 @@ class UserController(\n@RequestParam(name = \"unpaged\", required = false) unpaged: Boolean = false,\n@Parameter(hidden = true) page: Pageable,\n): Page<AuthenticationActivityDto> {\n+ if (demo && !principal.user.roleAdmin) throw ResponseStatusExceptio... | Kotlin | MIT License | gotson/komga | fix(api): prevent retrieving own user activity in demo profile
closes #643 | 1 | fix | api |
889,620 | 01.09.2021 11:57:14 | -28,800 | e4b136b28d794136b60d513e166ff8014cd9cf82 | fix(webui): catch exception during authentication activity retrieval | [
{
"change_type": "MODIFY",
"diff": "<script lang=\"ts\">\nimport Vue from 'vue'\n+import {ERROR} from '@/types/events'\nexport default Vue.extend({\nname: 'AuthenticationActivityTable',\n@@ -91,11 +92,14 @@ export default Vue.extend({\n}\nlet itemsPage\n+ try {\nif (!this.forMe) itemsPage = await this.$komg... | Kotlin | MIT License | gotson/komga | fix(webui): catch exception during authentication activity retrieval | 1 | fix | webui |
889,620 | 01.09.2021 12:06:20 | -28,800 | dce4dde6b8a87a5b5a910181dcf23cf8fa3ba3a1 | fix(webui): don't display nothing to show while still loading
closes | [
{
"change_type": "MODIFY",
"diff": "/>\n<v-container fluid>\n- <empty-state v-if=\"allEmpty\"\n+ <empty-state v-if=\"allEmpty && !loading\"\n:title=\"$t('common.nothing_to_show')\"\nicon=\"mdi-help-circle\"\nicon-color=\"secondary\"\n@@ -198,6 +198,7 @@ export default Vue.extend({\n},\ndata: () => {\nreturn... | Kotlin | MIT License | gotson/komga | fix(webui): don't display nothing to show while still loading
closes #648 | 1 | fix | webui |
217,922 | 01.09.2021 12:20:23 | -7,200 | ff99e12ff3e1e58941ffd9109a4ded5df8ec61ea | fix(desktop): fixed gil transfers from retainer not taken into account | [
{
"change_type": "MODIFY",
"diff": "@@ -207,8 +207,24 @@ export class UserInventory extends DataModel {\nretainerName: isFromRetainer ? lastSpawnedRetainer : null,\nmoved: true\n} : null;\n- case 'split':\ncase 'transferGil':\n+ const newRetainerGilCount = packet.splitCount;\n+ const retainerGilRef = this.i... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(desktop): fixed gil transfers from retainer not taken into account | 1 | fix | desktop |
942,581 | 01.09.2021 12:29:59 | 21,600 | 8f16cebc9a9a1f3f73680d4f4357c182a5fdc97d | chore(table): Update polished package to fix security warning | [
{
"change_type": "MODIFY",
"diff": "\"element-closest\": \"^3.0.2\",\n\"emotion-theming\": \"^10.0.10\",\n\"lodash\": \"^4.17.14\",\n- \"polished\": \"^2.3.0\",\n+ \"polished\": \"^4.1.3\",\n\"react-innertext\": \"^1.1.5\",\n\"rtl-css-js\": \"^1.14.1\",\n\"uuid\": \"^3.3.3\"\n",
"new_path": "modules/rea... | TypeScript | Apache License 2.0 | workday/canvas-kit | chore(table): Update polished package to fix security warning (#1242) | 1 | chore | table |
217,922 | 01.09.2021 13:01:35 | -7,200 | 70087e7ba1895330a041567a1eddd04ea2991a69 | fix(gearset): fixed sets requiring one more piece to activate compared to ingame | [
{
"change_type": "MODIFY",
"diff": "@@ -219,7 +219,7 @@ export class StatsService {\npossibleSetBonuses.forEach(possibleSetBonus => {\nconst sameSetPieces = possibleSetBonuses.filter(b => b.itemSeriesId === possibleSetBonus.itemSeriesId).length;\npossibleSetBonus.bonuses.forEach(bonus => {\n- if (sameSetPie... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(gearset): fixed sets requiring one more piece to activate compared to ingame | 1 | fix | gearset |
317,646 | 01.09.2021 13:05:13 | -7,200 | e6bc625564848e7ca267957524118f3b3211e9be | fix(bash): quote the timer path
resolves | [
{
"change_type": "MODIFY",
"diff": "@@ -9,7 +9,7 @@ if [[ ! -d \"/tmp\" ]]; then\nTIMER_START=\"${HOME}/.${USER}.start.$$\"\nfi\n- PS0='$(::OMP:: --millis > $TIMER_START)'\n+ PS0='$(::OMP:: --millis > \"$TIMER_START\")'\nfunction _omp_hook() {\nlocal ret=$?\n",
"new_path": "src/init/omp.bash",
"old_... | Go | MIT License | jandedobbeleer/oh-my-posh | fix(bash): quote the timer path
resolves #914 | 1 | fix | bash |
699,201 | 01.09.2021 13:12:02 | 14,400 | 866cf8f1dd7f2dffa53dfb4ab94b4f06b659e6db | chore(tokens): update text tokens | [
{
"change_type": "ADD",
"diff": "+---\n+'@twilio-paste/design-tokens': patch\n+'@twilio-paste/core': patch\n+---\n+\n+[Design tokens] Text, background, and icon color tokens are updated to meet accessibility guidelines.\n",
"new_path": ".changeset/little-poets-pay.md",
"old_path": null
},
{
... | TypeScript | MIT License | twilio-labs/paste | chore(tokens): update text tokens | 1 | chore | tokens |
865,916 | 01.09.2021 13:22:07 | -7,200 | be4903573ae523d260917f1a0736163a39826c4b | fix(client): fix removing event listener | [
{
"change_type": "MODIFY",
"diff": "@@ -208,7 +208,11 @@ export class FormEditor extends CachedComponent {\n'selection.changed'\n].forEach((event) => form[ fn ](event, this.handleChanged));\n- form[ fn ]('commandStack.changed', LOW_PRIORITY, this.handleLintingDebounced);\n+ if (fn === 'on') {\n+ form.on('co... | JavaScript | MIT License | camunda/camunda-modeler | fix(client): fix removing event listener | 1 | fix | client |
317,646 | 01.09.2021 13:23:21 | -7,200 | d16bade426f0bcc2dea9a3e5a2f67f46e8bf118b | feat: update to go 1.17 | [
{
"change_type": "MODIFY",
"diff": "@@ -28,7 +28,7 @@ jobs:\n- name: Install Go\nuses: actions/setup-go@v2\nwith:\n- go-version: 1.16\n+ go-version: 1.17\n- name: Checkout code\nuses: actions/checkout@v2\n- name: Build\n",
"new_path": ".github/workflows/artifacts.yml",
"old_path": ".github/workflows... | Go | MIT License | jandedobbeleer/oh-my-posh | feat: update to go 1.17 | 1 | feat | null |
756,013 | 01.09.2021 13:27:33 | 21,600 | 32b7772ed33ed512ed598bbfc5dcea16ed36a705 | feat(wallet-connection): handle dapp approval states | [
{
"change_type": "MODIFY",
"diff": "@@ -362,18 +362,18 @@ export function buildRootObject(_vatPowers) {\n);\nconst approve = async () => {\n- let needApproval = false;\n+ let notYetEnabled = false;\nawait walletAdmin.waitForDappApproval(\nsuggestedDappPetname,\ndappOrigin,\n() => {\n- needApproval = true;\n... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | feat(wallet-connection): handle dapp approval states | 1 | feat | wallet-connection |
777,353 | 01.09.2021 13:28:33 | 18,000 | 5322e9d7dbefdce441c80d6d6582561ee0243a09 | fix: remove rerender on row selection on Experiment List page | [
{
"change_type": "MODIFY",
"diff": "@@ -134,7 +134,16 @@ const ExperimentList: React.FC = () => {\nhandleError({ message: 'Unable to fetch experiments.', silent: true, type: ErrorType.Api });\nsetIsLoading(false);\n}\n- }, [ canceler, settings ]);\n+ }, [ canceler,\n+ settings.archived,\n+ settings.label,\n... | Python | Apache License 2.0 | determined-ai/determined | fix: remove rerender on row selection on Experiment List page (#2897) | 1 | fix | null |
317,646 | 01.09.2021 13:45:33 | -7,200 | 8e64f29d0719021eaf973ba15c735b5b4734053a | docs: add wsl executable info | [
{
"change_type": "MODIFY",
"diff": "@@ -37,7 +37,7 @@ To set this configuration in combination with a Oh My Posh [executable][releases\nset a path to a JSON file containing the above code. The `--shell universal` flag is used to print the prompt without\nescape characters to see the prompt as it would be sh... | Go | MIT License | jandedobbeleer/oh-my-posh | docs: add wsl executable info | 1 | docs | null |
503,940 | 01.09.2021 14:02:29 | 14,400 | 9cdd64bf9d2e63b2a7fa4bf905ed90e8cc64cc08 | fix(code-editor): replace hardcoded empty state text with props and update microcopy | [
{
"change_type": "MODIFY",
"diff": "@@ -121,6 +121,14 @@ export interface CodeEditorProps extends Omit<React.HTMLProps<HTMLDivElement>, '\nloading?: React.ReactNode;\n/** Content to display in space of the code editor when there is no code to display */\nemptyState?: React.ReactNode;\n+ /** Override default... | TypeScript | MIT License | patternfly/patternfly-react | fix(code-editor): replace hardcoded empty state text with props and update microcopy (#6241) | 1 | fix | code-editor |
679,913 | 01.09.2021 14:15:25 | -7,200 | c81247643ebeea8e3d9d79b6b82678cd7c2f346a | feat(examples): add rdom-delayed-update example | [
{
"change_type": "ADD",
"diff": "+build\n+dev\n+node_modules\n+yarn.lock\n+!snowpack.config.js\n+!*.d.ts\n",
"new_path": "examples/rdom-delayed-update/.gitignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+# rdom-delayed-update\n+\n+[Live demo](http://demo.thi.ng/umbrella/rdo... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add rdom-delayed-update example | 1 | feat | examples |
276,993 | 01.09.2021 14:38:13 | 10,800 | 254f131abf43c5529a390348b33b35ba74d593d3 | fix: badge all contributors on readme should updated automatically | [
{
"change_type": "MODIFY",
"diff": "<img src=\"packages/doc/src/images/lotus.png\" />\n</p>\n-[](#contributors-)\n+<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->\n+[![All Contributo... | JavaScript | MIT License | gympass/yoga | fix: badge all contributors on readme should updated automatically | 1 | fix | null |
688,497 | 01.09.2021 15:17:35 | -10,800 | a78de93dee9ff1e7c119ba81c9a5b6baca99136d | fix(Section): removes header padding when collapsed | [
{
"change_type": "MODIFY",
"diff": "@@ -124,7 +124,8 @@ export const Section = forwardRef<HTMLDivElement, Props>(function Section (\nref={ref}\nclassName={cx(\n{\n- [classes.borderedVariant]: variant === 'bordered'\n+ [classes.bordered]: variant === 'bordered',\n+ [classes.collapsed]: variant !== 'bordered'... | TypeScript | MIT License | toptal/picasso | fix(Section): removes header padding when collapsed (#2147)
Co-authored-by: Mikayel Danielyan <mika.danieyan@toptal.com> | 1 | fix | Section |
306,320 | 01.09.2021 15:24:50 | -3,600 | cfa1e4021018bdfcdcfeb817c2ee7cd0315fce51 | fix: fix spinners showing multiple times for Terragrunt | [
{
"change_type": "MODIFY",
"diff": "@@ -38,6 +38,10 @@ type DirProvider struct {\nTerraformCloudToken string\n}\n+type RunShowOptions struct {\n+ CmdOptions *CmdOptions\n+}\n+\nfunc NewDirProvider(ctx *config.ProjectContext) schema.Provider {\nterraformBinary := ctx.ProjectConfig.TerraformBinary\nif terrafo... | Go | Apache License 2.0 | infracost/infracost | fix: fix spinners showing multiple times for Terragrunt | 1 | fix | null |
306,320 | 01.09.2021 15:40:52 | -3,600 | c598606434f07b0e9b9b081eeef24db290151c90 | fix: cleanup plan files for Terragrunt projects | [
{
"change_type": "MODIFY",
"diff": "@@ -4,11 +4,13 @@ import (\n\"bytes\"\n\"encoding/json\"\n\"os\"\n+ \"path/filepath\"\n\"github.com/infracost/infracost/internal/config\"\n\"github.com/infracost/infracost/internal/schema\"\n\"github.com/infracost/infracost/internal/ui\"\n\"github.com/pkg/errors\"\n+ log ... | Go | Apache License 2.0 | infracost/infracost | fix: cleanup plan files for Terragrunt projects | 1 | fix | null |
217,922 | 01.09.2021 16:09:23 | -7,200 | 43bc9a052324834ecfdaa0c0317ffa710e48f577 | fix(desktop): only check for npcap if capture is set to npcap mode | [
{
"change_type": "MODIFY",
"diff": "@@ -86,6 +86,9 @@ export class PacketCapture {\n}\nstart(): void {\n+ if(this.store.get('rawsock', false)){\n+ this.startMachina();\n+ } else {\ntry {\nexecSync('Get-Service -Name Npcap', { 'shell': 'powershell.exe', 'timeout': 5000, 'stdio': ['ignore', 'pipe', 'ignore'] ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(desktop): only check for npcap if capture is set to npcap mode | 1 | fix | desktop |
217,922 | 01.09.2021 16:11:28 | -7,200 | 765c276f30ba23863374ce9cbabebb26931dcc4f | feat(db): added new disclaimer regarding comments content | [
{
"change_type": "MODIFY",
"diff": "@@ -52,4 +52,5 @@ export class TeamcraftUser extends DataModel {\ncid?: string;\nworld?: number;\n+ dbBan?: boolean;\n}\n",
"new_path": "apps/client/src/app/model/user/teamcraft-user.ts",
"old_path": "apps/client/src/app/model/user/teamcraft-user.ts"
},
{
... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(db): added new disclaimer regarding comments content | 1 | feat | db |
699,207 | 01.09.2021 16:12:59 | 25,200 | ef450904d727da5d1ddffc770a16a25c4a947247 | chore(disclosure): add fixed z-index to heading to prevent flash | [
{
"change_type": "ADD",
"diff": "+---\n+'@twilio-paste/disclosure': patch\n+'@twilio-paste/core': patch\n+---\n+\n+[Disclosure] Add z-index to Disclosure Heading to fix flash that occurs when disclosure content renders and the z-indeces are recalculated.\n",
"new_path": ".changeset/heavy-bees-divide.md"... | TypeScript | MIT License | twilio-labs/paste | chore(disclosure): add fixed z-index to heading to prevent flash (#1831) | 1 | chore | disclosure |
276,993 | 01.09.2021 16:18:53 | 10,800 | 1697f4c4835e438bb7fd86682df359e92aa25ab9 | fix: adjusting contributors badge on readme.md to be updated correctly | [
{
"change_type": "MODIFY",
"diff": "],\n\"imageSize\": 100,\n\"commit\": false,\n+ \"badgeTemplate\": \"[](#contributors)\",\n\"contributors\": [\n{\n\"login\": \"ggdaltoso\",\n",
"n... | JavaScript | MIT License | gympass/yoga | fix: adjusting contributors badge on readme.md to be updated correctly | 1 | fix | null |
699,201 | 01.09.2021 16:22:48 | 14,400 | 1ce8e1d3768cede4d1e780d80b04a29477dd87d0 | chore(alert): update alert icon tokens | [
{
"change_type": "ADD",
"diff": "+---\n+'@twilio-paste/alert': patch\n+'@twilio-paste/core': patch\n+---\n+\n+[Alert] Icons in Alert now use text icon color tokens\n",
"new_path": ".changeset/lazy-keys-sort.md",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "@@ -77,7 +77,7 @@ ex... | TypeScript | MIT License | twilio-labs/paste | chore(alert): update alert icon tokens | 1 | chore | alert |
699,201 | 01.09.2021 16:24:42 | 14,400 | 8006c59b6e56633405c0835707da6704169b26e9 | chore(toast): update toast icon tokens | [
{
"change_type": "ADD",
"diff": "+---\n+'@twilio-paste/toast': patch\n+'@twilio-paste/core': patch\n+---\n+\n+[Toast] Icons in Toast now use text icon color tokens.\n",
"new_path": ".changeset/eleven-ghosts-rhyme.md",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "@@ -24,14 +24,... | TypeScript | MIT License | twilio-labs/paste | chore(toast): update toast icon tokens | 1 | chore | toast |
71,748 | 01.09.2021 16:30:21 | -3,600 | 77edbac42bcebcd77249b9e8469f3e3912299c10 | chore: fixup FirewallDomainList test for v2 | [
{
"change_type": "MODIFY",
"diff": "@@ -57,42 +57,7 @@ test('domain list from asset', () => {\n// THEN\nTemplate.fromStack(stack).hasResourceProperties('AWS::Route53Resolver::FirewallDomainList', {\nDomainFileUrl: {\n- 'Fn::Join': [\n- '',\n- [\n- 's3://',\n- {\n- Ref: 'AssetParameterse820b3f07bf66854be0dfd... | TypeScript | Apache License 2.0 | aws/aws-cdk | chore: fixup FirewallDomainList test for v2 | 1 | chore | null |
304,908 | 01.09.2021 16:41:39 | -3,600 | c80d59dbe35625e2e8d13e76a31f0f3b03e98e93 | fix(internal): delete packages which are no longer in use | [
{
"change_type": "DELETE",
"diff": "-package cmd\n-\n-import (\n- \"bufio\"\n- \"bytes\"\n- \"context\"\n- \"fmt\"\n- \"io/ioutil\"\n- \"os\"\n- \"path/filepath\"\n- \"strconv\"\n- \"strings\"\n-\n- \"github.com/influxdata/flux\"\n- \"github.com/influxdata/flux/ast\"\n- \"github.com/influxdata/flux/ast/edit... | Go | MIT License | influxdata/flux | fix(internal): delete packages which are no longer in use (#4006) | 1 | fix | internal |
317,646 | 01.09.2021 17:02:08 | -7,200 | 91005865642dc0ee5e3daec90e2645a843117735 | chore(winget): lower-case tags | [
{
"change_type": "MODIFY",
"diff": "@@ -6,14 +6,14 @@ PackageName: Oh My Posh\nLicense: GPL\nShortDescription: Prompt theme engine for any shell\nTags:\n-- \"Console\"\n-- \"Command-Line\"\n-- \"Shell\"\n-- \"Command-Prompt\"\n-- \"PowerShell\"\n-- \"WSL\"\n-- \"Developer-Tools\"\n-- \"Utilities\"\n+- \"con... | Go | MIT License | jandedobbeleer/oh-my-posh | chore(winget): lower-case tags | 1 | chore | winget |
756,013 | 01.09.2021 17:45:47 | 21,600 | 475d7ff1eb2371aa9e0c0dc7a50644089db351f6 | chore(deps): upgrade node-lmdb and re2 to work with Node.js 16
Fixes
Fixes | [
{
"change_type": "MODIFY",
"diff": "\"test:xs\": \"yarn workspaces run test:xs\",\n\"build\": \"yarn workspaces run build\",\n\"postinstall\": \"patch-package\",\n- \"patch-package\": \"patch-package\",\n\"build-xs-worker\": \"cd packages/xs-vat-worker && yarn build:xs-lin\"\n},\n\"ava\": {\n",
"new_pat... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | chore(deps): upgrade node-lmdb and re2 to work with Node.js 16
Fixes #2977
Fixes #3785 | 1 | chore | deps |
679,913 | 01.09.2021 17:52:55 | -7,200 | 972e91453f4ec7d4f397e86da5764a4ae1f867f5 | feat(examples): add pixel-indexed example | [
{
"change_type": "ADD",
"diff": "+build\n+dev\n+node_modules\n+yarn.lock\n+!snowpack.config.js\n+!*.d.ts\n",
"new_path": "examples/pixel-indexed/.gitignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+# pixel-indexed\n+\n+: add pixel-indexed example | 1 | feat | examples |
756,013 | 01.09.2021 18:16:56 | 21,600 | 990f909bfb90a1ef34ebba4677d88c9eb5106294 | fix(swing-store): be resilient to Node.js 16.x fs.rmSync | [
{
"change_type": "MODIFY",
"diff": "@@ -109,8 +109,21 @@ function makeSwingStore(dirPath, forceReset, options) {\nlet txn = null;\nif (forceReset) {\n+ try {\n+ // Node.js 16.8.0 warns:\n+ // In future versions of Node.js, fs.rmdir(path, { recursive: true }) will\n+ // be removed. Use fs.rm(path, { recursiv... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(swing-store): be resilient to Node.js 16.x fs.rmSync | 1 | fix | swing-store |
756,013 | 01.09.2021 18:17:59 | 21,600 | d0991da867e3b330ecf2c212796745c094e80d89 | ci(test-all-packages): test against Node.js 16.x | [
{
"change_type": "MODIFY",
"diff": "@@ -14,8 +14,7 @@ jobs:\nruns-on: ubuntu-latest\nstrategy:\nmatrix:\n- # TODO: ['14.x', '16.x']\n- node-version: ['14.x']\n+ node-version: ['14.x', '16.x']\nsteps:\n- uses: actions/checkout@v2\nwith:\n@@ -31,6 +30,12 @@ jobs:\nrestore-keys: |\n${{ runner.os }}-yarn-\n+ - ... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | ci(test-all-packages): test against Node.js 16.x | 1 | ci | test-all-packages |
756,013 | 01.09.2021 18:22:53 | 21,600 | 7b43876e099240755e64e93cf801abc4131b0109 | test(access-token): be resilient to Node.js 16.x fs.rmSync | [
{
"change_type": "MODIFY",
"diff": "@@ -8,6 +8,23 @@ import {\nisJSONStore,\n} from '../src/json-store.js';\n+function rimraf(dirPath) {\n+ try {\n+ // Node.js 16.8.0 warns:\n+ // In future versions of Node.js, fs.rmdir(path, { recursive: true }) will\n+ // be removed. Use fs.rm(path, { recursive: true }) i... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | test(access-token): be resilient to Node.js 16.x fs.rmSync | 1 | test | access-token |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.