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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
320,067 | 26.05.2021 23:27:20 | -7,200 | 8854ce97bba7858dfc9385530e0c090200944ede | fix: clear cookies when rotating proxies | [
{
"change_type": "MODIFY",
"diff": "@@ -280,6 +280,15 @@ async function lookup(browser: Browser, store: Store) {\nawait disableBlockerInPage(pageProxy);\n}\n+ if (\n+ store.currentProxyIndex !== undefined &&\n+ store.proxyList &&\n+ store.proxyList?.length > 1\n+ ) {\n+ const client = await page.target().cr... | TypeScript | MIT License | jef/streetmerchant | fix: clear cookies when rotating proxies (#2575) | 1 | fix | null |
320,118 | 26.05.2021 23:28:48 | -7,200 | 11220750143df7ebdc011aafccb8e035bfd2bc5d | chore(alternate): add PS5 bundle | [
{
"change_type": "MODIFY",
"diff": "@@ -993,6 +993,12 @@ export const Alternate: Store = {\nseries: 'sonyps5c',\nurl: 'https://www.alternate.de/html/product/1651220',\n},\n+ {\n+ brand: 'sony',\n+ model: 'ps5 console',\n+ series: 'sonyps5c',\n+ url: 'https://www.alternate.de/html/product/1750947',\n+ },\n{\... | TypeScript | MIT License | jef/streetmerchant | chore(alternate): add PS5 bundle (#2562) | 1 | chore | alternate |
392,551 | 26.05.2021 23:28:50 | -7,200 | e60de95f99d7d544c8404d6ddec6529d2f802b98 | docs: add mouse handler example | [
{
"change_type": "MODIFY",
"diff": "@@ -10,7 +10,7 @@ After cloning MapillaryJS, run `yarn install` in this directory to fetch the doc\n- `yarn build-mods` builds the `mapillary-js` library and copies module dependencies used in examples into the `mods` directory. This step is required for building the docs... | TypeScript | MIT License | mapillary/mapillary-js | docs: add mouse handler example | 1 | docs | null |
756,059 | 27.05.2021 00:43:27 | 25,200 | c5cc00a9e0f1c90ee2cb57fe6c3767a285f4d8e3 | feat: overhaul stream store API to better fit actual use in kernel | [
{
"change_type": "MODIFY",
"diff": "@@ -15,7 +15,6 @@ const encoder = new util.TextEncoder();\n* @typedef { import('@agoric/swing-store-simple').KVStore } KVStore\n* @typedef { import('@agoric/swing-store-simple').StreamPosition } StreamPosition\n* @typedef { import('@agoric/swing-store-simple').StreamStore... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | feat: overhaul stream store API to better fit actual use in kernel | 1 | feat | null |
126,294 | 27.05.2021 02:50:09 | -19,080 | 1a66a7ce2c98e73ea773c8ff5462db79519923d2 | fix(cmd/immuclient): improve immuclient tx and safetx error message | [
{
"change_type": "MODIFY",
"diff": "@@ -18,6 +18,7 @@ package immuc\nimport (\n\"context\"\n+ \"errors\"\n\"fmt\"\n\"strconv\"\n\"strings\"\n@@ -26,11 +27,19 @@ import (\n\"github.com/codenotary/immudb/pkg/client\"\n)\n+var (\n+ errZeroTxID = errors.New(\"tx id cannot be 0 (should be bigger than 0)\")\n+)\n... | Go | Apache License 2.0 | codenotary/immudb | fix(cmd/immuclient): improve immuclient tx and safetx error message
Signed-off-by: Aman Mangal <mangalaman93@gmail.com> | 1 | fix | cmd/immuclient |
306,353 | 27.05.2021 03:11:05 | -18,000 | 82d6457a6e7705257ac2a66d36049d94cf0ebaec | fix(azure): warnings in tests | [
{
"change_type": "MODIFY",
"diff": "@@ -169,8 +169,9 @@ func serverlessCosmosCostComponent(location string, availabilityZone bool, u *sc\nService: strPtr(\"Azure Cosmos DB\"),\nProductFamily: strPtr(\"Databases\"),\nAttributeFilters: []*schema.AttributeFilter{\n- {Key: \"productName\", ValueRegex: strPtr(\"... | Go | Apache License 2.0 | infracost/infracost | fix(azure): warnings in tests (#727) | 1 | fix | azure |
815,609 | 27.05.2021 06:55:12 | -28,800 | 40847cad75f4967b4723286927533dd90431d33c | refactor: remove useless parameter "with_data" because it always be true (tricky) | [
{
"change_type": "MODIFY",
"diff": "@@ -600,11 +600,11 @@ fn parse_dep_group_data(slice: &[u8]) -> Result<OutPointVec, String> {\n}\n}\n-fn resolve_dep_group<F: FnMut(&OutPoint, bool) -> Result<CellMeta, OutPointError>>(\n+fn resolve_dep_group<F: FnMut(&OutPoint) -> Result<CellMeta, OutPointError>>(\nout_po... | Rust | MIT License | nervosnetwork/ckb | refactor: remove useless parameter "with_data" because it always be true (tricky) | 1 | refactor | null |
103,492 | 27.05.2021 07:54:14 | 25,200 | b5d9c6a8bd43d11e42b4555c6cfe2b9581d72fa8 | fix(BottomNavigation): migrate to tab role instead of button | [
{
"change_type": "MODIFY",
"diff": "@@ -695,6 +695,7 @@ const BottomNavigation = ({\nmaxWidth: maxTabBarWidth,\n},\n]}\n+ accessibilityRole={'tablist'}\n>\n{shifting ? (\n<Animated.View\n@@ -778,7 +779,7 @@ const BottomNavigation = ({\n? ['button', 'selected']\n: 'button',\naccessibilityComponentType: 'butt... | TypeScript | MIT License | callstack/react-native-paper | fix(BottomNavigation): migrate to tab role instead of button (#2611) | 1 | fix | BottomNavigation |
471,204 | 27.05.2021 08:14:06 | 14,400 | d82ad8a339950a9fa954a0b9fe1ac0c3802a62a0 | chore: remove references to Noop classes from API | [
{
"change_type": "MODIFY",
"diff": "import {\ncontext,\n- NoopTextMapPropagator,\npropagation,\ntrace,\nProxyTracerProvider,\n@@ -25,7 +24,6 @@ import {\nAsyncHooksContextManager,\nAsyncLocalStorageContextManager,\n} from '@opentelemetry/context-async-hooks';\n-import { NoopContextManager } from '@opentelem... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js | chore: remove references to Noop classes from API (#2230) | 1 | chore | null |
306,309 | 27.05.2021 08:35:57 | -3,600 | cc1288cb456e146c0807e69ce671af89c3e57c20 | fix(azure): rename Azure resource to match TF
Also ignore the free tier instead of showing 0 costs | [
{
"change_type": "RENAME",
"diff": "@@ -9,14 +9,14 @@ import (\n\"github.com/tidwall/gjson\"\n)\n-func GetAzureRMNotificationHubsRegistryItem() *schema.RegistryItem {\n+func GetAzureRMNotificationHubNamespaceRegistryItem() *schema.RegistryItem {\nreturn &schema.RegistryItem{\nName: \"azurerm_notification_hu... | Go | Apache License 2.0 | infracost/infracost | fix(azure): rename Azure resource to match TF (#725)
Also ignore the free tier instead of showing 0 costs | 1 | fix | azure |
317,646 | 27.05.2021 08:56:21 | -7,200 | 3b56c24b6970af295efa9a1b16b32ba677263e32 | fix: add not charging state for battery info | [
{
"change_type": "MODIFY",
"diff": "@@ -34,6 +34,6 @@ require (\nhowett.net/plist v0.0.0-20201203080718-1454fab16a06 // indirect\n)\n-replace github.com/distatus/battery v0.10.0 => github.com/JanDeDobbeleer/battery v0.10.0-1\n+replace github.com/distatus/battery v0.10.0 => github.com/JanDeDobbeleer/battery ... | Go | MIT License | jandedobbeleer/oh-my-posh | fix: add not charging state for battery info | 1 | fix | null |
73,317 | 27.05.2021 09:26:38 | -7,200 | 0fbba6bc1af09cbab19acdabaea14e5eb1681ae3 | fix(pacmak): fails when package path contains space
Quoting the package path in the sub-shell command so that spaces are not
incorrectly interpreted as argument delimiters.
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -55,7 +55,9 @@ export class JsiiModule {\npublic async npmPack() {\nthis._tarball = await Scratch.make(async (tmpdir) => {\nlogging.debug(`Running \"npm pack ${this.moduleDirectory}\" in ${tmpdir}`);\n- const args = ['pack', this.moduleDirectory];\n+ // Quoting (JSON-s... | TypeScript | Apache License 2.0 | aws/jsii | fix(pacmak): fails when package path contains space (#2758)
Quoting the package path in the sub-shell command so that spaces are not
incorrectly interpreted as argument delimiters.
Fixes #2748 | 1 | fix | pacmak |
791,394 | 27.05.2021 09:31:52 | -36,000 | ff5f8c989cba2751dcc77745483ef3828e6df78c | feat(pubsublite): detect stream reset signal
Modifies retryableStream to detect the Pub/Sub Lite RESET signal and forward the notification to the streamHandler implementation. | [
{
"change_type": "MODIFY",
"diff": "@@ -22,6 +22,7 @@ import (\n\"google.golang.org/api/option\"\n\"google.golang.org/api/option/internaloption\"\n+ \"google.golang.org/genproto/googleapis/rpc/errdetails\"\n\"google.golang.org/grpc\"\n\"google.golang.org/grpc/codes\"\n\"google.golang.org/grpc/keepalive\"\n@... | Go | Apache License 2.0 | googleapis/google-cloud-go | feat(pubsublite): detect stream reset signal (#4144)
Modifies retryableStream to detect the Pub/Sub Lite RESET signal and forward the notification to the streamHandler implementation. | 1 | feat | pubsublite |
392,551 | 27.05.2021 09:46:02 | -7,200 | 81ff06c8b811f5a19d3cbc17bcd09ad970437d55 | docs: add keyboard handler example | [
{
"change_type": "ADD",
"diff": "+/**\n+ * Copyright (c) Facebook, Inc. and its affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @format\n+ */\n+\n+import {Viewer} from '../../../mods/mapillary-js/dis... | TypeScript | MIT License | mapillary/mapillary-js | docs: add keyboard handler example | 1 | docs | null |
276,989 | 27.05.2021 09:49:54 | 10,800 | 6272aeee94583024a00d22be471bb68180e9ec11 | refactor(chips): adjust onToggle event support | [
{
"change_type": "MODIFY",
"diff": "import React from 'react';\nimport { node, number, arrayOf, bool, func } from 'prop-types';\nimport styled, { css, withTheme } from 'styled-components';\n+import { TouchableWithoutFeedback } from 'react-native';\nimport Counter from './Counter';\nimport { theme } from '..... | JavaScript | MIT License | gympass/yoga | refactor(chips): adjust onToggle event support | 1 | refactor | chips |
889,620 | 27.05.2021 09:50:30 | -28,800 | c3b352aca03a7a859ffdb8f4a95c504b91981348 | perf: precompute series book counts | [
{
"change_type": "ADD",
"diff": "+alter table SERIES\n+ add column BOOK_COUNT int NOT NULL DEFAULT 0;\n+\n+update SERIES\n+set BOOK_COUNT = (\n+ SELECT COUNT(b.ID)\n+ FROM BOOK b\n+ WHERE b.SERIES_ID = SERIES.ID\n+ );\n+\n+CREATE TABLE READ_PROGRESS_SERIES\n+(\n+ SERIES_ID varchar NOT NULL,\n+ USER_ID varch... | Kotlin | MIT License | gotson/komga | perf: precompute series book counts | 1 | perf | null |
889,620 | 27.05.2021 09:52:14 | -28,800 | 7f49bfa05e20ae4adb5ab40244ae9b770c1c2348 | fix(webui): show recent books before series | [
{
"change_type": "MODIFY",
"diff": "</template>\n</horizontal-scroller>\n- <horizontal-scroller v-if=\"newSeries.length !== 0\" class=\"mb-4\">\n+ <horizontal-scroller v-if=\"latestBooks.length !== 0\" class=\"mb-4\">\n<template v-slot:prepend>\n- <div class=\"title\">{{ $t('dashboard.recently_added_series'... | Kotlin | MIT License | gotson/komga | fix(webui): show recent books before series | 1 | fix | webui |
276,989 | 27.05.2021 09:53:00 | 10,800 | 96d5ea1dbe4647d1d416a7b87d96f6100b8de17d | test(chips): add tests for onToggle event | [
{
"change_type": "MODIFY",
"diff": "@@ -136,5 +136,19 @@ describe('<Chips />', () => {\nexpect(toggleMock).toHaveBeenCalled();\n});\n+\n+ it('should toggle using onToggle', () => {\n+ const toggleMock = jest.fn();\n+\n+ const { getByText } = render(\n+ <ThemeProvider>\n+ <Chips onToggle={toggleMock}>Classes... | JavaScript | MIT License | gympass/yoga | test(chips): add tests for onToggle event | 1 | test | chips |
276,989 | 27.05.2021 09:54:37 | 10,800 | dc2ae2ccab5178e4514f667ba18eee1276142c0c | test(chips): update snapshots | [
{
"change_type": "MODIFY",
"diff": "@@ -10,19 +10,9 @@ exports[`<Chips /> Snapshots counter should match snapshot 1`] = `\n}\n}\n>\n- <TouchableWithoutFeedback\n- counter={8}\n- >\n- <View\n- style={\n- Object {\n- \"flexDirection\": \"row\",\n- }\n- }\n- >\n+ <TouchableWithoutFeedback>\n<View\ndisabled={fa... | JavaScript | MIT License | gympass/yoga | test(chips): update snapshots | 1 | test | chips |
791,394 | 27.05.2021 09:55:13 | -36,000 | 0ecd732e3f57928e7999ae4e78871be070c184d9 | feat(pubsublite): flush and reset committer
Adds ackTracker.Reset() and commitCursorTracker.Reset() to reset these trackers to their initial state.
Adds committer.BlockingReset(), which flushes pending commits to the server and then resets the state of the committer. | [
{
"change_type": "ADD",
"diff": "+// Copyright 2021 Google LLC\n+//\n+// Licensed under the Apache License, Version 2.0 (the \"License\");\n+// you may not use this file except in compliance with the License.\n+// You may obtain a copy of the License at\n+//\n+// https://www.apache.org/licenses/LICENSE-2.0\... | Go | Apache License 2.0 | googleapis/google-cloud-go | feat(pubsublite): flush and reset committer (#4143)
- Adds ackTracker.Reset() and commitCursorTracker.Reset() to reset these trackers to their initial state.
- Adds committer.BlockingReset(), which flushes pending commits to the server and then resets the state of the committer. | 1 | feat | pubsublite |
503,933 | 27.05.2021 09:59:32 | 14,400 | 80fc5583bc759c4fac0d87cd985d9f3baa3f7222 | feat(DescriptionList): Added support for helpr text | [
{
"change_type": "MODIFY",
"diff": "@@ -15,7 +15,7 @@ export const DescriptionListTerm: React.FunctionComponent<DescriptionListTermPro\n...props\n}: DescriptionListTermProps) => (\n<dt className={css(styles.descriptionListTerm, className)} {...props}>\n- <span className={'pf-c-description-list__text'}>{chil... | TypeScript | MIT License | patternfly/patternfly-react | feat(DescriptionList): Added support for helpr text (#5837)
Co-authored-by: Titani <tlabaj@redaht.com> | 1 | feat | DescriptionList |
791,474 | 27.05.2021 10:04:02 | 25,200 | 901cf67943ddfe0c2d07aca6cd1db2abb4414da2 | test(bigtable): alter keyring location for tests
bigtable requires specific locations for CMEK | [
{
"change_type": "MODIFY",
"diff": "@@ -34,7 +34,7 @@ export GCLOUD_TESTS_GOLANG_KEY=$GOOGLE_APPLICATION_CREDENTIALS\nexport GCLOUD_TESTS_GOLANG_FIRESTORE_PROJECT_ID=gcloud-golang-firestore-tests\nexport GCLOUD_TESTS_GOLANG_FIRESTORE_KEY=$KOKORO_KEYSTORE_DIR/72523_go_firestore_integration_service_account\ne... | Go | Apache License 2.0 | googleapis/google-cloud-go | test(bigtable): alter keyring location for tests (#4182)
bigtable requires specific locations for CMEK | 1 | test | bigtable |
503,988 | 27.05.2021 10:07:06 | 14,400 | dfb53aaa0abab6f26ca7b5ff92c9f2c1ef39588c | feat(Menu): add footer, add view more demo | [
{
"change_type": "ADD",
"diff": "+import * as React from 'react';\n+import styles from '@patternfly/react-styles/css/components/Menu/menu';\n+import { css } from '@patternfly/react-styles';\n+\n+export interface MenuFooterProps extends React.HTMLProps<HTMLDivElement> {\n+ /** Content rendered inside the foo... | TypeScript | MIT License | patternfly/patternfly-react | feat(Menu): add footer, add view more demo (#5791) | 1 | feat | Menu |
503,970 | 27.05.2021 10:10:40 | 14,400 | 043be450a8e101b6db3d93a13ddef88e937d297d | fix(SearchInput): stop capturing browser focus on mount | [
{
"change_type": "MODIFY",
"diff": "@@ -90,6 +90,7 @@ const SearchInputBase: React.FunctionComponent<SearchInputProps> = ({\n}: SearchInputProps) => {\nconst [showSearchMenu, setShowSearchMenu] = React.useState(false);\nconst [searchValue, setSearchValue] = React.useState(value);\n+ const isInitialMount = R... | TypeScript | MIT License | patternfly/patternfly-react | fix(SearchInput): stop capturing browser focus on mount (#5823) | 1 | fix | SearchInput |
306,309 | 27.05.2021 10:26:25 | -3,600 | e40eb392757a9e47c6844424a9265ddb07c42444 | fix(azure): fix Azure NAT Gateway price filters
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -58,7 +58,7 @@ func NATGatewayCostComponent(name, location string) *schema.CostComponent {\nService: strPtr(\"NAT Gateway\"),\nProductFamily: strPtr(\"Networking\"),\nAttributeFilters: []*schema.AttributeFilter{\n- {Key: \"productName\", Value: strPtr(\"NAT Gateway\")}... | Go | Apache License 2.0 | infracost/infracost | fix(azure): fix Azure NAT Gateway price filters
Fixes https://github.com/infracost/infracost/issues/673#issuecomment-848971446 | 1 | fix | azure |
386,581 | 27.05.2021 10:40:15 | -7,200 | 12cb7829460e05479fc7376f49b0defa0819afea | fix(servers): Append html when serving index from url root | [
{
"change_type": "MODIFY",
"diff": "@@ -21,27 +21,52 @@ import { readFile } from '@lowdefy/node-utils';\nimport findOpenPort from '../../utils/findOpenPort';\nasync function getExpress({ context, gqlServer, options }) {\n+ let indexHtml = null;\n+\n+ const serveIndex = async (req, res) => {\n+ if (!indexHtm... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(servers): Append html when serving index from url root | 1 | fix | servers |
277,273 | 27.05.2021 10:53:44 | 25,200 | ebeb8b3e47cc4e3f4f0d376abfd1d80bfed2b63a | docs: Add script examples/screenshots to tour | [
{
"change_type": "MODIFY",
"diff": "@@ -149,6 +149,8 @@ plot_vegalite_form.py\nplot_vegalite_flex.py\nplot_altair.py\nplot_bokeh.py\n+plot_bokeh_script.py\n+plot_bokeh_callbacks.py\nplot_matplotlib.py\nplot_plotly.py\nplot_d3.py\n@@ -158,6 +160,10 @@ upload_async.py\nupload_ui.py\nupload_download.py\nupload... | Python | Apache License 2.0 | h2oai/wave | docs: Add script examples/screenshots to tour | 1 | docs | null |
438,921 | 27.05.2021 11:07:22 | -32,400 | 037ee7aedf789ba7b4139d644ffd0530f8850c74 | chore(deps-dev): update dependency
Update dependencies to the latest
Fix possible securiby vulnerability | [
{
"change_type": "MODIFY",
"diff": "\"@types/chai\": \"^4.2.18\",\n\"@types/d3\": \"^6.7.0\",\n\"@types/mocha\": \"^8.2.1\",\n- \"@types/sinon\": \"^10.0.0\",\n+ \"@types/sinon\": \"^10.0.1\",\n\"@typescript-eslint/eslint-plugin\": \"^4.25.0\",\n\"@typescript-eslint/parser\": \"^4.25.0\",\n\"babel-eslint\":... | TypeScript | MIT License | naver/billboard.js | chore(deps-dev): update dependency (#2108)
- Update dependencies to the latest
- Fix possible securiby vulnerability | 1 | chore | deps-dev |
104,828 | 27.05.2021 11:10:16 | -7,200 | b915c74ac5a09e9f91ba51a33a1a7faa274082a8 | feat(mapcard): code clean up and js linting fixes | [
{
"change_type": "MODIFY",
"diff": "\"rules\": {\n\"import/no-extraneous-dependencies\": [\n\"error\",\n- { \"devDependencies\": true }\n+ { \"devDependencies\": [] }\n],\n\"no-underscore-dangle\": 0,\n\"no-shadow\": 0,\n",
"new_path": "packages/react/.eslintrc",
"old_path": "packages/react/.eslintr... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(mapcard): code clean up and js linting fixes | 1 | feat | mapcard |
104,828 | 27.05.2021 11:35:51 | -7,200 | 24678f112d96917aa497e0723bfe3122ae176d7c | fix(mapcard): revert unintentinoal change of eslintrc | [
{
"change_type": "MODIFY",
"diff": "\"rules\": {\n\"import/no-extraneous-dependencies\": [\n\"error\",\n- { \"devDependencies\": [] }\n+ { \"devDependencies\": true }\n],\n\"no-underscore-dangle\": 0,\n\"no-shadow\": 0,\n",
"new_path": "packages/react/.eslintrc",
"old_path": "packages/react/.eslintr... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(mapcard): revert unintentinoal change of eslintrc | 1 | fix | mapcard |
266,134 | 27.05.2021 11:36:03 | 14,400 | 22fe84743bd0d5b6b53826af430f6d3a444261a0 | feat: add owl-bot PRs as a valid PR to automerge
Fixes cc | [
{
"change_type": "MODIFY",
"diff": "@@ -58,6 +58,7 @@ exports[\n'yoshi-automation',\n'release-please[bot]',\n'yoshi-code-bot',\n+ 'gcf-owl-bot[bot]',\n],\n},\nmessage: 'must be equal to one of the allowed values',\n",
"new_path": "packages/auto-approve/__snapshots__/check-config.test.js",
"old_path"... | TypeScript | Apache License 2.0 | googleapis/repo-automation-bots | feat: add owl-bot PRs as a valid PR to automerge (#1893)
Fixes #1654 cc @bcoe | 1 | feat | null |
711,659 | 27.05.2021 11:43:46 | -10,800 | 5795a845ded91d7e47a331157163474207437b9f | feat(admin-ui): Add ability to filter promotions by name or coupon code | [
{
"change_type": "MODIFY",
"diff": "<vdr-action-bar>\n+ <vdr-ab-left>\n+ <form class=\"search-form\" [formGroup]=\"searchForm\">\n+ <input\n+ type=\"text\"\n+ formControlName=\"name\"\n+ [placeholder]=\"'marketing.search-by-name' | translate\"\n+ class=\"search-input\"\n+ />\n+ <input\n+ type=\"text\"\n+ fo... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(admin-ui): Add ability to filter promotions by name or coupon code | 1 | feat | admin-ui |
791,474 | 27.05.2021 11:43:57 | 25,200 | 8a28ff6cebf22a30fa1bb54541b321436221e2f9 | test: different integration tests have different restrictions on KMS key location | [
{
"change_type": "MODIFY",
"diff": "@@ -136,6 +136,9 @@ As part of the setup that follows, the following variables will be configured:\n- `GCLOUD_TESTS_GOLANG_KEYRING`: The full name of the keyring for the tests,\nin the form\n\"projects/P/locations/L/keyRings/R\". The creation of this is described below.\n... | Go | Apache License 2.0 | googleapis/google-cloud-go | test: different integration tests have different restrictions on KMS key location (#4184) | 1 | test | null |
104,828 | 27.05.2021 11:45:08 | -7,200 | d1b7033292feefcd477142df24d65953adb58b35 | feat(mapcard): fixed css linting | [
{
"change_type": "MODIFY",
"diff": "@import '~carbon-components/scss/components/accordion/accordion';\n[dir='rtl'] .#{$prefix}--accordion__title {\n- margin: 0 1rem 0 0;\n+ margin: 0 $spacing-05 0 0;\ntext-align: right;\n}\n[dir='rtl'] .#{$prefix}--accordion__arrow {\n- margin: 2px 0 0 1rem;\n+ margin: $spa... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(mapcard): fixed css linting | 1 | feat | mapcard |
269,464 | 27.05.2021 11:50:24 | 0 | 057e373a9d9824932ae0e867ee0d9013c5d03a72 | docs: fix og image | [
{
"change_type": "MODIFY",
"diff": "{% if page and page.title and not page.is_homepage %}\n{% set title = config.site_name ~ \" - \" ~ page.title | striptags %}\n{% endif %}\n-{% set image = config.site_url ~ 'static/card.png' %}\n+{% set image = config.site_url ~ '/static/card.png' %}\n<meta property=\"og:... | Go | MIT License | goreleaser/goreleaser | docs: fix og image
Signed-off-by: Carlos A Becker <caarlos0@gmail.com> | 1 | docs | null |
103,510 | 27.05.2021 11:54:44 | 10,800 | 70bb52b0ccc6a8211482ab6742794a6a99bbaf52 | fix(android): add importantForAccessibility in Modal component | [
{
"change_type": "MODIFY",
"diff": "@@ -215,6 +215,7 @@ class Modal extends React.Component<Props, State> {\naccessibilityRole=\"button\"\ndisabled={!dismissable}\nonPress={dismissable ? this.hideModal : undefined}\n+ importantForAccessibility=\"no\"\n>\n<Animated.View\nstyle={[\n",
"new_path": "src/com... | TypeScript | MIT License | callstack/react-native-paper | fix(android): add importantForAccessibility in Modal component (#2743) | 1 | fix | android |
104,828 | 27.05.2021 11:58:36 | -7,200 | e9a12a511f231587126ed337daabf163dc9e69ba | feat(mapcard): renamed MapBoxExample to MapboxExample etc | [
{
"change_type": "MODIFY",
"diff": "@@ -19,13 +19,13 @@ import ImageCard from '../ImageCard/ImageCard';\nimport TimeSeriesCard from '../TimeSeriesCard/TimeSeriesCard';\nimport GaugeCard from '../GaugeCard/GaugeCard';\nimport ListCard from '../ListCard/ListCard';\n-import MapBoxCard from '../MapCard/MapBoxEx... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(mapcard): renamed MapBoxExample to MapboxExample etc | 1 | feat | mapcard |
386,581 | 27.05.2021 12:05:31 | -7,200 | d707333f2779c24f15508c471a61ed990b5aeb9b | chore: Add lowdefy files to clean script in dev server and cli packages. | [
{
"change_type": "MODIFY",
"diff": "\"main\": \"dist/index.js\",\n\"scripts\": {\n\"build\": \"yarn webpack\",\n- \"clean\": \"rm -rf dist\",\n+ \"clean\": \"rm -rf dist && rm -rf .lowdefy\",\n\"cli\": \"yarn node ./dist/index.js\",\n\"cli:build\": \"yarn build && yarn node ./dist/index.js\",\n\"prepare\": ... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | chore: Add lowdefy files to clean script in dev server and cli packages. | 1 | chore | null |
126,290 | 27.05.2021 12:11:37 | -3,600 | b802172512b360f2707c6a5f67f284d7638e584d | fix: go mod tidy/vendor with statik module
* fix(webconsole): embed data in the same webconsole module
As the statik module was not in git, but referenced, it fails with go mod tidy/vendor.
This solution generates the data in the webconsole module.
* chore(webconsole): add .gitignore | [
{
"change_type": "ADD",
"diff": "+dist\n+statik.go\n",
"new_path": "webconsole/.gitignore",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "// +build webconsole\n-//go:generate go run github.com/rakyll/statik -f -src=./dist\n+//go:generate go run github.com/rakyll/statik -f -src=... | Go | Apache License 2.0 | codenotary/immudb | fix: go mod tidy/vendor with statik module (#796)
* fix(webconsole): embed data in the same webconsole module
As the statik module was not in git, but referenced, it fails with go mod tidy/vendor.
This solution generates the data in the webconsole module.
* chore(webconsole): add .gitignore | 1 | fix | null |
756,029 | 27.05.2021 12:13:04 | 25,200 | c301496b53d27aa5541c425561006bce750d9592 | fix(SwingSet): Use extension for vat-controller jig | [
{
"change_type": "MODIFY",
"diff": "@@ -38,7 +38,7 @@ async function simpleCall(t) {\nconst config = {\nvats: {\nvat1: {\n- sourceSpec: require.resolve('./vat-controller-1'),\n+ sourceSpec: require.resolve('./vat-controller-1.js'),\ncreationOptions: { enableSetup: true },\n},\n},\n",
"new_path": "packag... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(SwingSet): Use extension for vat-controller jig | 1 | fix | SwingSet |
217,922 | 27.05.2021 12:20:31 | -7,200 | b8881342ceeedd9a5afd8a52e1e7704144a99df0 | fix(desktop): fixed machina not starting if powershell times out for some reason | [
{
"change_type": "MODIFY",
"diff": "@@ -90,9 +90,14 @@ export class PacketCapture {\nthis.startMachina();\n} catch (err) {\nlog.error(`Error and/or possible timeout while detecting the Npcap windows service: ${err}`);\n+ if (err.includes('ETIMEDOUT')) {\n+ log.log(`Starting machina since it's just a timeout... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(desktop): fixed machina not starting if powershell times out for some reason
#1925 | 1 | fix | desktop |
104,828 | 27.05.2021 12:23:23 | -7,200 | b5a2f5b6d03bcba05ff828b9bfe8668d326b2449 | feat(mapcard): separate example css into own files | [
{
"change_type": "MODIFY",
"diff": "@@ -17,6 +17,7 @@ import PropTypes from 'prop-types';\nimport MapCard from './MapCard';\nimport Optionsfield from './Optionsfield';\n+import './storyFiles/mapbox-example.scss';\nmapboxgl.accessToken =\n'pk.eyJ1IjoiZGF2aWRpY3VzIiwiYSI6ImNrbTN4OWpsZTBjYm0ybnBsaWZkemV6MmgifQ... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(mapcard): separate example css into own files | 1 | feat | mapcard |
151,430 | 27.05.2021 12:27:09 | 25,200 | 87daf57fe240b0f5e14905ab63a465a68725052b | feat: enrich session info | [
{
"change_type": "MODIFY",
"diff": "{\n\"name\": \"@analytics/session-utils\",\n- \"version\": \"0.0.4\",\n+ \"version\": \"0.0.6\",\n\"description\": \"Tiny session utility library\",\n\"author\": \"David Wells\",\n\"license\": \"MIT\",\n",
"new_path": "packages/analytics-util-session/package.json",
... | JavaScript | MIT License | davidwells/analytics | feat: enrich session info
Signed-off-by: David Wells <> | 1 | feat | null |
104,828 | 27.05.2021 12:32:12 | -7,200 | fa66364969c9d8fbaba3e6759b3b68c51ec000db | feat(mapcard): moved example files to story folder | [
{
"change_type": "MODIFY",
"diff": "@@ -19,7 +19,7 @@ import ImageCard from '../ImageCard/ImageCard';\nimport TimeSeriesCard from '../TimeSeriesCard/TimeSeriesCard';\nimport GaugeCard from '../GaugeCard/GaugeCard';\nimport ListCard from '../ListCard/ListCard';\n-import MapboxCard from '../MapCard/MapboxExam... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(mapcard): moved example files to story folder | 1 | feat | mapcard |
342,869 | 27.05.2021 12:37:06 | -7,200 | cd7aa37a5ebe0614de1de0c5fee3ee9dec043c13 | feat(Illustration): add GroundTransport404 | [
{
"change_type": "MODIFY",
"diff": "@@ -59,6 +59,7 @@ Table below contains all types of the props available in Illustration component.\n| `\"Improve\"` |\n| `\"Insurance\"` |\n| `\"InviteAFriend\"` |\n+| `\"GroundTransport404\"` |\n| `\"Login\"` |\n| `\"Lounge\"` |\n| `\"Mailbox\"` |\n",
"new_path": "pa... | JavaScript | MIT License | kiwicom/orbit | feat(Illustration): add GroundTransport404 (#2966) | 1 | feat | Illustration |
688,413 | 27.05.2021 12:40:14 | -10,800 | a49b45e3b4bd0326e431bd95fa23936e4da308be | chore: fix review pr workflow | [
{
"change_type": "MODIFY",
"diff": "@@ -2,8 +2,9 @@ name: Request review on PRs\non:\npull_request:\n- types:\n- - opened\n+ types: [\n+ opened\n+ ]\njobs:\nrequest:\n@@ -12,8 +13,13 @@ jobs:\nsteps:\n- name: Create PR review request\n- env:\n- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n- run: |\n- gh pr ed... | TypeScript | MIT License | toptal/picasso | chore: fix review pr workflow (#2090) | 1 | chore | null |
306,309 | 27.05.2021 12:41:13 | -3,600 | 90e2fa34cf91811b78b169fdc663ad20b8f48070 | chore: add logs to explain warning logs | [
{
"change_type": "MODIFY",
"diff": "@@ -74,7 +74,9 @@ func NewAzureMSSQLDatabase(d *schema.ResourceData, u *schema.UsageData) *schema.\n},\n})\n} else {\n- costComponents = append(costComponents, databaseComputeInstance(region, fmt.Sprintf(\"Compute (provisioned, %s)\", sku), serviceName, productNameRegex, ... | Go | Apache License 2.0 | infracost/infracost | chore: add logs to explain warning logs | 1 | chore | null |
104,831 | 27.05.2021 12:44:02 | 18,000 | f0a435d193db2c05fc396907c74d7b7197714ac5 | chore(dashboard-editor): removed misleading comment | [
{
"change_type": "MODIFY",
"diff": "@@ -469,7 +469,7 @@ const DashboardEditor = ({\n? customGetDefaultCard(type)\n: getDefaultCard(type, mergedI18n);\n- // notify consumers that the card has been added if they're listening (they might want to tweak the card defaults here)\n+ // notify consumers that the car... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | chore(dashboard-editor): removed misleading comment | 1 | chore | dashboard-editor |
266,219 | 27.05.2021 12:48:02 | 21,600 | 7c50355dbd51333f43f53211d586a173b02d26df | chore(python): add protobuf to intersphinx mapping | [
{
"change_type": "MODIFY",
"diff": "@@ -366,6 +366,7 @@ intersphinx_mapping = {\n),\n\"grpc\": (\"https://grpc.github.io/grpc/python/\", None),\n\"proto-plus\": (\"https://proto-plus-python.readthedocs.io/en/latest/\", None),\n+ \"protobuf\": (\"https://googleapis.dev/python/protobuf/latest/\", None),\n{% i... | Python | Apache License 2.0 | googleapis/synthtool | chore(python): add protobuf to intersphinx mapping (#1101) | 1 | chore | python |
306,309 | 27.05.2021 12:48:16 | -3,600 | 83968654a4d013a1b0951e31d06b802fcda80c8e | docs: improve testing notes | [
{
"change_type": "MODIFY",
"diff": "@@ -70,10 +70,7 @@ make test\n```\n#### Integration tests\n-\n-The entire test suite can take >20 mins to run, so we recommend against running them all locally. These will run on GitHub actions.\n-\n-You should run tests for a file you added/changed with `-v` and warn log... | Go | Apache License 2.0 | infracost/infracost | docs: improve testing notes (#726) | 1 | docs | null |
791,704 | 27.05.2021 12:52:30 | 25,200 | 2c6afcde15123ae1b5c12016815b311d0b60757c | clients(psi): render treemap button | [
{
"change_type": "MODIFY",
"diff": "*/\n'use strict';\n-/* globals self DOM PerformanceCategoryRenderer Util I18n DetailsRenderer ElementScreenshotRenderer */\n-\n+/* globals self DOM PerformanceCategoryRenderer Util I18n DetailsRenderer ElementScreenshotRenderer ReportUIFeatures */\n/**\n* Returns all the ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | clients(psi): render treemap button (#12570) | 1 | clients | psi |
777,369 | 27.05.2021 13:10:33 | 21,600 | 80f4375bc0c5a381af61960d089a3c147eefd602 | chore: disable dashboard recent tasks tests temporarily | [
{
"change_type": "ADD",
"diff": "+# Dashboard\n+Tags: parallelizable\n+\n+Specification to test the dashboard page.\n+\n+## Sign in\n+\n+* Sign in as \"user-w-pw\" with \"special-pw\"\n+* Navigate to dashboard page\n+\n+// ## Check recent tasks\n+\n+// * Should have \"7\" recent task cards\n+\n+## Sign out\... | Python | Apache License 2.0 | determined-ai/determined | chore: disable dashboard recent tasks tests temporarily (#2461) | 1 | chore | null |
777,369 | 27.05.2021 13:21:53 | 21,600 | 2c3bfa38b490e05f6a551c264c1b4412d5316dad | fix: use user preferences when no search params are present | [
{
"change_type": "MODIFY",
"diff": "@@ -76,13 +76,10 @@ const ExperimentList: React.FC = () => {\nconst { auth, users } = useStore();\nconst storage = useStorage(STORAGE_PATH);\nconst initLimit = storage.getWithDefault(STORAGE_LIMIT_KEY, MINIMUM_PAGE_SIZE);\n- const initFilters = storage.getWithDefault(\n- ... | Python | Apache License 2.0 | determined-ai/determined | fix: use user preferences when no search params are present (#2460) | 1 | fix | null |
791,704 | 27.05.2021 13:45:16 | 25,200 | b31823e83301cb3cf197332fee0a70e41e110765 | deps(axe-core): upgrade to 4.2.1 | [
{
"change_type": "MODIFY",
"diff": "<section>\n<div id=\"duplicate-id-aria\" class=\"duplicate-id-aria\"></span>\n<div id=\"duplicate-id-aria\"></div>\n- <div aria-labelledby=\"duplicate-id-aria\"></div>\n+ <input type=\"text\" aria-labelledby=\"duplicate-id-aria\"/>\n</section>\n<p>form-field-multiple-labe... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | deps(axe-core): upgrade to 4.2.1 (#12575) | 1 | deps | axe-core |
471,204 | 27.05.2021 13:50:32 | 14,400 | 7fa4ff70d1aad5875cb14c6bff99c838228447bb | chore: remove references to NOOP singletons | [
{
"change_type": "MODIFY",
"diff": "* limitations under the License.\n*/\nimport {\n- SpanStatusCode,\ncontext,\n+ diag,\n+ INVALID_SPAN_CONTEXT,\npropagation,\n+ ROOT_CONTEXT,\nSpan,\nSpanKind,\nSpanOptions,\nSpanStatus,\n- ROOT_CONTEXT,\n- NOOP_TRACER,\n- diag, trace,\n+ SpanStatusCode,\n+ trace,\n} from ... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js | chore: remove references to NOOP singletons (#2229) | 1 | chore | null |
304,863 | 27.05.2021 14:05:40 | 14,400 | 8c1d732cb1276c975b7fd2269cb863963c5e7e91 | test(stdlib): test range to nsec precision | [
{
"change_type": "MODIFY",
"diff": "Binary files a/libflux/go/libflux/buildinfo.gen.go and b/libflux/go/libflux/buildinfo.gen.go differ\n",
"new_path": "libflux/go/libflux/buildinfo.gen.go",
"old_path": "libflux/go/libflux/buildinfo.gen.go"
},
{
"change_type": "ADD",
"diff": "+package un... | Go | MIT License | influxdata/flux | test(stdlib): test range to nsec precision (#3752) | 1 | test | stdlib |
791,704 | 27.05.2021 14:07:51 | 25,200 | 0689e4e505636b459686def26cdb75bcc3e659ac | report: gzip treemap data | [
{
"change_type": "MODIFY",
"diff": "@@ -61,10 +61,12 @@ async function run() {\nfs.readFileSync(require.resolve('tabulator-tables/dist/js/modules/sort.js'), 'utf8'),\nfs.readFileSync(require.resolve('tabulator-tables/dist/js/modules/format.js'), 'utf8'),\nfs.readFileSync(require.resolve('tabulator-tables/di... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report: gzip treemap data (#12519) | 1 | report | null |
342,890 | 27.05.2021 14:16:29 | -7,200 | 990ee32f33bcd4e1459a0133ab1c2d9248017d88 | docs: use InputField examples for form errors | [
{
"change_type": "DELETE",
"diff": "-import * as React from \"react\";\n-import InputField from \"@kiwicom/orbit-components/lib/InputField\";\n-\n-export default {\n- Example: () => {\n- const [value, setValue] = React.useState(\"\");\n- return (\n- <InputField\n- error=\"Please enter your email\"\n- help=\... | JavaScript | MIT License | kiwicom/orbit | docs: use InputField examples for form errors | 1 | docs | null |
276,989 | 27.05.2021 14:21:55 | 10,800 | c1d8cbad604cc24efcdac61a3388e3fe61de68d7 | ci(actions): update labeler to run on forks | [
{
"change_type": "MODIFY",
"diff": "-\"@gympass/yoga\":\n+'@gympass/yoga':\n- packages/yoga/**/*\n-\"@gympass/yoga-doc\":\n+'@gympass/yoga-doc':\n- packages/doc/**/*\n-\"@gympass/yoga-icons\":\n+'@gympass/yoga-icons':\n- packages/icons/**/*\n-\"@gympass/yoga-tokens\":\n+'@gympass/yoga-tokens':\n- packages/t... | JavaScript | MIT License | gympass/yoga | ci(actions): update labeler to run on forks | 1 | ci | actions |
127,979 | 27.05.2021 14:25:14 | -10,800 | 8510427d791b74ae5d91f87a814dcd6f2d7b65f8 | fix: empire colors | [
{
"change_type": "MODIFY",
"diff": "@@ -6,12 +6,12 @@ const color = {\npiccolo: {\n120: '#e6b400',\n100: '#ffc800',\n- 80: '#f4c725',\n+ 80: '#f9ca1f',\n},\nhit: {\n- 120: '#e6e6e6',\n- 100: '#ffffff',\n- 80: '#ffffff',\n+ 120: '#151414',\n+ 100: '#1c1c1c',\n+ 80: '#242424',\n},\nbeerus: {\n100: '#141414',\... | TypeScript | MIT License | coingaming/moon-design | fix: empire colors (#1218) | 1 | fix | null |
277,273 | 27.05.2021 14:30:16 | 25,200 | e62e46b38b55705bc29dced37c69cf07cc845f76 | docs: Add docs for custom Javascript | [
{
"change_type": "ADD",
"diff": "+---\n+title: Javascript\n+---\n+\n+Wave ships with a growing library of cards and components for assembling user interfaces. For most apps, the built-in components can be adequate. They're designed to work well with each other, with consistent typography, layout and theming... | Python | Apache License 2.0 | h2oai/wave | docs: Add docs for custom Javascript | 1 | docs | null |
277,273 | 27.05.2021 14:30:26 | 25,200 | f7a99220a2971a357d3fc02a703ddeae9c1412a2 | docs: Add 0.16 release blog post | [
{
"change_type": "ADD",
"diff": "+---\n+slug: release-0.16\n+title: \"New in Wave 0.16: Custom Javascript\"\n+author: Prithvi Prabhu\n+author_title: Chief of Technology @ H2O.ai\n+author_url: https://github.com/lo5\n+author_image_url: https://avatars3.githubusercontent.com/u/6334572\n+tags: [release]\n+---\... | Python | Apache License 2.0 | h2oai/wave | docs: Add 0.16 release blog post | 1 | docs | null |
342,890 | 27.05.2021 14:55:09 | -7,200 | 8ef96dbc17bc31c7f12ead7f5af7544c786a4c22 | docs: use Figma files for form error examples | [
{
"change_type": "MODIFY",
"diff": "@@ -8,6 +8,7 @@ export default {\n<InputField\nerror={!value && \"Please enter your email\"}\nhelp=\"Enter your email in the format name@example.com\"\n+ placeholder=\"your@email.com\"\nlabel=\"Email\"\ntype=\"email\"\ninputMode=\"email\"\n",
"new_path": "docs/src/__e... | JavaScript | MIT License | kiwicom/orbit | docs: use Figma files for form error examples | 1 | docs | null |
342,869 | 27.05.2021 15:11:30 | -7,200 | 3cf432ae4bccd866c42cb0b37c48c10dcb97870f | feat(CarrierLogo): add kiwicom type fallback | [
{
"change_type": "MODIFY",
"diff": "@@ -41,6 +41,7 @@ Table below contains all types of the props available for object in Carrier arra\n| `\"large\"` | `\"train\"` |\n| | `\"ferry\"` |\n| | `\"private_transfer\"` |\n+| | `\"kiwicom\"` |\n## Functional specs\n",
"new_path": "packages/orbit-components/src... | JavaScript | MIT License | kiwicom/orbit | feat(CarrierLogo): add kiwicom type fallback (#2959) | 1 | feat | CarrierLogo |
711,597 | 27.05.2021 15:36:57 | -7,200 | 73841e40d523c33c3973d68f49aa5b4400af662d | fix(create): Remove redundant synchronize warning | [
{
"change_type": "MODIFY",
"diff": "@@ -51,11 +51,7 @@ const path = require('path');\n},\ndbConnectionOptions: {\ntype: '{{ dbType }}',\n- {{#if requiresConnection}}\nsynchronize: true, // turn this off for production\n- {{else}}\n- synchronize: false, // not working with SQLite/SQL.js, see https://github.c... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(create): Remove redundant synchronize warning | 1 | fix | create |
777,396 | 27.05.2021 15:59:21 | 21,600 | 8c1d0a99149f04f962a011a72f12e985a7dcec88 | fix: cleanup iter(DataLoader) before exiting
User code that created a torch.utils.data.DataLoader(num_workers > 2)
could hang if it hit an exception at the wrong time.
This was evident if you ran the darts_cifar10_pytorch benchmark from the
examples directory. | [
{
"change_type": "ADD",
"diff": "+:orphan:\n+\n+**Bug Fixes**\n+\n+- PyTorchTrial: Properly close the iterator for a DataLoader that uses\n+ multiprocessing before exiting. Previously, such dataloaders could\n+ cause hangs if exceptions were hit at certain times.\n",
"new_path": "docs/release-notes/2459... | Python | Apache License 2.0 | determined-ai/determined | fix: cleanup iter(DataLoader) before exiting [DET-5558] [DET-5554] (#2459)
User code that created a torch.utils.data.DataLoader(num_workers > 2)
could hang if it hit an exception at the wrong time.
This was evident if you ran the darts_cifar10_pytorch benchmark from the
examples directory. | 1 | fix | null |
438,921 | 27.05.2021 16:14:36 | -32,400 | 689bfdf217923f241e9f5a53dbf03603c0d05562 | fix(zoom): Fix incorrect tooltip position
Update eventReceiver.coords during 'wheel' zoom
Fix tooltip position, to use correct zoom scale
Fix | [
{
"change_type": "MODIFY",
"diff": "@@ -191,9 +191,10 @@ export default {\n}\n// if click, do nothing. otherwise, click interaction will be canceled.\n- if (!startEvent ||\n+ if (config.zoom_type === \"drag\" && (\n+ !startEvent ||\n(e && startEvent.clientX === e.clientX && startEvent.clientY === e.clientY)... | TypeScript | MIT License | naver/billboard.js | fix(zoom): Fix incorrect tooltip position
- Update eventReceiver.coords during 'wheel' zoom
- Fix tooltip position, to use correct zoom scale
Fix #2095 | 1 | fix | zoom |
104,853 | 27.05.2021 16:16:12 | 14,400 | 022ca1f7d74b92ad85dfc1210fd8007661e2c92c | chore(styles): sync | [
{
"change_type": "MODIFY",
"diff": "// 3rem for the navbar, 100px for the PageTitleBar header\nmin-height: calc(100vh - 7rem - 100px);\nbackground-color: $ui-background;\n+ padding-top: 1rem;\n}\n}\n",
"new_path": "packages/styles/src/components/DashboardEditor/_dashboard-editor.scss",
"old_path": "... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | chore(styles): sync | 1 | chore | styles |
126,276 | 27.05.2021 16:28:48 | 10,800 | eb9b52f0e478f271ef47fbf5f51d19c4f6320602 | chore(pkg/server): remove duplicated property | [
{
"change_type": "MODIFY",
"diff": "@@ -353,7 +353,6 @@ func (s *ImmuServer) loadSystemDatabase(dataDir string, remoteStorage remotestor\nop := database.DefaultOption().\nWithDbName(s.Options.GetSystemAdminDbName()).\nWithDbRootPath(dataDir).\n- WithDbRootPath(s.Options.Dir).\nWithStoreOptions(storeOpts)\n_... | Go | Apache License 2.0 | codenotary/immudb | chore(pkg/server): remove duplicated property
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | pkg/server |
688,475 | 27.05.2021 16:40:26 | -10,800 | debb9e8ba46c8f4eb82c8003b4459977fd728299 | feat: create workflow for gha stats | [
{
"change_type": "ADD",
"diff": "+name: 'Report GHA stats to Anvil'\n+on:\n+ workflow_dispatch:\n+ workflow_run:\n+ workflows: [\"Visual Testing\", \"Request review on PRs\", \"Consulting the Oracle\", \"Automatic Rebase\"]\n+ types:\n+ - completed\n+jobs:\n+ build:\n+ runs-on: ubuntu-latest\n+ steps:\n+ - ... | TypeScript | MIT License | toptal/picasso | feat: create workflow for gha stats (#2088)
Co-authored-by: Ivan Shamatov <ivan.shamatov@toptal.com> | 1 | feat | null |
103,580 | 27.05.2021 16:52:34 | -7,200 | 213d9745628c9a3963dbcc4f42a07bcd293e1761 | fix: interpolate shadowOpacity to correct its value for the elevation equal zero | [
{
"change_type": "MODIFY",
"diff": "@@ -17,7 +17,11 @@ export default function shadow(elevation: number | Animated.Value = 0) {\noutputRange: [0, 0.5, 0.75, 2, 7, 23],\n}),\n},\n- shadowOpacity: new Animated.Value(SHADOW_OPACITY),\n+ shadowOpacity: elevation.interpolate({\n+ inputRange: [0, 1],\n+ outputRan... | TypeScript | MIT License | callstack/react-native-paper | fix: interpolate shadowOpacity to correct its value for the elevation equal zero (#2736) | 1 | fix | null |
103,580 | 27.05.2021 16:52:56 | -7,200 | ddd6a7ca16259f39c0892e9fc70fc6068368d96f | feat: introduce prop for defining control position (leading/trailing) fo RadioButton.Item | [
{
"change_type": "MODIFY",
"diff": "@@ -6,6 +6,10 @@ const RadioButtonItemExample = () => {\nconst [checkedDefault, setCheckedDefault] = React.useState<boolean>(true);\nconst [checkedAndroid, setCheckedAndroid] = React.useState<boolean>(true);\nconst [checkedIOS, setCheckedIOS] = React.useState<boolean>(tru... | TypeScript | MIT License | callstack/react-native-paper | feat: introduce prop for defining control position (leading/trailing) fo RadioButton.Item (#2713) | 1 | feat | null |
103,580 | 27.05.2021 17:07:33 | -7,200 | 30068b29c26f1a5016bbe9a5eb11c002f609c3e3 | fix: add bg color to list accordion to limit ripple area | [
{
"change_type": "MODIFY",
"diff": "@@ -181,6 +181,7 @@ const ListAccordion = ({\n: handlePressAction;\nreturn (\n<View>\n+ <View style={{ backgroundColor: theme.colors.background }}>\n<TouchableRipple\nstyle={[styles.container, style]}\nonPress={handlePress}\n@@ -190,6 +191,7 @@ const ListAccordion = ({\na... | TypeScript | MIT License | callstack/react-native-paper | fix: add bg color to list accordion to limit ripple area (#2685) | 1 | fix | null |
531,793 | 27.05.2021 17:11:33 | -3,600 | 7947c8287bb3382e60139977ceb1e75505cb9ea1 | fix(ui): tweak colors | [
{
"change_type": "MODIFY",
"diff": "}\n.silence-matcher-equal {\n- background-color: #006a4e;\n+ background-color: #28c45c;\n}\n.silence-matcher-negative {\n- background-color: #c60c30;\n+ background-color: #e4372e;\n}\n}\n",
"new_path": "ui/src/Styles/Components/_ManagedSilence.scss",
"old_path": "... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): tweak colors | 1 | fix | ui |
386,581 | 27.05.2021 17:25:14 | -7,200 | af6e70da762fe1212ea9a0ec6372f02d09c9a185 | fix(cli): Fix dev server reload. | [
{
"change_type": "MODIFY",
"diff": "<link rel=\"icon\" type=\"image/svg+xml\" href=\"/public/icon.svg\">\n<link rel=\"icon\" type=\"image/png\" href=\"/public/icon-32.png\">\n<link rel=\"apple-touch-icon\" href=\"/public/apple-touch-icon.png\">\n+ <script src=\"/api/dev/reload.js\"></script>\n<script type=\... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(cli): Fix dev server reload. | 1 | fix | cli |
386,581 | 27.05.2021 17:26:22 | -7,200 | 89b85332033c59b64904d693776d62fc82dd8817 | fix(cli): Fix CLI for previous lowdefy versions
closes | [
{
"change_type": "MODIFY",
"diff": "import path from 'path';\nimport express from 'express';\nimport reload from 'reload';\n+import { get } from '@lowdefy/helpers';\nimport { readFile } from '@lowdefy/node-utils';\nimport findOpenPort from '../../utils/findOpenPort';\nasync function getExpress({ context, gq... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(cli): Fix CLI for previous lowdefy versions
closes #598 | 1 | fix | cli |
103,580 | 27.05.2021 17:33:04 | -7,200 | c30c925b5438d58ec91c8e3f41be151336df91b9 | fix: correct text position in CheckboxItem, update snapshots | [
{
"change_type": "MODIFY",
"diff": "@@ -114,7 +114,16 @@ const CheckboxItem = ({\n<TouchableRipple onPress={onPress} testID={testID}>\n<View style={[styles.container, style]} pointerEvents=\"none\">\n{isLeading && checkbox}\n- <Text style={[styles.label, { color: theme.colors.text }, labelStyle]}>\n+ <Text\... | TypeScript | MIT License | callstack/react-native-paper | fix: correct text position in CheckboxItem, update snapshots (#2749) | 1 | fix | null |
104,828 | 27.05.2021 17:40:42 | -7,200 | e0369f0117b6a2044576b3bd1637154087d5a433 | feat(mapcard): moew code cleanup and fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -20,7 +20,7 @@ import TimeSeriesCard from '../TimeSeriesCard/TimeSeriesCard';\nimport GaugeCard from '../GaugeCard/GaugeCard';\nimport ListCard from '../ListCard/ListCard';\nimport MapboxCard from '../MapCard/storyFiles/MapboxExample';\n-import data from '../MapCard/da... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(mapcard): moew code cleanup and fixes | 1 | feat | mapcard |
269,464 | 27.05.2021 17:54:34 | 0 | b030cfdced71eaaa476e7575f606076ec7d9880e | docs: dark mode better colors | [
{
"change_type": "MODIFY",
"diff": "@@ -24,6 +24,8 @@ theme:\nname: Switch to light mode\n- media: \"(prefers-color-scheme: dark)\" # Dark mode\nscheme: slate\n+ primary: light blue\n+ accent: indigo\ntoggle:\nicon: material/lightbulb\nname: Switch to dark mode\n",
"new_path": "www/mkdocs.yml",
"old... | Go | MIT License | goreleaser/goreleaser | docs: dark mode better colors
Signed-off-by: Carlos A Becker <caarlos0@gmail.com> | 1 | docs | null |
126,276 | 27.05.2021 19:04:01 | 10,800 | d511c3075a5196a9434ad1f822c94ac2a3bc26c3 | feat(embedded/sql): catalog dumping | [
{
"change_type": "MODIFY",
"diff": "@@ -57,16 +57,14 @@ func (c *Catalog) ExistDatabase(db string) bool {\nreturn exists\n}\n-func (c *Catalog) newDatabase(name string) (*Database, error) {\n+func (c *Catalog) newDatabase(id uint64, name string) (*Database, error) {\nexists := c.ExistDatabase(name)\nif exis... | Go | Apache License 2.0 | codenotary/immudb | feat(embedded/sql): catalog dumping
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | feat | embedded/sql |
126,276 | 27.05.2021 19:08:13 | 10,800 | 56a30a3c955b369c2d14b056ab397a56e9bb00ab | chore(pkg/database): sql catalog per database. migration from shared catalog store when required | [
{
"change_type": "MODIFY",
"diff": "@@ -83,6 +83,7 @@ type DB interface {\n//IDB database instance\ntype db struct {\nst *store.ImmuStore\n+ ctlogSt *store.ImmuStore\nsqlEngine *sql.Engine\n@@ -96,7 +97,7 @@ type db struct {\n}\n// OpenDb Opens an existing Database from disk\n-func OpenDb(op *DbOptions, cat... | Go | Apache License 2.0 | codenotary/immudb | chore(pkg/database): sql catalog per database. migration from shared catalog store when required
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | pkg/database |
306,638 | 27.05.2021 19:35:21 | -19,080 | d0c0206bfad246da766092789f7997738a32fc30 | chore(package.json): downgrades js-beautify to v1.10.3 for supporting node 8.x | [
{
"change_type": "MODIFY",
"diff": "\"dependencies\": {\n\"classnames\": \"^2.3.1\",\n\"core-js\": \"^3.9.1\",\n- \"js-beautify\": \"1.13.3\",\n+ \"js-beautify\": \"1.10.3\",\n\"react-dom\": \"^16.8.6\",\n\"react-dynamic-virtual-scroll\": \"^1.3.0\",\n\"react-popper\": \"^1.3.7\",\n",
"new_path": "packa... | TypeScript | MIT License | innovaccer/design-system | chore(package.json): downgrades js-beautify to v1.10.3 for supporting node 8.x | 1 | chore | package.json |
438,921 | 27.05.2021 19:43:29 | -32,400 | b4c5dc288dab0638d399865120572c854758b782 | fix(data): Fix duplicated data.onclick call
Remove data.onclick call from zoom drag 'end' event
Fix | [
{
"change_type": "MODIFY",
"diff": "@@ -7,6 +7,7 @@ export interface IDataRow {\nvalue: number;\nid: string;\nindex: number;\n+ name?: string;\n}\nexport interface IData {\n",
"new_path": "src/ChartInternal/data/IData.ts",
"old_path": "src/ChartInternal/data/IData.ts"
},
{
"change_type": "MO... | TypeScript | MIT License | naver/billboard.js | fix(data): Fix duplicated data.onclick call
Remove data.onclick call from zoom drag 'end' event
Fix #2104 | 1 | fix | data |
104,828 | 27.05.2021 19:51:36 | -7,200 | a01a5a2c16bcd70e00cf7417421e072b51732926 | feat(mapcard): moved optionsfield file | [
{
"change_type": "MODIFY",
"diff": "@@ -16,7 +16,7 @@ import mapboxgl from 'mapbox-gl';\nimport PropTypes from 'prop-types';\nimport MapCard from '../MapCard';\n-import Optionsfield from '../Optionsfield';\n+import Optionsfield from './Optionsfield';\nimport './mapbox-example.scss';\nmapboxgl.accessToken =\... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(mapcard): moved optionsfield file | 1 | feat | mapcard |
126,276 | 27.05.2021 19:55:00 | 10,800 | f9cef41af7d3ef229f628e178f3551d3e62f9c1b | feat(pkg/server): initial handling of database replication settings | [
{
"change_type": "MODIFY",
"diff": "@@ -20,20 +20,23 @@ import \"github.com/codenotary/immudb/embedded/store\"\n//DbOptions database instance options\ntype DbOptions struct {\n- // dbDir string\ndbName string\ndbRootPath string\n- corruptionChecker bool\nstoreOpts *store.Options\n+\n+ corruptionChecker bool... | Go | Apache License 2.0 | codenotary/immudb | feat(pkg/server): initial handling of database replication settings
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | feat | pkg/server |
126,276 | 27.05.2021 19:55:37 | 10,800 | 2eb71739405462d81ad4db0d3fcad64c19263f28 | chore(pkg/server): systemdb renaming | [
{
"change_type": "MODIFY",
"diff": "@@ -67,8 +67,8 @@ func (s *ImmuServer) metricFuncComputeDBSizes() (dbSizes map[string]float64) {\n}\n// add systemdb\n- if s.sysDb != nil {\n- sysDBName := s.sysDb.GetOptions().GetDbName()\n+ if s.sysDB != nil {\n+ sysDBName := s.sysDB.GetOptions().GetDbName()\nsysDBSize,... | Go | Apache License 2.0 | codenotary/immudb | chore(pkg/server): systemdb renaming
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | pkg/server |
103,552 | 27.05.2021 20:11:19 | -19,080 | ad88f7f8d8efd826a36fdd0cc34722b84ac1cf24 | feat: introduce prop for defining control position (leading/trailing) for checkbox item | [
{
"change_type": "MODIFY",
"diff": "@@ -6,6 +6,9 @@ const CheckboxExample = () => {\nconst [checkedDefault, setCheckedDefault] = React.useState<boolean>(true);\nconst [checkedAndroid, setCheckedAndroid] = React.useState<boolean>(true);\nconst [checkedIOS, setCheckedIOS] = React.useState<boolean>(true);\n+ c... | TypeScript | MIT License | callstack/react-native-paper | feat: introduce prop for defining control position (leading/trailing) for checkbox item (#2738)
Co-authored-by: Bruno Castro <bruno.castro@codeminer42.com> | 1 | feat | null |
780,866 | 27.05.2021 20:43:11 | 10,800 | 9e04410b5444a9840d24c82fb2475731adcd4c94 | fix(cart-quickview): minicart subtotal el should not be <strong> (contains APrice) | [
{
"change_type": "MODIFY",
"diff": ">\n<div class=\"minicart__summary\">\n<span>{{ i19subtotal }}</span>\n- <strong class=\"minicart__subtotal\">\n+ <div class=\"minicart__subtotal\">\n<a-prices\n:product=\"{ price: cart.subtotal }\"\n:is-literal=\"true\"\n/>\n- </strong>\n+ </div>\n</div>\n<a-link\n",
... | JavaScript | MIT License | ecomplus/storefront | fix(cart-quickview): minicart subtotal el should not be <strong> (contains APrice) | 1 | fix | cart-quickview |
780,866 | 27.05.2021 20:46:04 | 10,800 | fda4d5172d98b6c0436e98620b8bcd1ad43f70c7 | feat(prices): handle loyalty poiints programs (if any) when showing literal price | [
{
"change_type": "MODIFY",
"diff": "</strong>\n<transition-group enter-active-class=\"animated slideInDown\">\n+ <div\n+ key=\"points\"\n+ v-if=\"earnPointsFactor > 0 && pointsMinPrice <= price\"\n+ class=\"prices__points\"\n+ >\n+ <i class=\"fas fa-check-circle\"></i>\n+ {{ i19youEarn }}\n+ <span>\n+ +{{ (... | JavaScript | MIT License | ecomplus/storefront | feat(prices): handle loyalty poiints programs (if any) when showing literal price | 1 | feat | prices |
332,724 | 27.05.2021 21:35:41 | -3,600 | 8c1d996e773a23bb8db0e27e95ae6d26a30b9637 | feat(ng-add): add commitizen | [
{
"change_type": "MODIFY",
"diff": "import { Rule, SchematicContext, Tree } from '@angular-devkit/schematics';\n+import { NodePackageInstallTask } from '@angular-devkit/schematics/tasks';\nimport { SchemaOptions } from '../schema';\n+import { getMergedPackageJsonConfig, getPackageJson, overwritePackageJson,... | TypeScript | MIT License | jscutlery/semver | feat(ng-add): add commitizen | 1 | feat | ng-add |
126,276 | 27.05.2021 22:01:46 | 10,800 | 456062335f5683bfccbdd25521604917b7efb19a | chore(embedded/store): sync values once all entries are written | [
{
"change_type": "MODIFY",
"diff": "@@ -202,20 +202,6 @@ func Open(path string, opts *Options) (*ImmuStore, error) {\nWithFileMode(opts.FileMode).\nWithMetadata(metadata.Bytes())\n- vLogs := make([]appendable.Appendable, opts.MaxIOConcurrency)\n- for i := 0; i < opts.MaxIOConcurrency; i++ {\n- appendableOpt... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/store): sync values once all entries are written
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/store |
332,724 | 27.05.2021 22:03:08 | -3,600 | 741f76c02eb8152217cfd1a89d4cd6d2f6453b31 | feat(ng-add): add commitlint | [
{
"change_type": "MODIFY",
"diff": "@@ -2,12 +2,29 @@ import { Rule, SchematicContext, Tree } from '@angular-devkit/schematics';\nimport { NodePackageInstallTask } from '@angular-devkit/schematics/tasks';\nimport { SchemaOptions } from '../schema';\n-import { getMergedPackageJsonConfig, getPackageJson, over... | TypeScript | MIT License | jscutlery/semver | feat(ng-add): add commitlint | 1 | feat | ng-add |
332,724 | 27.05.2021 22:06:07 | -3,600 | 496ec3e89a525aaafbae7c90b50ab70e0f4fff11 | feat(ng-add): remove uneeded code | [
{
"change_type": "MODIFY",
"diff": "@@ -48,12 +48,6 @@ export function getJsonFile<T>(tree: Tree, path: string): T {\n}\n}\n-export function getFileContents(tree: Tree, filePath: string): string {\n- const buffer = tree.read(filePath) || '';\n-\n- return buffer.toString();\n-}\n-\nexport function overwriteP... | TypeScript | MIT License | jscutlery/semver | feat(ng-add): remove uneeded code | 1 | feat | ng-add |
503,918 | 27.05.2021 22:17:23 | -10,800 | bd3fe3e7609fed6d18f26db22984a5e857c631ca | feat(grid+flex): add ability to specify order | [
{
"change_type": "MODIFY",
"diff": "@@ -232,6 +232,30 @@ export function pluralize(i: number, singular: string, plural?: string) {\nreturn `${i || 0} ${i === 1 ? singular : plural}`;\n}\n+/**\n+ * This function is a helper for turning arrays of breakpointMod objects for flex and grid into style object\n+ *\... | TypeScript | MIT License | patternfly/patternfly-react | feat(grid+flex): add ability to specify order (#5274)
Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com> | 1 | feat | grid+flex |
756,013 | 27.05.2021 23:03:15 | 21,600 | 759d6abe4ec5f798dca15a88d3523c63808a8b30 | feat: send AG_COSMOS_INIT supplyCoins instead of vpurse genesis | [
{
"change_type": "MODIFY",
"diff": "@@ -90,7 +90,7 @@ proto-check-breaking: proto-tools\nbuf check breaking --against-input '.git#branch=master'\nTMVER = v0.34.3\n-COSMOSVER = v0.41.0\n+COSMOSVER = v0.42.4\nTM_URL = https://raw.githubusercontent.com/tendermint/tendermint/$(TMVER)/proto/tendermint\nGOGO_PROT... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | feat: send AG_COSMOS_INIT supplyCoins instead of vpurse genesis | 1 | feat | null |
756,013 | 27.05.2021 23:04:38 | 21,600 | b3f775704a2a9373623d3c6f24726e14ec8d0056 | fix: be more explicit when gc() is not enabled, but not repetitive | [
{
"change_type": "MODIFY",
"diff": "* dummy pre-resolved Promise.\n*/\n+let alreadyWarned = false;\nexport async function gcAndFinalize() {\nif (typeof gc !== 'function') {\n- console.log(`unable to gc(), skipping`);\n+ if (!alreadyWarned) {\n+ alreadyWarned = true;\n+ console.warn(\n+ Error(`no gc() functi... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix: be more explicit when gc() is not enabled, but not repetitive | 1 | fix | null |
332,724 | 27.05.2021 23:05:00 | -3,600 | 4f5c202bae39d2bf5dd88b0d281e3b9ddd490d04 | feat(ng-add): add husky | [
{
"change_type": "MODIFY",
"diff": "@@ -38,9 +38,7 @@ export function ngAdd(options: SchemaOptions): Rule {\n? updateWorkspaceFromSchema(options)\n: await updateWorkspaceFromPrompt(tree),\n]),\n- addDependencies(options)\n- ],\n- );\n+ addDependencies(options),\n+ ]);\n};\n}\n-\n",
"new_path": "packages... | TypeScript | MIT License | jscutlery/semver | feat(ng-add): add husky | 1 | feat | ng-add |
756,013 | 27.05.2021 23:06:36 | 21,600 | c7cba64ccbead69ea74920b5bfbf7d7a17cd0e9b | fix: have supplyCoins decide amount to escrow for the bank purses | [
{
"change_type": "MODIFY",
"diff": "@@ -15,6 +15,7 @@ import { makePluginManager } from '@agoric/swingset-vat/src/vats/plugin-manager'\nimport { assert, details as X } from '@agoric/assert';\nimport { makeRatio } from '@agoric/zoe/src/contractSupport';\nimport { AmountMath, AssetKind } from '@agoric/ertp';\... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix: have supplyCoins decide amount to escrow for the bank purses | 1 | fix | null |
756,013 | 27.05.2021 23:07:37 | 21,600 | fdc1255d66c702e8970ecf795be191dcf2291c39 | fix: remove genesis bootstrap config; use just add-genesis-account
We also just use `tx bank send` to send coins instead of special
provision-one handling. | [
{
"change_type": "MODIFY",
"diff": "import djson from 'deterministic-json';\nimport TOML from '@iarna/toml';\n+export const CENTRAL_DENOM = 'urun';\nexport const MINT_DENOM = 'ubld';\nexport const STAKING_DENOM = 'ubld';\nexport const STAKING_MAX_VALIDATORS = 150;\n-export const DEFAULT_BOOTSTRAP_VALUE = 50... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix: remove genesis bootstrap config; use just add-genesis-account
We also just use `tx bank send` to send coins instead of special
provision-one handling. | 1 | fix | null |
332,724 | 27.05.2021 23:16:13 | -3,600 | 46363c5278ea6fafc14e98e9da2191340e756fcc | refactor(ng-add): remove uneeded calls | [
{
"change_type": "MODIFY",
"diff": "@@ -27,19 +27,16 @@ const HUSKY = {\nexport function addDependencies(options: SchemaOptions): Rule {\nreturn (tree: Tree, context: SchematicContext) => {\nif (options.enforceConventionalCommits) {\n- addCommitizen(options, tree, context);\n- addCommitlint(options, tree, c... | TypeScript | MIT License | jscutlery/semver | refactor(ng-add): remove uneeded calls | 1 | refactor | ng-add |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.