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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
103,580 | 01.02.2022 14:37:57 | -3,600 | a4a3ce273301013047030a1b0e9066b8d7202d5d | fix: correct disabled colors and use background in ScreenWrapper | [
{
"change_type": "MODIFY",
"diff": "@@ -24,14 +24,16 @@ export default function ScreenWrapper({\ncontentContainerStyle,\n...rest\n}: Props) {\n- const { colors } = useTheme();\n+ const { colors, md, isV3 } = useTheme();\nconst insets = useSafeAreaInsets();\nconst containerStyle = [\nstyles.container,\n{\n- ... | TypeScript | MIT License | callstack/react-native-paper | fix: correct disabled colors and use background in ScreenWrapper | 1 | fix | null |
386,581 | 01.02.2022 14:38:15 | -7,200 | ea32fe60bff29a8f0a06d78d62ea9de5dea854ab | chore: Delete v3 files introduced in merge. | [
{
"change_type": "DELETE",
"diff": "-/*\n- Copyright 2020-2021 Lowdefy, Inc\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- http://www.apache.org/licenses/LICENSE-2.0\... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | chore: Delete v3 files introduced in merge. | 1 | chore | null |
317,646 | 01.02.2022 14:38:25 | -3,600 | ece3a97a330d053d612bbac59130e64f37d6ddc3 | chore(go): test all modules | [
{
"change_type": "MODIFY",
"diff": "@@ -31,4 +31,4 @@ jobs:\nversion: latest\nworking-directory: src\n- name: Unit Tests\n- run: go test . -v\n+ run: go test -v ./...\n",
"new_path": ".github/workflows/code.yml",
"old_path": ".github/workflows/code.yml"
},
{
"change_type": "MODIFY",
"dif... | Go | MIT License | jandedobbeleer/oh-my-posh | chore(go): test all modules | 1 | chore | go |
306,635 | 01.02.2022 14:40:12 | -19,080 | e2e4f3ed9d6c75edbcb4bb53a8081fb100683bd9 | docs(mds): fix title for component page | [
{
"change_type": "MODIFY",
"diff": "@@ -207,9 +207,11 @@ const Layout = ({\n<>\n<Meta\ntitleType={titleType}\n- pageTitle={pageTitle}\n- pageDescription={pageDescription}\n+ docTitle={pageTitle}\n+ docDescription={pageDescription}\npageKeywords={pageKeywords}\n+ frontmatter={frontmatter}\n+ relativePagePath... | TypeScript | MIT License | innovaccer/design-system | docs(mds): fix title for component page | 1 | docs | mds |
711,597 | 01.02.2022 15:10:52 | 0 | 235d7df30367a7716e812458220d503482172a4f | chore: Fix init load test script | [
{
"change_type": "MODIFY",
"diff": "@@ -56,7 +56,7 @@ export const devConfig: VendureConfig = {\npaymentMethodHandlers: [dummyPaymentHandler],\n},\ncustomFields: {},\n- logger: new DefaultLogger({ level: LogLevel.Debug }),\n+ logger: new DefaultLogger({ level: LogLevel.Verbose }),\nimportExportOptions: {\ni... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Fix init load test script | 1 | chore | null |
711,597 | 01.02.2022 15:16:42 | 0 | ab031a83bd2461bf3cca2199b45d7d8544c91ad2 | docs(core): Fix docs on custom field typings | [
{
"change_type": "MODIFY",
"diff": "@@ -204,6 +204,7 @@ However, this sacrifices type safety. To make our custom fields type-safe we can\n```TypeScript\n// types.ts\n+import { CustomProductFields } from '@vendure/core';\ndeclare module '@vendure/core' {\ninterface CustomProductFields {\n",
"new_path": "... | TypeScript | MIT License | vendure-ecommerce/vendure | docs(core): Fix docs on custom field typings | 1 | docs | core |
277,261 | 01.02.2022 15:40:02 | 18,000 | 230a3be8c7c98ed3c5697f5e643e074da641c978 | fix: Handle colon in $H2O_WAVE_LISTEN properly in app CLI
The Python code was expecting an integer in H2O_WAVE_LISTEN while the
Golang side was expecting :#####. Fix this by updating the Python side
to parse the string version.
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -87,7 +87,7 @@ def run(app: str, no_reload: bool, no_autostart: bool):\napp = app_path.replace(os.path.sep, '.')\n# Try to start Wave daemon if not running or turned off.\n- server_port = int(os.environ.get('H2O_WAVE_LISTEN', 10101))\n+ server_port = int(os.environ.get... | Python | Apache License 2.0 | h2oai/wave | fix: Handle colon in $H2O_WAVE_LISTEN properly in app CLI (#1221)
The Python code was expecting an integer in H2O_WAVE_LISTEN while the
Golang side was expecting :#####. Fix this by updating the Python side
to parse the string version.
Fixes #1220. | 1 | fix | null |
777,422 | 01.02.2022 15:47:55 | 28,800 | e8752b031b666ff1b0d0d4054ae143ab9e2bd7f7 | fix: capture sys.exit code from launch
wrap sys exit launch call and add test | [
{
"change_type": "MODIFY",
"diff": "@@ -552,9 +552,7 @@ def verify_completed_experiment_metadata(\n# Use Determined to run an experiment that we expect to fail.\n-def run_failure_test(\n- config_file: str, model_def_file: str, error_str: Optional[str] = None\n-) -> None:\n+def run_failure_test(config_file: ... | Python | Apache License 2.0 | determined-ai/determined | fix: capture sys.exit code from launch (#3541)
wrap sys exit launch call and add test | 1 | fix | null |
711,597 | 01.02.2022 15:48:48 | 0 | 718436102f440c0c1032791c083238ec3dcea675 | docs(core): Add note on database timezone
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -16,6 +16,24 @@ A typical pattern is to run the Vendure app on the server, e.g. at `http://local\nHere is a good guide to setting up a production-ready server for an app such as Vendure: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-applicati... | TypeScript | MIT License | vendure-ecommerce/vendure | docs(core): Add note on database timezone
Closes #1375 | 1 | docs | core |
311,140 | 01.02.2022 16:05:40 | -3,600 | 6d4a07d05ce2e43dff6d8b04d1b1fb0f72e7b916 | docs(ripple-effect): add correct Material Design link | [
{
"change_type": "MODIFY",
"diff": "# ion-ripple-effect\n-The ripple effect component adds the [Material Design ink ripple interaction effect](https://material.io/develop/web/components/ripples/). This component can only be used inside of an `<ion-app>` and can be added to any component.\n+The ripple effect... | TypeScript | MIT License | ionic-team/ionic-framework | docs(ripple-effect): add correct Material Design link | 1 | docs | ripple-effect |
802,869 | 01.02.2022 16:12:21 | 10,800 | c0ef693868a120ced531834771dec084efd97971 | feat: add professional plus new icon | [
{
"change_type": "ADD",
"diff": "+<svg width=\"22\" height=\"19\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.95 5v.65h.65v1h-.65v.65h-1v-.65H1.3v-1h.65V5h1Zm3.1-3.2v.65h.65v1h-.65v.65h-1v-.65H4.4v-1h.65V1.8h1Zm5.4-1.8v.65h.65v1h-.65v.65h-1v-.65H9.8v-1h.65V0h1Zm5.5 1.8v.65h.65v1h-.65v.65h-1v-.65h-.65v... | TypeScript | Apache License 2.0 | juntossomosmais/venice | feat: add professional plus new icon | 1 | feat | null |
791,682 | 01.02.2022 16:21:50 | 18,000 | 27cd14135126b1a2a68cd1b6c5bf6279ee13a9a8 | tests(devtools): update report resource names | [
{
"change_type": "MODIFY",
"diff": "@@ -13,7 +13,7 @@ const assert = require('assert').strict;\nconst {LH_ROOT} = require('../root.js');\nconst distDir = path.join(LH_ROOT, 'dist', 'dt-report-resources');\n-const bundleOutFile = `${distDir}/report-generator.js`;\n+const bundleOutFile = `${distDir}/report-ge... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | tests(devtools): update report resource names (#13615) | 1 | tests | devtools |
386,581 | 01.02.2022 16:26:20 | -7,200 | 4b63c8774fab7adbc3e11f92a5e808b38d22f4c9 | fix(deps): Update dependency next-auth to v4.1.2. | [
{
"change_type": "MODIFY",
"diff": "@@ -3760,14 +3760,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n],\n\"linkType\": \"HARD\",\n}],\n- [\"npm:7.16.0\", {\n- \"packageLocation\": \"./.yarn/cache/@babel-runtime-npm-7.16.0-2f490bebb5-bfbca3ec52.zip/node_modules/@babel/runtime/\",\n- \"packageD... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency next-auth to v4.1.2. | 1 | fix | deps |
386,581 | 01.02.2022 16:28:11 | -7,200 | ddf13bb7f891bbb328f1ac6aea3e34894d80c42c | fix(deps): Update dependency axios to v0.25.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5673,7 +5673,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@swc/cli\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349016e85173e049f006fc2305#npm:0.1.55\"],\n[\"@swc/core\", \"npm:1... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency axios to v0.25.0. | 1 | fix | deps |
942,581 | 01.02.2022 16:35:35 | 25,200 | 141dda8d4dae0649658ad24351625e5945a9c614 | fix(popup-stack): Fix popup element removal when adapter is used
Fixes an issue where an adapted PopupStack was never removed from the DOM
[category:Components] | [
{
"change_type": "MODIFY",
"diff": "@@ -246,7 +246,10 @@ export const PopupStack = {\n*/\nremove(element: HTMLElement): void {\n// Find the stack the popup belongs to.\n- const stack = find(stacks, stack => !!find(stack.items, item => item.element === element));\n+ const stack = find(\n+ stacks,\n+ stack =>... | TypeScript | Apache License 2.0 | workday/canvas-kit | fix(popup-stack): Fix popup element removal when adapter is used (#1450)
Fixes an issue where an adapted PopupStack was never removed from the DOM
[category:Components] | 1 | fix | popup-stack |
317,646 | 01.02.2022 16:40:15 | -3,600 | 01bd42b3eb3f952452a25fbbc692d3df674d63f7 | fix(config): export glyphs correctly escaped | [
{
"change_type": "MODIFY",
"diff": "@@ -10,7 +10,6 @@ import (\n\"oh-my-posh/environment\"\n\"os\"\n\"path/filepath\"\n- \"strconv\"\n\"strings\"\n\"github.com/gookit/config/v2\"\n@@ -136,20 +135,6 @@ func (cfg *Config) Export(format string) string {\ncfg.format = format\n}\n- unicodeEscape := func(s string... | Go | MIT License | jandedobbeleer/oh-my-posh | fix(config): export glyphs correctly escaped | 1 | fix | config |
386,581 | 01.02.2022 16:41:22 | -7,200 | 8c55376080ea89f015f208262c097e5201c21d79 | fix(deps): Update dependency swr to v1.2.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5953,7 +5953,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"react\", \"npm:18.0.0-alpha-327d5c484-20211106\"],\n[\"react-dom\", \"virtual:573fe255dffc9c89f4f7aa60da718603753ee98acc55d6772bbd0ebdcf07f9183fb8e54b4f3f2246c538a14ead402db8d2e076039c667d15... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency swr to v1.2.0. | 1 | fix | deps |
386,581 | 01.02.2022 16:42:44 | -7,200 | 964efb445bfbcc36625405f33895afbef1a9c686 | fix(deps): Update dependency stripe to v8.201.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5604,7 +5604,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@swc/core\", \"npm:1.2.135\"],\n[\"@swc/jest\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349016e85173e049f006fc2305#npm... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency stripe to v8.201.0. | 1 | fix | deps |
386,581 | 01.02.2022 16:43:37 | -7,200 | ed1346ebd45a2cc6f7b2802c6cd3fb032cbaab92 | fix(deps): Update dependency to v7.16.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -3735,10 +3735,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n}]\n]],\n[\"@elastic/elasticsearch\", [\n- [\"npm:7.15.0\", {\n- \"packageLocation\": \"./.yarn/cache/@elastic-elasticsearch-npm-7.15.0-081267f0f5-e23a33469c.zip/node_modules/@elastic/elastic... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency @elastic/elasticsearch to v7.16.0. | 1 | fix | deps |
386,581 | 01.02.2022 16:44:31 | -7,200 | f44d267e6f2dfd060c40bbae7c6d1d6296b8f0a9 | fix(deps): Update dependency to v7.6.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5584,7 +5584,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@lowdefy/connection-sendgrid\", \"workspace:packages/plugins/connections/connection-sendgrid\"],\n[\"@lowdefy/ajv\", \"workspace:packages/utils/ajv\"],\n[\"@lowdefy/helpers\", \"workspace:pa... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency @sendgrid/mail to v7.6.0. | 1 | fix | deps |
386,581 | 01.02.2022 16:45:30 | -7,200 | c4b0e757960b994593166d58298c23ded4269bbf | fix(deps): Update dependency redis to v4.0.3. | [
{
"change_type": "MODIFY",
"diff": "@@ -5572,7 +5572,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@swc/core\", \"npm:1.2.135\"],\n[\"@swc/jest\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349016e85173e049f006fc2305#npm... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency redis to v4.0.3. | 1 | fix | deps |
777,389 | 01.02.2022 16:47:18 | 28,800 | 10e11cc2dc9ed73d50108b43a04e180372688d1a | test: update leftover det m config -o usage to --json
I recently changed how we get master config through
CLI and missed updating it in one of the tests. | [
{
"change_type": "MODIFY",
"diff": "@@ -143,8 +143,7 @@ def using_k8s(request: SubRequest) -> bool:\nconfig.make_master_url(),\n\"master\",\n\"config\",\n- \"-o\",\n- \"json\",\n+ \"--json\",\n]\noutput = subprocess.check_output(command, universal_newlines=True, stderr=subprocess.PIPE)\n",
"new_path": "... | Python | Apache License 2.0 | determined-ai/determined | test: update leftover det m config -o usage to --json (#3540)
I recently changed how we get master config through
CLI and missed updating it in one of the tests. | 1 | test | null |
386,581 | 01.02.2022 16:48:00 | -7,200 | 1b3e46e4c1410058d9dc809df963a76ce4e4f7e6 | chore(deps): Update dev dependency prettier to v2.5.1. | [
{
"change_type": "MODIFY",
"diff": "@@ -235,7 +235,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"eslint-plugin-react\", \"virtual:14dc3c5c29c93a240ee9920d64fd6833645f8d8a02afe23178a1bf927002b564a4b08cf8ebf9743280710b14fd76f4d49a30c662180d631d2b7265cbb3f04552#npm:7.28.0\"],\n[\"eslint-plug... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | chore(deps): Update dev dependency prettier to v2.5.1. | 1 | chore | deps |
386,581 | 01.02.2022 16:49:36 | -7,200 | f434ee942e7a58228b84db4406cfeb03f55e5e5f | fix(deps): Update dependency query-string to v7.1.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5664,7 +5664,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"jest\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349016e85173e049f006fc2305#npm:27.4.7\"],\n[\"jest-diff\", \"npm:27.4.... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency query-string to v7.1.0. | 1 | fix | deps |
386,581 | 01.02.2022 16:50:52 | -7,200 | e13b0f18c2c974845421821899ac132fe25f871d | fix(deps): Update dependency rehype-raw to v6.1.1. | [
{
"change_type": "MODIFY",
"diff": "@@ -5424,7 +5424,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"react-dom\", \"virtual:573fe255dffc9c89f4f7aa60da718603753ee98acc55d6772bbd0ebdcf07f9183fb8e54b4f3f2246c538a14ead402db8d2e076039c667d1538702638a0cc87b8#npm:18.0.0-alpha-327d5c484-20211106\"]... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency rehype-raw to v6.1.1. | 1 | fix | deps |
386,581 | 01.02.2022 16:52:30 | -7,200 | efd18da6b146a60db286af00353bac0e12667884 | fix(deps): Update dependency ajv to v8.9.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5183,7 +5183,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@swc/cli\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349016e85173e049f006fc2305#npm:0.1.55\"],\n[\"@swc/core\", \"npm:1... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency ajv to v8.9.0. | 1 | fix | deps |
386,581 | 01.02.2022 16:53:45 | -7,200 | 766acde8de455290076e1aba97fd2ed7f8c50610 | fix(deps): Update dependency aws-sdk to v2.1066.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5881,7 +5881,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@swc/cli\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349016e85173e049f006fc2305#npm:0.1.55\"],\n[\"@swc/core\", \"npm:1... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency aws-sdk to v2.1066.0. | 1 | fix | deps |
386,581 | 01.02.2022 16:54:41 | -7,200 | 277776c7294e57a95dfcf86d300bb20ea4742043 | fix(deps): Update dependency yargs to v17.3.1. | [
{
"change_type": "MODIFY",
"diff": "@@ -5468,7 +5468,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"js-yaml\", \"npm:4.1.0\"],\n[\"json5\", \"npm:2.2.0\"],\n[\"uuid\", \"npm:8.3.2\"],\n- [\"yargs\", \"npm:17.3.0\"]\n+ [\"yargs\", \"npm:17.3.1\"]\n],\n\"linkType\": \"SOFT\",\n}]\n@@ -5954,7... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency yargs to v17.3.1. | 1 | fix | deps |
386,581 | 01.02.2022 16:55:52 | -7,200 | 45133218d83e9751746e1c71c6f9fa44a5b50ead | fix(deps): Update dependency chokidar to v3.5.3. | [
{
"change_type": "MODIFY",
"diff": "@@ -5941,7 +5941,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@lowdefy/operators-uuid\", \"workspace:packages/plugins/operators/operators-uuid\"],\n[\"@lowdefy/operators-yaml\", \"workspace:packages/plugins/operators/operators-yaml\"],\n[\"@next/eslint... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency chokidar to v3.5.3. | 1 | fix | deps |
386,581 | 01.02.2022 16:57:33 | -7,200 | 41dbc3d67f0bc55214add6125cda06946eca7ac1 | fix(deps): Update dependency dompurify to v2.3.5. | [
{
"change_type": "MODIFY",
"diff": "@@ -5249,7 +5249,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@testing-library/react\", \"virtual:573fe255dffc9c89f4f7aa60da718603753ee98acc55d6772bbd0ebdcf07f9183fb8e54b4f3f2246c538a14ead402db8d2e076039c667d1538702638a0cc87b8#npm:13.0.0-alpha.4\"],\n[... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency dompurify to v2.3.5. | 1 | fix | deps |
386,581 | 01.02.2022 17:01:21 | -7,200 | 682620c99c0e53d31467b6c3d5146f0eba596ab1 | fix(deps): Update dependency dotenv to v15.0.0.
BREAKING CHANGE: # marks the beginning of a comment in .env files (UNLESS the value is wrapped in quotes. Please update your .env files to wrap in quotes any values containing #. | [
{
"change_type": "MODIFY",
"diff": "@@ -5942,7 +5942,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@lowdefy/operators-yaml\", \"workspace:packages/plugins/operators/operators-yaml\"],\n[\"@next/eslint-plugin-next\", \"npm:12.0.10\"],\n[\"chokidar\", \"npm:3.5.3\"],\n- [\"dotenv\", \"npm:1... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency dotenv to v15.0.0.
BREAKING CHANGE: # marks the beginning of a comment in .env files (UNLESS the value is wrapped in quotes. Please update your .env files to wrap in quotes any values containing #. | 1 | fix | deps |
386,581 | 01.02.2022 17:02:45 | -7,200 | e5f7ed6494c0fa2a39dc598fc2148eacfb3b9568 | fix(deps): Update dependency echarts-for-react to v3.0.2. | [
{
"change_type": "MODIFY",
"diff": "@@ -5364,7 +5364,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@testing-library/user-event\", \"virtual:573fe255dffc9c89f4f7aa60da718603753ee98acc55d6772bbd0ebdcf07f9183fb8e54b4f3f2246c538a14ead402db8d2e076039c667d1538702638a0cc87b8#npm:14.0.0-alpha.14\... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency echarts-for-react to v3.0.2. | 1 | fix | deps |
386,581 | 01.02.2022 17:04:12 | -7,200 | 6571f988c07e02df4d1ba076f4b214918358e3e9 | fix(deps): Update dependency echarts to v5.3.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5363,7 +5363,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@testing-library/react\", \"virtual:573fe255dffc9c89f4f7aa60da718603753ee98acc55d6772bbd0ebdcf07f9183fb8e54b4f3f2246c538a14ead402db8d2e076039c667d1538702638a0cc87b8#npm:13.0.0-alpha.4\"],\n[... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency echarts to v5.3.0. | 1 | fix | deps |
386,581 | 01.02.2022 17:05:43 | -7,200 | 2c62cc2d328ad4dbb6927844c2ab5b8d5a48380e | fix(deps): Update dependency google-spreadsheet to v3.2.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5515,7 +5515,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@swc/cli\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349016e85173e049f006fc2305#npm:0.1.55\"],\n[\"@swc/core\", \"npm:1... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency google-spreadsheet to v3.2.0. | 1 | fix | deps |
386,581 | 01.02.2022 17:07:02 | -7,200 | 7c714926ee0caeba362af78b594698635f34c70f | fix(deps): Update dependency next-with-less to v2.0.4. | [
{
"change_type": "MODIFY",
"diff": "@@ -5905,7 +5905,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"less-loader\", \"virtual:003bebd8b7a948d12b44e2c11a621884feb1891eea3645171e827971487f79396db9f7422bc411ccf3f90877e94ec86f5c3da70b96efb5daddb2ee3b35eae5c6#npm:10.2.0\"],\n[\"next\", \"virtual... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency next-with-less to v2.0.4. | 1 | fix | deps |
551,648 | 01.02.2022 17:12:12 | -10,800 | b491f94f0966b8376e1bf9504d3cc27cb0171791 | chore(test): add more assertions to retry insertion test | [
{
"change_type": "MODIFY",
"diff": "@@ -673,16 +673,20 @@ public class RetryIODispatcherTest {\nnonInsertQueries++;\nfinal int maxWaitTimeMillis = 3000;\n- final int sleepMillis = 50;\n+ final int sleepMillis = 10;\n// wait for all insert queries to be initially handled\n+ long startedInserts;\nfor (int i =... | Java | Apache License 2.0 | questdb/questdb | chore(test): add more assertions to retry insertion test (#1848) | 1 | chore | test |
711,597 | 01.02.2022 17:12:23 | 0 | cc1e4ed82b3e8d146ac5c8c21f419a2fe716c541 | fix(core): Add missing Fulfillment entity export | [
{
"change_type": "MODIFY",
"diff": "@@ -18,6 +18,7 @@ export * from './facet/facet.entity';\nexport * from './facet/facet-translation.entity';\nexport * from './facet-value/facet-value.entity';\nexport * from './facet-value/facet-value-translation.entity';\n+export * from './fulfillment/fulfillment.entity';... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(core): Add missing Fulfillment entity export | 1 | fix | core |
401,147 | 01.02.2022 17:16:38 | -19,080 | c5e5ab0300e00ba6149e50b7d1b7ecf12d6b5ed4 | fix: options id issue of multiselect component
affects: | [
{
"change_type": "MODIFY",
"diff": "@@ -203,10 +203,10 @@ describe('MultiSelect component', () => {\n});\nit('should maintain focus even on blur of input', async () => {\n- render(<MultiSelect options={options} />);\n+ render(<MultiSelect label=\"dummy\" options={options} />);\nconst input = screen.getByRol... | TypeScript | MIT License | medly/medly-components | fix: options id issue of multiselect component (#582)
affects: @medly-components/core | 1 | fix | null |
386,581 | 01.02.2022 17:19:18 | -7,200 | 8c4577087bf368516c113f4395e7af2be9472b2e | chore(deps): Update dev dependency to v8.11.3. | [
{
"change_type": "MODIFY",
"diff": "@@ -5225,7 +5225,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@lowdefy/helpers\", \"workspace:packages/utils/helpers\"],\n[\"@swc/cli\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | chore(deps): Update dev dependency @testing-library/dom to v8.11.3. | 1 | chore | deps |
104,861 | 01.02.2022 17:19:24 | 18,000 | e0065bfcc70b0841a7187b5985b59905ce80e9a0 | fix(table): revert test id to fix failing table test | [
{
"change_type": "MODIFY",
"diff": "@@ -12,7 +12,7 @@ const propTypes = {\n/** The unique id for the table */\ntableId: PropTypes.string.isRequired,\n/** The unique id for the table test */\n- testId: PropTypes.string.isRequired,\n+ testId: PropTypes.string,\ncolumns: TableColumnsPropTypes,\n/** since some ... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(table): revert test id to fix failing table test
#3190 | 1 | fix | table |
386,581 | 01.02.2022 17:22:17 | -7,200 | f04e35bff26393f425f5711a66ac23dc4031a943 | fix(deps): Update dependency react-markdown to v8.0.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5429,7 +5429,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"jest-transform-yaml\", \"npm:1.0.0\"],\n[\"react\", \"npm:18.0.0-alpha-327d5c484-20211106\"],\n[\"react-dom\", \"virtual:573fe255dffc9c89f4f7aa60da718603753ee98acc55d6772bbd0ebdcf07f9183fb8e... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency react-markdown to v8.0.0. | 1 | fix | deps |
386,595 | 01.02.2022 17:32:52 | -7,200 | 0c494fe2ad68d02d9fac0b65a1267ee0ebaf4874 | feat: Add start:dev-docs start script. | [
{
"change_type": "MODIFY",
"diff": "\"start:server-dev\": \"yarn workspace @lowdefy/server-dev start --package-manager yarn --config-directory ../../app\",\n\"start\": \"yarn workspace @lowdefy/server build:lowdefy --config-directory ../../app && yarn && yarn workspace @lowdefy/server build:next && yarn wor... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat: Add start:dev-docs start script. | 1 | feat | null |
306,338 | 01.02.2022 17:38:23 | -3,600 | 1595a051b0918a838b8c375fdc39241d44d3e110 | fix: Remove double quotes escaping from feedback urls in comment templates
GitLab doesn't unescape the double quotes thus not showing the Yes/No
URLs correctly. Removing the escaping fixed it. GitHub/Azure Repos
worked well too. | [
{
"change_type": "MODIFY",
"diff": "@@ -129,7 +129,7 @@ Key: ~ changed, + added, - removed\nThis comment will be updated when the cost estimate changes.\n<sub>\n- Is this comment useful? <a href=\\\"https://www.infracost.io/feedback/submit/?value=yes\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"... | Go | Apache License 2.0 | infracost/infracost | fix: Remove double quotes escaping from feedback urls in comment templates (#1334)
GitLab doesn't unescape the double quotes thus not showing the Yes/No
URLs correctly. Removing the escaping fixed it. GitHub/Azure Repos
worked well too. | 1 | fix | null |
551,634 | 01.02.2022 18:09:40 | 0 | 9844de043f73074394db7789d0d2be44fe36101b | fix(cairo): fix crash when row added out of order, cancelled and then added back | [
{
"change_type": "MODIFY",
"diff": "@@ -4437,6 +4437,7 @@ public class TableWriter implements Closeable {\nmasterRef--;\nclearO3();\n}\n+ rowValueIsNotNull.fill(0, columnCount, masterRef);\nreturn;\n}\n@@ -4577,6 +4578,7 @@ public class TableWriter implements Closeable {\n}\nprivate void setRowValueNotNull(... | Java | Apache License 2.0 | questdb/questdb | fix(cairo): fix crash when row added out of order, cancelled and then added back (#1851) | 1 | fix | cairo |
756,039 | 01.02.2022 18:13:37 | 28,800 | 2cc8a45e403f6bdd80566330ddf3f6e4e9477396 | feat: example txn | [
{
"change_type": "MODIFY",
"diff": "\"@endo/init\": \"^0.5.33\",\n\"@agoric/notifier\": \"^0.3.33\",\n\"@agoric/ui-components\": \"^0.2.28\",\n- \"@cosmjs/launchpad\": \"^0.27.1\",\n+ \"@cosmjs/stargate\": \"^0.27.1\",\n\"@emotion/react\": \"^11.5.0\",\n\"@emotion/styled\": \"^11.3.0\",\n\"@mui/icons-materi... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | feat: example txn | 1 | feat | null |
386,581 | 01.02.2022 18:24:43 | -7,200 | aebd5bec6b28d0242d60d3ac92a667b5e39c8aca | fix(deps): Update dependency commander to v9.0.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -9321,6 +9321,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"commander\", \"npm:8.3.0\"]\n],\n\"linkType\": \"HARD\",\n+ }],\n+ [\"npm:9.0.0\", {\n+ \"packageLocation\": \"./.yarn/cache/commander-npm-9.0.0-b4ddcedf46-15066e433d.zip/node_modules/comma... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency commander to v9.0.0. | 1 | fix | deps |
777,401 | 01.02.2022 18:27:41 | 18,000 | 783e1e4a3ab5075050f27a48ca0c052c28a1f648 | feat: configure k8s fluent image in helm chart
Just open this configuration up through helm. | [
{
"change_type": "MODIFY",
"diff": "@@ -70,6 +70,12 @@ data:\nslot_resource_requests:\ncpu: {{ .Values.slotResourceRequests.cpu }}\n{{- end }}\n+ {{- if .Values.fluent }}\n+ fluent:\n+ {{- if .Values.fluent.image }}\n+ image: {{ .Values.fluent.image }}\n+ {{- end }}\n+ {{- end }}\n{{$cpuImage := (split \"/\... | Python | Apache License 2.0 | determined-ai/determined | feat: configure k8s fluent image in helm chart (#3522) [DET-6380]
Just open this configuration up through helm. | 1 | feat | null |
889,632 | 01.02.2022 18:28:38 | 28,800 | f602218315e573921c9388d2c27393336c3ace69 | docs: typo in DEVELOPING.md
Missed tick | [
{
"change_type": "MODIFY",
"diff": "@@ -12,7 +12,7 @@ You will need:\n## Setting up the project\n- run `npm install` in the root folder of the project. This will install the necessary commit hooks.\n-- run `npm install in the `komga-webui` folder of the project. This will install the necessary tooling for t... | Kotlin | MIT License | gotson/komga | docs: typo in DEVELOPING.md (#790)
Missed tick | 1 | docs | null |
386,581 | 01.02.2022 18:35:34 | -7,200 | 145dcdacc13074070ce8f9c4fc0bac46d8523cd6 | fix(deps): Update dependency mingo to v6.0.0. | [
{
"change_type": "MODIFY",
"diff": "@@ -5485,7 +5485,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"@swc/jest\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349016e85173e049f006fc2305#npm:0.2.17\"],\n[\"google-spreadsheet\... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(deps): Update dependency mingo to v6.0.0. | 1 | fix | deps |
320,264 | 01.02.2022 18:45:45 | -3,600 | d4f4076af84a960575dd9beb672e6ad5d63b2de2 | feat: add ldlc-italy and fixes ollo/hardware-planet
Resolves | [
{
"change_type": "MODIFY",
"diff": "@@ -131,6 +131,7 @@ Used with the `STORES` variable.\n| Landmark Computers | AU | `landmark-computers`|\n| Ldlc | FR | `ldlc`|\n| Ldlc | ES | `ldlc-es`|\n+| Ldlc | IT | `ldlc-it`|\n| Mediamarkt | DE | `mediamarkt`|\n| Mediamarkt | AT | `mediamarkt-at`|\n| Medimax | DE | `... | TypeScript | MIT License | jef/streetmerchant | feat: add ldlc-italy and fixes ollo/hardware-planet (#2903)
Resolves #2867 | 1 | feat | null |
320,226 | 01.02.2022 18:49:29 | -3,600 | fc0c3da6fba105c521c102b1a071adefd364bc4c | feat(store): add 3050 in topachat and materiel | [
{
"change_type": "MODIFY",
"diff": "@@ -406,6 +406,7 @@ const store = {\ncountry: envOrString(process.env.COUNTRY, 'usa'),\nmaxPrice: {\nseries: {\n+ 3050: envOrNumber(process.env.MAX_PRICE_SERIES_3050),\n3060: envOrNumber(process.env.MAX_PRICE_SERIES_3060),\n'3060ti': envOrNumber(process.env.MAX_PRICE_SERI... | TypeScript | MIT License | jef/streetmerchant | feat(store): add 3050 in topachat and materiel (#2945) | 1 | feat | store |
306,320 | 01.02.2022 19:13:21 | 0 | 20dd1095a1ec9732199439cd0ad2f3637e913445 | enhance: add Linux ARM 64 Docker builds | [
{
"change_type": "MODIFY",
"diff": "@@ -61,6 +61,7 @@ jobs:\nuses: docker/build-push-action@v2\nwith:\ncontext: .\n+ platforms: linux/amd64,linux/arm64\ntags: ${{ steps.meta.outputs.tags }}\npush: true\n@@ -81,6 +82,7 @@ jobs:\nwith:\ncontext: .\nfile: Dockerfile.ci\n+ platforms: linux/amd64,linux/arm64\nta... | Go | Apache License 2.0 | infracost/infracost | enhance: add Linux ARM 64 Docker builds (#1322) | 1 | enhance | null |
756,039 | 01.02.2022 19:32:20 | 28,800 | 280d46b950f81a75a1f2967d204087baeab9cce9 | chore: unit tests | [
{
"change_type": "MODIFY",
"diff": "@@ -46,7 +46,8 @@ const useStyles = makeStyles(theme => ({\n},\n}));\n-const AppBar = ({ useChainBackend }) => {\n+// Exported for testing only.\n+export const AppBarWithoutContext = ({ useChainBackend }) => {\nconst theme = useTheme();\nconst classes = useStyles(theme);\... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | chore: unit tests | 1 | chore | null |
756,031 | 01.02.2022 20:03:14 | 10,800 | cc79ff61263edbced108c8d9ed0a249d2f8e1786 | fix: Update dapp workflows to handle deps version discrepancies | [
{
"change_type": "MODIFY",
"diff": "@@ -19,15 +19,19 @@ jobs:\n- name: Checkout agoric-sdk\nuses: actions/checkout@v2\n+ with:\n+ path: agoric-sdk\n- name: Use Node.js ${{ matrix.node-version }}\n- uses: actions/setup-node@v1\n+ uses: actions/setup-node@v2\nwith:\nnode-version: ${{ matrix.node-version }}\n+... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix: Update dapp workflows to handle deps version discrepancies (#4433)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 1 | fix | null |
551,635 | 01.02.2022 20:37:56 | -7,200 | 61d222fd4a5781e9f2530d94419fa22e61cbc3ec | feat(ui): display JIT compilation notification | [
{
"change_type": "MODIFY",
"diff": "@@ -211,7 +211,7 @@ const MonacoEditor = () => {\nif (request?.query) {\nvoid quest\n- .queryRaw(request.query, { limit: \"0,1000\" })\n+ .queryRaw(request.query, { limit: \"0,1000\", explain: true })\n.then((result) => {\nsetRequest(undefined)\ndispatch(actions.query.sto... | Java | Apache License 2.0 | questdb/questdb | feat(ui): display JIT compilation notification (#1842) | 1 | feat | ui |
942,579 | 01.02.2022 21:00:02 | 10,800 | 5da241dee4e32f8cef343336610b79dca71a98b6 | feat(BrandAssets): Add alt property to Workday logos.
Implement [empty alt attributes to image tags](https://www.w3.org/WAI/tutorials/images/decorative/) on Workday logos to improve accessibility for screen reader users.
[category:Components] | [
{
"change_type": "MODIFY",
"diff": "const CDN_URI = '//design.workday.com/images/';\n-export const dubLogoBlue = `<img src=\"${CDN_URI}ck-dub-logo-blue.svg\">`;\n+export const dubLogoBlue = `<img src=\"${CDN_URI}ck-dub-logo-blue.svg\" alt=\"\">`;\n-export const dubLogoWhite = `<img src=\"${CDN_URI}ck-dub-lo... | TypeScript | Apache License 2.0 | workday/canvas-kit | feat(BrandAssets): Add alt property to Workday logos. (#1446)
Implement [empty alt attributes to image tags](https://www.w3.org/WAI/tutorials/images/decorative/) on Workday logos to improve accessibility for screen reader users.
[category:Components] | 1 | feat | BrandAssets |
603,467 | 01.02.2022 21:57:28 | 0 | 0d40c92f6f3103c46c6cdd61501c61a725ea6553 | ci(website): removed gh-pages scripts that's no longer in use | [
{
"change_type": "MODIFY",
"diff": "@@ -9,6 +9,5 @@ paths-ignore:\n- documentation/**\n- .esdoc.js\n- .esdoc-patches.js\n- - gh-pages.js\npaths:\n- packages/*/src\n",
"new_path": ".github/codeql/codeql-config.yml",
"old_path": ".github/codeql/codeql-config.yml"
},
{
"change_type": "MODIFY",
... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | ci(website): removed gh-pages scripts that's no longer in use | 1 | ci | website |
404,827 | 01.02.2022 22:31:04 | -3,600 | e3164d328fb9ece83b28f1c8c9f9e5c42126415c | feat: add `github-org` preset | [
{
"change_type": "ADD",
"diff": "Binary files /dev/null and b/packages/app/public/preview/github-org.png differ\n",
"new_path": "packages/app/public/preview/github-org.png",
"old_path": "packages/app/public/preview/github-org.png"
},
{
"change_type": "ADD",
"diff": "+/* eslint-disable no... | JavaScript | MIT License | microlinkhq/cards | feat: add `github-org` preset | 1 | feat | null |
841,421 | 01.02.2022 22:37:42 | -32,400 | 2c99ca1bab353668f5c475ab6cb223186701927a | fix(es/modules): Fix span of imports
swc_ecma_transforms_module:
- `common_js`: Use original span with the syntax conext of an import specifier. | [
{
"change_type": "ADD",
"diff": "+{\n+ \"jsc\": {\n+ \"parser\": {\n+ \"syntax\": \"typescript\",\n+ \"tsx\": true\n+ },\n+ \"target\": \"es2020\",\n+ \"loose\": true,\n+ \"transform\": {\n+ \"legacyDecorator\": true,\n+ \"hidden\": {\n+ \"jest\": true\n+ }\n+ }\n+ },\n+ \"module\": {\n+ \"type\": \"commonj... | Rust | Apache License 2.0 | swc-project/swc | fix(es/modules): Fix span of imports (#3418)
swc_ecma_transforms_module:
- `common_js`: Use original span with the syntax conext of an import specifier. | 1 | fix | es/modules |
603,467 | 01.02.2022 23:06:59 | 0 | da3782169735c0309ebe52821cde3cdbc42d96fd | test(protractor): replaced the no longer maintained istanbul-merge with a custom script
... and corrected coverage reporting | [
{
"change_type": "ADD",
"diff": "+#!/usr/bin/env ts-node\n+\n+import { sync as glob } from 'fast-glob';\n+import { readFileSync, mkdirSync, writeFileSync } from 'fs';\n+import { createCoverageMap } from 'istanbul-lib-coverage';\n+\n+const coverageMap = createCoverageMap({ });\n+\n+const input = [\n+ `${ __d... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | test(protractor): replaced the no longer maintained istanbul-merge with a custom script
... and corrected coverage reporting | 1 | test | protractor |
902,122 | 01.02.2022 23:15:11 | -3,600 | 9a438e1ce26062f4e8503e081c65bd3e667f1b7b | chore(release): v9.3.10 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [9.3.10](https://github.com/microlinkhq/browserless/compare/v9.3.9...v9.3.10) (2022-02-01)\n+\n+\n+### Bug Fixes\n... | JavaScript | MIT License | microlinkhq/browserless | chore(release): v9.3.10 | 1 | chore | release |
902,122 | 01.02.2022 23:44:07 | -3,600 | c38de78ff507c98d2411d85eb1840c9b28c27767 | chore(release): v9.3.11 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [9.3.11](https://github.com/microlinkhq/browserless/compare/v9.3.10...v9.3.11) (2022-02-01)\n+\n+**Note:** Version... | JavaScript | MIT License | microlinkhq/browserless | chore(release): v9.3.11 | 1 | chore | release |
71,567 | 02.02.2022 00:57:53 | -3,600 | 73a889eba85d0aa542ac96a1124f3ae4f1d351bc | feat(dynamodb): allow setting TableClass for a Table
Support already exists in CloudFormation, but hasn't been implemented in CDK.
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": "@@ -58,6 +58,23 @@ const table = new dynamodb.Table(this, 'Table', {\nFurther reading:\nhttps://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.\n+## Table Class\n+\n+DynamoDB supports two table classes:\n+\n+* STANDARD - the defa... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(dynamodb): allow setting TableClass for a Table (#18719)
Support already exists in CloudFormation, but hasn't been implemented in CDK.
Closes #18718
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | dynamodb |
404,827 | 02.02.2022 01:14:11 | -3,600 | bbf54f871f242bd0baf2547231c477f60520bbe9 | feat: add `just-javascript` preset
+ Closes | [
{
"change_type": "ADD",
"diff": "Binary files /dev/null and b/packages/app/public/preview/just-javascript.png differ\n",
"new_path": "packages/app/public/preview/just-javascript.png",
"old_path": "packages/app/public/preview/just-javascript.png"
},
{
"change_type": "MODIFY",
"diff": "@@ ... | JavaScript | MIT License | microlinkhq/cards | feat: add `just-javascript` preset
+ Closes #263 | 1 | feat | null |
404,827 | 02.02.2022 01:39:27 | -3,600 | ebf7b131d261018bcbf162a404f5f25e1ed92702 | fix: default preset logic
+ Fix fallback case when a preset isn't found via `?preset` | [
{
"change_type": "MODIFY",
"diff": "@@ -12,10 +12,12 @@ import themeContext from './theme-context'\nexport const AppContext = createContext({})\n+const getDefaultPreset = slug => getPresetBySlug(presets, slug) || getPresetBySlug(presets, DEFAULT_PRESET)\n+\nexport default function AppContextProvider ({ chil... | JavaScript | MIT License | microlinkhq/cards | fix: default preset logic
+ Fix fallback case when a preset isn't found via `?preset` | 1 | fix | null |
838,025 | 02.02.2022 02:49:03 | -10,800 | 932998f6f13fc441704977a11cc69011e5f15137 | fix: close zstd Reader | [
{
"change_type": "MODIFY",
"diff": "@@ -269,9 +269,15 @@ func (vk *VK) DefaultHandler(method string, sliceParams ...Params) (Response, er\nswitch resp.Header.Get(\"Content-Encoding\") {\ncase \"zstd\":\n- reader, _ = zstd.NewReader(resp.Body)\n+ zstdReader, _ := zstd.NewReader(resp.Body)\n+ defer zstdReader... | Go | MIT License | severecloud/vksdk | fix: close zstd Reader | 1 | fix | null |
756,031 | 02.02.2022 04:03:34 | 0 | 9324cfed2cff9cf96523859010537ffdea69e721 | fix(zoe): fix InstanceRecord type | [
{
"change_type": "MODIFY",
"diff": "*\n* @typedef {StandardTerms & Record<string, any>} Terms\n*\n- * @typedef {object} InstanceRecord\n+ * @typedef {Object} InstanceRecord\n* @property {Installation} installation\n* @property {Instance} instance\n* @property {Terms} terms - contract parameters\n",
"new... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(zoe): fix InstanceRecord type | 1 | fix | zoe |
617,479 | 02.02.2022 08:38:21 | -3,600 | 80774c0355b88a9471fd2f48c017f88d13051b40 | chore(ci): fix deactivate action | [
{
"change_type": "MODIFY",
"diff": "@@ -9,7 +9,7 @@ jobs:\nname: Deactivate review branch\nruns-on: ubuntu-latest\nsteps:\n- - uses: SocialGouv/actions/k8s-deactivate@v1\n+ - uses: SocialGouv/actions/autodevops-deactivate@v1\nwith:\nkube-config: ${{ secrets.KUBECONFIG }}\ngithub-token: ${{ secrets.SOCIALGRO... | TypeScript | Apache License 2.0 | socialgouv/code-du-travail-numerique | chore(ci): fix deactivate action (#4223) | 1 | chore | ci |
277,276 | 02.02.2022 08:38:41 | -3,600 | b06d13ea3d5d50fb58b190fd15c759ece53d9531 | feat: Add tooltip to NavItem | [
{
"change_type": "MODIFY",
"diff": "@@ -28,7 +28,7 @@ async def serve(q: Q):\nui.nav_group('Menu', items=[\nui.nav_item(name='#menu/spam', label='Spam'),\nui.nav_item(name='#menu/ham', label='Ham'),\n- ui.nav_item(name='#menu/eggs', label='Eggs'),\n+ ui.nav_item(name='#menu/eggs', label='Eggs', tooltip='Mak... | Python | Apache License 2.0 | h2oai/wave | feat: Add tooltip to NavItem #692 (#1198) | 1 | feat | null |
503,925 | 02.02.2022 08:46:31 | 21,600 | 14d0e712956a3bcb60afc6741208165135d72587 | fix: windows issue listening on md changes to refresh | [
{
"change_type": "MODIFY",
"diff": "const path = require('path');\n-module.exports = (sourceMD, sourceProps) => {\n+module.exports = (baseSourceMD, sourceProps) => {\n+ const sourceMD = (basePath, ...props) => baseSourceMD(basePath.split(path.sep).join(path.posix.sep), ...props);\n+\n// Theme pages\nconst t... | TypeScript | MIT License | patternfly/patternfly-react | fix: windows issue listening on md changes to refresh (#6856) | 1 | fix | null |
277,287 | 02.02.2022 10:19:18 | -3,600 | 566e0e1e1c13f69b5e152aa517bacc41a2113f7f | feat: Add select / deselect all to table filter menu | [
{
"change_type": "MODIFY",
"diff": "@@ -119,7 +119,7 @@ type WaveColumn = Fluent.IColumn & {\ntype DataTable = {\nmodel: Table\n- onFilterChange: (filterKey: S, filterVal: S) => (e?: React.FormEvent<HTMLInputElement | HTMLElement>, checked?: B) => void\n+ onFilterChange: (filterKey: S, filterVal: S, checked... | Python | Apache License 2.0 | h2oai/wave | feat: Add select / deselect all to table filter menu #602 (#1187) | 1 | feat | null |
802,854 | 02.02.2022 10:36:46 | 10,800 | a7f91e117d72266887cb93776c255c8e3361f87d | chore: restore to 14.14.31 | [
{
"change_type": "MODIFY",
"diff": "\"@commitlint/config-conventional\": \"^14.1.0\",\n\"@testing-library/jest-dom\": \"^5.11.9\",\n\"@types/jest\": \"^25.1.4\",\n- \"@types/node\": \"^17.0.14\",\n+ \"@types/node\": \"^14.14.31\",\n\"@typescript-eslint/eslint-plugin\": \"^4.16.1\",\n\"@typescript-eslint/par... | TypeScript | Apache License 2.0 | juntossomosmais/venice | chore: restore @types/node to 14.14.31 | 1 | chore | null |
277,286 | 02.02.2022 10:44:14 | -3,600 | 459ba2fbad2c424a12ed57fb3ba2a147894093bd | docs: Add base url | [
{
"change_type": "MODIFY",
"diff": "@@ -35,6 +35,8 @@ Usage of ./waved:\nlist all the access key IDs in the keychain\n-listen string\nlisten on this address (default \":10101\")\n+ -base-url string\n+ the base URL (path prefix) to be used for resolving relative URLs (e.g. /foo/ or /foo/bar/, without the hos... | Python | Apache License 2.0 | h2oai/wave | docs: Add base url | 1 | docs | null |
126,276 | 02.02.2022 11:00:40 | 10,800 | 996797d9312e7b7ac7c994ce2746444d8c0ecdf5 | chore(embedded/tbtree): middle node split | [
{
"change_type": "MODIFY",
"diff": "@@ -1592,7 +1592,7 @@ func (n *innerNode) split() (node, error) {\nreturn nil, nil\n}\n- splitIndex, _ := n.splitInfo()\n+ splitIndex := splitIndex(len(n.nodes))\nnewNode := &innerNode{\nt: n.t,\n@@ -1613,17 +1613,6 @@ func (n *innerNode) split() (node, error) {\nreturn n... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/tbtree): middle node split | 1 | chore | embedded/tbtree |
306,338 | 02.02.2022 11:28:46 | -3,600 | 94d4ab11f7de690c55f640fad825a7ae1f052a24 | chore: Update breakdown test data for Terraform v0.14 | [
{
"change_type": "MODIFY",
"diff": "\"totalMonthlyCost\": \"40.561\"\n},\n\"summary\": {\n+ \"totalDetectedResources\": 26,\n+ \"totalSupportedResources\": 14,\n+ \"totalUnsupportedResources\": 2,\n+ \"totalUsageBasedResources\": 10,\n+ \"totalNoPriceResources\": 10,\n\"unsupportedResourceCounts\": {\n\"aws... | Go | Apache License 2.0 | infracost/infracost | chore: Update breakdown test data for Terraform v0.14 | 1 | chore | null |
306,338 | 02.02.2022 11:30:52 | -3,600 | b56d44a9a361be381bb5e14a76437d7cf286a5ce | fix: Do not show CI/CD info message when running output/comment cmds in CI | [
{
"change_type": "MODIFY",
"diff": "@@ -45,6 +45,7 @@ func buildCommentBody(ctx *config.RunContext, paths []string, mdOpts output.Mark\nif err != nil {\nreturn nil, err\n}\n+ combined.IsCIRun = ctx.IsCIRun()\nopts := output.Options{\nDashboardEnabled: ctx.Config.EnableDashboard,\n",
"new_path": "cmd/inf... | Go | Apache License 2.0 | infracost/infracost | fix: Do not show CI/CD info message when running output/comment cmds in CI | 1 | fix | null |
915,096 | 02.02.2022 11:47:06 | -3,600 | 71c9ca4984f3f5b8f45f721964e380ed0c460362 | fix: remove outdated notice | [
{
"change_type": "MODIFY",
"diff": "@@ -98,8 +98,7 @@ Gateway or Application Proxy to restrict which clients have access to the\nendpoint.\nWe generally advise to run ORY Hydra with `hydra serve all` which listens on\n-both ports in one process. Please be aware that the `memory` backend will not\n-work in t... | Go | Apache License 2.0 | ory/hydra | fix: remove outdated notice (#2961) | 1 | fix | null |
869,309 | 02.02.2022 11:53:51 | -3,600 | 7e1e90838c09abb7c3ee68bc5b52fb12ec90106c | fix: remove comment to old api | [
{
"change_type": "MODIFY",
"diff": "@@ -13,7 +13,6 @@ class Bigone extends Driver {\n* @returns {Promise.Array<Ticker>} Returns a promise of an array with tickers.\n*/\nasync fetchTickers() {\n- //const result = await request('https://big.one/api/v2/tickers');\nconst result = await request('https://big.one/... | JavaScript | MIT License | coinranking/exchanges | fix: remove comment to old api | 1 | fix | null |
317,646 | 02.02.2022 11:55:06 | -3,600 | 55ab413d6ecd4042e426ac7ffec6e9de449c5d71 | fix: do not render empty/whitespace segments | [
{
"change_type": "MODIFY",
"diff": "@@ -8,6 +8,7 @@ import (\n\"oh-my-posh/segments\"\n\"oh-my-posh/template\"\n\"runtime/debug\"\n+ \"strings\"\n\"time\"\n)\n@@ -160,7 +161,7 @@ func (segment *Segment) string() string {\nif err != nil {\nreturn err.Error()\n}\n- segment.active = len(text) > 0\n+ segment.ac... | Go | MIT License | jandedobbeleer/oh-my-posh | fix: do not render empty/whitespace segments | 1 | fix | null |
869,309 | 02.02.2022 12:13:25 | -3,600 | b35741c6f2e81019b9128f90c83c083b22cdc79e | fix: symbols | [
{
"change_type": "MODIFY",
"diff": "@@ -16,8 +16,8 @@ class Btcturk extends Driver {\nconst { data: tickers } = await request('https://api.btcturk.com/api/v2/ticker');\nreturn tickers.map((ticker) => {\n- const base = ticker.numeratorsymbol;\n- const quote = ticker.denominatorsymbol;\n+ const base = ticker.... | JavaScript | MIT License | coinranking/exchanges | fix: symbols | 1 | fix | null |
317,646 | 02.02.2022 12:16:39 | -3,600 | a5162b0f19ba017564a00d0541530d7c87d976cd | refactor(segment): cleaner logic | [
{
"change_type": "MODIFY",
"diff": "@@ -80,14 +80,14 @@ func (b *Block) enabled() bool {\nreturn false\n}\n-func (b *Block) setStringValues() {\n+func (b *Block) renderSegmentsText() {\nwg := sync.WaitGroup{}\nwg.Add(len(b.Segments))\ndefer wg.Wait()\nfor _, segment := range b.Segments {\ngo func(s *Segment... | Go | MIT License | jandedobbeleer/oh-my-posh | refactor(segment): cleaner logic | 1 | refactor | segment |
688,430 | 02.02.2022 12:18:54 | -7,200 | cc160c47c01327c1d760c2e333aba920f06fd676 | fix: add Alex Radulescu as maintainer | [
{
"change_type": "MODIFY",
"diff": "@@ -10,7 +10,7 @@ on:\njobs:\nhandle-contribution:\n# if external contribution\n- if: ${{!contains(fromJson('[\"denieler\", \"TomasSlama\", \"OleksandrNechai\", \"OndrejTuma\", \"dmaklygin1\", \"LashaJini\", \"toptal-build\"]'), github.event.pull_request.user.login)}}\n+ ... | TypeScript | MIT License | toptal/picasso | fix: add Alex Radulescu as maintainer (#2414) | 1 | fix | null |
317,646 | 02.02.2022 12:24:31 | -3,600 | 0185299263c5143f4b07f7d2781b6189c8347c83 | feat(config): auto migrate to 1 | [
{
"change_type": "MODIFY",
"diff": "@@ -23,10 +23,13 @@ const (\nJSON string = \"json\"\nYAML string = \"yaml\"\nTOML string = \"toml\"\n+\n+ configVersion = 1\n)\n// Config holds all the theme for rendering the prompt\ntype Config struct {\n+ Version int `json:\"version\"`\nFinalSpace bool `json:\"final_sp... | Go | MIT License | jandedobbeleer/oh-my-posh | feat(config): auto migrate to 1 | 1 | feat | config |
104,861 | 02.02.2022 12:42:13 | 18,000 | eb99b689b165a8e844584c44a10af0264255e6e3 | fix(skeleton row): optimize tests | [
{
"change_type": "MODIFY",
"diff": "@@ -42,8 +42,8 @@ describe('SkeletonRow', () => {\ncontainer: document.body.appendChild(document.createElement('tbody')),\n});\nexpect(container).toBeDefined();\n- expect(container.rows[0].cells.length).toBe(3);\n- expect(container.getElementsByClassName(`${prefix}--skele... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(skeleton row): optimize tests
#3190 | 1 | fix | skeleton row |
306,912 | 02.02.2022 12:45:32 | -3,600 | 9a9dcd8bf795e4246c7dfc86990d8d715d173a61 | docs(elements-angular): fix assets path | [
{
"change_type": "MODIFY",
"diff": "@@ -58,8 +58,8 @@ $ yarn add @inovex.de/elements-angular\n\"src/assets\",\n{\n\"glob\": \"**/*\",\n- \"input\": \"node_modules/@inovex.de/elements/dist/inovex-elements/icon-assets\",\n- \"output\": \"/icon-assets\"\n+ \"input\": \"node_modules/@inovex.de/elements/dist/ino... | TypeScript | MIT License | inovex/elements | docs(elements-angular): fix assets path (#502)
Co-authored-by: Krimdomu <jan.gehring@gmail.com> | 1 | docs | elements-angular |
749,530 | 02.02.2022 12:55:48 | 18,000 | 4ce162c5330a29d36625a5a8943af081827ea18f | chore(renovate): remove post updates from config | [
{
"change_type": "MODIFY",
"diff": "\"ignorePaths\": [\"**/node_modules/**\"],\n\"schedule\": [\"on Monday every 9 weeks of the year starting on the 5th week\"],\n\"labels\": [\"PR: Internal :seedling:\"],\n- \"postUpdateOptions\": [\"yarnDedupeHighest\"],\n- \"postUpgradeTasks\": {\n- \"commands\": [\"yarn... | TypeScript | Apache License 2.0 | zendeskgarden/react-components | chore(renovate): remove post updates from config (#1288) | 1 | chore | renovate |
777,369 | 02.02.2022 13:07:41 | 25,200 | 674866592e2d14c41edf71662b5317fedfe065cd | style: fix spinner placement for hp viz | [
{
"change_type": "MODIFY",
"diff": "@@ -12,9 +12,16 @@ interface Props extends Omit<SpinProps, 'size'>, SpinState {\nsize?: IconSize;\n}\n-const Spinner: React.FC<Props> = ({ center, size, tip, ...props }: PropsWithChildren<Props>) => {\n+const Spinner: React.FC<Props> = ({\n+ center,\n+ className,\n+ size,... | Python | Apache License 2.0 | determined-ai/determined | style: fix spinner placement for hp viz [DET-6631] (#3543) | 1 | style | null |
127,946 | 02.02.2022 13:08:42 | -10,800 | 39068bdca4a116017e74ad7c06a383dd60f77c10 | fix: jest timers: 'fake' | [
{
"change_type": "MODIFY",
"diff": "@@ -21,6 +21,7 @@ module.exports = {\n},\nsetupFilesAfterEnv: ['<rootDir>/jest.setup.js'],\ntestPathIgnorePatterns: ['<rootDir>/node_modules/', '<rootDir>/.next/'],\n+ timers: 'fake',\ntransform: {\n// Use babel-jest to transpile tests with the next/babel preset\n// https... | TypeScript | MIT License | coingaming/moon-design | fix: jest timers: 'fake' (#1605) | 1 | fix | null |
777,369 | 02.02.2022 13:08:42 | 25,200 | fe50b39e494d22175df0839159614176029ac971 | fix: correct tqdm log display and fix the flickering issue | [
{
"change_type": "MODIFY",
"diff": "@@ -196,7 +196,8 @@ const LogViewer: React.FC<Props> = forwardRef((\nmeasure.current.style.width = `${messageWidth}px`;\nlogs.forEach((log: ViewerLog) => {\nconst lineCount = log.message\n- .split('\\n')\n+ .replace(/(\\r\\n?)/g, '\\n')\n+ .split(/\\n/g)\n.map(line => lin... | Python | Apache License 2.0 | determined-ai/determined | fix: correct tqdm log display and fix the flickering issue [DET-6470] (#3542) | 1 | fix | null |
317,646 | 02.02.2022 13:27:07 | -3,600 | 6fcae4207e5c04196d2376ec2461d4a6c240206c | chore(migrate): backup config on migration | [
{
"change_type": "MODIFY",
"diff": "@@ -76,6 +76,7 @@ func (cfg *Config) exitWithError(err error) {\nfunc LoadConfig(env environment.Environment) *Config {\ncfg := loadConfig(env)\nif cfg.Version != configVersion {\n+ cfg.Backup()\ncfg.Migrate(env)\ncfg.Write()\n}\n@@ -171,8 +172,16 @@ func (cfg *Config) Ex... | Go | MIT License | jandedobbeleer/oh-my-posh | chore(migrate): backup config on migration | 1 | chore | migrate |
73,317 | 02.02.2022 13:29:04 | -3,600 | c7a3fe7c6fc3a7739c1fe034c6dbc871566d5670 | chore: remove dependabot-specific auto-approve
Let mergify do the work. | [
{
"change_type": "MODIFY",
"diff": "-# Approve PRs with \"auto-approve\". mergify or dependabot takes care of the actual merge.\n+# Approve PRs with \"auto-approve\". mergify takes care of the actual merge.\nname: auto-approve\non:\n@@ -18,13 +18,6 @@ jobs:\npull-requests: write\nruns-on: ubuntu-latest\nste... | TypeScript | Apache License 2.0 | aws/jsii | chore: remove dependabot-specific auto-approve
Let mergify do the work. | 1 | chore | null |
317,646 | 02.02.2022 13:40:58 | -3,600 | bfca35179601dd5976d37398433b2f75182fefb1 | chore: do not auto migrate on manual switch | [
{
"change_type": "MODIFY",
"diff": "@@ -75,7 +75,8 @@ func (cfg *Config) exitWithError(err error) {\n// LoadConfig returns the default configuration including possible user overrides\nfunc LoadConfig(env environment.Environment) *Config {\ncfg := loadConfig(env)\n- if cfg.Version != configVersion {\n+ // on... | Go | MIT License | jandedobbeleer/oh-my-posh | chore: do not auto migrate on manual switch | 1 | chore | null |
306,644 | 02.02.2022 13:44:33 | -19,080 | 29b03a4f1e6f0a46d8a46fb7c87a69878fed47fb | fix(docs): fix overflow to scroll in left nav | [
{
"change_type": "MODIFY",
"diff": "@@ -60,7 +60,7 @@ const LeftNav = (props) => {\n};\nreturn (\n- <div className='h-100 bg-secondary-lightest border-right'>\n+ <div className='h-100 bg-secondary-lightest border-right page-scroll'>\n{showMenuButtons && (\n<div className='d-flex pt-6 pl-6'>\n<Button\n",
... | TypeScript | MIT License | innovaccer/design-system | fix(docs): fix overflow to scroll in left nav | 1 | fix | docs |
317,646 | 02.02.2022 13:55:12 | -3,600 | 566240c0ed70f097767e3c9f225115278fec1783 | fix: do not escape emoji | [
{
"change_type": "MODIFY",
"diff": "@@ -194,7 +194,8 @@ func (cfg *Config) write(destination string) {\nfunc escapeGlyphs(s string) string {\nvar builder strings.Builder\nfor _, r := range s {\n- if r < 0x1000 {\n+ // exclude regular characters and emoji\n+ if r < 0x1000 || r > 0x10000 {\nbuilder.WriteRune(... | Go | MIT License | jandedobbeleer/oh-my-posh | fix: do not escape emoji | 1 | fix | null |
217,922 | 02.02.2022 14:13:50 | -3,600 | b0325e514570f99cea7bd98571022d8c03012f39 | fix(list): fixed progress persistence on offline lists | [
{
"change_type": "MODIFY",
"diff": "@@ -457,11 +457,18 @@ export class ListsEffects {\n}\nreturn of(action);\n}),\n- debounceBufferTime(2000),\n+ debounceBufferTime(3000),\nwithLatestFrom(this.selectedListClone$),\nfilter(([, list]) => list !== undefined)\n).pipe(\nswitchMap(([actions, list]: [SetItemDone[]... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(list): fixed progress persistence on offline lists | 1 | fix | list |
551,634 | 02.02.2022 14:14:51 | 0 | a32f691b0b7e3cec007d4047e12f03b475fd6160 | feat(ci): split ci test runs | [
{
"change_type": "DELETE",
"diff": "-#!/bin/bash\n-\n-################################################################################\n-# ___ _ ____ ____\n-# / _ \\ _ _ ___ ___| |_| _ \\| __ )\n-# | | | | | | |/ _ \\/ __| __| | | | _ \\\n-# | |_| | |_| | __/\\__ \\ |_| |_| | |_) |\n-# \\__\\_\\\\__,_|\\___... | Java | Apache License 2.0 | questdb/questdb | feat(ci): split ci test runs (#1835) | 1 | feat | ci |
217,922 | 02.02.2022 14:17:26 | -3,600 | 3837662194384b6357a0b5ce089d01d40754d8d2 | chore: Observable fix | [
{
"change_type": "MODIFY",
"diff": "@@ -468,6 +468,7 @@ export class ListsEffects {\nListController.updateAllStatuses(list, action.itemId);\n});\nthis.saveToLocalstorage(list, false);\n+ return of(null);\n} else {\nif (list.hasCommission) {\nthis.updateCommission(list);\n",
"new_path": "apps/client/src/... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: Observable fix | 1 | chore | null |
756,043 | 02.02.2022 14:17:49 | 28,800 | 6ec84e78b49dc3563cd2dbb72fe7741815b7fd10 | chore: prettierignore maintenance | [
{
"change_type": "MODIFY",
"diff": "+## Uses .gitignore syntax and should mostly match that file\n+## so that we don't format what never ends up in SCM.\n+\n# artifacts\nbuild\nbundles\n+bundle-*.js\ncompiled\ndist\nlcov-report\n@@ -18,5 +22,3 @@ public\n# copied from upstream\n/packages/xsnap/lib/object-in... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | chore: prettierignore maintenance | 1 | chore | null |
404,820 | 02.02.2022 14:18:52 | 10,800 | 83dc5080827f1d682bedde5fd8c578de2d02aeb5 | build: add lucaspeferreira preset | [
{
"change_type": "MODIFY",
"diff": "@@ -19,6 +19,7 @@ export { jxnblk } from './jxnblk'\nexport { kFund } from './k-fund'\nexport { kikobeats } from './kikobeats'\nexport { lighthouse } from './lighthouse'\n+export { lucaspeferreira } from './lucaspeferreira'\nexport { m1guelpf } from './m1guelpf'\nexport {... | JavaScript | MIT License | microlinkhq/cards | build: add lucaspeferreira preset | 1 | build | null |
76,611 | 02.02.2022 14:24:14 | -3,600 | 4899147765f53dce2c0ccff8b72efe99a77462fe | feat: update beginDialog & add onNlpActionResult hook | [
{
"change_type": "MODIFY",
"diff": "@@ -150,10 +150,17 @@ class Bot extends Clonable {\nreturn context[variableName];\n}\n+ beginDialog(session, context, dialog) {\n+ if (this.onBeginDialog) {\n+ this.onBeginDialog(dialog, context);\n+ }\n+ session.beginDialog(context, dialog);\n+ }\n+\nasync executeAction(... | JavaScript | MIT License | axa-group/nlp.js | feat: update beginDialog & add onNlpActionResult hook | 1 | feat | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.