diff --git a/CHANGELOG.md b/CHANGELOG.md index 7618c34bc..1badc393c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,29 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* **build:** Fix path keys. ([a6d9bb9](https://github.com/lowdefy/lowdefy/commit/a6d9bb9b376205d1a3ce1ffc5c133a2a8e44b5e1)) +* **build:** Handel rec array keys. ([ce429e7](https://github.com/lowdefy/lowdefy/commit/ce429e7fd67c307456b705b4bb23782854be8852)) +* **build:** Reduce spaces in build output. ([2e14c4f](https://github.com/lowdefy/lowdefy/commit/2e14c4f38ba8819aefddd1072c69910e6c0b6969)) +* **build:** reset id counter. ([a06d15d](https://github.com/lowdefy/lowdefy/commit/a06d15da753ed1026c891a8611df5534d80aae91)) +* **build:** Update menuLink in lowdefy schema to include urlQuery and input. ([3d1f6c5](https://github.com/lowdefy/lowdefy/commit/3d1f6c5981f635eeee84e4c7c606867517aa13b5)) +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) +* **deps:** Update dependency mongodb to v4.17.1 ([35abd12](https://github.com/lowdefy/lowdefy/commit/35abd12336d60ad316905cc19260061af7efc90e)) +* **docs:** Fix payload on request examples. ([5ce3335](https://github.com/lowdefy/lowdefy/commit/5ce3335469c01979011f55cffd4f76285ef13d1a)) +* **docs:** Update example requests to make use of payload. ([2917d07](https://github.com/lowdefy/lowdefy/commit/2917d07c423051125f723ca329691e5b5a1eafe8)) +* Fix engine tests. ([9a826e6](https://github.com/lowdefy/lowdefy/commit/9a826e6667ebcd780dc430addbff5ee65c10fbf6)) +* Fix KnexBuilder connection. ([9f4d823](https://github.com/lowdefy/lowdefy/commit/9f4d823a9c19c68a90bdb7229cf0f6ad5a1e2c8a)) +* Fix Stripe request. ([421a326](https://github.com/lowdefy/lowdefy/commit/421a3264fecdcfc98853491c5eda97aaa235361a)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/lerna.json b/lerna.json index 5ea35ecd0..c095ce4ca 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "packages": [ "src/packages/*", "src/packages/blocks/*", diff --git a/package.json b/package.json index eac24c399..0c4f6c039 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/lowdefy", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "private": true, "description": "Lowdefy monorepo", diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index c23326a0f..547db111d 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/api/package.json b/packages/api/package.json index 970cab19a..2078c8bb6 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/api", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -40,12 +40,12 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/ajv": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/node-utils": "4.0.0-rc.11", - "@lowdefy/nunjucks": "4.0.0-rc.11", - "@lowdefy/operators": "4.0.0-rc.11", - "@lowdefy/operators-js": "4.0.0-rc.11" + "@lowdefy/ajv": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/node-utils": "4.0.0-rc.12", + "@lowdefy/nunjucks": "4.0.0-rc.12", + "@lowdefy/operators": "4.0.0-rc.12", + "@lowdefy/operators-js": "4.0.0-rc.12" }, "devDependencies": { "@jest/globals": "28.1.3", diff --git a/packages/build/CHANGELOG.md b/packages/build/CHANGELOG.md index 59f455975..6e71ba9a5 100644 --- a/packages/build/CHANGELOG.md +++ b/packages/build/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* **build:** Fix path keys. ([a6d9bb9](https://github.com/lowdefy/lowdefy/commit/a6d9bb9b376205d1a3ce1ffc5c133a2a8e44b5e1)) +* **build:** Handel rec array keys. ([ce429e7](https://github.com/lowdefy/lowdefy/commit/ce429e7fd67c307456b705b4bb23782854be8852)) +* **build:** Reduce spaces in build output. ([2e14c4f](https://github.com/lowdefy/lowdefy/commit/2e14c4f38ba8819aefddd1072c69910e6c0b6969)) +* **build:** reset id counter. ([a06d15d](https://github.com/lowdefy/lowdefy/commit/a06d15da753ed1026c891a8611df5534d80aae91)) +* **build:** Update menuLink in lowdefy schema to include urlQuery and input. ([3d1f6c5](https://github.com/lowdefy/lowdefy/commit/3d1f6c5981f635eeee84e4c7c606867517aa13b5)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/build/package.json b/packages/build/package.json index 34c4b7f51..1e722ac35 100644 --- a/packages/build/package.json +++ b/packages/build/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/build", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -51,14 +51,14 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/ajv": "4.0.0-rc.11", - "@lowdefy/blocks-basic": "4.0.0-rc.11", - "@lowdefy/blocks-loaders": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/node-utils": "4.0.0-rc.11", - "@lowdefy/nunjucks": "4.0.0-rc.11", - "@lowdefy/operators": "4.0.0-rc.11", - "@lowdefy/operators-js": "4.0.0-rc.11", + "@lowdefy/ajv": "4.0.0-rc.12", + "@lowdefy/blocks-basic": "4.0.0-rc.12", + "@lowdefy/blocks-loaders": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/node-utils": "4.0.0-rc.12", + "@lowdefy/nunjucks": "4.0.0-rc.12", + "@lowdefy/operators": "4.0.0-rc.12", + "@lowdefy/operators-js": "4.0.0-rc.12", "ajv": "8.12.0", "json5": "2.2.3", "yaml": "2.3.2", @@ -66,35 +66,35 @@ }, "devDependencies": { "@jest/globals": "28.1.3", - "@lowdefy/actions-core": "4.0.0-rc.11", - "@lowdefy/actions-pdf-make": "4.0.0-rc.11", - "@lowdefy/blocks-aggrid": "4.0.0-rc.11", - "@lowdefy/blocks-algolia": "4.0.0-rc.11", - "@lowdefy/blocks-antd": "4.0.0-rc.11", - "@lowdefy/blocks-color-selectors": "4.0.0-rc.11", - "@lowdefy/blocks-echarts": "4.0.0-rc.11", - "@lowdefy/blocks-google-maps": "4.0.0-rc.11", - "@lowdefy/blocks-markdown": "4.0.0-rc.11", - "@lowdefy/blocks-qr": "4.0.0-rc.11", - "@lowdefy/connection-axios-http": "4.0.0-rc.11", - "@lowdefy/connection-elasticsearch": "4.0.0-rc.11", - "@lowdefy/connection-google-sheets": "4.0.0-rc.11", - "@lowdefy/connection-knex": "4.0.0-rc.11", - "@lowdefy/connection-mongodb": "4.0.0-rc.11", - "@lowdefy/connection-redis": "4.0.0-rc.11", - "@lowdefy/connection-sendgrid": "4.0.0-rc.11", - "@lowdefy/connection-stripe": "4.0.0-rc.11", - "@lowdefy/operators-change-case": "4.0.0-rc.11", - "@lowdefy/operators-diff": "4.0.0-rc.11", - "@lowdefy/operators-moment": "4.0.0-rc.11", - "@lowdefy/operators-mql": "4.0.0-rc.11", - "@lowdefy/operators-nunjucks": "4.0.0-rc.11", - "@lowdefy/operators-uuid": "4.0.0-rc.11", - "@lowdefy/operators-yaml": "4.0.0-rc.11", - "@lowdefy/plugin-auth0": "4.0.0-rc.11", - "@lowdefy/plugin-aws": "4.0.0-rc.11", - "@lowdefy/plugin-csv": "4.0.0-rc.11", - "@lowdefy/plugin-next-auth": "4.0.0-rc.11", + "@lowdefy/actions-core": "4.0.0-rc.12", + "@lowdefy/actions-pdf-make": "4.0.0-rc.12", + "@lowdefy/blocks-aggrid": "4.0.0-rc.12", + "@lowdefy/blocks-algolia": "4.0.0-rc.12", + "@lowdefy/blocks-antd": "4.0.0-rc.12", + "@lowdefy/blocks-color-selectors": "4.0.0-rc.12", + "@lowdefy/blocks-echarts": "4.0.0-rc.12", + "@lowdefy/blocks-google-maps": "4.0.0-rc.12", + "@lowdefy/blocks-markdown": "4.0.0-rc.12", + "@lowdefy/blocks-qr": "4.0.0-rc.12", + "@lowdefy/connection-axios-http": "4.0.0-rc.12", + "@lowdefy/connection-elasticsearch": "4.0.0-rc.12", + "@lowdefy/connection-google-sheets": "4.0.0-rc.12", + "@lowdefy/connection-knex": "4.0.0-rc.12", + "@lowdefy/connection-mongodb": "4.0.0-rc.12", + "@lowdefy/connection-redis": "4.0.0-rc.12", + "@lowdefy/connection-sendgrid": "4.0.0-rc.12", + "@lowdefy/connection-stripe": "4.0.0-rc.12", + "@lowdefy/operators-change-case": "4.0.0-rc.12", + "@lowdefy/operators-diff": "4.0.0-rc.12", + "@lowdefy/operators-moment": "4.0.0-rc.12", + "@lowdefy/operators-mql": "4.0.0-rc.12", + "@lowdefy/operators-nunjucks": "4.0.0-rc.12", + "@lowdefy/operators-uuid": "4.0.0-rc.12", + "@lowdefy/operators-yaml": "4.0.0-rc.12", + "@lowdefy/plugin-auth0": "4.0.0-rc.12", + "@lowdefy/plugin-aws": "4.0.0-rc.12", + "@lowdefy/plugin-csv": "4.0.0-rc.12", + "@lowdefy/plugin-next-auth": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 78b578b8d..46a6cfbc0 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/cli/package.json b/packages/cli/package.json index 2dab3a777..4b623aa1d 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "lowdefy", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Lowdefy CLI", "homepage": "https://lowdefy.com", @@ -39,8 +39,8 @@ "test": "FORCE_COLOR=3 node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/node-utils": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/node-utils": "4.0.0-rc.12", "axios": "1.5.1", "commander": "11.0.0", "decompress": "4.2.1", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 85c3ce8d6..2186dc1fe 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/client/package.json b/packages/client/package.json index 9cdf9f857..d23355f88 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/client", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Lowdefy Client", "homepage": "https://lowdefy.com", @@ -41,10 +41,10 @@ }, "dependencies": { "@ant-design/icons": "4.8.0", - "@lowdefy/block-utils": "4.0.0-rc.11", - "@lowdefy/engine": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/layout": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", + "@lowdefy/engine": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/layout": "4.0.0-rc.12", "classnames": "2.3.2", "react": "18.2.0", "react-dom": "18.2.0" @@ -52,7 +52,7 @@ "devDependencies": { "@emotion/jest": "11.10.5", "@jest/globals": "28.1.3", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/docs/CHANGELOG.md b/packages/docs/CHANGELOG.md index 3ff0f2ad9..ef22f862b 100644 --- a/packages/docs/CHANGELOG.md +++ b/packages/docs/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* **docs:** Fix payload on request examples. ([5ce3335](https://github.com/lowdefy/lowdefy/commit/5ce3335469c01979011f55cffd4f76285ef13d1a)) +* **docs:** Update example requests to make use of payload. ([2917d07](https://github.com/lowdefy/lowdefy/commit/2917d07c423051125f723ca329691e5b5a1eafe8)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/docs/package.json b/packages/docs/package.json index 136b66ecd..1296e4d8f 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/docs", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -42,7 +42,7 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11" + "@lowdefy/helpers": "4.0.0-rc.12" }, "devDependencies": { "@jest/globals": "28.1.3", diff --git a/packages/engine/CHANGELOG.md b/packages/engine/CHANGELOG.md index 96cd61205..8130a1a5d 100644 --- a/packages/engine/CHANGELOG.md +++ b/packages/engine/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) +* Fix engine tests. ([9a826e6](https://github.com/lowdefy/lowdefy/commit/9a826e6667ebcd780dc430addbff5ee65c10fbf6)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/engine/package.json b/packages/engine/package.json index 0f3e9d333..daee774d5 100644 --- a/packages/engine/package.json +++ b/packages/engine/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/engine", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -36,15 +36,15 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/operators": "4.0.0-rc.11" + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/operators": "4.0.0-rc.12" }, "devDependencies": { "@jest/globals": "28.1.3", - "@lowdefy/actions-core": "4.0.0-rc.11", - "@lowdefy/build": "4.0.0-rc.11", - "@lowdefy/operators-js": "4.0.0-rc.11", - "@lowdefy/operators-mql": "4.0.0-rc.11", + "@lowdefy/actions-core": "4.0.0-rc.12", + "@lowdefy/build": "4.0.0-rc.12", + "@lowdefy/operators-js": "4.0.0-rc.12", + "@lowdefy/operators-mql": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/layout/CHANGELOG.md b/packages/layout/CHANGELOG.md index 9aed65155..fb01804bd 100644 --- a/packages/layout/CHANGELOG.md +++ b/packages/layout/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/layout/package.json b/packages/layout/package.json index 9e2184bc0..9692dfd28 100644 --- a/packages/layout/package.json +++ b/packages/layout/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/layout", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -41,8 +41,8 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/block-utils": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", "antd": "4.24.14", "react": "18.2.0", "react-dom": "18.2.0" @@ -50,8 +50,8 @@ "devDependencies": { "@emotion/jest": "11.10.5", "@jest/globals": "28.1.3", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/operators/CHANGELOG.md b/packages/operators/CHANGELOG.md index d5c9ac415..f42c859ca 100644 --- a/packages/operators/CHANGELOG.md +++ b/packages/operators/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/operators/package.json b/packages/operators/package.json index 66e3e694e..7eade61a7 100644 --- a/packages/operators/package.json +++ b/packages/operators/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/operators", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -40,7 +40,7 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testTimeout=10000" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11" + "@lowdefy/helpers": "4.0.0-rc.12" }, "devDependencies": { "@jest/globals": "28.1.3", diff --git a/packages/plugins/actions/actions-core/CHANGELOG.md b/packages/plugins/actions/actions-core/CHANGELOG.md index 0b947f4c3..7dc524832 100644 --- a/packages/plugins/actions/actions-core/CHANGELOG.md +++ b/packages/plugins/actions/actions-core/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/actions/actions-core/package.json b/packages/plugins/actions/actions-core/package.json index 2a653143a..15b2f633e 100644 --- a/packages/plugins/actions/actions-core/package.json +++ b/packages/plugins/actions/actions-core/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/actions-core", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -49,7 +49,7 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11" + "@lowdefy/helpers": "4.0.0-rc.12" }, "devDependencies": { "@jest/globals": "28.1.3", diff --git a/packages/plugins/actions/actions-pdf-make/CHANGELOG.md b/packages/plugins/actions/actions-pdf-make/CHANGELOG.md index 94125eaed..6b07ea274 100644 --- a/packages/plugins/actions/actions-pdf-make/CHANGELOG.md +++ b/packages/plugins/actions/actions-pdf-make/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/actions-pdf-make + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/actions/actions-pdf-make/package.json b/packages/plugins/actions/actions-pdf-make/package.json index 45495599d..93dbe4376 100644 --- a/packages/plugins/actions/actions-pdf-make/package.json +++ b/packages/plugins/actions/actions-pdf-make/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/actions-pdf-make", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", diff --git a/packages/plugins/blocks/blocks-aggrid/CHANGELOG.md b/packages/plugins/blocks/blocks-aggrid/CHANGELOG.md index d336253c4..e8c4249fb 100644 --- a/packages/plugins/blocks/blocks-aggrid/CHANGELOG.md +++ b/packages/plugins/blocks/blocks-aggrid/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/blocks/blocks-aggrid/package.json b/packages/plugins/blocks/blocks-aggrid/package.json index f9a88f2a2..1cb51507a 100644 --- a/packages/plugins/blocks/blocks-aggrid/package.json +++ b/packages/plugins/blocks/blocks-aggrid/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/blocks-aggrid", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "AgGrid Blocks for Lowdefy.", "homepage": "https://lowdefy.com", @@ -54,15 +54,15 @@ "@ag-grid-community/csv-export": "29.3.5", "@ag-grid-community/react": "29.3.5", "@ag-grid-community/styles": "29.3.5", - "@lowdefy/block-utils": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", "react": "18.2.0", "react-dom": "18.2.0" }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/blocks/blocks-algolia/CHANGELOG.md b/packages/plugins/blocks/blocks-algolia/CHANGELOG.md index 3f299adae..50988cc2a 100644 --- a/packages/plugins/blocks/blocks-algolia/CHANGELOG.md +++ b/packages/plugins/blocks/blocks-algolia/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/blocks/blocks-algolia/package.json b/packages/plugins/blocks/blocks-algolia/package.json index 6dfa19c0e..eaf3c632f 100644 --- a/packages/plugins/blocks/blocks-algolia/package.json +++ b/packages/plugins/blocks/blocks-algolia/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/blocks-algolia", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Algolia Lowdefy blocks.", "homepage": "https://lowdefy.com", @@ -46,14 +46,14 @@ }, "dependencies": { "@docsearch/react": "3.5.2", - "@lowdefy/block-utils": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", "react": "18.2.0", "react-dom": "18.2.0" }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/blocks/blocks-antd/CHANGELOG.md b/packages/plugins/blocks/blocks-antd/CHANGELOG.md index d7379840e..6f8719031 100644 --- a/packages/plugins/blocks/blocks-antd/CHANGELOG.md +++ b/packages/plugins/blocks/blocks-antd/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/blocks/blocks-antd/package.json b/packages/plugins/blocks/blocks-antd/package.json index cbe2532b9..c260d1301 100644 --- a/packages/plugins/blocks/blocks-antd/package.json +++ b/packages/plugins/blocks/blocks-antd/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/blocks-antd", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Lowdefy Ant Design Blocks", "homepage": "https://lowdefy.com", @@ -50,8 +50,8 @@ }, "dependencies": { "@ant-design/icons": "4.8.0", - "@lowdefy/block-utils": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", "antd": "4.24.14", "classnames": "2.3.2", "moment": "2.29.4", @@ -62,9 +62,9 @@ }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", - "@lowdefy/node-utils": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", + "@lowdefy/node-utils": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/blocks/blocks-basic/CHANGELOG.md b/packages/plugins/blocks/blocks-basic/CHANGELOG.md index 96d4e5ffe..7dd5cd72f 100644 --- a/packages/plugins/blocks/blocks-basic/CHANGELOG.md +++ b/packages/plugins/blocks/blocks-basic/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/blocks/blocks-basic/package.json b/packages/plugins/blocks/blocks-basic/package.json index bedfc029c..3d335d818 100644 --- a/packages/plugins/blocks/blocks-basic/package.json +++ b/packages/plugins/blocks/blocks-basic/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/blocks-basic", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Basic html Lowdefy blocks.", "homepage": "https://lowdefy.com", @@ -47,16 +47,16 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/block-utils": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", "dompurify": "3.0.6", "react": "18.2.0", "react-dom": "18.2.0" }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/blocks/blocks-color-selectors/CHANGELOG.md b/packages/plugins/blocks/blocks-color-selectors/CHANGELOG.md index f29f38de6..abcd242bd 100644 --- a/packages/plugins/blocks/blocks-color-selectors/CHANGELOG.md +++ b/packages/plugins/blocks/blocks-color-selectors/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/blocks/blocks-color-selectors/package.json b/packages/plugins/blocks/blocks-color-selectors/package.json index b6b401856..a30af74b4 100644 --- a/packages/plugins/blocks/blocks-color-selectors/package.json +++ b/packages/plugins/blocks/blocks-color-selectors/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/blocks-color-selectors", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "A Lowdefy color selector blocks based on react-color.", "homepage": "https://lowdefy.com", @@ -49,8 +49,8 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/block-utils": "4.0.0-rc.11", - "@lowdefy/blocks-antd": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", + "@lowdefy/blocks-antd": "4.0.0-rc.12", "classnames": "2.3.2", "react": "18.2.0", "react-colorful": "5.6.1", @@ -58,8 +58,8 @@ }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/blocks/blocks-echarts/CHANGELOG.md b/packages/plugins/blocks/blocks-echarts/CHANGELOG.md index e934add47..bbc327584 100644 --- a/packages/plugins/blocks/blocks-echarts/CHANGELOG.md +++ b/packages/plugins/blocks/blocks-echarts/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/blocks/blocks-echarts/package.json b/packages/plugins/blocks/blocks-echarts/package.json index 04f39da5e..af3866577 100644 --- a/packages/plugins/blocks/blocks-echarts/package.json +++ b/packages/plugins/blocks/blocks-echarts/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/blocks-echarts", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "ECharts Blocks for Lowdefy.", "homepage": "https://lowdefy.com", @@ -49,7 +49,7 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/block-utils": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", "echarts": "5.4.3", "echarts-for-react": "3.0.2", "react": "18.2.0", @@ -57,8 +57,8 @@ }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/blocks/blocks-google-maps/CHANGELOG.md b/packages/plugins/blocks/blocks-google-maps/CHANGELOG.md index ba1c1dda1..3a8eac13b 100644 --- a/packages/plugins/blocks/blocks-google-maps/CHANGELOG.md +++ b/packages/plugins/blocks/blocks-google-maps/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/blocks/blocks-google-maps/package.json b/packages/plugins/blocks/blocks-google-maps/package.json index 8d55cae63..e94fd41b4 100644 --- a/packages/plugins/blocks/blocks-google-maps/package.json +++ b/packages/plugins/blocks/blocks-google-maps/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/blocks-google-maps", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Google Maps Blocks for Lowdefy.", "homepage": "https://lowdefy.com", @@ -41,15 +41,15 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/block-utils": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", "@react-google-maps/api": "2.19.2", "react": "18.2.0", "react-dom": "18.2.0" }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/blocks/blocks-loaders/CHANGELOG.md b/packages/plugins/blocks/blocks-loaders/CHANGELOG.md index 1a191084c..ceb4f18e7 100644 --- a/packages/plugins/blocks/blocks-loaders/CHANGELOG.md +++ b/packages/plugins/blocks/blocks-loaders/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/blocks/blocks-loaders/package.json b/packages/plugins/blocks/blocks-loaders/package.json index e1c50c7a7..2207ec8d3 100644 --- a/packages/plugins/blocks/blocks-loaders/package.json +++ b/packages/plugins/blocks/blocks-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/blocks-loaders", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Lowdefy loader blocks.", "homepage": "https://lowdefy.com", @@ -47,15 +47,15 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/block-utils": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", "react": "18.2.0", "react-dom": "18.2.0" }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/blocks/blocks-markdown/CHANGELOG.md b/packages/plugins/blocks/blocks-markdown/CHANGELOG.md index 4a7b62b4f..523e9318a 100644 --- a/packages/plugins/blocks/blocks-markdown/CHANGELOG.md +++ b/packages/plugins/blocks/blocks-markdown/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/blocks/blocks-markdown/package.json b/packages/plugins/blocks/blocks-markdown/package.json index ddb0e0306..d4899a250 100644 --- a/packages/plugins/blocks/blocks-markdown/package.json +++ b/packages/plugins/blocks/blocks-markdown/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/blocks-markdown", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Lowdefy markdown blocks.", "homepage": "https://lowdefy.com", @@ -45,7 +45,7 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/block-utils": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", "dompurify": "3.0.6", "react": "18.2.0", "react-dom": "18.2.0", @@ -56,8 +56,8 @@ }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/blocks/blocks-qr/CHANGELOG.md b/packages/plugins/blocks/blocks-qr/CHANGELOG.md index 137b9f103..9a0a15524 100644 --- a/packages/plugins/blocks/blocks-qr/CHANGELOG.md +++ b/packages/plugins/blocks/blocks-qr/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/blocks/blocks-qr/package.json b/packages/plugins/blocks/blocks-qr/package.json index f38864395..93a7cb795 100644 --- a/packages/plugins/blocks/blocks-qr/package.json +++ b/packages/plugins/blocks/blocks-qr/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/blocks-qr", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Lowdefy qr blocks.", "homepage": "https://lowdefy.com", @@ -48,15 +48,15 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/block-utils": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", "html5-qrcode": "2.3.8", "react": "18.2.0", "react-dom": "18.2.0" }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/connections/connection-axios-http/CHANGELOG.md b/packages/plugins/connections/connection-axios-http/CHANGELOG.md index 06412f122..58b609d2b 100644 --- a/packages/plugins/connections/connection-axios-http/CHANGELOG.md +++ b/packages/plugins/connections/connection-axios-http/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/connection-axios-http + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/connections/connection-axios-http/package.json b/packages/plugins/connections/connection-axios-http/package.json index ecc9ce4b0..c5d468ffe 100644 --- a/packages/plugins/connections/connection-axios-http/package.json +++ b/packages/plugins/connections/connection-axios-http/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/connection-axios-http", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -41,11 +41,11 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", "axios": "1.5.1" }, "devDependencies": { - "@lowdefy/ajv": "4.0.0-rc.11", + "@lowdefy/ajv": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/connections/connection-elasticsearch/CHANGELOG.md b/packages/plugins/connections/connection-elasticsearch/CHANGELOG.md index a7f5c81f1..00df86e6f 100644 --- a/packages/plugins/connections/connection-elasticsearch/CHANGELOG.md +++ b/packages/plugins/connections/connection-elasticsearch/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/connection-elasticsearch + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/connections/connection-elasticsearch/package.json b/packages/plugins/connections/connection-elasticsearch/package.json index 3a3da3dda..38fbdfad6 100644 --- a/packages/plugins/connections/connection-elasticsearch/package.json +++ b/packages/plugins/connections/connection-elasticsearch/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/connection-elasticsearch", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -42,11 +42,11 @@ }, "dependencies": { "@elastic/elasticsearch": "7.17.12", - "@lowdefy/helpers": "4.0.0-rc.11" + "@lowdefy/helpers": "4.0.0-rc.12" }, "devDependencies": { "@jest/globals": "28.1.3", - "@lowdefy/ajv": "4.0.0-rc.11", + "@lowdefy/ajv": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/connections/connection-google-sheets/CHANGELOG.md b/packages/plugins/connections/connection-google-sheets/CHANGELOG.md index 38a37bacb..249e8aa22 100644 --- a/packages/plugins/connections/connection-google-sheets/CHANGELOG.md +++ b/packages/plugins/connections/connection-google-sheets/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/connections/connection-google-sheets/package.json b/packages/plugins/connections/connection-google-sheets/package.json index f214a3cce..960ef70ce 100644 --- a/packages/plugins/connections/connection-google-sheets/package.json +++ b/packages/plugins/connections/connection-google-sheets/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/connection-google-sheets", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -41,14 +41,14 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", "google-spreadsheet": "3.3.0", "mingo": "6.4.6", "moment": "2.29.4" }, "devDependencies": { "@jest/globals": "28.1.3", - "@lowdefy/ajv": "4.0.0-rc.11", + "@lowdefy/ajv": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/connections/connection-knex/CHANGELOG.md b/packages/plugins/connections/connection-knex/CHANGELOG.md index 6dc1d3c80..b6e4765a6 100644 --- a/packages/plugins/connections/connection-knex/CHANGELOG.md +++ b/packages/plugins/connections/connection-knex/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/connection-knex + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/connections/connection-knex/package.json b/packages/plugins/connections/connection-knex/package.json index e02394ca7..41f0bf28c 100644 --- a/packages/plugins/connections/connection-knex/package.json +++ b/packages/plugins/connections/connection-knex/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/connection-knex", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -41,7 +41,7 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", "knex": "2.5.1", "mssql": "10.0.1", "mysql": "2.18.1", @@ -50,7 +50,7 @@ }, "devDependencies": { "@jest/globals": "28.1.3", - "@lowdefy/ajv": "4.0.0-rc.11", + "@lowdefy/ajv": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/connections/connection-mongodb/CHANGELOG.md b/packages/plugins/connections/connection-mongodb/CHANGELOG.md index 3e8d351f8..2656e6e3c 100644 --- a/packages/plugins/connections/connection-mongodb/CHANGELOG.md +++ b/packages/plugins/connections/connection-mongodb/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) +* **deps:** Update dependency mongodb to v4.17.1 ([35abd12](https://github.com/lowdefy/lowdefy/commit/35abd12336d60ad316905cc19260061af7efc90e)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/connections/connection-mongodb/package.json b/packages/plugins/connections/connection-mongodb/package.json index 57de7b1c2..5949ddc1a 100644 --- a/packages/plugins/connections/connection-mongodb/package.json +++ b/packages/plugins/connections/connection-mongodb/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/connection-mongodb", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -42,13 +42,13 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", "@next-auth/mongodb-adapter": "1.1.3", "mongodb": "4.17.1", "saslprep": "1.0.3" }, "devDependencies": { - "@lowdefy/ajv": "4.0.0-rc.11", + "@lowdefy/ajv": "4.0.0-rc.12", "@shelf/jest-mongodb": "4.1.7", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", diff --git a/packages/plugins/connections/connection-redis/CHANGELOG.md b/packages/plugins/connections/connection-redis/CHANGELOG.md index c25dbeab6..1a1246b79 100644 --- a/packages/plugins/connections/connection-redis/CHANGELOG.md +++ b/packages/plugins/connections/connection-redis/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/connections/connection-redis/package.json b/packages/plugins/connections/connection-redis/package.json index fb0a51511..aa9d196a9 100644 --- a/packages/plugins/connections/connection-redis/package.json +++ b/packages/plugins/connections/connection-redis/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/connection-redis", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -45,12 +45,12 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", "redis": "4.6.10" }, "devDependencies": { "@jest/globals": "28.1.3", - "@lowdefy/ajv": "4.0.0-rc.11", + "@lowdefy/ajv": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/connections/connection-sendgrid/CHANGELOG.md b/packages/plugins/connections/connection-sendgrid/CHANGELOG.md index 2a29c109a..ee2296002 100644 --- a/packages/plugins/connections/connection-sendgrid/CHANGELOG.md +++ b/packages/plugins/connections/connection-sendgrid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/connection-sendgrid + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/connections/connection-sendgrid/package.json b/packages/plugins/connections/connection-sendgrid/package.json index 068892e14..71d70c127 100644 --- a/packages/plugins/connections/connection-sendgrid/package.json +++ b/packages/plugins/connections/connection-sendgrid/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/connection-sendgrid", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -41,12 +41,12 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", "@sendgrid/mail": "7.7.0" }, "devDependencies": { "@jest/globals": "28.1.3", - "@lowdefy/ajv": "4.0.0-rc.11", + "@lowdefy/ajv": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/connections/connection-stripe/CHANGELOG.md b/packages/plugins/connections/connection-stripe/CHANGELOG.md index 481b34c9e..8baf93fd0 100644 --- a/packages/plugins/connections/connection-stripe/CHANGELOG.md +++ b/packages/plugins/connections/connection-stripe/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/connection-stripe + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/connections/connection-stripe/package.json b/packages/plugins/connections/connection-stripe/package.json index ff8dce6a9..244c941ca 100644 --- a/packages/plugins/connections/connection-stripe/package.json +++ b/packages/plugins/connections/connection-stripe/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/connection-stripe", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -41,12 +41,12 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", "stripe": "13.6.0" }, "devDependencies": { "@jest/globals": "28.1.3", - "@lowdefy/ajv": "4.0.0-rc.11", + "@lowdefy/ajv": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/operators/operators-change-case/CHANGELOG.md b/packages/plugins/operators/operators-change-case/CHANGELOG.md index f31cf32b7..ea86147a6 100644 --- a/packages/plugins/operators/operators-change-case/CHANGELOG.md +++ b/packages/plugins/operators/operators-change-case/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/operators/operators-change-case/package.json b/packages/plugins/operators/operators-change-case/package.json index 2fbd940b4..e253c98da 100644 --- a/packages/plugins/operators/operators-change-case/package.json +++ b/packages/plugins/operators/operators-change-case/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/operators-change-case", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -42,8 +42,8 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/operators": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/operators": "4.0.0-rc.12", "change-case": "4.1.2" }, "devDependencies": { diff --git a/packages/plugins/operators/operators-diff/CHANGELOG.md b/packages/plugins/operators/operators-diff/CHANGELOG.md index bd6d9c633..31fabdd02 100644 --- a/packages/plugins/operators/operators-diff/CHANGELOG.md +++ b/packages/plugins/operators/operators-diff/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/operators-diff + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/operators/operators-diff/package.json b/packages/plugins/operators/operators-diff/package.json index 1cea3ad0c..697c8689d 100644 --- a/packages/plugins/operators/operators-diff/package.json +++ b/packages/plugins/operators/operators-diff/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/operators-diff", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -42,8 +42,8 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/operators": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/operators": "4.0.0-rc.12", "deep-diff": "1.0.2" }, "devDependencies": { diff --git a/packages/plugins/operators/operators-js/CHANGELOG.md b/packages/plugins/operators/operators-js/CHANGELOG.md index a4e5e1fc4..6f06f73e9 100644 --- a/packages/plugins/operators/operators-js/CHANGELOG.md +++ b/packages/plugins/operators/operators-js/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/operators/operators-js/package.json b/packages/plugins/operators/operators-js/package.json index 67a0855f7..cfb90bf1e 100644 --- a/packages/plugins/operators/operators-js/package.json +++ b/packages/plugins/operators/operators-js/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/operators-js", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -48,8 +48,8 @@ "test": "TZ=UTC node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/operators": "4.0.0-rc.11" + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/operators": "4.0.0-rc.12" }, "devDependencies": { "@jest/globals": "28.1.3", diff --git a/packages/plugins/operators/operators-moment/CHANGELOG.md b/packages/plugins/operators/operators-moment/CHANGELOG.md index 465dcfb93..07a2eb22b 100644 --- a/packages/plugins/operators/operators-moment/CHANGELOG.md +++ b/packages/plugins/operators/operators-moment/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/operators-moment + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/operators/operators-moment/package.json b/packages/plugins/operators/operators-moment/package.json index da51b0e31..e31b543c4 100644 --- a/packages/plugins/operators/operators-moment/package.json +++ b/packages/plugins/operators/operators-moment/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/operators-moment", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -46,7 +46,7 @@ "test": "TZ=UTC node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/operators": "4.0.0-rc.11", + "@lowdefy/operators": "4.0.0-rc.12", "moment": "2.29.4" }, "devDependencies": { diff --git a/packages/plugins/operators/operators-mql/CHANGELOG.md b/packages/plugins/operators/operators-mql/CHANGELOG.md index 0ef7709c8..e817624e7 100644 --- a/packages/plugins/operators/operators-mql/CHANGELOG.md +++ b/packages/plugins/operators/operators-mql/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/operators/operators-mql/package.json b/packages/plugins/operators/operators-mql/package.json index 0a1f0fa35..d54b74cec 100644 --- a/packages/plugins/operators/operators-mql/package.json +++ b/packages/plugins/operators/operators-mql/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/operators-mql", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -42,8 +42,8 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/operators": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/operators": "4.0.0-rc.12", "mingo": "6.4.6" }, "devDependencies": { diff --git a/packages/plugins/operators/operators-nunjucks/CHANGELOG.md b/packages/plugins/operators/operators-nunjucks/CHANGELOG.md index 7ec59c966..934868cae 100644 --- a/packages/plugins/operators/operators-nunjucks/CHANGELOG.md +++ b/packages/plugins/operators/operators-nunjucks/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/operators/operators-nunjucks/package.json b/packages/plugins/operators/operators-nunjucks/package.json index f3d1804ea..d5e0980cb 100644 --- a/packages/plugins/operators/operators-nunjucks/package.json +++ b/packages/plugins/operators/operators-nunjucks/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/operators-nunjucks", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -42,9 +42,9 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/nunjucks": "4.0.0-rc.11", - "@lowdefy/operators": "4.0.0-rc.11" + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/nunjucks": "4.0.0-rc.12", + "@lowdefy/operators": "4.0.0-rc.12" }, "devDependencies": { "@swc/cli": "0.1.62", diff --git a/packages/plugins/operators/operators-uuid/CHANGELOG.md b/packages/plugins/operators/operators-uuid/CHANGELOG.md index 77fb7e9ce..507a1e1a9 100644 --- a/packages/plugins/operators/operators-uuid/CHANGELOG.md +++ b/packages/plugins/operators/operators-uuid/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/operators/operators-uuid/package.json b/packages/plugins/operators/operators-uuid/package.json index 20e465b28..856a23b33 100644 --- a/packages/plugins/operators/operators-uuid/package.json +++ b/packages/plugins/operators/operators-uuid/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/operators-uuid", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -42,8 +42,8 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/operators": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/operators": "4.0.0-rc.12", "uuid": "9.0.1" }, "devDependencies": { diff --git a/packages/plugins/operators/operators-yaml/CHANGELOG.md b/packages/plugins/operators/operators-yaml/CHANGELOG.md index fdfc4d951..565b105b6 100644 --- a/packages/plugins/operators/operators-yaml/CHANGELOG.md +++ b/packages/plugins/operators/operators-yaml/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/operators/operators-yaml/package.json b/packages/plugins/operators/operators-yaml/package.json index 7fac4c9b9..ec476056b 100644 --- a/packages/plugins/operators/operators-yaml/package.json +++ b/packages/plugins/operators/operators-yaml/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/operators-yaml", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -42,8 +42,8 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/operators": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/operators": "4.0.0-rc.12", "yaml": "2.3.2" }, "devDependencies": { diff --git a/packages/plugins/plugins/plugin-auth0/CHANGELOG.md b/packages/plugins/plugins/plugin-auth0/CHANGELOG.md index b96b6e003..7e7fbe83a 100644 --- a/packages/plugins/plugins/plugin-auth0/CHANGELOG.md +++ b/packages/plugins/plugins/plugin-auth0/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/plugin-auth0 + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/plugins/plugin-auth0/package.json b/packages/plugins/plugins/plugin-auth0/package.json index 7aedd9a3b..f5a2e0180 100644 --- a/packages/plugins/plugins/plugin-auth0/package.json +++ b/packages/plugins/plugins/plugin-auth0/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/plugin-auth0", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", diff --git a/packages/plugins/plugins/plugin-aws/CHANGELOG.md b/packages/plugins/plugins/plugin-aws/CHANGELOG.md index 22efcfd88..012bb46d8 100644 --- a/packages/plugins/plugins/plugin-aws/CHANGELOG.md +++ b/packages/plugins/plugins/plugin-aws/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/plugins/plugin-aws/package.json b/packages/plugins/plugins/plugin-aws/package.json index 9cc3eff97..38fbc4d30 100644 --- a/packages/plugins/plugins/plugin-aws/package.json +++ b/packages/plugins/plugins/plugin-aws/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/plugin-aws", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -45,9 +45,9 @@ "copyfiles": "copyfiles -u 1 \"./src/**/*\" dist -e \"./src/**/*.js\" -e \"./src/**/*.yaml\" -e \"./src/**/*.snap\"" }, "dependencies": { - "@lowdefy/block-utils": "4.0.0-rc.11", - "@lowdefy/blocks-antd": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", + "@lowdefy/blocks-antd": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", "antd": "4.24.14", "aws-sdk": "2.1459.0", "react": "18.2.0", @@ -55,9 +55,9 @@ }, "devDependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/ajv": "4.0.0-rc.11", - "@lowdefy/block-dev": "4.0.0-rc.11", - "@lowdefy/jest-yaml-transform": "4.0.0-rc.11", + "@lowdefy/ajv": "4.0.0-rc.12", + "@lowdefy/block-dev": "4.0.0-rc.12", + "@lowdefy/jest-yaml-transform": "4.0.0-rc.12", "@swc/cli": "0.1.62", "@swc/core": "1.3.92", "@swc/jest": "0.2.29", diff --git a/packages/plugins/plugins/plugin-csv/CHANGELOG.md b/packages/plugins/plugins/plugin-csv/CHANGELOG.md index ee83cef43..6d6bbbd1a 100644 --- a/packages/plugins/plugins/plugin-csv/CHANGELOG.md +++ b/packages/plugins/plugins/plugin-csv/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/plugin-csv + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/plugins/plugin-csv/package.json b/packages/plugins/plugins/plugin-csv/package.json index f4e5165a3..6a7383164 100644 --- a/packages/plugins/plugins/plugin-csv/package.json +++ b/packages/plugins/plugins/plugin-csv/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/plugin-csv", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", diff --git a/packages/plugins/plugins/plugin-next-auth/CHANGELOG.md b/packages/plugins/plugins/plugin-next-auth/CHANGELOG.md index 0d970b426..c87fe25ef 100644 --- a/packages/plugins/plugins/plugin-next-auth/CHANGELOG.md +++ b/packages/plugins/plugins/plugin-next-auth/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/plugin-next-auth + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/plugins/plugins/plugin-next-auth/package.json b/packages/plugins/plugins/plugin-next-auth/package.json index 5045c495d..eb373c9ed 100644 --- a/packages/plugins/plugins/plugin-next-auth/package.json +++ b/packages/plugins/plugins/plugin-next-auth/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/plugin-next-auth", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", diff --git a/packages/server-dev/CHANGELOG.md b/packages/server-dev/CHANGELOG.md index fd92e83db..819d06e5a 100644 --- a/packages/server-dev/CHANGELOG.md +++ b/packages/server-dev/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/server-dev + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/server-dev/package.json b/packages/server-dev/package.json index 5e5fc38ce..1f3de2fd8 100644 --- a/packages/server-dev/package.json +++ b/packages/server-dev/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/server-dev", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -42,30 +42,30 @@ "next": "next" }, "dependencies": { - "@lowdefy/actions-core": "4.0.0-rc.11", - "@lowdefy/api": "4.0.0-rc.11", - "@lowdefy/blocks-antd": "4.0.0-rc.11", - "@lowdefy/blocks-basic": "4.0.0-rc.11", - "@lowdefy/blocks-color-selectors": "4.0.0-rc.11", - "@lowdefy/blocks-echarts": "4.0.0-rc.11", - "@lowdefy/blocks-loaders": "4.0.0-rc.11", - "@lowdefy/blocks-markdown": "4.0.0-rc.11", - "@lowdefy/blocks-qr": "4.0.0-rc.11", - "@lowdefy/build": "4.0.0-rc.11", - "@lowdefy/client": "4.0.0-rc.11", - "@lowdefy/connection-axios-http": "4.0.0-rc.11", - "@lowdefy/engine": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/layout": "4.0.0-rc.11", - "@lowdefy/node-utils": "4.0.0-rc.11", - "@lowdefy/operators-change-case": "4.0.0-rc.11", - "@lowdefy/operators-diff": "4.0.0-rc.11", - "@lowdefy/operators-js": "4.0.0-rc.11", - "@lowdefy/operators-mql": "4.0.0-rc.11", - "@lowdefy/operators-nunjucks": "4.0.0-rc.11", - "@lowdefy/operators-uuid": "4.0.0-rc.11", - "@lowdefy/operators-yaml": "4.0.0-rc.11", - "@lowdefy/plugin-next-auth": "4.0.0-rc.11", + "@lowdefy/actions-core": "4.0.0-rc.12", + "@lowdefy/api": "4.0.0-rc.12", + "@lowdefy/blocks-antd": "4.0.0-rc.12", + "@lowdefy/blocks-basic": "4.0.0-rc.12", + "@lowdefy/blocks-color-selectors": "4.0.0-rc.12", + "@lowdefy/blocks-echarts": "4.0.0-rc.12", + "@lowdefy/blocks-loaders": "4.0.0-rc.12", + "@lowdefy/blocks-markdown": "4.0.0-rc.12", + "@lowdefy/blocks-qr": "4.0.0-rc.12", + "@lowdefy/build": "4.0.0-rc.12", + "@lowdefy/client": "4.0.0-rc.12", + "@lowdefy/connection-axios-http": "4.0.0-rc.12", + "@lowdefy/engine": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/layout": "4.0.0-rc.12", + "@lowdefy/node-utils": "4.0.0-rc.12", + "@lowdefy/operators-change-case": "4.0.0-rc.12", + "@lowdefy/operators-diff": "4.0.0-rc.12", + "@lowdefy/operators-js": "4.0.0-rc.12", + "@lowdefy/operators-mql": "4.0.0-rc.12", + "@lowdefy/operators-nunjucks": "4.0.0-rc.12", + "@lowdefy/operators-uuid": "4.0.0-rc.12", + "@lowdefy/operators-yaml": "4.0.0-rc.12", + "@lowdefy/plugin-next-auth": "4.0.0-rc.12", "chokidar": "3.5.3", "dotenv": "16.3.1", "next": "13.5.4", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index 409fdaf7e..c4cbfef17 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/server + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/server/package.json b/packages/server/package.json index 67db772d3..1a37c3a0d 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/server", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -45,17 +45,17 @@ "next": "next" }, "dependencies": { - "@lowdefy/actions-core": "4.0.0-rc.11", - "@lowdefy/api": "4.0.0-rc.11", - "@lowdefy/blocks-antd": "4.0.0-rc.11", - "@lowdefy/blocks-basic": "4.0.0-rc.11", - "@lowdefy/blocks-loaders": "4.0.0-rc.11", - "@lowdefy/client": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", - "@lowdefy/layout": "4.0.0-rc.11", - "@lowdefy/node-utils": "4.0.0-rc.11", - "@lowdefy/operators-js": "4.0.0-rc.11", - "@lowdefy/plugin-next-auth": "4.0.0-rc.11", + "@lowdefy/actions-core": "4.0.0-rc.12", + "@lowdefy/api": "4.0.0-rc.12", + "@lowdefy/blocks-antd": "4.0.0-rc.12", + "@lowdefy/blocks-basic": "4.0.0-rc.12", + "@lowdefy/blocks-loaders": "4.0.0-rc.12", + "@lowdefy/client": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", + "@lowdefy/layout": "4.0.0-rc.12", + "@lowdefy/node-utils": "4.0.0-rc.12", + "@lowdefy/operators-js": "4.0.0-rc.12", + "@lowdefy/plugin-next-auth": "4.0.0-rc.12", "next": "13.5.4", "next-auth": "4.23.2", "pino": "8.15.6", @@ -65,7 +65,7 @@ "react-icons": "4.11.0" }, "devDependencies": { - "@lowdefy/build": "4.0.0-rc.11", + "@lowdefy/build": "4.0.0-rc.12", "@next/eslint-plugin-next": "13.5.4", "less": "4.2.0", "less-loader": "11.1.3", diff --git a/packages/utils/ajv/CHANGELOG.md b/packages/utils/ajv/CHANGELOG.md index afa0fb96f..4ac16b324 100644 --- a/packages/utils/ajv/CHANGELOG.md +++ b/packages/utils/ajv/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/ajv + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/utils/ajv/package.json b/packages/utils/ajv/package.json index 33dc9aa35..62aa64f30 100644 --- a/packages/utils/ajv/package.json +++ b/packages/utils/ajv/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/ajv", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -39,7 +39,7 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/nunjucks": "4.0.0-rc.11", + "@lowdefy/nunjucks": "4.0.0-rc.12", "ajv": "8.12.0", "ajv-errors": "3.0.0" }, diff --git a/packages/utils/block-dev/CHANGELOG.md b/packages/utils/block-dev/CHANGELOG.md index d37d25984..da27dbd89 100644 --- a/packages/utils/block-dev/CHANGELOG.md +++ b/packages/utils/block-dev/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/utils/block-dev/package.json b/packages/utils/block-dev/package.json index 11404d451..98585e651 100644 --- a/packages/utils/block-dev/package.json +++ b/packages/utils/block-dev/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/block-dev", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Lowdefy Block Development Tools", "homepage": "https://lowdefy.com", @@ -37,8 +37,8 @@ }, "dependencies": { "@emotion/jest": "11.10.5", - "@lowdefy/block-utils": "4.0.0-rc.11", - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/block-utils": "4.0.0-rc.12", + "@lowdefy/helpers": "4.0.0-rc.12", "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/utils/block-utils/CHANGELOG.md b/packages/utils/block-utils/CHANGELOG.md index 1eecaa2fb..5e7ce57ee 100644 --- a/packages/utils/block-utils/CHANGELOG.md +++ b/packages/utils/block-utils/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/utils/block-utils/package.json b/packages/utils/block-utils/package.json index 71b6a42d7..1e3a2de89 100644 --- a/packages/utils/block-utils/package.json +++ b/packages/utils/block-utils/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/block-utils", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "Lowdefy Block Utils", "homepage": "https://lowdefy.com", @@ -42,7 +42,7 @@ }, "dependencies": { "@emotion/css": "11.11.2", - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", "dompurify": "3.0.6", "react": "18.2.0", "react-dom": "18.2.0" diff --git a/packages/utils/helpers/CHANGELOG.md b/packages/utils/helpers/CHANGELOG.md index 8f13542cd..04005355b 100644 --- a/packages/utils/helpers/CHANGELOG.md +++ b/packages/utils/helpers/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/utils/helpers/package.json b/packages/utils/helpers/package.json index bde2a41b0..7733c3c1e 100644 --- a/packages/utils/helpers/package.json +++ b/packages/utils/helpers/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/helpers", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", diff --git a/packages/utils/jest-yaml-transform/CHANGELOG.md b/packages/utils/jest-yaml-transform/CHANGELOG.md index e8399d351..1607788d1 100644 --- a/packages/utils/jest-yaml-transform/CHANGELOG.md +++ b/packages/utils/jest-yaml-transform/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([2086f5d](https://github.com/lowdefy/lowdefy/commit/2086f5d2e8e5665ec5fd16ce83e59119571f833d)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/utils/jest-yaml-transform/package.json b/packages/utils/jest-yaml-transform/package.json index 5d89bce7e..5b27d44a6 100644 --- a/packages/utils/jest-yaml-transform/package.json +++ b/packages/utils/jest-yaml-transform/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/jest-yaml-transform", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "A Jest Transform for YAML.", "main": "./dist/index.js", diff --git a/packages/utils/node-utils/CHANGELOG.md b/packages/utils/node-utils/CHANGELOG.md index 677b8b5a0..837fb6ecf 100644 --- a/packages/utils/node-utils/CHANGELOG.md +++ b/packages/utils/node-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/node-utils + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/utils/node-utils/package.json b/packages/utils/node-utils/package.json index cc60d582f..f4c5f1ab9 100644 --- a/packages/utils/node-utils/package.json +++ b/packages/utils/node-utils/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/node-utils", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -40,7 +40,7 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", "fs-extra": "11.1.1" }, "devDependencies": { diff --git a/packages/utils/nunjucks/CHANGELOG.md b/packages/utils/nunjucks/CHANGELOG.md index 21f958acf..7ce86b871 100644 --- a/packages/utils/nunjucks/CHANGELOG.md +++ b/packages/utils/nunjucks/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + + +### Bug Fixes + +* Deepsource style fixes. ([e0804b8](https://github.com/lowdefy/lowdefy/commit/e0804b87999e6d812f2d2378770ed214d4264142)) + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/utils/nunjucks/package.json b/packages/utils/nunjucks/package.json index 148b51164..28e52c78a 100644 --- a/packages/utils/nunjucks/package.json +++ b/packages/utils/nunjucks/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/nunjucks", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", @@ -39,7 +39,7 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { - "@lowdefy/helpers": "4.0.0-rc.11", + "@lowdefy/helpers": "4.0.0-rc.12", "moment": "2.29.4" }, "devDependencies": { diff --git a/packages/website/CHANGELOG.md b/packages/website/CHANGELOG.md index 992784990..50a6bef5e 100644 --- a/packages/website/CHANGELOG.md +++ b/packages/website/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19) + +**Note:** Version bump only for package @lowdefy/website + + + + + # [4.0.0-rc.11](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.10...v4.0.0-rc.11) (2023-10-06) diff --git a/packages/website/package.json b/packages/website/package.json index febaf5e30..9ab5b57cd 100644 --- a/packages/website/package.json +++ b/packages/website/package.json @@ -1,6 +1,6 @@ { "name": "@lowdefy/website", - "version": "4.0.0-rc.11", + "version": "4.0.0-rc.12", "license": "Apache-2.0", "description": "", "homepage": "https://lowdefy.com", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d41b107d5..914b77a4d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -45,22 +45,22 @@ importers: packages/api: dependencies: '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/ajv '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/helpers '@lowdefy/node-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/node-utils '@lowdefy/nunjucks': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/nunjucks '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../operators '@lowdefy/operators-js': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-js devDependencies: '@jest/globals': @@ -82,28 +82,28 @@ importers: packages/build: dependencies: '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/ajv '@lowdefy/blocks-basic': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-basic '@lowdefy/blocks-loaders': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-loaders '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/helpers '@lowdefy/node-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/node-utils '@lowdefy/nunjucks': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/nunjucks '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../operators '@lowdefy/operators-js': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-js ajv: specifier: 8.12.0 @@ -122,91 +122,91 @@ importers: specifier: 28.1.3 version: 28.1.3 '@lowdefy/actions-core': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/actions/actions-core '@lowdefy/actions-pdf-make': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/actions/actions-pdf-make '@lowdefy/blocks-aggrid': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-aggrid '@lowdefy/blocks-algolia': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-algolia '@lowdefy/blocks-antd': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-antd '@lowdefy/blocks-color-selectors': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-color-selectors '@lowdefy/blocks-echarts': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-echarts '@lowdefy/blocks-google-maps': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-google-maps '@lowdefy/blocks-markdown': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-markdown '@lowdefy/blocks-qr': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-qr '@lowdefy/connection-axios-http': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/connections/connection-axios-http '@lowdefy/connection-elasticsearch': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/connections/connection-elasticsearch '@lowdefy/connection-google-sheets': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/connections/connection-google-sheets '@lowdefy/connection-knex': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/connections/connection-knex '@lowdefy/connection-mongodb': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/connections/connection-mongodb '@lowdefy/connection-redis': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/connections/connection-redis '@lowdefy/connection-sendgrid': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/connections/connection-sendgrid '@lowdefy/connection-stripe': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/connections/connection-stripe '@lowdefy/operators-change-case': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-change-case '@lowdefy/operators-diff': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-diff '@lowdefy/operators-moment': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-moment '@lowdefy/operators-mql': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-mql '@lowdefy/operators-nunjucks': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-nunjucks '@lowdefy/operators-uuid': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-uuid '@lowdefy/operators-yaml': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-yaml '@lowdefy/plugin-auth0': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/plugins/plugin-auth0 '@lowdefy/plugin-aws': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/plugins/plugin-aws '@lowdefy/plugin-csv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/plugins/plugin-csv '@lowdefy/plugin-next-auth': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/plugins/plugin-next-auth '@swc/cli': specifier: 0.1.62 @@ -224,10 +224,10 @@ importers: packages/cli: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/helpers '@lowdefy/node-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/node-utils axios: specifier: 1.5.1 @@ -279,16 +279,16 @@ importers: specifier: 4.8.0 version: 4.8.0(react-dom@18.2.0)(react@18.2.0) '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/block-utils '@lowdefy/engine': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../engine '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/helpers '@lowdefy/layout': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../layout classnames: specifier: 2.3.2 @@ -307,7 +307,7 @@ importers: specifier: 28.1.3 version: 28.1.3 '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -343,7 +343,7 @@ importers: packages/docs: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/helpers devDependencies: '@jest/globals': @@ -365,26 +365,26 @@ importers: packages/engine: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/helpers '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../operators devDependencies: '@jest/globals': specifier: 28.1.3 version: 28.1.3 '@lowdefy/actions-core': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/actions/actions-core '@lowdefy/build': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../build '@lowdefy/operators-js': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-js '@lowdefy/operators-mql': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-mql '@swc/cli': specifier: 0.1.62 @@ -402,10 +402,10 @@ importers: packages/layout: dependencies: '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/block-utils '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/helpers antd: specifier: 4.24.14 @@ -424,10 +424,10 @@ importers: specifier: 28.1.3 version: 28.1.3 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -463,7 +463,7 @@ importers: packages/operators: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/helpers devDependencies: '@jest/globals': @@ -488,7 +488,7 @@ importers: packages/plugins/actions/actions-core: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers devDependencies: '@jest/globals': @@ -553,10 +553,10 @@ importers: specifier: 29.3.5 version: 29.3.5 '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers react: specifier: 18.2.0 @@ -569,10 +569,10 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -611,7 +611,7 @@ importers: specifier: 3.5.2 version: 3.5.2(@algolia/client-search@4.20.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.8.3) '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils react: specifier: 18.2.0 @@ -624,10 +624,10 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -666,10 +666,10 @@ importers: specifier: 4.8.0 version: 4.8.0(react-dom@18.2.0)(react@18.2.0) '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers antd: specifier: 4.24.14 @@ -697,13 +697,13 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@lowdefy/node-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/node-utils '@swc/cli': specifier: 0.1.62 @@ -739,10 +739,10 @@ importers: packages/plugins/blocks/blocks-basic: dependencies: '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers dompurify: specifier: 3.0.6 @@ -758,10 +758,10 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -797,10 +797,10 @@ importers: packages/plugins/blocks/blocks-color-selectors: dependencies: '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils '@lowdefy/blocks-antd': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../blocks-antd classnames: specifier: 2.3.2 @@ -819,10 +819,10 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -861,7 +861,7 @@ importers: packages/plugins/blocks/blocks-echarts: dependencies: '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils echarts: specifier: 5.4.3 @@ -880,10 +880,10 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -919,7 +919,7 @@ importers: packages/plugins/blocks/blocks-google-maps: dependencies: '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils '@react-google-maps/api': specifier: 2.19.2 @@ -935,10 +935,10 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -974,10 +974,10 @@ importers: packages/plugins/blocks/blocks-loaders: dependencies: '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers react: specifier: 18.2.0 @@ -990,10 +990,10 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -1029,7 +1029,7 @@ importers: packages/plugins/blocks/blocks-markdown: dependencies: '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils dompurify: specifier: 3.0.6 @@ -1057,10 +1057,10 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -1099,7 +1099,7 @@ importers: packages/plugins/blocks/blocks-qr: dependencies: '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils html5-qrcode: specifier: 2.3.8 @@ -1115,10 +1115,10 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -1154,14 +1154,14 @@ importers: packages/plugins/connections/connection-axios-http: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers axios: specifier: 1.5.1 version: 1.5.1 devDependencies: '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/ajv '@swc/cli': specifier: 0.1.62 @@ -1182,14 +1182,14 @@ importers: specifier: 7.17.12 version: 7.17.12 '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers devDependencies: '@jest/globals': specifier: 28.1.3 version: 28.1.3 '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/ajv '@swc/cli': specifier: 0.1.62 @@ -1207,7 +1207,7 @@ importers: packages/plugins/connections/connection-google-sheets: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers google-spreadsheet: specifier: 3.3.0 @@ -1223,7 +1223,7 @@ importers: specifier: 28.1.3 version: 28.1.3 '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/ajv '@swc/cli': specifier: 0.1.62 @@ -1241,7 +1241,7 @@ importers: packages/plugins/connections/connection-knex: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers knex: specifier: 2.5.1 @@ -1263,7 +1263,7 @@ importers: specifier: 28.1.3 version: 28.1.3 '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/ajv '@swc/cli': specifier: 0.1.62 @@ -1281,7 +1281,7 @@ importers: packages/plugins/connections/connection-mongodb: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers '@next-auth/mongodb-adapter': specifier: 1.1.3 @@ -1294,7 +1294,7 @@ importers: version: 1.0.3 devDependencies: '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/ajv '@shelf/jest-mongodb': specifier: 4.1.7 @@ -1330,7 +1330,7 @@ importers: packages/plugins/connections/connection-redis: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers redis: specifier: 4.6.10 @@ -1340,7 +1340,7 @@ importers: specifier: 28.1.3 version: 28.1.3 '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/ajv '@swc/cli': specifier: 0.1.62 @@ -1358,7 +1358,7 @@ importers: packages/plugins/connections/connection-sendgrid: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers '@sendgrid/mail': specifier: 7.7.0 @@ -1368,7 +1368,7 @@ importers: specifier: 28.1.3 version: 28.1.3 '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/ajv '@swc/cli': specifier: 0.1.62 @@ -1386,7 +1386,7 @@ importers: packages/plugins/connections/connection-stripe: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers stripe: specifier: 13.6.0 @@ -1396,7 +1396,7 @@ importers: specifier: 28.1.3 version: 28.1.3 '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/ajv '@swc/cli': specifier: 0.1.62 @@ -1414,10 +1414,10 @@ importers: packages/plugins/operators/operators-change-case: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../operators change-case: specifier: 4.1.2 @@ -1442,10 +1442,10 @@ importers: packages/plugins/operators/operators-diff: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../operators deep-diff: specifier: 1.0.2 @@ -1470,10 +1470,10 @@ importers: packages/plugins/operators/operators-js: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../operators devDependencies: '@jest/globals': @@ -1498,7 +1498,7 @@ importers: packages/plugins/operators/operators-moment: dependencies: '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../operators moment: specifier: 2.29.4 @@ -1523,10 +1523,10 @@ importers: packages/plugins/operators/operators-mql: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../operators mingo: specifier: 6.4.6 @@ -1551,13 +1551,13 @@ importers: packages/plugins/operators/operators-nunjucks: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers '@lowdefy/nunjucks': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/nunjucks '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../operators devDependencies: '@swc/cli': @@ -1579,10 +1579,10 @@ importers: packages/plugins/operators/operators-uuid: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../operators uuid: specifier: 9.0.1 @@ -1610,10 +1610,10 @@ importers: packages/plugins/operators/operators-yaml: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers '@lowdefy/operators': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../operators yaml: specifier: 2.3.2 @@ -1656,13 +1656,13 @@ importers: packages/plugins/plugins/plugin-aws: dependencies: '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-utils '@lowdefy/blocks-antd': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../blocks/blocks-antd '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/helpers antd: specifier: 4.24.14 @@ -1681,13 +1681,13 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/ajv': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/ajv '@lowdefy/block-dev': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/block-dev '@lowdefy/jest-yaml-transform': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../../../utils/jest-yaml-transform '@swc/cli': specifier: 0.1.62 @@ -1772,37 +1772,37 @@ importers: packages/server: dependencies: '@lowdefy/actions-core': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/actions/actions-core '@lowdefy/api': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../api '@lowdefy/blocks-antd': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-antd '@lowdefy/blocks-basic': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-basic '@lowdefy/blocks-loaders': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-loaders '@lowdefy/client': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../client '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/helpers '@lowdefy/layout': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../layout '@lowdefy/node-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/node-utils '@lowdefy/operators-js': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-js '@lowdefy/plugin-next-auth': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/plugins/plugin-next-auth next: specifier: 13.5.4 @@ -1827,7 +1827,7 @@ importers: version: 4.11.0(react@18.2.0) devDependencies: '@lowdefy/build': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../build '@next/eslint-plugin-next': specifier: 13.5.4 @@ -1854,76 +1854,76 @@ importers: packages/server-dev: dependencies: '@lowdefy/actions-core': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/actions/actions-core '@lowdefy/api': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../api '@lowdefy/blocks-antd': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-antd '@lowdefy/blocks-basic': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-basic '@lowdefy/blocks-color-selectors': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-color-selectors '@lowdefy/blocks-echarts': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-echarts '@lowdefy/blocks-loaders': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-loaders '@lowdefy/blocks-markdown': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-markdown '@lowdefy/blocks-qr': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/blocks/blocks-qr '@lowdefy/build': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../build '@lowdefy/client': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../client '@lowdefy/connection-axios-http': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/connections/connection-axios-http '@lowdefy/engine': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../engine '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/helpers '@lowdefy/layout': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../layout '@lowdefy/node-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../utils/node-utils '@lowdefy/operators-change-case': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-change-case '@lowdefy/operators-diff': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-diff '@lowdefy/operators-js': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-js '@lowdefy/operators-mql': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-mql '@lowdefy/operators-nunjucks': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-nunjucks '@lowdefy/operators-uuid': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-uuid '@lowdefy/operators-yaml': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/operators/operators-yaml '@lowdefy/plugin-next-auth': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../plugins/plugins/plugin-next-auth chokidar: specifier: 3.5.3 @@ -1984,7 +1984,7 @@ importers: packages/utils/ajv: dependencies: '@lowdefy/nunjucks': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../nunjucks ajv: specifier: 8.12.0 @@ -2012,10 +2012,10 @@ importers: specifier: 11.10.5 version: 11.10.5 '@lowdefy/block-utils': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../block-utils '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../helpers '@testing-library/dom': specifier: 8.19.1 @@ -2061,7 +2061,7 @@ importers: specifier: 11.11.2 version: 11.11.2 '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../helpers dompurify: specifier: 3.0.6 @@ -2159,7 +2159,7 @@ importers: packages/utils/node-utils: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../helpers fs-extra: specifier: 11.1.1 @@ -2181,7 +2181,7 @@ importers: packages/utils/nunjucks: dependencies: '@lowdefy/helpers': - specifier: 4.0.0-rc.11 + specifier: 4.0.0-rc.12 version: link:../helpers moment: specifier: 2.29.4