mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-04-24 16:00:53 +08:00
Merge remote-tracking branch 'origin/develop' into enterprise
# Conflicts: # lerna.json # packages/build/package.json # packages/cli/package.json # packages/client/package.json # packages/engine/package.json # packages/layout/package.json # packages/plugins/blocks/blocks-aggrid/package.json # packages/plugins/blocks/blocks-algolia/package.json # packages/plugins/blocks/blocks-antd/package.json # packages/plugins/blocks/blocks-basic/package.json # packages/plugins/blocks/blocks-color-selectors/package.json # packages/plugins/blocks/blocks-echarts/package.json # packages/plugins/blocks/blocks-google-maps/package.json # packages/plugins/blocks/blocks-loaders/package.json # packages/plugins/blocks/blocks-markdown/package.json # packages/plugins/blocks/blocks-qr/package.json # packages/plugins/connections/connection-axios-http/package.json # packages/plugins/connections/connection-elasticsearch/package.json # packages/plugins/connections/connection-google-sheets/package.json # packages/plugins/connections/connection-knex/package.json # packages/plugins/connections/connection-redis/package.json # packages/plugins/connections/connection-sendgrid/package.json # packages/plugins/connections/connection-stripe/package.json # packages/plugins/operators/operators-mql/package.json # packages/plugins/operators/operators-yaml/package.json # packages/plugins/plugins/plugin-aws/package.json # packages/servers/server-community/package.json # packages/servers/server-dev/package.json # pnpm-lock.yaml
This commit is contained in:
commit
55f852ae09
CHANGELOG.md
packages
api
build
cli
client
docs
engine
layout
operators
plugins
actions
blocks
blocks-aggrid
blocks-algolia
blocks-antd
blocks-basic
blocks-color-selectors
blocks-echarts
blocks-google-maps
blocks-loaders
blocks-markdown
blocks-qr
connections
connection-axios-http
connection-elasticsearch
connection-google-sheets
connection-knex
connection-mongodb
connection-redis
connection-sendgrid
connection-stripe
operators
operators-change-case
operators-diff
operators-js
operators-moment
operators-mql
operators-nunjucks
operators-uuid
operators-yaml
plugins
plugin-auth0
plugin-aws
plugin-csv
plugin-next-auth
servers
server-community
server-dev
server-enterprise
utils
ajv
block-dev
block-utils
helpers
jest-yaml-transform
node-utils
nunjucks
17
CHANGELOG.md
17
CHANGELOG.md
@ -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
|
||||
|
@ -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)
|
||||
|
||||
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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.4",
|
||||
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.6.2",
|
||||
"commander": "11.1.0",
|
||||
"decompress": "4.2.1",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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)
|
||||
|
||||
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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)
|
||||
|
||||
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -34,10 +34,10 @@ const tagRender = (props, option, methods, components) => {
|
||||
methods={methods}
|
||||
onClose={onClose}
|
||||
properties={{
|
||||
title: label,
|
||||
title: label ?? '',
|
||||
...(option?.tag ?? {}),
|
||||
closable,
|
||||
style: { marginRight: 3, ...(option.tag?.style ?? {}) },
|
||||
style: { marginRight: 3, ...(option?.tag?.style ?? {}) },
|
||||
}}
|
||||
/>
|
||||
);
|
||||
@ -82,11 +82,13 @@ const MultipleSelector = ({
|
||||
}
|
||||
maxTagCount={properties.maxTagCount}
|
||||
notFoundContent={fetchState ? 'Loading' : 'Not found'}
|
||||
placeholder={get(properties, 'placeholder', { default: 'Select items' })}
|
||||
placeholder={
|
||||
loading ? 'Loading...' : get(properties, 'placeholder', { default: 'Select items' })
|
||||
}
|
||||
showArrow={get(properties, 'showArrow', { default: true })}
|
||||
size={properties.size}
|
||||
status={validation.status}
|
||||
value={getValueIndex(value, uniqueValueOptions, true)}
|
||||
value={loading ? [] : getValueIndex(value, uniqueValueOptions, true)}
|
||||
suffixIcon={
|
||||
properties.suffixIcon && (
|
||||
<Icon
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.6.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@lowdefy/ajv": "4.0.0-rc.15",
|
||||
"@swc/cli": "0.1.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.9",
|
||||
"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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
|
@ -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
|
||||
|
@ -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.11"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@lowdefy/ajv": "4.0.0-rc.15",
|
||||
"@swc/cli": "0.1.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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": "14.5.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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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": {
|
||||
|
@ -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
|
||||
|
@ -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": {
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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": {
|
||||
|
@ -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
|
||||
|
@ -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.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
|
@ -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
|
||||
|
@ -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": {
|
||||
|
@ -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
|
||||
|
@ -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.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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.63",
|
||||
"@swc/core": "1.3.99",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/server-community",
|
||||
"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.24.5",
|
||||
"pino": "8.16.2",
|
||||
@ -65,7 +65,7 @@
|
||||
"react-icons": "4.12.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",
|
||||
|
@ -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)
|
||||
|
||||
|
||||
|
@ -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,33 +42,33 @@
|
||||
"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/block-utils": "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/block-utils": "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",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/server-enterprise",
|
||||
"version": "4.0.0-rc.14",
|
||||
"version": "4.0.0-rc.15",
|
||||
"license": "BUSL-1.1",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -45,18 +45,18 @@
|
||||
"next": "next"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/actions-core": "4.0.0-rc.14",
|
||||
"@lowdefy/api": "4.0.0-rc.14",
|
||||
"@lowdefy/block-utils": "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/block-utils": "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.24.5",
|
||||
"pino": "8.16.2",
|
||||
@ -66,7 +66,7 @@
|
||||
"react-icons": "4.12.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.2.0",
|
||||
"less-loader": "11.1.3",
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
},
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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)
|
||||
|
||||
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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": {
|
||||
|
@ -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
Loading…
x
Reference in New Issue
Block a user