mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-04-24 16:00:53 +08:00
chore: Release v4.0.0-rc.13
This commit is contained in:
parent
306526761c
commit
e0e9a9b4e4
CHANGELOG.mdlerna.jsonpackage.json
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
server-dev
server
utils
ajv
block-dev
block-utils
helpers
jest-yaml-transform
node-utils
nunjucks
25
CHANGELOG.md
25
CHANGELOG.md
@ -3,6 +3,31 @@
|
||||
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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **blocks-antd:** Change to controlled tab, closes [#1705](https://github.com/lowdefy/lowdefy/issues/1705) ([c804c18](https://github.com/lowdefy/lowdefy/commit/c804c18c7753782e301b7e1d077f27f4138939a7))
|
||||
* **blocks-antd:** Control tabs using setActiveKey method. ([1d2845c](https://github.com/lowdefy/lowdefy/commit/1d2845c3a73d8cf536fb081f5c61c823ec98375f))
|
||||
* **blocks-antd:** Mention html support in title schema. ([6929fa3](https://github.com/lowdefy/lowdefy/commit/6929fa3cc83ca50e4bdd38ce6dc9b1ceb7794ff0))
|
||||
* **blocks-antd:** Set ant-tabs-tabpane-hidden class to display none. ([c354acb](https://github.com/lowdefy/lowdefy/commit/c354acb0e8937d9c025bb810d34914ca66d57fe1))
|
||||
* **deps:** Revert less to 4.1.3. ([ea298c9](https://github.com/lowdefy/lowdefy/commit/ea298c9f49d0a30b7877f28c12cde944e2c1b803))
|
||||
* **helpers:** Do not add quotes around strings in query params. ([250c617](https://github.com/lowdefy/lowdefy/commit/250c6174f54c27ddc11a11295a387afeef7272fc))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **api:** Add connectionId to request object. ([df16dbc](https://github.com/lowdefy/lowdefy/commit/df16dbca8545128cb51f78d173a2a96e47cbf729))
|
||||
* **blocks-antd:** Add onFocus and onBlur events to inputs ([ac9f342](https://github.com/lowdefy/lowdefy/commit/ac9f342c6bcd2b0c5df940fc9cc4783013f44714))
|
||||
* **blocks-antd:** Render HTML in tabs titles. ([28421cc](https://github.com/lowdefy/lowdefy/commit/28421cc2ae644f0924d876d1b276334e20cfdfa3))
|
||||
* **blocks-antd:** Trigger onChange event when active key changes. ([0c1908e](https://github.com/lowdefy/lowdefy/commit/0c1908e2c4887c4b492a8a2c6994b0bf63eb02b7))
|
||||
* **docs:** Add connectionId field to request docs. ([9f67461](https://github.com/lowdefy/lowdefy/commit/9f67461bed5f56a6a2f089bb6723a0bef9f358bf))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"packages": [
|
||||
"src/packages/*",
|
||||
"src/packages/blocks/*",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/lowdefy",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"license": "Apache-2.0",
|
||||
"private": true,
|
||||
"description": "Lowdefy monorepo",
|
||||
|
@ -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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **api:** Add connectionId to request object. ([df16dbc](https://github.com/lowdefy/lowdefy/commit/df16dbca8545128cb51f78d173a2a96e47cbf729))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/api",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.12"
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.13",
|
||||
"@lowdefy/operators": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.13"
|
||||
},
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/build
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/build",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/blocks-basic": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-loaders": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-basic": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-loaders": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.13",
|
||||
"@lowdefy/operators": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/actions-pdf-make": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-aggrid": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-algolia": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-color-selectors": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-echarts": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-google-maps": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-markdown": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-qr": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-axios-http": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-elasticsearch": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-google-sheets": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-knex": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-mongodb": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-redis": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-sendgrid": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-stripe": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-change-case": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-diff": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-moment": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-mql": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-nunjucks": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-uuid": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-yaml": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-auth0": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-aws": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-csv": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-next-auth": "4.0.0-rc.12",
|
||||
"@lowdefy/actions-core": "4.0.0-rc.13",
|
||||
"@lowdefy/actions-pdf-make": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-aggrid": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-algolia": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-color-selectors": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-echarts": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-google-maps": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-markdown": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-qr": "4.0.0-rc.13",
|
||||
"@lowdefy/connection-axios-http": "4.0.0-rc.13",
|
||||
"@lowdefy/connection-elasticsearch": "4.0.0-rc.13",
|
||||
"@lowdefy/connection-google-sheets": "4.0.0-rc.13",
|
||||
"@lowdefy/connection-knex": "4.0.0-rc.13",
|
||||
"@lowdefy/connection-mongodb": "4.0.0-rc.13",
|
||||
"@lowdefy/connection-redis": "4.0.0-rc.13",
|
||||
"@lowdefy/connection-sendgrid": "4.0.0-rc.13",
|
||||
"@lowdefy/connection-stripe": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-change-case": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-diff": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-moment": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-mql": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-nunjucks": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-uuid": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-yaml": "4.0.0-rc.13",
|
||||
"@lowdefy/plugin-auth0": "4.0.0-rc.13",
|
||||
"@lowdefy/plugin-aws": "4.0.0-rc.13",
|
||||
"@lowdefy/plugin-csv": "4.0.0-rc.13",
|
||||
"@lowdefy/plugin-next-auth": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package lowdefy
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "lowdefy",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.13",
|
||||
"axios": "1.5.1",
|
||||
"commander": "11.0.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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/client
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/client",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/engine": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/layout": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/engine": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/layout": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **blocks-antd:** Control tabs using setActiveKey method. ([1d2845c](https://github.com/lowdefy/lowdefy/commit/1d2845c3a73d8cf536fb081f5c61c823ec98375f))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **docs:** Add connectionId field to request docs. ([9f67461](https://github.com/lowdefy/lowdefy/commit/9f67461bed5f56a6a2f089bb6723a0bef9f358bf))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/docs",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.13"
|
||||
},
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/engine
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/engine",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/operators": "4.0.0-rc.13"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/actions-core": "4.0.0-rc.12",
|
||||
"@lowdefy/build": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-mql": "4.0.0-rc.12",
|
||||
"@lowdefy/actions-core": "4.0.0-rc.13",
|
||||
"@lowdefy/build": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-mql": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/layout
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/layout",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.13"
|
||||
},
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/actions-core
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/actions-core",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.13"
|
||||
},
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/actions-pdf-make
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/actions-pdf-make
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/actions-pdf-make",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-aggrid
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-aggrid",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-algolia
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-algolia",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,28 @@
|
||||
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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **blocks-antd:** Change to controlled tab, closes [#1705](https://github.com/lowdefy/lowdefy/issues/1705) ([c804c18](https://github.com/lowdefy/lowdefy/commit/c804c18c7753782e301b7e1d077f27f4138939a7))
|
||||
* **blocks-antd:** Control tabs using setActiveKey method. ([1d2845c](https://github.com/lowdefy/lowdefy/commit/1d2845c3a73d8cf536fb081f5c61c823ec98375f))
|
||||
* **blocks-antd:** Mention html support in title schema. ([6929fa3](https://github.com/lowdefy/lowdefy/commit/6929fa3cc83ca50e4bdd38ce6dc9b1ceb7794ff0))
|
||||
* **blocks-antd:** Set ant-tabs-tabpane-hidden class to display none. ([c354acb](https://github.com/lowdefy/lowdefy/commit/c354acb0e8937d9c025bb810d34914ca66d57fe1))
|
||||
* **deps:** Revert less to 4.1.3. ([ea298c9](https://github.com/lowdefy/lowdefy/commit/ea298c9f49d0a30b7877f28c12cde944e2c1b803))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **blocks-antd:** Add onFocus and onBlur events to inputs ([ac9f342](https://github.com/lowdefy/lowdefy/commit/ac9f342c6bcd2b0c5df940fc9cc4783013f44714))
|
||||
* **blocks-antd:** Render HTML in tabs titles. ([28421cc](https://github.com/lowdefy/lowdefy/commit/28421cc2ae644f0924d876d1b276334e20cfdfa3))
|
||||
* **blocks-antd:** Trigger onChange event when active key changes. ([0c1908e](https://github.com/lowdefy/lowdefy/commit/0c1908e2c4887c4b492a8a2c6994b0bf63eb02b7))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-antd",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-basic
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-basic",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-color-selectors
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-color-selectors",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-echarts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-echarts",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-google-maps
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-google-maps",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"@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.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-loaders
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-loaders",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-markdown
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-markdown",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-qr
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-qr",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-axios-http
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-axios-http
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-axios-http",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"axios": "1.5.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-elasticsearch
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-elasticsearch
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-elasticsearch",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.13"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-google-sheets
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-google-sheets",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-knex
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-knex
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-knex",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-mongodb
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-mongodb",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@next-auth/mongodb-adapter": "1.1.3",
|
||||
"mongodb": "4.17.1",
|
||||
"saslprep": "1.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@shelf/jest-mongodb": "4.1.7",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
|
@ -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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-redis
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-redis",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"redis": "4.6.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-sendgrid
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-sendgrid
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-sendgrid",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@sendgrid/mail": "7.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-stripe
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-stripe
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-stripe",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"stripe": "13.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-change-case
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-change-case",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/operators": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-diff
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-diff
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-diff",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/operators": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-js
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-js",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/operators": "4.0.0-rc.13"
|
||||
},
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-moment
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-moment
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-moment",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-mql
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-mql",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/operators": "4.0.0-rc.13",
|
||||
"mingo": "6.4.6"
|
||||
},
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-nunjucks
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-nunjucks",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.13",
|
||||
"@lowdefy/operators": "4.0.0-rc.13"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@swc/cli": "0.1.62",
|
||||
|
@ -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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-uuid
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-uuid",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/operators": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-yaml
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-yaml",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/operators": "4.0.0-rc.13",
|
||||
"yaml": "2.3.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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/plugin-auth0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/plugin-auth0
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/plugin-auth0",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/plugin-aws
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/plugin-aws",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.13",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.13",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.13",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/plugin-csv
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/plugin-csv
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/plugin-csv",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/plugin-next-auth
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/plugin-next-auth
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/plugin-next-auth",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
|
@ -3,6 +3,18 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **blocks-antd:** Control tabs using setActiveKey method. ([1d2845c](https://github.com/lowdefy/lowdefy/commit/1d2845c3a73d8cf536fb081f5c61c823ec98375f))
|
||||
* **deps:** Revert less to 4.1.3. ([ea298c9](https://github.com/lowdefy/lowdefy/commit/ea298c9f49d0a30b7877f28c12cde944e2c1b803))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/server-dev
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/server-dev",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -42,37 +42,37 @@
|
||||
"next": "next"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/actions-core": "4.0.0-rc.12",
|
||||
"@lowdefy/api": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-aggrid": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-algolia": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-basic": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-color-selectors": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-echarts": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-google-maps": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-loaders": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-markdown": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-qr": "4.0.0-rc.12",
|
||||
"@lowdefy/build": "4.0.0-rc.12",
|
||||
"@lowdefy/client": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-axios-http": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-mongodb": "4.0.0-rc.12",
|
||||
"@lowdefy/actions-core": "4.0.0-rc.13",
|
||||
"@lowdefy/api": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-aggrid": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-algolia": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-basic": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-color-selectors": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-echarts": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-google-maps": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-loaders": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-markdown": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-qr": "4.0.0-rc.13",
|
||||
"@lowdefy/build": "4.0.0-rc.13",
|
||||
"@lowdefy/client": "4.0.0-rc.13",
|
||||
"@lowdefy/connection-axios-http": "4.0.0-rc.13",
|
||||
"@lowdefy/connection-mongodb": "4.0.0-rc.13",
|
||||
"@lowdefy/docs": "workspace:*",
|
||||
"@lowdefy/engine": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/layout": "4.0.0-rc.12",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-change-case": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-diff": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-moment": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-mql": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-nunjucks": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-uuid": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-yaml": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-aws": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-next-auth": "4.0.0-rc.12",
|
||||
"@lowdefy/engine": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/layout": "4.0.0-rc.13",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-change-case": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-diff": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-moment": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-mql": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-nunjucks": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-uuid": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-yaml": "4.0.0-rc.13",
|
||||
"@lowdefy/plugin-aws": "4.0.0-rc.13",
|
||||
"@lowdefy/plugin-next-auth": "4.0.0-rc.13",
|
||||
"chokidar": "3.5.3",
|
||||
"dotenv": "16.3.1",
|
||||
"next": "13.5.4",
|
||||
|
@ -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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **deps:** Revert less to 4.1.3. ([ea298c9](https://github.com/lowdefy/lowdefy/commit/ea298c9f49d0a30b7877f28c12cde944e2c1b803))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/server
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/server",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -45,17 +45,17 @@
|
||||
"next": "next"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/actions-core": "4.0.0-rc.12",
|
||||
"@lowdefy/api": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-basic": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-loaders": "4.0.0-rc.12",
|
||||
"@lowdefy/client": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/layout": "4.0.0-rc.12",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-next-auth": "4.0.0-rc.12",
|
||||
"@lowdefy/actions-core": "4.0.0-rc.13",
|
||||
"@lowdefy/api": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-basic": "4.0.0-rc.13",
|
||||
"@lowdefy/blocks-loaders": "4.0.0-rc.13",
|
||||
"@lowdefy/client": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@lowdefy/layout": "4.0.0-rc.13",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.13",
|
||||
"@lowdefy/plugin-next-auth": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/build": "4.0.0-rc.13",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/ajv
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/ajv
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/ajv",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/block-dev
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/block-dev",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.13",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"@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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/block-utils
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/block-utils",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"dompurify": "3.0.6",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
|
@ -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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **helpers:** Do not add quotes around strings in query params. ([250c617](https://github.com/lowdefy/lowdefy/commit/250c6174f54c27ddc11a11295a387afeef7272fc))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/helpers",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/jest-yaml-transform
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/jest-yaml-transform",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/node-utils
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/node-utils
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/node-utils",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.13",
|
||||
"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.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.13",
|
||||
"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.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/nunjucks
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
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