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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
942,613 | 17.02.2022 14:17:47 | 25,200 | ad40b545017490b450c73f4f9afabd1aa87eb149 | fix: Fix button imports
Fixes:
[category:Components] | [
{
"change_type": "MODIFY",
"diff": "@@ -4,7 +4,7 @@ import * as React from 'react';\nimport {storiesOf} from '@storybook/react';\nimport styled from '@emotion/styled';\n-import {Hyperlink, SecondaryButton} from '../../button';\n+import {Hyperlink, SecondaryButton} from '@workday/canvas-kit-react/button';\ni... | TypeScript | Apache License 2.0 | workday/canvas-kit | fix: Fix button imports (#1479)
Fixes: #1480
[category:Components] | 1 | fix | null |
756,059 | 17.02.2022 14:54:35 | 28,800 | c9faf9cb890b68f717ddfe060802be5083064443 | fix: fake VOM bitrot
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -168,12 +168,6 @@ export function makeCache(size, fetch, store) {\n* instances, writing any changed state to the persistent store. This\n* provided for testing; it otherwise has little use.\n*\n- * - `makeVirtualObjectRepresentative` will provide a useeable, in-memory\... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix: fake VOM bitrot
Closes #4591 | 1 | fix | null |
688,524 | 17.02.2022 15:26:48 | -3,600 | e6f05363cc6f7a49a1f2b95d7ea85662b4724389 | chore: downgrade hast-to-hyperscript since new version is in ESM | [
{
"change_type": "ADD",
"diff": "+---\n+'@toptal/picasso': patch\n+---\n+\n+### RichText\n+\n+Downgrade version of `hast-to-hyperscript` to version without ESM to fix jest tests in all other projects\n",
"new_path": ".changeset/rude-dogs-wonder.md",
"old_path": null
},
{
"change_type": "MODI... | TypeScript | MIT License | toptal/picasso | chore: downgrade hast-to-hyperscript since new version is in ESM (#2449) | 1 | chore | null |
841,421 | 17.02.2022 15:40:50 | -32,400 | 9df0d7c854b1ebceb955a0cfe3fc7edb5891c0d0 | doc(swc_common): Document error reporting using `HANDLER` | [
{
"change_type": "MODIFY",
"diff": "@@ -304,6 +304,43 @@ impl error::Error for ExplicitBug {\n/// A handler deals with errors; certain errors\n/// (fatal, bug, unimpl) may cause immediate exit,\n/// others log errors for later reporting.\n+///\n+/// # Example\n+///\n+/// `swc` provides a global-like variabl... | Rust | Apache License 2.0 | swc-project/swc | doc(swc_common): Document error reporting using `HANDLER` (#3605) | 1 | doc | swc_common |
141,516 | 17.02.2022 15:49:26 | -39,600 | 44004c939d5162a5cd3c7ff37929c1107edd0480 | fix: export date picker props to fix build | [
{
"change_type": "MODIFY",
"diff": "@@ -16,7 +16,7 @@ import datePickerStyles from \"./DatePicker.scss\"\nimport { CalendarNav, CalendarNavProps } from \"./CalendarNav\"\nimport { defaultDatePickerClasses } from \"./DatePickerClasses\"\n-interface DatePickerProps {\n+export interface DatePickerProps {\nid: ... | TypeScript | MIT License | cultureamp/kaizen-design-system | fix: export date picker props to fix build (#2541) | 1 | fix | null |
756,051 | 17.02.2022 16:06:27 | 21,600 | 04a265a8423eaf673db7516008a76ff765ffdcc4 | chore(run-protocol): prune install-on-chain.js
It's obsolete in favor of econ-behaviors.js. | [
{
"change_type": "DELETE",
"diff": "-// @ts-check\n-import { E } from '@agoric/eventual-send';\n-\n-import '@agoric/governance/exported.js';\n-import '../exported.js';\n-\n-import { Far } from '@endo/far';\n-import { PROTOCOL_FEE_KEY, POOL_FEE_KEY } from '../src/vpool-xyk-amm/params.js';\n-import {\n- makeG... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | chore(run-protocol): prune install-on-chain.js
It's obsolete in favor of econ-behaviors.js. | 1 | chore | run-protocol |
942,613 | 17.02.2022 16:11:50 | 25,200 | a92271868eea5a15244af66eeb8ac7c4f7489325 | fix: Fix Primary button example
Fixes:
[category:Components] | [
{
"change_type": "MODIFY",
"diff": "@@ -4,11 +4,10 @@ import {PrimaryButton} from '@workday/canvas-kit-react/button';\nimport {HStack} from '@workday/canvas-kit-labs-react/layout';\nimport {plusIcon} from '@workday/canvas-system-icons-web';\n-export const Primary = props => (\n+export const Primary = () => ... | TypeScript | Apache License 2.0 | workday/canvas-kit | fix: Fix Primary button example (#1481)
Fixes: #1480
[category:Components] | 1 | fix | null |
841,385 | 17.02.2022 16:15:09 | -10,800 | 8c9b154e13624110053a14365321c49fc2eec434 | feat(css/minifier): Remove empty qualified rules and at-rules | [
{
"change_type": "ADD",
"diff": "+use swc_css_ast::*;\n+use swc_css_visit::{VisitMut, VisitMutWith};\n+\n+pub fn compress_empty() -> impl VisitMut {\n+ CompressEmpty {}\n+}\n+\n+struct CompressEmpty {}\n+\n+impl VisitMut for CompressEmpty {\n+ fn visit_mut_stylesheet(&mut self, stylesheet: &mut Stylesheet) ... | Rust | Apache License 2.0 | swc-project/swc | feat(css/minifier): Remove empty qualified rules and at-rules (#3597) | 1 | feat | css/minifier |
815,577 | 17.02.2022 16:20:05 | -28,800 | fa42eb82a42420eaf9cf092df635da2bf1da4c75 | chore: instant panic | [
{
"change_type": "MODIFY",
"diff": "@@ -932,7 +932,7 @@ dependencies = [\n\"tempfile\",\n\"tentacle\",\n\"tokio\",\n- \"tokio-util\",\n+ \"tokio-util 0.7.0\",\n\"trust-dns-resolver\",\n]\n@@ -1192,7 +1192,7 @@ version = \"0.102.0-pre\"\ndependencies = [\n\"ckb-channel\",\n\"ckb-logger\",\n- \"parking_lot\",... | Rust | MIT License | nervosnetwork/ckb | chore: instant panic | 1 | chore | null |
777,396 | 17.02.2022 16:25:02 | 25,200 | 2c84269f6390707d8e390b81e9cf7f657b62ed19 | chore: fix migration helper scripts
Previously, the `[ -z migration ]` test was broken.
Additionally, use quotes around all variable expansions, make the API
for the two scripts consistent, and document the scripts in the README. | [
{
"change_type": "MODIFY",
"diff": "@@ -20,9 +20,16 @@ determined-master --config-file /path/to/master.yaml migrate down 20210917133742\n## Creating new migrations\nWe use timestamps instead of sequential numbers, standard for `go-pg/migrations`.\n-When creating a new migration, either write it manually, or... | Python | Apache License 2.0 | determined-ai/determined | chore: fix migration helper scripts (#3627)
Previously, the `[ -z migration ]` test was broken.
Additionally, use quotes around all variable expansions, make the API
for the two scripts consistent, and document the scripts in the README. | 1 | chore | null |
306,320 | 17.02.2022 16:57:04 | 0 | 899163647b32f8ddc7c46ead9e866bec982f8250 | fix: log out-file message if log-level is set
We shouldn't output this to the stderr if the user has specified a log level. Instead we should log it as an info level log. | [
{
"change_type": "MODIFY",
"diff": "@@ -17,7 +17,6 @@ import (\nvar (\ntimestampRegex = regexp.MustCompile(`(\\d{4})-(\\d{2})-(\\d{2})(T| )(\\d{2}):(\\d{2}):(\\d{2}(?:\\.\\d*)?)(([\\+-](\\d{2}):(\\d{2})|Z| [A-Z]+)?)`)\n- outputPathRegex = regexp.MustCompile(`Output saved to .*`)\nurlRegex = regexp.MustCompi... | Go | Apache License 2.0 | infracost/infracost | fix: log out-file message if log-level is set (#1383)
We shouldn't output this to the stderr if the user has specified a log level. Instead we should log it as an info level log. | 1 | fix | null |
688,413 | 17.02.2022 17:05:59 | -7,200 | d7497daffdf83315968446b66b6af51cc17af151 | chore: Add styled-components docs | [
{
"change_type": "MODIFY",
"diff": "@@ -20,7 +20,7 @@ We will focus on using \\`Form\\`, \\`Form.Field\\`, input components \\`Input\\`, \\`S\n* Creating inline fields\n`\n)\n- .addExample('tutorials/Forms/story/Forms.final.example.tsx', {\n+ .addExample('tutorials/forms/story/Forms.final.example.tsx', {\nt... | TypeScript | MIT License | toptal/picasso | chore: [FX-2479] Add styled-components docs (#2450) | 1 | chore | null |
667,664 | 17.02.2022 17:07:18 | -28,800 | 00ad7d75cade0a78b4fcbf88479f26950af4b2ca | fix(android): support elements color/findNode by path | [
{
"change_type": "MODIFY",
"diff": "package com.tencent.mtt.hippy.devsupport;\nimport android.text.TextUtils;\n-\nimport com.tencent.mtt.hippy.utils.LogUtils;\n-\nimport java.io.UnsupportedEncodingException;\nimport java.net.URL;\nimport java.net.URLDecoder;\npublic class DevRemoteServerData {\n- private st... | C++ | Apache License 2.0 | tencent/hippy | fix(android): support elements color/findNode by path | 1 | fix | android |
777,401 | 17.02.2022 17:11:11 | 18,000 | 6420ccee4f4462e0a146be0ae757cdf1545def31 | chore: at least try to auto-negotiate docker client version
As a convenience for users running older docker daemon versions, we should configure our client to negotiate an API version. | [
{
"change_type": "MODIFY",
"diff": "@@ -68,7 +68,7 @@ func newContainerManager(a *agent, fluentPort int) (*containerManager, error) {\nfunc (c *containerManager) Receive(ctx *actor.Context) error {\nswitch msg := ctx.Message().(type) {\ncase actor.PreStart:\n- d, err := client.NewClientWithOpts(client.FromE... | Python | Apache License 2.0 | determined-ai/determined | chore: at least try to auto-negotiate docker client version (#3611)
As a convenience for users running older docker daemon versions, we should configure our client to negotiate an API version. | 1 | chore | null |
841,421 | 17.02.2022 17:11:46 | -32,400 | 798ef137069ebb4a5998938bc99866c5b2050437 | feat(api/rust): Improve error messages for wrong usages of scoped thread-local variables | [
{
"change_type": "MODIFY",
"diff": "@@ -165,6 +165,13 @@ version = \"0.13.0\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\nchecksum = \"904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd\"\n+[[package]]\n+name = \"better_scoped_tls\"\n+version = \"0.1.0\"\n+dependencies... | Rust | Apache License 2.0 | swc-project/swc | feat(api/rust): Improve error messages for wrong usages of scoped thread-local variables (#3606) | 1 | feat | api/rust |
847,143 | 17.02.2022 17:20:34 | -28,800 | afba602b301fc808ba6edb1d98234bc17ab4553e | feat(theme): style updates | [
{
"change_type": "MODIFY",
"diff": "position: relative;\nbox-sizing: border-box;\nwidth: 100%;\n- margin: 0 auto 20px;\n- padding: 16px 20px;\n- border-radius: 6px;\n+ margin: 0 auto 1.25rem;\n+ padding: 1rem 1.25rem;\n+ border-radius: 0.4rem;\nbackground: var(--bg-color);\nbox-shadow: 0 1px 3px 0 var(--car... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | feat(theme): style updates | 1 | feat | theme |
471,242 | 17.02.2022 17:30:12 | -3,600 | eb19f3dc5c42c7902d77fe57147b73718926dbc2 | fix: pass same context to Sampler and SpanProcessor in root span case | [
{
"change_type": "MODIFY",
"diff": "@@ -71,19 +71,24 @@ export class Tracer implements api.Tracer {\nreturn api.trace.wrapSpanContext(api.INVALID_SPAN_CONTEXT);\n}\n- const parentContext = getParent(options, context);\n+ // remove span from context in case a root span is requested via options\n+ if (options... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js | fix: pass same context to Sampler and SpanProcessor in root span case (#2790) | 1 | fix | null |
826,656 | 17.02.2022 17:42:51 | -3,600 | e815cb055ca1dfaff1f7bb9e56329be65563afb2 | fix: add foreign key constraint for network ID | [
{
"change_type": "MODIFY",
"diff": "@@ -125,14 +125,6 @@ test-docs-samples:\n&& \\\nnpm test\n-.PHONY: migrations-render\n-migrations-render: .bin/ory\n- ory dev pop migration render internal/persistence/sql/migrations/templates internal/persistence/sql/migrations/sql\n-\n-.PHONY: migrations-render-replace\... | Go | Apache License 2.0 | ory/keto | fix: add foreign key constraint for network ID | 1 | fix | null |
847,143 | 17.02.2022 17:52:41 | -28,800 | e5cfeb43c4c16061cc52db9ef5872afcbd469377 | fix(theme): fix article info locales | [
{
"change_type": "MODIFY",
"diff": "@@ -4,7 +4,7 @@ import {\ngetDate,\ngetTag,\n} from \"@mr-hope/vuepress-shared/lib/client\";\n-import { usePageData, usePageFrontmatter } from \"@vuepress/client\";\n+import { usePageData, usePageFrontmatter, usePageLang } from \"@vuepress/client\";\nimport { computed, in... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | fix(theme): fix article info locales | 1 | fix | theme |
756,013 | 17.02.2022 18:14:58 | 21,600 | 38a1922ce2c21e4f31b4a1bedd634bbe627990f9 | fix(telemetry): rework Prometheus metrics | [
{
"change_type": "MODIFY",
"diff": "@@ -15,6 +15,8 @@ import { getTelemetryProviders } from './kernel-stats.js';\nconst AG_COSMOS_INIT = 'AG_COSMOS_INIT';\n+const TELEMETRY_SERVICE_NAME = 'agd-cosmos';\n+\nconst toNumber = specimen => {\nconst number = parseInt(specimen, 10);\nassert(\n@@ -326,11 +328,18 @@... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(telemetry): rework Prometheus metrics | 1 | fix | telemetry |
531,793 | 17.02.2022 18:44:49 | 0 | d4c376dc4880aad00c1e7c6b226483a7a62970fa | chore(ci): enable more codeql queries | [
{
"change_type": "MODIFY",
"diff": "@@ -26,6 +26,8 @@ jobs:\n- name: Initialize CodeQL\nuses: github/codeql-action/init@v1\n+ with:\n+ queries: +security-and-quality\n- name: Perform CodeQL Analysis\nuses: github/codeql-action/analyze@v1\n",
"new_path": ".github/workflows/scan.yml",
"old_path": ".gi... | TypeScript | Apache License 2.0 | prymitive/karma | chore(ci): enable more codeql queries | 1 | chore | ci |
71,146 | 17.02.2022 18:50:21 | -7,200 | 60d6e66baef9d30db23e93b16f7c6d159ddf58c4 | feat(aws-stepfunctions-tasks): add environment property for SageMakerCreateTrainingJob
Add environment property for SageMakerCreateTrainingJob. Fixes issue
*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": "@@ -1167,6 +1167,8 @@ If your training job or model uses resources from AWS Marketplace,\n[network isolation is required](https://docs.aws.amazon.com/sagemaker/latest/dg/mkt-algo-model-internet-free.html).\nTo do so, set the `enableNetworkIsolation` property to `true` for... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(aws-stepfunctions-tasks): add environment property for SageMakerCreateTrainingJob (#18976)
Add environment property for SageMakerCreateTrainingJob. Fixes issue #18919.
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | aws-stepfunctions-tasks |
756,039 | 17.02.2022 20:10:22 | 28,800 | fa73887cea6a65635390e96ea0da8a0e9f200c0e | fix(ui): limit decimals displayed for nats | [
{
"change_type": "MODIFY",
"diff": "@@ -2,6 +2,7 @@ import { assert } from '@agoric/assert';\nimport { roundToDecimalPlaces } from './helpers/roundToDecimalPlaces.js';\nconst CONVENTIONAL_DECIMAL_PLACES = 2;\n+const MAX_DECIMAL_PLACES = 100;\n/**\n* @param {NatValue} natValue\n@@ -17,6 +18,15 @@ export cons... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(ui): limit decimals displayed for nats | 1 | fix | ui |
791,682 | 17.02.2022 20:33:06 | 18,000 | 1b4748a1b72bfeab2bc6aeea86d82b2554c27154 | tests(devtools): navigation web test | [
{
"change_type": "ADD",
"diff": "+// Copyright 2022 The Chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+(async function() {\n+ // screenshots in content shell are flaky and NO_NAVSTART occurs on bots way ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | tests(devtools): navigation web test (#13673) | 1 | tests | devtools |
841,479 | 17.02.2022 20:48:54 | -28,800 | 08c343b18634ce9cc2af9ff1b2ff1921520fb0dd | feat(es/lints): Allow using number as an error level | [
{
"change_type": "ADD",
"diff": "+{\n+ \"jsc\": {\n+ \"lints\": {\n+ \"eqeqeq\": [\n+ 2,\n+ {\n+ \"mode\": \"always\"\n+ }\n+ ]\n+ }\n+ }\n+}\n",
"new_path": "crates/swc/tests/errors/lints/lint-config-error-level/1/.swcrc",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+if (x == y... | Rust | Apache License 2.0 | swc-project/swc | feat(es/lints): Allow using number as an error level (#3593) | 1 | feat | es/lints |
104,828 | 17.02.2022 20:52:34 | -3,600 | b4e59903317eea177908fd37806a00a5f0cd0484 | feat(tableviewdropdown): add prop isHidingStandardActions | [
{
"change_type": "MODIFY",
"diff": "@@ -49,6 +49,8 @@ const propTypes = {\n}),\nstyle: PropTypes.objectOf(PropTypes.string),\ntestID: PropTypes.string,\n+ /** When true hides all action items and only allows the selection of views */\n+ isHidingStandardActions: PropTypes.bool,\n};\nconst defaultProps = {\n@... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(tableviewdropdown): add prop isHidingStandardActions | 1 | feat | tableviewdropdown |
841,509 | 17.02.2022 21:50:51 | 28,800 | 05aecf507e9bf46002e0629b159245ff9c0f7b2c | fix(plugin): Fix caching of wasm modulee | [
{
"change_type": "MODIFY",
"diff": "@@ -439,6 +439,9 @@ impl Options {\nfilename: transform_filename,\n};\n+ #[cfg(feature = \"plugin\")]\n+ swc_plugin_runner::cache::init_plugin_module_cache_once(&experimental.cache_root);\n+\nlet pass = chain!(\nlint_to_fold(swc_ecma_lints::rules::all(LintParams {\nprogra... | Rust | Apache License 2.0 | swc-project/swc | fix(plugin): Fix caching of wasm modulee (#3616) | 1 | fix | plugin |
847,143 | 17.02.2022 22:59:40 | -28,800 | f06f00b7ddbbf3956f03b2fc0539f37d04b12a19 | ci: update v1 docs | [
{
"change_type": "MODIFY",
"diff": "@@ -75,4 +75,4 @@ jobs:\nbranch: gh-pages\nfolder: dist\ntoken: ${{ secrets.ACCESS_TOKEN }}\n- repository-name: vuepress-theme-hope/vuepress-theme-hope.github.io\n+ repository-name: vuepress-theme-hope/v2\n",
"new_path": ".github/workflows/v1-docs.yml",
"old_path"... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | ci: update v1 docs | 1 | ci | null |
71,480 | 17.02.2022 23:39:35 | -7,200 | a416a2d68f14c0711d42b38e81b0091d160dfd6f | fix(lambda): Validate Lambda "functionName" parameter
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": "@@ -6,7 +6,7 @@ import * as kms from '@aws-cdk/aws-kms';\nimport * as logs from '@aws-cdk/aws-logs';\nimport * as sns from '@aws-cdk/aws-sns';\nimport * as sqs from '@aws-cdk/aws-sqs';\n-import { Annotations, ArnFormat, CfnResource, Duration, Fn, Lazy, Names, Stack } from... | TypeScript | Apache License 2.0 | aws/aws-cdk | fix(lambda): Validate Lambda "functionName" parameter (#17970)
Closes #13264
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | fix | lambda |
847,143 | 18.02.2022 01:27:44 | -28,800 | 39128015bf1eb8d6ef763a06254d044c64fa8b7b | fix(theme): auto apply `theme: 'hope'` | [
{
"change_type": "MODIFY",
"diff": "@@ -12,7 +12,7 @@ import type {\nexport const defineHopeConfig = <T extends BundlerConfig>(\nconfig: UserConfig<HopeThemeOptions, T>\n): UserConfig<HopeThemeOptions, T> =>\n- defineUserConfig<HopeThemeOptions, T>(config);\n+ defineUserConfig<HopeThemeOptions, T>({ theme: ... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | fix(theme): auto apply `theme: 'hope'` | 1 | fix | theme |
756,051 | 18.02.2022 01:57:07 | 21,600 | 5d8b4c14e798be5358530c5b0f7b5b59505431c9 | fix(run-protocol): harden results from collection utilities | [
{
"change_type": "MODIFY",
"diff": "@@ -4,11 +4,11 @@ const { entries, fromEntries, keys, values } = Object;\n/** @type { <T, U>(obj: Record<string, T>, f: (t: T) => U) => Record<string, U>} */\nexport const mapValues = (obj, f) =>\n- fromEntries(entries(obj).map(([p, v]) => [p, f(v)]));\n+ harden(fromEntri... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(run-protocol): harden results from collection utilities | 1 | fix | run-protocol |
71,366 | 18.02.2022 02:31:09 | -32,400 | 3533ea9cb7ec7fd9e230abd27556a87d3559bdb8 | feat(iotevents): create new module for IoT Events actions
This PR creates new module for aws-iotevents. This PR will contain implementations of Detector Model action classes.
About .
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | [
{
"change_type": "ADD",
"diff": "+const baseConfig = require('@aws-cdk/cdk-build-tools/config/eslintrc');\n+baseConfig.parserOptions.project = __dirname + '/tsconfig.json';\n+module.exports = baseConfig;\n",
"new_path": "packages/@aws-cdk/aws-iotevents-actions/.eslintrc.js",
"old_path": null
},
... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(iotevents): create new module for IoT Events actions (#18956)
This PR creates new module for aws-iotevents. This PR will contain implementations of Detector Model action classes.
About https://github.com/aws/aws-cdk/pull/18869#discussion_r802719713 .
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | iotevents |
71,080 | 18.02.2022 04:44:09 | 18,000 | 23329b4ac7c845efe7d0e0d7ce03499e7dd723ac | fix(stepfunctions): imported State Machine sill has region and account from its Stack, instead of its ARN
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": "@@ -142,7 +142,9 @@ abstract class StateMachineBase extends Resource implements IStateMachine {\npublic readonly stateMachineArn = stateMachineArn;\npublic readonly grantPrincipal = new iam.UnknownPrincipal({ resource: this });\n}\n- return new Import(scope, id);\n+ retur... | TypeScript | Apache License 2.0 | aws/aws-cdk | fix(stepfunctions): imported State Machine sill has region and account from its Stack, instead of its ARN (#19026)
Fixes #17982.
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | fix | stepfunctions |
841,535 | 18.02.2022 05:21:58 | 0 | e863f9dd0486a53c835e9cd08cfa7ab7c31dd087 | fix(swc_common): Fix names of proxied functions | [
{
"change_type": "MODIFY",
"diff": "@@ -81,16 +81,16 @@ extern \"C\" {\n// on their side.\nfn __mark_fresh_proxy(mark: u32) -> u32;\nfn __mark_parent_proxy(self_mark: u32) -> u32;\n- fn __mark_is_builtin(self_mark: u32) -> u32;\n- fn __mark_set_builtin(self_mark: u32, is_builtin: u32);\n- fn __syntax_contex... | Rust | Apache License 2.0 | swc-project/swc | fix(swc_common): Fix names of proxied functions (#3608) | 1 | fix | swc_common |
777,396 | 18.02.2022 06:46:20 | 25,200 | f5e49c3e80766b281c65e2568bc2d7f9985d02a0 | feat: log records/second and batches/second in trials
For now, cumulative times are not recorded or shown. Cumulative times
wouldn't be hard to add but they would introduce a variety of failure
cases where we could show something but we wouldn't know if it were
correct. | [
{
"change_type": "ADD",
"diff": "+:orphan:\n+\n+**New Features**\n+\n+- PyTorchTrial and TFKerasTrial now automatically log the number of batches and number of records\n+ in every training and validation workload, as well as the duration of the workload and the\n+ calculated batches per second and records p... | Python | Apache License 2.0 | determined-ai/determined | feat: log records/second and batches/second in trials [DPS-1] (#3593)
For now, cumulative times are not recorded or shown. Cumulative times
wouldn't be hard to add but they would introduce a variety of failure
cases where we could show something but we wouldn't know if it were
correct. | 1 | feat | null |
841,385 | 18.02.2022 07:55:24 | -10,800 | 8e06b2a42c7ba349ddbf957a6e62916c82f94b1a | feat(css/minifier): Implement the rule for easing functions | [
{
"change_type": "ADD",
"diff": "+use swc_css_ast::*;\n+use swc_css_visit::{VisitMut, VisitMutWith};\n+\n+pub fn compress_easing_function() -> impl VisitMut {\n+ CompressEasingFunction {}\n+}\n+\n+struct CompressEasingFunction {}\n+\n+impl CompressEasingFunction {}\n+\n+impl VisitMut for CompressEasingFunct... | Rust | Apache License 2.0 | swc-project/swc | feat(css/minifier): Implement the rule for easing functions (#3615) | 1 | feat | css/minifier |
277,286 | 18.02.2022 08:42:50 | -3,600 | 91d5cf2667770eca9bbcaec142448b2218d45bf8 | ci: Allow publishing docs in a separate gh action. | [
{
"change_type": "MODIFY",
"diff": "@@ -2,11 +2,6 @@ name: Publish Docs\non:\nworkflow_dispatch:\n- inputs:\n- commit:\n- description: 'Commit Message'\n- default: 'docs: Publish documentation website'\n- required: false\nenv:\nGITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n@@ -20,11 +15,30 @@ jobs:\nwith:\ntok... | Python | Apache License 2.0 | h2oai/wave | ci: Allow publishing docs in a separate gh action. | 1 | ci | null |
126,276 | 18.02.2022 09:10:48 | 10,800 | 6e0bc9a7230a18079b6a9cb9dde3586a12d55fbc | chore(embedded/tbree): remove obsolete property | [
{
"change_type": "MODIFY",
"diff": "@@ -103,8 +103,6 @@ type TBtree struct {\nhistoryLogMaxOpenedFiles int\ncommitLogMaxOpenedFiles int\n- greatestKey []byte\n-\nsnapshots map[uint64]*Snapshot\nmaxSnapshotID uint64\nlastSnapRoot node\n@@ -436,7 +434,6 @@ func OpenWith(path string, nLog, hLog, cLog appendabl... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/tbree): remove obsolete property
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/tbree |
688,434 | 18.02.2022 09:15:44 | 25,200 | 9a4dd24417197a9bf030181a150ff3053d12edc0 | chore(date-picker): fix an invalid displayed date after clicking in calendar when timezone is set | [
{
"change_type": "ADD",
"diff": "+---\n+'@toptal/picasso': patch\n+---\n+\n+- chore(date-picker): fix an invalid displayed date after clicking in DatePicker when timezone is passed\n",
"new_path": ".changeset/metal-cherries-drive.md",
"old_path": null
},
{
"change_type": "MODIFY",
"diff"... | TypeScript | MIT License | toptal/picasso | chore(date-picker): fix an invalid displayed date after clicking in calendar when timezone is set (#2457) | 1 | chore | date-picker |
332,726 | 18.02.2022 09:31:39 | -3,600 | b0cdc58c2fa9aae4f68afb1fcc965928fa78572d | fix(semver): sync versioning when `skipProjectChangelog`
closes | [
{
"change_type": "MODIFY",
"diff": "import { resolve } from 'path';\n-import { forkJoin, noop, Observable, of } from 'rxjs';\n+import { concat, forkJoin, noop, Observable, of } from 'rxjs';\nimport { concatMap, reduce, switchMap } from 'rxjs/operators';\nimport * as standardVersion from 'standard-version';\... | TypeScript | MIT License | jscutlery/semver | fix(semver): sync versioning when `skipProjectChangelog` (#446)
closes #408 | 1 | fix | semver |
777,354 | 18.02.2022 09:33:26 | 28,800 | dce756b0db3e474f184e76d9208cba4d855f69fa | fix: remove duplicated header for new cluster page | [
{
"change_type": "MODIFY",
"diff": "@@ -24,6 +24,7 @@ import css from './LogViewerCore.module.scss';\ninterface Props {\ndecoder: (data: unknown) => Log,\n+ hideTitle?:boolean\nonDownload?: () => void;\nonFetch: (config: FetchConfig, type: FetchType) => FetchArgs;\nsortKey?: keyof Log;\n@@ -457,6 +458,7 @@ ... | Python | Apache License 2.0 | determined-ai/determined | fix: remove duplicated header for new cluster page [DET-6722] (#3628) | 1 | fix | null |
126,276 | 18.02.2022 09:47:09 | 10,800 | c8b15d638aed9b109bac57f08501cb9040fb2aa6 | chore(embedded/tbtree): fully replace sync with syncThld | [
{
"change_type": "MODIFY",
"diff": "@@ -424,7 +424,6 @@ func OpenWith(path string, vLogs []appendable.Appendable, txLog, cLog appendable\nWithFileMode(opts.FileMode).\nWithLog(opts.log).\nWithFileSize(fileSize).\n- WithSynced(opts.IndexOpts.Synced). // index is built from derived data and can be re-generate... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/tbtree): fully replace sync with syncThld
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/tbtree |
126,276 | 18.02.2022 09:54:12 | 10,800 | 7b9fabca35dc2552f6b3d5eb4e4461c39dc8a16f | test(pkg/database): delays in instrumented lock | [
{
"change_type": "MODIFY",
"diff": "@@ -38,6 +38,8 @@ func TestInstrumentedMutex(t *testing.T) {\nreleasedAt := time.Now()\nmutex.Unlock()\n+ time.Sleep(1 * time.Millisecond)\n+\nwaitingCount, lastReleaseAt := mutex.State()\nrequire.Equal(t, 0, waitingCount)\nrequire.True(t, lastReleaseAt.After(releasedAt))... | Go | Apache License 2.0 | codenotary/immudb | test(pkg/database): delays in instrumented lock
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | test | pkg/database |
667,676 | 18.02.2022 10:23:46 | -28,800 | 84c8b2f1402f3889513966c77eaea41d90963b49 | feat(core): add log level for delegate | [
{
"change_type": "MODIFY",
"diff": "@@ -3,5 +3,5 @@ package com.tencent.mtt.hippy;\n@SuppressWarnings({\"unused\"})\npublic interface IHippyNativeLogHandler {\n- void onReceiveNativeLogMessage(String msg);\n+ void onReceiveNativeLogMessage(int level, String msg);\n}\n",
"new_path": "android/sdk/src/main... | C++ | Apache License 2.0 | tencent/hippy | feat(core): add log level for delegate | 1 | feat | core |
667,680 | 18.02.2022 10:35:45 | -28,800 | befab2c9dcf6af296058454bdc86c8110db458bf | feat(android): cmake script adds `V8` library file format check | [
{
"change_type": "MODIFY",
"diff": "@@ -131,6 +131,27 @@ if (${JS_ENGINE} STREQUAL \"V8\")\nlist(REMOVE_ITEM CORE_SRC ${JSC_SRC})\n# endregion\n# region library\n+ set(ANDROID_READELF\n+ \"${ANDROID_TOOLCHAIN_ROOT}/bin/llvm-readelf${ANDROID_TOOLCHAIN_SUFFIX}\")\n+ execute_process(\n+ COMMAND ${ANDROID_READE... | C++ | Apache License 2.0 | tencent/hippy | feat(android): cmake script adds `V8` library file format check | 1 | feat | android |
688,413 | 18.02.2022 10:45:24 | -7,200 | 43bd5c237c3bc504841d019ce2fcdbc823e5f9f3 | chore: release storybook even if package is not released | [
{
"change_type": "MODIFY",
"diff": "@@ -123,7 +123,6 @@ jobs:\n}\n- name: Trigger build image job\n- if: ${{ steps.changesets.outputs.published == 'true' }}\nuses: toptal/jenkins-job-trigger-action@1.0.0\nenv:\nJENKINS_JOB_NAME: ${{ env.REPOSITORY_NAME }}-build-image\n@@ -143,7 +142,6 @@ jobs:\njob_timeout:... | TypeScript | MIT License | toptal/picasso | chore: release storybook even if package is not released (#2453) | 1 | chore | null |
317,765 | 18.02.2022 10:49:35 | 28,800 | e4ebf3df1b742870537129b1866d0d35e6eebc28 | docs(homebrew): add missing subfolder path | [
{
"change_type": "MODIFY",
"diff": "@@ -31,7 +31,7 @@ brew update && brew upgrade && exec zsh\n## Replace your existing prompt\nThe guides below assume you copied the theme called `jandedobbeleer.omp.json` to your user's `$HOME` folder.\n-When using brew, you can find this one at `$(brew --prefix oh-my-posh... | Go | MIT License | jandedobbeleer/oh-my-posh | docs(homebrew): add missing subfolder path | 1 | docs | homebrew |
711,597 | 18.02.2022 10:50:45 | -3,600 | 08c16a1adcecb1ea0b63f808c6bba0f576e1c03f | docs(asset-server-plugin): Fix outdated example code | [
{
"change_type": "MODIFY",
"diff": "@@ -46,7 +46,6 @@ import { AssetServerOptions, ImageTransformPreset } from './types';\n* AssetServerPlugin.init({\n* route: 'assets',\n* assetUploadDir: path.join(__dirname, 'assets'),\n- * port: 4000,\n* }),\n* ],\n* };\n",
"new_path": "packages/asset-server-plugin/s... | TypeScript | MIT License | vendure-ecommerce/vendure | docs(asset-server-plugin): Fix outdated example code | 1 | docs | asset-server-plugin |
71,360 | 18.02.2022 10:53:21 | 28,800 | e601f0c2e6bf8a30af2751d7297bd94ffe93694c | chore(cli): Revert "fix(aws-cdk): include nested stacks when building changesets"
Reverts aws/aws-cdk#17396. Caused a regression in our integ tests for the CLI. | [
{
"change_type": "MODIFY",
"diff": "@@ -299,7 +299,6 @@ async function prepareAndExecuteChangeSet(\nStackName: deployName,\nChangeSetName: changeSetName,\nChangeSetType: update ? 'UPDATE' : 'CREATE',\n- IncludeNestedStacks: true,\nDescription: `CDK Changeset for execution ${executionId}`,\nTemplateBody: bod... | TypeScript | Apache License 2.0 | aws/aws-cdk | chore(cli): Revert "fix(aws-cdk): include nested stacks when building changesets" (#19044)
Reverts aws/aws-cdk#17396. Caused a regression in our integ tests for the CLI. | 1 | chore | cli |
756,026 | 18.02.2022 11:08:07 | 28,800 | 3ddd160f343a7ad6faebeee8e09787310a63e211 | fix: dropping the max on the property-based tests led to problems | [
{
"change_type": "MODIFY",
"diff": "@@ -13,10 +13,17 @@ const { add, multiply } = natSafeMath;\nconst { brand: brandX } = makeIssuerKit('X');\nconst { brand: brandY } = makeIssuerKit('Y');\n-const arbPoolX = fc.bigUint().map(value => m.make(brandX, 100n + value));\n-const arbPoolY = fc.bigUint().map(value =... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix: dropping the max on the property-based tests led to problems (#4600) | 1 | fix | null |
126,276 | 18.02.2022 11:38:47 | 10,800 | 5f798dfbed5583b28abc6f9ada3c15ac3c7afb8d | chore(embedded/tbtree): validate data-format version
chore(embedded/tbtree): validate data-format version | [
{
"change_type": "MODIFY",
"diff": "@@ -51,8 +51,9 @@ var ErrCorruptedFile = errors.New(\"file is corrupted\")\nvar ErrCorruptedCLog = errors.New(\"commit log is corrupted\")\nvar ErrCompactAlreadyInProgress = errors.New(\"compact already in progress\")\nvar ErrCompactionThresholdNotReached = errors.New(\"c... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/tbtree): validate data-format version
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
chore(embedded/tbtree): validate data-format version
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/tbtree |
104,826 | 18.02.2022 11:52:08 | 10,800 | 9ed1c2ba8c8c5a50a208c83fa37a97fe552eec35 | tests(IdleTimer): Fixing some unit tests that broke after changing the countdown update strategy. | [
{
"change_type": "MODIFY",
"diff": "-import { act, render, screen, within } from '@testing-library/react';\n+import { act, waitFor, render, screen, within } from '@testing-library/react';\nimport userEvent from '@testing-library/user-event';\nimport '@testing-library/jest-dom/extend-expect';\nimport React f... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | tests(IdleTimer): Fixing some unit tests that broke after changing the countdown update strategy. | 1 | tests | IdleTimer |
127,946 | 18.02.2022 12:51:06 | -10,800 | edef3b2a85da02d3370d4529a75d22d73ce45afc | chore: bump nextjs 12.1.0 | [
{
"change_type": "MODIFY",
"diff": "\"jest\": \"27.4.7\",\n\"jest-environment-jsdom\": \"^27.4.6\",\n\"lodash\": \"^4.17.21\",\n- \"next\": \"12.0.10\",\n+ \"next\": \"12.1.0\",\n\"next-transpile-modules\": \"9.0.0\",\n\"postcss\": \"8.4.5\",\n\"react\": \"17.0.2\",\n",
"new_path": "next-docs/package.js... | TypeScript | MIT License | coingaming/moon-design | chore: bump nextjs 12.1.0 (#1636) | 1 | chore | null |
104,826 | 18.02.2022 13:00:14 | 10,800 | 9fe4b699d4c54a5028069c0012436c6f980df30c | fix(IdleTimer): Minor fix for an edge case. Countdown needs to be 29 seconds in its first iteration, not 30. | [
{
"change_type": "MODIFY",
"diff": "@@ -63,7 +63,11 @@ class IdleTimer {\nthis.countdown === 0\n? this.countdown\n: Math.max(\n- this.COUNTDOWN_START - parseInt((now - userInactivityTimeoutValue) / 1000, 10),\n+ this.COUNTDOWN_START -\n+ parseInt(\n+ (now - (userInactivityTimeoutValue - this.COOKIE_CHECK_IN... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(IdleTimer): Minor fix for an edge case. Countdown needs to be 29 seconds in its first iteration, not 30. | 1 | fix | IdleTimer |
711,600 | 18.02.2022 13:07:24 | -3,600 | ced8ae50661fe44d7f08116e9473b5c52baa51a9 | chore(core): Remove unused code, exported interfaces | [
{
"change_type": "MODIFY",
"diff": "@@ -25,7 +25,6 @@ export class DefaultProductVariantPriceCalculationStrategy implements ProductVar\nconst { inputPrice, activeTaxZone, ctx, taxCategory } = args;\nlet price = inputPrice;\nlet priceIncludesTax = false;\n- const taxRate = await this.taxRateService.getApplic... | TypeScript | MIT License | vendure-ecommerce/vendure | chore(core): Remove unused code, exported interfaces (#1436) | 1 | chore | core |
67,475 | 18.02.2022 13:07:43 | 0 | f74f61c04cf9b06b9ce9a7238f9f6ba5295bebc2 | GitBook: App task documentation | [
{
"change_type": "MODIFY",
"diff": "* [Custom attributes](getting-to-know-aurelia/custom-attributes.md)\n* [Dependency injection (DI)](getting-to-know-aurelia/dependency-injection-di.md)\n* [App configuration and startup](getting-to-know-aurelia/app-configuration-and-startup.md)\n+* [App Tasks](getting-to-k... | TypeScript | MIT License | aurelia/aurelia | GitBook: [#129] App task documentation | 1 | gitbook | null |
730,445 | 18.02.2022 13:10:37 | 28,800 | 59ea3c76f6d6f7a061f92aaa82a5ecadc6846110 | docs(webex): add section for FedRAMP to README | [
{
"change_type": "MODIFY",
"diff": "@@ -180,6 +180,31 @@ Samples | Hosted\n--- | ---\n[Samples code](./packages/node_modules/samples/) | [js.samples.s4d.io/](https://js.samples.s4d.io/)\n+## FedRAMP Environment\n+The `webex` JavaScript SDK is officially supporting FedRAMP environments.\n+\n+To enable usage ... | JavaScript | MIT License | webex/webex-js-sdk | docs(webex): add section for FedRAMP to README | 1 | docs | webex |
104,828 | 18.02.2022 13:38:48 | -3,600 | 3b820c2ad449c635a3555781d57359aadb0f04da | docs(table): remove react wrapper for table stories
create custom useStoryState as a replacement for Reacts useState | [
{
"change_type": "MODIFY",
"diff": "-import React, { useState, createElement } from 'react';\n+import React from 'react';\nimport { action } from '@storybook/addon-actions';\nimport { object, select, boolean } from '@storybook/addon-knobs';\nimport { merge, uniqueId } from 'lodash-es';\n@@ -8,6 +8,7 @@ impo... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | docs(table): remove react wrapper for table stories
create custom useStoryState as a replacement for Reacts useState | 1 | docs | table |
847,143 | 18.02.2022 13:52:44 | -28,800 | 0602b6623b7009963364d36ee809ad2f77fc7297 | fix: fix BreadCrumb props | [
{
"change_type": "MODIFY",
"diff": "import { resolveRouteWithRedirect } from \"@mr-hope/vuepress-shared/lib/client\";\n-import { usePageFrontmatter, useRouteLocale } from \"@vuepress/client\";\n+import { useRouteLocale } from \"@vuepress/client\";\nimport {\ncomputed,\ndefineComponent,\n@@ -26,7 +26,7 @@ ex... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | fix: fix BreadCrumb props | 1 | fix | null |
711,597 | 18.02.2022 14:06:38 | -3,600 | db6665700a612566a09708087e823c1cde1c641b | feat(ui-devkit): Allow yarn or npm to be specified to run ng compiler | [
{
"change_type": "MODIFY",
"diff": "@@ -31,16 +31,27 @@ import {\nexport function compileUiExtensions(\noptions: UiExtensionCompilerOptions,\n): AdminUiAppConfig | AdminUiAppDevModeConfig {\n- const { outputPath, baseHref, devMode, watchPort, extensions } = options;\n+ const { outputPath, baseHref, devMode,... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(ui-devkit): Allow yarn or npm to be specified to run ng compiler | 1 | feat | ui-devkit |
688,430 | 18.02.2022 14:49:05 | -7,200 | 11576821ab8be61b7c22ca2cb44f9e643f334753 | feat: add large input variant | [
{
"change_type": "ADD",
"diff": "+---\n+'@toptal/picasso': minor\n+---\n+\n+---\n+### Input\n+\n+- added `large` size\n+\n+### Select\n+\n+- added `large` size\n",
"new_path": ".changeset/forty-wolves-live.md",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "@@ -70,11 +70,8 @@ ex... | TypeScript | MIT License | toptal/picasso | feat: add large input variant (#2442) | 1 | feat | null |
711,597 | 18.02.2022 14:49:24 | -3,600 | ad4ccf3d9837fc06d1bacf6af50c359ffb616d58 | fix(payments-plugin): Fix logic for looking up Braintree payment method | [
{
"change_type": "MODIFY",
"diff": "@@ -47,11 +47,10 @@ export class BraintreeResolver {\n}\nprivate async getPaymentMethodArgs(ctx: RequestContext): Promise<PaymentMethodArgsHash> {\n- const method = await this.connection.getRepository(ctx, PaymentMethod).findOne({\n- where: {\n- code: braintreePaymentMeth... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(payments-plugin): Fix logic for looking up Braintree payment method | 1 | fix | payments-plugin |
428,449 | 18.02.2022 14:57:02 | 18,000 | b0d44137e12dbed69fbc96c963dbf1da7fddbc6b | test: ensure our enums are types and values | [
{
"change_type": "ADD",
"diff": "+/* eslint-disable @typescript-eslint/no-unused-vars */\n+import { expectAssignable, expectType } from 'tsd';\n+\n+import {\n+ AuthMechanism,\n+ AutoEncryptionLoggerLevel,\n+ BatchType,\n+ BSONType,\n+ Compressor,\n+ CURSOR_FLAGS,\n+ CursorFlag,\n+ ExplainVerbosity,\n+ GSSAP... | TypeScript | Apache License 2.0 | mongodb/node-mongodb-native | test: ensure our enums are types and values (#3146) | 1 | test | null |
841,421 | 18.02.2022 15:18:35 | -32,400 | 4d5ba55e8a220155c2bae82d843309ae5731f8a1 | doc(api/rust): Fix rustdoc | [
{
"change_type": "MODIFY",
"diff": "+<!-- Note: CI script will automatically rebase your PR so please do not rebase unless required -->\n+\n<!-- Thanks for submitting a pull request! Please provide enough information so that others can review your pull request. -->\n**Description:**\n<!-- Explain the **moti... | Rust | Apache License 2.0 | swc-project/swc | doc(api/rust): Fix rustdoc (#3620) | 1 | doc | api/rust |
841,488 | 18.02.2022 15:23:18 | -28,800 | 5c035513410326a0d5d0dfa61f7440e9d0987632 | feat(es/compat): Check for duplicate private names and undefined private names | [
{
"change_type": "MODIFY",
"diff": "#![allow(dead_code)]\n-use swc_common::{collections::AHashSet, util::take::Take, Mark, Spanned, SyntaxContext, DUMMY_SP};\n+use swc_common::{\n+ collections::{AHashMap, AHashSet},\n+ util::take::Take,\n+ Mark, Spanned, SyntaxContext, DUMMY_SP,\n+};\nuse swc_ecma_ast::*;\n... | Rust | Apache License 2.0 | swc-project/swc | feat(es/compat): Check for duplicate private names and undefined private names (#3613) | 1 | feat | es/compat |
648,018 | 18.02.2022 15:23:19 | -3,600 | 266548d705ee9ce1ce75ffa2734c68bfb66d9114 | ci: Revert combined code coverage because it does not seem to work | [
{
"change_type": "MODIFY",
"diff": "@@ -71,7 +71,7 @@ stages:\ndisplayName: 'Run unit tests'\ninputs:\ncommand: test\n- projects: 'src/Stryker.sln'\n+ projects: 'src/Stryker.Core/Stryker.Core.UnitTest/Stryker.Core.UnitTest.csproj'\narguments: '--collect \"Code coverage\"'\n- task: SonarCloudAnalyze@1\n- tas... | C# | Apache License 2.0 | stryker-mutator/stryker-net | ci: Revert combined code coverage because it does not seem to work | 1 | ci | null |
711,597 | 18.02.2022 15:23:19 | -3,600 | 82e0b26e555d7131973a51ab36e45ec9219f50c2 | fix(core): Omit private facet values from Product.facetValues
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -1605,7 +1605,7 @@ export type Mutation = {\n/**\n* Verify a Customer email address with the token sent to that address. Only applicable if `authOptions.requireVerification` is set to true.\n*\n- * If the Customer was not registered with a password in the `registerCust... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(core): Omit private facet values from Product.facetValues
Fixes #1435 | 1 | fix | core |
392,551 | 18.02.2022 15:44:39 | 28,800 | fd7be538b33fd4bfb42d3095fb20d2384b28aa12 | fix: emit position event on reference change | [
{
"change_type": "MODIFY",
"diff": "@@ -371,6 +371,17 @@ export class Observer {\nthis._viewer.fire(type, event);\n}));\n+ subs.push(this._navigator.stateService.reference$\n+ .subscribe(\n+ (): void => {\n+ const type: ViewerEventType = \"position\";\n+ const event: ViewerStateEvent = {\n+ target: this._vi... | TypeScript | MIT License | mapillary/mapillary-js | fix: emit position event on reference change | 1 | fix | null |
392,551 | 18.02.2022 15:45:46 | 28,800 | c3b55916391ec3fd7ac266aae3756ccb927e0192 | feat: reset reference by meters for predictable behavior | [
{
"change_type": "MODIFY",
"diff": "@@ -41,7 +41,7 @@ export abstract class StateBase implements IStateBase {\nconstructor(state: IStateBase) {\nthis._spatial = new Spatial();\n- this._referenceThreshold = 0.01;\n+ this._referenceThreshold = 300;\nthis._transitionMode = state.transitionMode;\nthis._referenc... | TypeScript | MIT License | mapillary/mapillary-js | feat: reset reference by meters for predictable behavior | 1 | feat | null |
392,551 | 18.02.2022 15:47:28 | 28,800 | b9cbd23ca91f01d378c56fbfe71aa754a5f654fa | feat: uncache on reference change | [
{
"change_type": "MODIFY",
"diff": "@@ -27,6 +27,19 @@ import { SubscriptionHolder } from \"../util/SubscriptionHolder\";\nimport { connectedComponent } from \"../api/CellMath\";\nimport { APIWrapper } from \"../api/APIWrapper\";\nimport { LngLat } from \"../api/interfaces/LngLat\";\n+import { LngLatAlt } f... | TypeScript | MIT License | mapillary/mapillary-js | feat: uncache on reference change | 1 | feat | null |
386,595 | 18.02.2022 15:52:25 | -7,200 | cbb71d809b3117dbaf89b23c17a2229a24235308 | feat(operators): Change dependancy from js-yaml to yaml.
BREAKING CHANGE: _yaml.parse now takes an array or an object data instead of a string. | [
{
"change_type": "MODIFY",
"diff": "@@ -3102,9 +3102,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@swc/jest\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349016e85173e049f006fc2305#npm:0.2.17\"],\n[\"ajv\", \"npm:8.9.0\... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(operators): Change dependancy from js-yaml to yaml.
BREAKING CHANGE: _yaml.parse now takes an array or an object data instead of a string. | 1 | feat | operators |
777,415 | 18.02.2022 16:11:00 | 28,800 | 3b779c773ef6981363a6059fcce9c4caee571758 | feat: create PATCH users endpoint | [
{
"change_type": "MODIFY",
"diff": "Binary files a/harness/determined/common/api/bindings.py and b/harness/determined/common/api/bindings.py differ\n",
"new_path": "harness/determined/common/api/bindings.py",
"old_path": "harness/determined/common/api/bindings.py"
},
{
"change_type": "MODIFY... | Python | Apache License 2.0 | determined-ai/determined | feat: create PATCH users endpoint (#3634) | 1 | feat | null |
889,620 | 18.02.2022 16:35:13 | -28,800 | 1a8249732db89f9346d47cc21a6189a7e88f4529 | perf(webui): reduce duplicate api calls for components with datatables | [
{
"change_type": "MODIFY",
"diff": "@@ -73,9 +73,6 @@ export default Vue.extend({\nreturn headers\n},\n},\n- async mounted() {\n- this.loadData()\n- },\nmethods: {\nasync loadData() {\nthis.loading = true\n",
"new_path": "komga-webui/src/components/AuthenticationActivityTable.vue",
"old_path": "komg... | Kotlin | MIT License | gotson/komga | perf(webui): reduce duplicate api calls for components with datatables | 1 | perf | webui |
711,597 | 18.02.2022 16:46:16 | -3,600 | d4d4ee2e666fe7a94e76299f14027e2cd2c7b0de | fix(admin-ui): Fix issues with creating FacetValues with custom fields
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -104,15 +104,25 @@ export class FacetDetailComponent\naddFacetValue() {\nconst valuesFormArray = this.detailForm.get('values') as FormArray | null;\nif (valuesFormArray) {\n- valuesFormArray.insert(\n- valuesFormArray.length,\n- this.formBuilder.group({\n+ const valueG... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(admin-ui): Fix issues with creating FacetValues with custom fields
Closes #1434 | 1 | fix | admin-ui |
126,276 | 18.02.2022 16:52:15 | 10,800 | c78be9f32b9802315426906edec5650c9150482e | chore(embedded/tbtree): self-healing index | [
{
"change_type": "MODIFY",
"diff": "@@ -484,17 +484,25 @@ func TestImmudbStoreEdgeCases(t *testing.T) {\n},\nCloseFn: func() error { return nil },\n}, nil\n+ case \"index/history\":\n+ return &mocked.MockedAppendable{\n+ SetOffsetFn: func(off int64) error { return nil },\n+ SizeFn: func() (int64, error) {\n... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/tbtree): self-healing index
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/tbtree |
342,861 | 18.02.2022 17:17:16 | -3,600 | a88fc308b6529b527350584e6a6a7f10a6ebae34 | fix(Select): change icon color to InkLight | [
{
"change_type": "MODIFY",
"diff": "@@ -379,7 +379,7 @@ const Select: React.AbstractComponent<\n))}\n</StyledSelect>\n<SelectSuffix size={size} disabled={disabled}>\n- <ChevronDown />\n+ <ChevronDown color=\"secondary\" />\n</SelectSuffix>\n</SelectContainer>\n{!insideInputGroup && (\n",
"new_path": "pa... | JavaScript | MIT License | kiwicom/orbit | fix(Select): change icon color to InkLight | 1 | fix | Select |
126,276 | 18.02.2022 17:18:44 | 10,800 | 469a94a4594048605cf160f131cd2da7d2966ecc | test(embedded/tbtree): self-healing unit testing | [
{
"change_type": "MODIFY",
"diff": "@@ -467,10 +467,10 @@ func OpenWith(path string, nLog, hLog, cLog appendable.Appendable, opts *Options\n}\ncommittedRootOffset := int64(binary.BigEndian.Uint64(b[:]))\n- committedHLogOffset := int64(binary.BigEndian.Uint64(b[8:]))\n+ committedHLogSize := int64(binary.BigE... | Go | Apache License 2.0 | codenotary/immudb | test(embedded/tbtree): self-healing unit testing
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | test | embedded/tbtree |
756,029 | 18.02.2022 17:22:03 | 28,800 | 2fda391170724d5c3a5673367a969759d7acff06 | fix(SwingSet): Carry ambient ses-ava types | [
{
"change_type": "MODIFY",
"diff": "@@ -8,6 +8,9 @@ import '@endo/init/pre-bundle-source.js';\nimport './prepare-test-env.js';\n+// eslint-disable-next-line import/no-extraneous-dependencies\n+import '@endo/ses-ava/exported.js';\n+\n// eslint thinks these are extraneous dependencies because this file\n// is... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(SwingSet): Carry ambient ses-ava types | 1 | fix | SwingSet |
756,029 | 18.02.2022 17:22:48 | 28,800 | 4ae3f80557d2e6bf5e2420664eb0624d6849d689 | refactor(xsnap): Migrate to externalized stream libraries | [
{
"change_type": "MODIFY",
"diff": "\"@agoric/eventual-send\": \"^0.14.0\",\n\"@endo/init\": \"^0.5.35\",\n\"@endo/netstring\": \"^0.3.5\",\n+ \"@endo/stream\": \"^0.3.4\",\n+ \"@endo/stream-node\": \"^0.2.5\",\n\"glob\": \"^7.1.6\"\n},\n\"devDependencies\": {\n",
"new_path": "packages/xsnap/package.jso... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | refactor(xsnap): Migrate to externalized stream libraries | 1 | refactor | xsnap |
756,031 | 18.02.2022 17:35:50 | 0 | a03e508902fec6da81ed1f27189dbb50e2b818b6 | docs(SwingSet): Fix ResolutionType type | [
{
"change_type": "MODIFY",
"diff": "@@ -90,7 +90,7 @@ export function makeKernelQueueHandler(tools) {\n* @param {*} args The message arguments\n* @param {ResolutionPolicy=} policy How the kernel should handle an eventual\n* resolution or rejection of the message's result promise. Should be\n- * one of 'send... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | docs(SwingSet): Fix ResolutionType type | 1 | docs | SwingSet |
756,029 | 18.02.2022 17:58:47 | 28,800 | 4bcbcb5f40755fda68851ddca2cacaec4eb07221 | fix(import-bundle): Handle harden bundles in tests | [
{
"change_type": "MODIFY",
"diff": "@@ -98,8 +98,8 @@ test('test missing sourceMap', async function testImport(t) {\nnew URL('bundle1.js', import.meta.url).pathname,\n'nestedEvaluate',\n);\n- delete b1.sourceMap;\n- const ns1 = await importBundle(b1, { endowments });\n+ const { sourceMap: _, ...b1Lite } = b... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(import-bundle): Handle harden bundles in tests | 1 | fix | import-bundle |
889,620 | 18.02.2022 18:01:35 | -28,800 | 88f7f57a5d8d4d68c6be47db48602a779e2dac53 | feat(api): new history endpoint to retrieve historical events | [
{
"change_type": "ADD",
"diff": "+CREATE TABLE HISTORICAL_EVENT\n+(\n+ ID varchar PRIMARY KEY,\n+ TYPE varchar NOT NULL,\n+ BOOK_ID varchar NULL,\n+ SERIES_ID varchar NULL,\n+ TIMESTAMP datetime NOT NULL DEFAULT CURRENT_TIMESTAMP\n+);\n+\n+CREATE TABLE HISTORICAL_EVENT_PROPERTIES\n+(\n+ ID varchar NOT NULL,... | Kotlin | MIT License | gotson/komga | feat(api): new history endpoint to retrieve historical events | 1 | feat | api |
889,620 | 18.02.2022 18:04:47 | -28,800 | f8bea23b2a0a7eeda22c2840bb57c09b8464d6e6 | feat(webui): history view | [
{
"change_type": "MODIFY",
"diff": "},\n\"book_card\": {\n\"error\": \"Error\",\n+ \"no_release_date\": \"No release date\",\n\"unknown\": \"To be analyzed\",\n\"unread\": \"Unread\",\n- \"unsupported\": \"Unsupported\",\n- \"no_release_date\": \"No release date\"\n+ \"unsupported\": \"Unsupported\"\n},\n\"... | Kotlin | MIT License | gotson/komga | feat(webui): history view | 1 | feat | webui |
889,620 | 18.02.2022 18:27:49 | -28,800 | 90caee988eaf0048688f278f8f45dedd425fd228 | feat(webui): move some views into media management section | [
{
"change_type": "MODIFY",
"diff": "\"status\": \"Status\",\n\"url\": \"URL\"\n},\n+ \"media_management\": {\n+ \"title\": \"Media Management\"\n+ },\n\"menu\": {\n\"add_to_collection\": \"Add to collection\",\n\"add_to_readlist\": \"Add to read list\",\n",
"new_path": "komga-webui/src/locales/en.json",... | Kotlin | MIT License | gotson/komga | feat(webui): move some views into media management section | 1 | feat | webui |
265,942 | 18.02.2022 18:41:06 | 18,000 | faca1dda69cb8d7e9b696bd64718642987350fae | chore: update system test message for requester pays error | [
{
"change_type": "MODIFY",
"diff": "@@ -1903,7 +1903,7 @@ describe('storage', () => {\nfunction doubleTest(testFunction: Function) {\nconst failureMessage =\n- 'Bucket is requester pays bucket but no user project provided.';\n+ 'Bucket is a requester pays bucket but no user project provided.';\nreturn (done... | TypeScript | Apache License 2.0 | googleapis/nodejs-storage | chore: update system test message for requester pays error (#1791) | 1 | chore | null |
317,646 | 18.02.2022 19:42:17 | -3,600 | 3efb979053452173712f7b77d3ecea0f7770fb55 | fix(az): fetch path from AZURE_CONFIG_DIR
resolves | [
{
"change_type": "MODIFY",
"diff": "@@ -101,7 +101,7 @@ func (a *Az) FileContentWithoutBom(file string) string {\nfunc (a *Az) getAzureProfile() bool {\nvar content string\n- profile := filepath.Join(a.env.Home(), \".azure\", \"azureProfile.json\")\n+ profile := filepath.Join(a.ConfigHome(), \"azureProfile.... | Go | MIT License | jandedobbeleer/oh-my-posh | fix(az): fetch path from AZURE_CONFIG_DIR
resolves #1775 | 1 | fix | az |
151,430 | 18.02.2022 20:09:31 | 28,800 | a1740d48126ab9e439071a8460919c9947e3f402 | chore: node-sass fix | [
{
"change_type": "MODIFY",
"diff": "\"@babel/core\": \"^7.17.0\",\n\"@babel/plugin-transform-runtime\": \"^7.17.0\",\n\"@babel/preset-env\": \"7.16.11\",\n+ \"@rollup/plugin-babel\": \"^5.3.0\",\n\"@rollup/plugin-commonjs\": \"^21.0.1\",\n- \"@rollup/plugin-node-resolve\": \"^13.1.3\",\n\"@rollup/plugin-jso... | JavaScript | MIT License | davidwells/analytics | chore: node-sass fix
Signed-off-by: David Wells <> | 1 | chore | null |
756,029 | 18.02.2022 20:30:46 | 28,800 | ed13c50f30b237a066b4267ee20143cb1a5e022e | chore: Update SwingSet hashes | [
{
"change_type": "MODIFY",
"diff": "@@ -12,8 +12,8 @@ Generated by [AVA](https://avajs.dev).\n> after SES boot - sensitive to SES-shim, XS, and supervisor\n- '99f2a94a95f7fe10766e981851d355dabdbe129f858442e457a1719e20f46464'\n+ '3090d1bc4e7cf5e9420f39d2631af675ff8f2fc0de1ad1e2bbbde14ca7109bf8'\n> after use ... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | chore: Update SwingSet hashes | 1 | chore | null |
711,597 | 18.02.2022 21:27:32 | -3,600 | 910adf84942414771f696adfdcc738c834c02d8b | perf(common): Increase perf of `unique` helper by ~1000x
Relates to | [
{
"change_type": "MODIFY",
"diff": "@@ -30,4 +30,22 @@ describe('unique()', () => {\nit('works an empty array', () => {\nexpect(unique([])).toEqual([]);\n});\n+\n+ it('perf on primitive array', async () => {\n+ const bigArray = Array.from({ length: 50000 }).map(() => Math.random().toString().substr(2, 5));\... | TypeScript | MIT License | vendure-ecommerce/vendure | perf(common): Increase perf of `unique` helper by ~1000x
Relates to #1433 | 1 | perf | common |
711,597 | 18.02.2022 21:30:17 | -3,600 | 91cdb40d68237b1147f37db6b104797ee4492f85 | refactor(core): Minor refactor to search job buffers
Relates to | [
{
"change_type": "MODIFY",
"diff": "@@ -3,7 +3,6 @@ import { unique } from '@vendure/common/lib/unique';\nimport { Job, JobBuffer } from '../../../job-queue/index';\nimport { ApplyCollectionFiltersJobData } from '../../../service/services/collection.service';\n-import { UpdateIndexQueueJobData, UpdateVarian... | TypeScript | MIT License | vendure-ecommerce/vendure | refactor(core): Minor refactor to search job buffers
Relates to #1433 | 1 | refactor | core |
711,597 | 18.02.2022 21:31:49 | -3,600 | d67e6a3ef258daa5662fa91ff00f6f6016cc3705 | chore(core): Add a test plugin for issue 1433
Relates to | [
{
"change_type": "ADD",
"diff": "+import { Mutation, Query, Resolver } from '@nestjs/graphql';\n+import {\n+ CollectionService,\n+ Ctx,\n+ Logger,\n+ PluginCommonModule,\n+ ProductVariantService,\n+ RequestContext,\n+ VendurePlugin,\n+} from '@vendure/core';\n+import gql from 'graphql-tag';\n+\n+@Resolver()... | TypeScript | MIT License | vendure-ecommerce/vendure | chore(core): Add a test plugin for issue 1433
Relates to #1433 | 1 | chore | core |
756,031 | 18.02.2022 21:34:51 | 0 | 17087e4605db7d3b30dfccf2434b2850b45e3408 | fix: Remove extraneous eslint globals | [
{
"change_type": "MODIFY",
"diff": "-/* global HandledPromise */\n-\nimport {\nRemotable,\npassStyleOf,\n",
"new_path": "packages/SwingSet/src/kernel/liveSlots.js",
"old_path": "packages/SwingSet/src/kernel/liveSlots.js"
},
{
"change_type": "MODIFY",
"diff": "-/* global HandledPromise */... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix: Remove extraneous eslint globals | 1 | fix | null |
711,675 | 19.02.2022 00:33:34 | -39,600 | 238be6ba00316f11da7b8349c39bbf04474ee05b | feat(payments-plugin): Add Stripe integration | [
{
"change_type": "MODIFY",
"diff": "},\n\"peerDependencies\": {\n\"@mollie/api-client\": \"3.x\",\n- \"braintree\": \"3.x\"\n+ \"braintree\": \"3.x\",\n+ \"stripe\": \"8.x\"\n},\n\"devDependencies\": {\n\"@mollie/api-client\": \"^3.5.1\",\n\"braintree\": \"^3.0.0\",\n\"nock\": \"^13.1.4\",\n\"rimraf\": \"^3... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(payments-plugin): Add Stripe integration (#1417) | 1 | feat | payments-plugin |
841,473 | 19.02.2022 01:05:34 | -28,800 | 3615f41c7907e74aa3f0321e4577bc78bbdc8f25 | feat(swc): Add `$schema` and utf8-bom support for `.swcrc` | [
{
"change_type": "MODIFY",
"diff": "@@ -696,6 +696,9 @@ pub struct Config {\n#[serde(default)]\npub error: ErrorConfig,\n+\n+ #[serde(rename = \"$schema\")]\n+ pub schema: Option<String>,\n}\n/// Second argument of `minify`.\n",
"new_path": "crates/swc/src/config/mod.rs",
"old_path": "crates/swc/src... | Rust | Apache License 2.0 | swc-project/swc | feat(swc): Add `$schema` and utf8-bom support for `.swcrc` (#3622) | 1 | feat | swc |
841,421 | 19.02.2022 02:09:22 | -32,400 | 81a57614902c884ab8f3bc037738a9f1acd9e7d9 | chore: Publish `v1.2.142` | [
{
"change_type": "MODIFY",
"diff": "@@ -4016,7 +4016,7 @@ checksum = \"fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6\"\n[[package]]\nname = \"wasm\"\n-version = \"1.2.141\"\n+version = \"1.2.142\"\ndependencies = [\n\"anyhow\",\n\"console_error_panic_hook\",\n",
"new_path": "Cargo.loc... | Rust | Apache License 2.0 | swc-project/swc | chore: Publish `v1.2.142` | 1 | chore | null |
471,462 | 19.02.2022 09:24:06 | 18,000 | 5297d3ed409256a3c8f6620b28583bac2fc7c00b | build: add canary publish workflow | [
{
"change_type": "ADD",
"diff": "+name: Pre-release\n+\n+on:\n+ push:\n+ branches:\n+ - next\n+ - snapshot-releases\n+\n+jobs:\n+ release:\n+ # Prevents changesets action from creating a PR on forks\n+ if: github.repository == 'open-wc/open-wc'\n+ name: Pre-release\n+ runs-on: ubuntu-latest\n+ steps:\n+ - n... | JavaScript | MIT License | open-wc/open-wc | build: add canary publish workflow | 1 | build | null |
531,793 | 19.02.2022 09:49:14 | 0 | d799633f525858a58515cbcabbb02cd7ff480742 | fix(ui): remove useless conditional | [
{
"change_type": "MODIFY",
"diff": "@@ -50,7 +50,7 @@ const TooltipWrapper: FC<{\nwindow.clearTimeout(timerShow);\nwindow.clearTimeout(timerHide);\nsetIsVisible(false);\n- } else if (!isVisible && isHovering) {\n+ } else if (!isVisible) {\nclearTimeout(timerHide);\ntimerShow = window.setTimeout(() => setIsV... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): remove useless conditional | 1 | fix | ui |
531,793 | 19.02.2022 11:16:11 | 0 | 1b640697c4c79ab6dec48a431f591d2b7a75a6be | fix(ui): correctly unpack regexp matchers
Fixes | [
{
"change_type": "MODIFY",
"diff": "# Changelog\n+## v0.99\n+\n+### Fixed\n+\n+- Fixed regexp escaping when editing silences #3936.\n+\n## v0.98\n### Fixed\n",
"new_path": "CHANGELOG.md",
"old_path": "CHANGELOG.md"
},
{
"change_type": "MODIFY",
"diff": "@@ -558,7 +558,7 @@ describe(\"Sil... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): correctly unpack regexp matchers
Fixes #3936 | 1 | fix | ui |
841,455 | 19.02.2022 12:06:10 | -10,800 | 72343baf5be311809fe786ee8bbea52515197286 | feat(es/lints): Implement `no-restricted-syntax` rule | [
{
"change_type": "ADD",
"diff": "+{\n+ \"jsc\": {\n+ \"lints\": {\n+ \"noRestrictedSyntax\": [\n+ \"error\",\n+ {\n+ \"BinaryExpression\": [\n+ {\n+ \"message\": \"no 'in' expession\",\n+ \"operator\": \"in\"\n+ }\n+ ]\n+ }\n+ ]\n+ }\n+ }\n+}\n\\ No newline at end of file\n",
"new_path": "crates/swc/tes... | Rust | Apache License 2.0 | swc-project/swc | feat(es/lints): Implement `no-restricted-syntax` rule (#3607) | 1 | feat | es/lints |
531,793 | 19.02.2022 12:14:38 | 0 | ed31e2c465e6bee53fedf4e5c8bf49947f0a2a07 | fix(ui): don't render labels if there's only one
Fixes | [
{
"change_type": "MODIFY",
"diff": "- Fixed regexp escaping when editing silences #3936.\n+### Changed\n+\n+- Don't render `@cluster` labels if there's only one cluster configured #3994.\n+\n## v0.98\n### Fixed\n",
"new_path": "CHANGELOG.md",
"old_path": "CHANGELOG.md"
},
{
"change_type": "M... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): don't render @cluster labels if there's only one
Fixes #3994 | 1 | fix | ui |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.