Release v4.0.0.rc.15

This commit is contained in:
Sam Tolmay 2023-12-05 16:31:43 +02:00
parent c11aa59ab4
commit 5494bebbf0
No known key found for this signature in database
104 changed files with 844 additions and 414 deletions

View File

@ -3,6 +3,23 @@
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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
### Bug Fixes
* **blocks-antd:** Check if option exists before checking tag. ([a72688d](https://github.com/lowdefy/lowdefy/commit/a72688d687674e309f103244eacba9613938293a))
### Features
* Add cover content area to Card block. ([c8a75a9](https://github.com/lowdefy/lowdefy/commit/c8a75a9155c994cc96658933ca4d0b6a5b1afc74))
* Support Phosphor icon set. ([82009c6](https://github.com/lowdefy/lowdefy/commit/82009c653d42ce0639b4de786a4adbffb150eb2b))
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
### Bug Fixes

View File

@ -1,5 +1,5 @@
{
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"packages": [
"src/packages/*",
"src/packages/blocks/*",

View File

@ -1,6 +1,5 @@
{
"name": "@lowdefy/lowdefy",
"version": "4.0.0-rc.14",
"license": "Apache-2.0",
"private": true,
"description": "Lowdefy monorepo",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/api
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/api",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/node-utils": "4.0.0-rc.14",
"@lowdefy/nunjucks": "4.0.0-rc.14",
"@lowdefy/operators": "4.0.0-rc.14",
"@lowdefy/operators-js": "4.0.0-rc.14"
"@lowdefy/ajv": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/node-utils": "4.0.0-rc.15",
"@lowdefy/nunjucks": "4.0.0-rc.15",
"@lowdefy/operators": "4.0.0-rc.15",
"@lowdefy/operators-js": "4.0.0-rc.15"
},
"devDependencies": {
"@jest/globals": "28.1.3",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
### Features
* Support Phosphor icon set. ([82009c6](https://github.com/lowdefy/lowdefy/commit/82009c653d42ce0639b4de786a4adbffb150eb2b))
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/build

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/build",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/blocks-basic": "4.0.0-rc.14",
"@lowdefy/blocks-loaders": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/node-utils": "4.0.0-rc.14",
"@lowdefy/nunjucks": "4.0.0-rc.14",
"@lowdefy/operators": "4.0.0-rc.14",
"@lowdefy/operators-js": "4.0.0-rc.14",
"@lowdefy/ajv": "4.0.0-rc.15",
"@lowdefy/blocks-basic": "4.0.0-rc.15",
"@lowdefy/blocks-loaders": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/node-utils": "4.0.0-rc.15",
"@lowdefy/nunjucks": "4.0.0-rc.15",
"@lowdefy/operators": "4.0.0-rc.15",
"@lowdefy/operators-js": "4.0.0-rc.15",
"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.14",
"@lowdefy/actions-pdf-make": "4.0.0-rc.14",
"@lowdefy/blocks-aggrid": "4.0.0-rc.14",
"@lowdefy/blocks-algolia": "4.0.0-rc.14",
"@lowdefy/blocks-antd": "4.0.0-rc.14",
"@lowdefy/blocks-color-selectors": "4.0.0-rc.14",
"@lowdefy/blocks-echarts": "4.0.0-rc.14",
"@lowdefy/blocks-google-maps": "4.0.0-rc.14",
"@lowdefy/blocks-markdown": "4.0.0-rc.14",
"@lowdefy/blocks-qr": "4.0.0-rc.14",
"@lowdefy/connection-axios-http": "4.0.0-rc.14",
"@lowdefy/connection-elasticsearch": "4.0.0-rc.14",
"@lowdefy/connection-google-sheets": "4.0.0-rc.14",
"@lowdefy/connection-knex": "4.0.0-rc.14",
"@lowdefy/connection-mongodb": "4.0.0-rc.14",
"@lowdefy/connection-redis": "4.0.0-rc.14",
"@lowdefy/connection-sendgrid": "4.0.0-rc.14",
"@lowdefy/connection-stripe": "4.0.0-rc.14",
"@lowdefy/operators-change-case": "4.0.0-rc.14",
"@lowdefy/operators-diff": "4.0.0-rc.14",
"@lowdefy/operators-moment": "4.0.0-rc.14",
"@lowdefy/operators-mql": "4.0.0-rc.14",
"@lowdefy/operators-nunjucks": "4.0.0-rc.14",
"@lowdefy/operators-uuid": "4.0.0-rc.14",
"@lowdefy/operators-yaml": "4.0.0-rc.14",
"@lowdefy/plugin-auth0": "4.0.0-rc.14",
"@lowdefy/plugin-aws": "4.0.0-rc.14",
"@lowdefy/plugin-csv": "4.0.0-rc.14",
"@lowdefy/plugin-next-auth": "4.0.0-rc.14",
"@lowdefy/actions-core": "4.0.0-rc.15",
"@lowdefy/actions-pdf-make": "4.0.0-rc.15",
"@lowdefy/blocks-aggrid": "4.0.0-rc.15",
"@lowdefy/blocks-algolia": "4.0.0-rc.15",
"@lowdefy/blocks-antd": "4.0.0-rc.15",
"@lowdefy/blocks-color-selectors": "4.0.0-rc.15",
"@lowdefy/blocks-echarts": "4.0.0-rc.15",
"@lowdefy/blocks-google-maps": "4.0.0-rc.15",
"@lowdefy/blocks-markdown": "4.0.0-rc.15",
"@lowdefy/blocks-qr": "4.0.0-rc.15",
"@lowdefy/connection-axios-http": "4.0.0-rc.15",
"@lowdefy/connection-elasticsearch": "4.0.0-rc.15",
"@lowdefy/connection-google-sheets": "4.0.0-rc.15",
"@lowdefy/connection-knex": "4.0.0-rc.15",
"@lowdefy/connection-mongodb": "4.0.0-rc.15",
"@lowdefy/connection-redis": "4.0.0-rc.15",
"@lowdefy/connection-sendgrid": "4.0.0-rc.15",
"@lowdefy/connection-stripe": "4.0.0-rc.15",
"@lowdefy/operators-change-case": "4.0.0-rc.15",
"@lowdefy/operators-diff": "4.0.0-rc.15",
"@lowdefy/operators-moment": "4.0.0-rc.15",
"@lowdefy/operators-mql": "4.0.0-rc.15",
"@lowdefy/operators-nunjucks": "4.0.0-rc.15",
"@lowdefy/operators-uuid": "4.0.0-rc.15",
"@lowdefy/operators-yaml": "4.0.0-rc.15",
"@lowdefy/plugin-auth0": "4.0.0-rc.15",
"@lowdefy/plugin-aws": "4.0.0-rc.15",
"@lowdefy/plugin-csv": "4.0.0-rc.15",
"@lowdefy/plugin-next-auth": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package lowdefy
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package lowdefy

View File

@ -1,6 +1,6 @@
{
"name": "lowdefy",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/node-utils": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/node-utils": "4.0.0-rc.15",
"axios": "1.5.1",
"commander": "11.0.0",
"decompress": "4.2.1",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/client
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/client

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/client",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/engine": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/layout": "4.0.0-rc.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"@lowdefy/engine": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/layout": "4.0.0-rc.15",
"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.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
### Features
* Add cover content area to Card block. ([c8a75a9](https://github.com/lowdefy/lowdefy/commit/c8a75a9155c994cc96658933ca4d0b6a5b1afc74))
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/docs",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14"
"@lowdefy/helpers": "4.0.0-rc.15"
},
"devDependencies": {
"@jest/globals": "28.1.3",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/engine
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/engine

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/engine",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/operators": "4.0.0-rc.14"
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/operators": "4.0.0-rc.15"
},
"devDependencies": {
"@jest/globals": "28.1.3",
"@lowdefy/actions-core": "4.0.0-rc.14",
"@lowdefy/build": "4.0.0-rc.14",
"@lowdefy/operators-js": "4.0.0-rc.14",
"@lowdefy/operators-mql": "4.0.0-rc.14",
"@lowdefy/actions-core": "4.0.0-rc.15",
"@lowdefy/build": "4.0.0-rc.15",
"@lowdefy/operators-js": "4.0.0-rc.15",
"@lowdefy/operators-mql": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/layout
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/layout

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/layout",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"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.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/operators
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/operators

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/operators",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14"
"@lowdefy/helpers": "4.0.0-rc.15"
},
"devDependencies": {
"@jest/globals": "28.1.3",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/actions-core
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/actions-core

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/actions-core",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14"
"@lowdefy/helpers": "4.0.0-rc.15"
},
"devDependencies": {
"@jest/globals": "28.1.3",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/actions-pdf-make
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/actions-pdf-make

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/actions-pdf-make",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/blocks-aggrid
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/blocks-aggrid

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-aggrid",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@emotion/jest": "11.10.5",
"@lowdefy/block-dev": "4.0.0-rc.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/blocks-algolia
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/blocks-algolia

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-algolia",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@emotion/jest": "11.10.5",
"@lowdefy/block-dev": "4.0.0-rc.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -3,6 +3,22 @@
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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
### Bug Fixes
* **blocks-antd:** Check if option exists before checking tag. ([a72688d](https://github.com/lowdefy/lowdefy/commit/a72688d687674e309f103244eacba9613938293a))
### Features
* Add cover content area to Card block. ([c8a75a9](https://github.com/lowdefy/lowdefy/commit/c8a75a9155c994cc96658933ca4d0b6a5b1afc74))
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-antd",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"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.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/node-utils": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@lowdefy/node-utils": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/blocks-basic
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/blocks-basic

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-basic",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"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.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/blocks-color-selectors
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/blocks-color-selectors

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-color-selectors",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/blocks-antd": "4.0.0-rc.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"@lowdefy/blocks-antd": "4.0.0-rc.15",
"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.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/blocks-echarts
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/blocks-echarts

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-echarts",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"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.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/blocks-google-maps
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/blocks-google-maps

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-google-maps",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"@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.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/blocks-loaders
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/blocks-loaders

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-loaders",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@emotion/jest": "11.10.5",
"@lowdefy/block-dev": "4.0.0-rc.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/blocks-markdown
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/blocks-markdown

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-markdown",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"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.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/blocks-qr
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/blocks-qr

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-qr",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"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.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/connection-axios-http
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/connection-axios-http

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/connection-axios-http",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"axios": "1.5.1"
},
"devDependencies": {
"@lowdefy/ajv": "4.0.0-rc.14",
"@lowdefy/ajv": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/connection-elasticsearch
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/connection-elasticsearch

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/connection-elasticsearch",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14"
"@lowdefy/helpers": "4.0.0-rc.15"
},
"devDependencies": {
"@jest/globals": "28.1.3",
"@lowdefy/ajv": "4.0.0-rc.14",
"@lowdefy/ajv": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/connection-google-sheets
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/connection-google-sheets

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/connection-google-sheets",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"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.14",
"@lowdefy/ajv": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/connection-knex
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/connection-knex

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/connection-knex",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"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.14",
"@lowdefy/ajv": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/connection-mongodb
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/connection-mongodb

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/connection-mongodb",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"@next-auth/mongodb-adapter": "1.1.3",
"mongodb": "4.17.1",
"saslprep": "1.0.3"
},
"devDependencies": {
"@lowdefy/ajv": "4.0.0-rc.14",
"@lowdefy/ajv": "4.0.0-rc.15",
"@shelf/jest-mongodb": "4.1.7",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/connection-redis
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/connection-redis

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/connection-redis",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"redis": "4.6.10"
},
"devDependencies": {
"@jest/globals": "28.1.3",
"@lowdefy/ajv": "4.0.0-rc.14",
"@lowdefy/ajv": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/connection-sendgrid
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/connection-sendgrid

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/connection-sendgrid",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"@sendgrid/mail": "7.7.0"
},
"devDependencies": {
"@jest/globals": "28.1.3",
"@lowdefy/ajv": "4.0.0-rc.14",
"@lowdefy/ajv": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/connection-stripe
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/connection-stripe

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/connection-stripe",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"stripe": "13.6.0"
},
"devDependencies": {
"@jest/globals": "28.1.3",
"@lowdefy/ajv": "4.0.0-rc.14",
"@lowdefy/ajv": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/operators-change-case
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/operators-change-case

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/operators-change-case",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/operators": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/operators": "4.0.0-rc.15",
"change-case": "4.1.2"
},
"devDependencies": {

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/operators-diff
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/operators-diff

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/operators-diff",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/operators": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/operators": "4.0.0-rc.15",
"deep-diff": "1.0.2"
},
"devDependencies": {

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/operators-js
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/operators-js

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/operators-js",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/operators": "4.0.0-rc.14"
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/operators": "4.0.0-rc.15"
},
"devDependencies": {
"@jest/globals": "28.1.3",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/operators-moment
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/operators-moment

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/operators-moment",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/operators": "4.0.0-rc.15",
"moment": "2.29.4"
},
"devDependencies": {

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/operators-mql
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/operators-mql

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/operators-mql",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/operators": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/operators": "4.0.0-rc.15",
"mingo": "6.4.6"
},
"devDependencies": {

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/operators-nunjucks
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/operators-nunjucks

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/operators-nunjucks",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/nunjucks": "4.0.0-rc.14",
"@lowdefy/operators": "4.0.0-rc.14"
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/nunjucks": "4.0.0-rc.15",
"@lowdefy/operators": "4.0.0-rc.15"
},
"devDependencies": {
"@swc/cli": "0.1.62",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/operators-uuid
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/operators-uuid

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/operators-uuid",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/operators": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/operators": "4.0.0-rc.15",
"uuid": "9.0.1"
},
"devDependencies": {

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/operators-yaml
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/operators-yaml

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/operators-yaml",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/operators": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/operators": "4.0.0-rc.15",
"yaml": "2.3.2"
},
"devDependencies": {

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/plugin-auth0
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/plugin-auth0

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/plugin-auth0",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/plugin-aws
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/plugin-aws

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/plugin-aws",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/blocks-antd": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"@lowdefy/blocks-antd": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"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.14",
"@lowdefy/block-dev": "4.0.0-rc.14",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
"@lowdefy/ajv": "4.0.0-rc.15",
"@lowdefy/block-dev": "4.0.0-rc.15",
"@lowdefy/jest-yaml-transform": "4.0.0-rc.15",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/plugin-csv
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/plugin-csv

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/plugin-csv",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/plugin-next-auth
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/plugin-next-auth

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/plugin-next-auth",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/server-dev
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/server-dev",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@ -42,32 +42,32 @@
"next": "next"
},
"dependencies": {
"@lowdefy/actions-core": "4.0.0-rc.14",
"@lowdefy/api": "4.0.0-rc.14",
"@lowdefy/blocks-aggrid": "4.0.0-rc.14",
"@lowdefy/blocks-antd": "4.0.0-rc.14",
"@lowdefy/blocks-basic": "4.0.0-rc.14",
"@lowdefy/blocks-color-selectors": "4.0.0-rc.14",
"@lowdefy/blocks-echarts": "4.0.0-rc.14",
"@lowdefy/blocks-loaders": "4.0.0-rc.14",
"@lowdefy/blocks-markdown": "4.0.0-rc.14",
"@lowdefy/blocks-qr": "4.0.0-rc.14",
"@lowdefy/build": "4.0.0-rc.14",
"@lowdefy/client": "4.0.0-rc.14",
"@lowdefy/connection-axios-http": "4.0.0-rc.14",
"@lowdefy/engine": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/layout": "4.0.0-rc.14",
"@lowdefy/node-utils": "4.0.0-rc.14",
"@lowdefy/operators-change-case": "4.0.0-rc.14",
"@lowdefy/operators-diff": "4.0.0-rc.14",
"@lowdefy/operators-js": "4.0.0-rc.14",
"@lowdefy/operators-moment": "4.0.0-rc.14",
"@lowdefy/operators-mql": "4.0.0-rc.14",
"@lowdefy/operators-nunjucks": "4.0.0-rc.14",
"@lowdefy/operators-uuid": "4.0.0-rc.14",
"@lowdefy/operators-yaml": "4.0.0-rc.14",
"@lowdefy/plugin-next-auth": "4.0.0-rc.14",
"@lowdefy/actions-core": "4.0.0-rc.15",
"@lowdefy/api": "4.0.0-rc.15",
"@lowdefy/blocks-aggrid": "4.0.0-rc.15",
"@lowdefy/blocks-antd": "4.0.0-rc.15",
"@lowdefy/blocks-basic": "4.0.0-rc.15",
"@lowdefy/blocks-color-selectors": "4.0.0-rc.15",
"@lowdefy/blocks-echarts": "4.0.0-rc.15",
"@lowdefy/blocks-loaders": "4.0.0-rc.15",
"@lowdefy/blocks-markdown": "4.0.0-rc.15",
"@lowdefy/blocks-qr": "4.0.0-rc.15",
"@lowdefy/build": "4.0.0-rc.15",
"@lowdefy/client": "4.0.0-rc.15",
"@lowdefy/connection-axios-http": "4.0.0-rc.15",
"@lowdefy/engine": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/layout": "4.0.0-rc.15",
"@lowdefy/node-utils": "4.0.0-rc.15",
"@lowdefy/operators-change-case": "4.0.0-rc.15",
"@lowdefy/operators-diff": "4.0.0-rc.15",
"@lowdefy/operators-js": "4.0.0-rc.15",
"@lowdefy/operators-moment": "4.0.0-rc.15",
"@lowdefy/operators-mql": "4.0.0-rc.15",
"@lowdefy/operators-nunjucks": "4.0.0-rc.15",
"@lowdefy/operators-uuid": "4.0.0-rc.15",
"@lowdefy/operators-yaml": "4.0.0-rc.15",
"@lowdefy/plugin-next-auth": "4.0.0-rc.15",
"chokidar": "3.5.3",
"dotenv": "16.3.1",
"next": "13.5.4",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/server
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/server",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@ -45,17 +45,17 @@
"next": "next"
},
"dependencies": {
"@lowdefy/actions-core": "4.0.0-rc.14",
"@lowdefy/api": "4.0.0-rc.14",
"@lowdefy/blocks-antd": "4.0.0-rc.14",
"@lowdefy/blocks-basic": "4.0.0-rc.14",
"@lowdefy/blocks-loaders": "4.0.0-rc.14",
"@lowdefy/client": "4.0.0-rc.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/layout": "4.0.0-rc.14",
"@lowdefy/node-utils": "4.0.0-rc.14",
"@lowdefy/operators-js": "4.0.0-rc.14",
"@lowdefy/plugin-next-auth": "4.0.0-rc.14",
"@lowdefy/actions-core": "4.0.0-rc.15",
"@lowdefy/api": "4.0.0-rc.15",
"@lowdefy/blocks-antd": "4.0.0-rc.15",
"@lowdefy/blocks-basic": "4.0.0-rc.15",
"@lowdefy/blocks-loaders": "4.0.0-rc.15",
"@lowdefy/client": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"@lowdefy/layout": "4.0.0-rc.15",
"@lowdefy/node-utils": "4.0.0-rc.15",
"@lowdefy/operators-js": "4.0.0-rc.15",
"@lowdefy/plugin-next-auth": "4.0.0-rc.15",
"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.14",
"@lowdefy/build": "4.0.0-rc.15",
"@next/eslint-plugin-next": "13.5.4",
"less": "4.1.3",
"less-loader": "11.1.3",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/ajv
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/ajv

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/ajv",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/nunjucks": "4.0.0-rc.15",
"ajv": "8.12.0",
"ajv-errors": "3.0.0"
},

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/block-dev
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/block-dev

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/block-dev",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.14",
"@lowdefy/block-utils": "4.0.0-rc.15",
"@lowdefy/helpers": "4.0.0-rc.15",
"@testing-library/dom": "8.19.1",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/block-utils
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/block-utils

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/block-utils",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"dompurify": "3.0.6",
"react": "18.2.0",
"react-dom": "18.2.0"

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/helpers
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/helpers",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/jest-yaml-transform
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/jest-yaml-transform

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/jest-yaml-transform",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"license": "Apache-2.0",
"description": "A Jest Transform for YAML.",
"main": "./dist/index.js",

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/node-utils
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/node-utils

View File

@ -1,6 +1,6 @@
{
"name": "@lowdefy/node-utils",
"version": "4.0.0-rc.14",
"version": "4.0.0-rc.15",
"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.14",
"@lowdefy/helpers": "4.0.0-rc.15",
"fs-extra": "11.1.1"
},
"devDependencies": {

View File

@ -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.15](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.14...v4.0.0-rc.15) (2023-12-05)
**Note:** Version bump only for package @lowdefy/nunjucks
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
**Note:** Version bump only for package @lowdefy/nunjucks

Some files were not shown because too many files have changed in this diff Show More