diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8e996ced0..056bcba2f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,205 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+## Changes
+
+#### Actions
+
+- A `debounce` option has been added to events.
+- An `async` option has been added to actions so that they are not awaited in the action chain.
+- A new `ResetValidation` action has been added.
+- A new `Throw` action has been added.
+- A `back` option has been added to the `Link` action.
+- The Lowdefy action functions can now be used inside the `JsAction` action.
+- The `Validate` action can now take a list of regular expressions to match blocks to validate.
+- Only blocks that have been validated now show the validation result.
+
+#### Blocks
+
+- The `List` block now has `direction`, `wrap`, and `scroll` properties.
+
+- HTML is now supported in block properties that used to only take strings. The following blocks now have support for HTML properties:
+
+ - `Alert`
+ - `AutoComplete`
+ - `Button`
+ - `ButtonSelector`
+ - `Card`
+ - `CheckboxSelector`
+ - `CircleColorSelector`
+ - `Collapse`
+ - `ColorSelector`
+ - `CompactColorSelector`
+ - `ConfirmModal`
+ - `Descriptions`
+ - `Divider`
+ - `GithubColorSelector`
+ - `Label`
+ - `Message`
+ - `Modal`
+ - `MultipleSelector`
+ - `Notification`
+ - `Paragraph`
+ - `RadioSelector`
+ - `Result`
+ - `Selector`
+ - `SliderColorSelector`
+ - `Statistic`
+ - `SwatchesColorSelector`
+ - `Title`
+ - `Tooltip`
+ - `TwitterColorSelector`
+
+- The `showTotal` property in the `Pagination` block can now be a string or function.
+- If the `onClose` event fails in the `ConfirmModal`, `Drawer`, and `Modal` blocks, the block no longer closes.
+- The `ParagraphInput` and `TitleInput` blocks now render non-truthy values.
+
+#### CLI and build
+
+- The `_ref` operator can now specify a resolver function that overrides the default reading of configuration files from the file system.
+- A default `_ref` resolver function can be specified for an app.
+- The CLI can now be configured from the `lowdefy.yaml` file.
+- The `dev` command now has `watch` and `watchIgnore` options to control which files are watched for rebuilds.
+- The blocks server URL is now configurable.
+- The `dev` server no longer exits if the initial build fails.
+
+#### Connections
+
+- The following Elasticsearch requests have been added:
+ - `ElasticsearchDelete`
+ - `ElasticsearchDeleteByQuery`
+ - `ElasticsearchIndex`
+ - `ElasticsearchUpdate`
+ - `ElasticsearchUpdateByQuery`
+- Read and write checking for Elasticsearch has been added.
+- The `mongodb` driver has been updated to 4.1.0, and now supports different options.
+- Connection options are now passed to the `MongoDBCollection` connection.
+
+#### Docs
+
+- The `AxiosHttp` examples have been fixed.
+- The Netlify deployment steps have been updated.
+
+#### Operators
+
+- The `_location` operator now returns the `basePath`, `homePageId`, and `pageId`.
+- The `_number` operator has been added.
+
+#### Servers
+
+- The server `basePath` is now configurable.
+- A Node.js production server has been added.
+
+## Commits
+
+### Bug Fixes
+
+- **blocks-antd:** Fix Descriptions block items schema ([525e8eb](https://github.com/lowdefy/lowdefy/commit/525e8eb8e3927e21e7b886cde0712ccb6d4c5b03))
+- **blocks-antd:** Update snapshot tests for basePath ([5add1a7](https://github.com/lowdefy/lowdefy/commit/5add1a72a3bc341761be7aee0626b9e29a5ded67))
+- **blocksAntd:** Add additional properties to Descriptions and use RenderHtml. ([dfc468d](https://github.com/lowdefy/lowdefy/commit/dfc468d1fef7b9aebb611c82ff19285260bc5d7e))
+- **blocksAntd:** Add blocks display type to Descriptions schema. ([bd78efc](https://github.com/lowdefy/lowdefy/commit/bd78efc0deb0702fb91bafd154f4aa64662d4f85))
+- **blocksAntd:** Add option to define `showTotal` as a string or function. ([9ac3fc9](https://github.com/lowdefy/lowdefy/commit/9ac3fc9711df889a1d58d83a68ed2e6baf8f0946))
+- **blocksAntd:** Added string output for ParagraphInput and TitleInput. ([5735bbf](https://github.com/lowdefy/lowdefy/commit/5735bbf1a51f9ea263797e62e69958cb9cfd5b3c))
+- **blocksAntd:** Do not close modals and drawer if event is bounced. ([33814b0](https://github.com/lowdefy/lowdefy/commit/33814b04fd70bad08cdca50f40ee8b05f13de9e6))
+- **blocksAntd:** Use relative paths with Link. ([f43762f](https://github.com/lowdefy/lowdefy/commit/f43762fc9eccd1876b0f240f3ea1ac64373238a3))
+- **blocksBasic:** Add row-reverse, column-reverse options to List direction. ([5926be6](https://github.com/lowdefy/lowdefy/commit/5926be6da45aff20a1743d8871b8c1dd1ff5d4e9))
+- **blocksBasic:** Refactor to use RenderHtml. ([8e8ff8d](https://github.com/lowdefy/lowdefy/commit/8e8ff8daea67cff2637a4b83d7c0582fc3fc77d6))
+- **blocksBasic:** Updated List schema and snapshots. ([7319fe7](https://github.com/lowdefy/lowdefy/commit/7319fe793b65a681971d63f9dfc2214180d5621a))
+- **blocksBasic:** Updated List schema. ([006b3b7](https://github.com/lowdefy/lowdefy/commit/006b3b75d89517297c53ca2408c88eb46fe352bb))
+- **blockTools:** Add RenderHtml to blockTools. ([7662de1](https://github.com/lowdefy/lowdefy/commit/7662de1d1bf19b781cefcb2425e6b66f14e146ef))
+- **blockTools:** RenderHtml should default to display-inline block. ([dcaf615](https://github.com/lowdefy/lowdefy/commit/dcaf61575c09a9f253f1197826ff4ea60bdcd685))
+- **build:** Add tests for readConfigFile. ([809f09a](https://github.com/lowdefy/lowdefy/commit/809f09a51fb46d94c54a35042cd0fb6c58f11fbd))
+- **build:** Add writeBuildArtifact test. ([350f25f](https://github.com/lowdefy/lowdefy/commit/350f25faf8171c3ed42a738b39333d289cb1dee8))
+- **build:** Fix getMeta memoisation ([7f824b0](https://github.com/lowdefy/lowdefy/commit/7f824b0553358c695c64ffe0fcbf38ca04a075c3))
+- **build:** Fix getMeta memoised return. ([a939bd5](https://github.com/lowdefy/lowdefy/commit/a939bd5b3fd68c557e38848993551dff19b5622e))
+- **build:** Fix getMeta return value after dataloader has been removed. ([993d398](https://github.com/lowdefy/lowdefy/commit/993d3988be32e46e93619ed2edc5a6380f726510))
+- **build:** Refactor build refs. ([dbb7c88](https://github.com/lowdefy/lowdefy/commit/dbb7c88f44719277b2583c3b11a2cd150be841d1))
+- **build:** refactor buildRefs function. ([b66cc5a](https://github.com/lowdefy/lowdefy/commit/b66cc5a38db08666a8edc0312045c2b8ea20f66e))
+- **build:** Refactor buildRefs. ([8d43e00](https://github.com/lowdefy/lowdefy/commit/8d43e004e52384c143524645f36544d4795affe9))
+- **build:** Refactor reading of config files. ([d1591a2](https://github.com/lowdefy/lowdefy/commit/d1591a2a0578a4bda230e35e86fcbd1d4e5dcffa))
+- **build:** Refactor writing of build artifact files. ([7162760](https://github.com/lowdefy/lowdefy/commit/7162760b18b62c9b5f25ea1ff024c1c1724132df))
+- **build:** Remove dataloader dependency ([4c64bd7](https://github.com/lowdefy/lowdefy/commit/4c64bd7ce290ba7881d6deda3097d0b9fb765203))
+- **build:** remove metaloader to remove dataloader dependency ([f6f35a9](https://github.com/lowdefy/lowdefy/commit/f6f35a91342a771a644a350378ef52ab9d80c05d))
+- **build:** Remove unsupported eval property on \_ref. ([808f619](https://github.com/lowdefy/lowdefy/commit/808f619d19c6b450133861913ee56e69f783fbc0))
+- **build:** Remove unused tests. ([f2db270](https://github.com/lowdefy/lowdefy/commit/f2db270a223e290a58fcd4e2225365692d83e097))
+- **build:** Standarise buildPages function signatures. ([65c7e8b](https://github.com/lowdefy/lowdefy/commit/65c7e8ba9b39609c992878d84968a2cbc60b4a16))
+- **build:** Test memoisation in getMeta. ([c1f887e](https://github.com/lowdefy/lowdefy/commit/c1f887e4ff3da0122d3d7b5566a1f64f7a6dc0e1))
+- **cli:** Do not exit dev server if the initial build fails ([41653f8](https://github.com/lowdefy/lowdefy/commit/41653f827ad25d56a1cd189dcb551f7ca4db6ef9)), closes [#711](https://github.com/lowdefy/lowdefy/issues/711)
+- **cli:** Fix print tests in CI. ([6be137d](https://github.com/lowdefy/lowdefy/commit/6be137d45a6bfaf9a6c3a3254a7b5917893c4f6a))
+- **docs:** Add more examples to Throw. ([8ef4bb3](https://github.com/lowdefy/lowdefy/commit/8ef4bb3349e2edf3d95ab5c7bb70fa34f70c318e))
+- **docs:** Docs typo fixes. ([df5770d](https://github.com/lowdefy/lowdefy/commit/df5770d13b9ae539df7af09bf1f28a00dcd8b834))
+- **docs:** Fix AxiosHttp examples, closes [#686](https://github.com/lowdefy/lowdefy/issues/686) ([1fc3329](https://github.com/lowdefy/lowdefy/commit/1fc33295f07a215f12b229557468cb49159addcc))
+- **docs:** Fix custom blocks basePath typo. ([eaee5aa](https://github.com/lowdefy/lowdefy/commit/eaee5aa4bf6c745de08892ac99ecccec3137f66e))
+- **docs:** Fix mongodb examples in docs. ([cde85b7](https://github.com/lowdefy/lowdefy/commit/cde85b7fb81b4a02e631ca4381c8212e581b7fd9))
+- **docs:** Fix sentences on Validation docs. ([d5a5b7f](https://github.com/lowdefy/lowdefy/commit/d5a5b7f8e5ad818c19ecb75c6d40eb2d714042cc))
+- **docs:** Remove documentation for eval option on \_ref. ([baf1090](https://github.com/lowdefy/lowdefy/commit/baf1090be7774d427be476411cca9167d28382c7))
+- **docs:** Remove local types. ([282380a](https://github.com/lowdefy/lowdefy/commit/282380a75d83eb66464ebd0fb4fda44c53b7d2bd))
+- **docs:** Sort endpoints alphabetically ([26ca2b7](https://github.com/lowdefy/lowdefy/commit/26ca2b7b2b107bdcb7c6fd1c5859e1bf89cbd3fe))
+- **docs:** Update Netlify deployment steps ([071d402](https://github.com/lowdefy/lowdefy/commit/071d402dfbd06c6cf28b4d58388e2910adae43a4))
+- **engine:** Add tests for Blocks.validate. ([0a0a66a](https://github.com/lowdefy/lowdefy/commit/0a0a66aa7639db6fcded6aa5a4937c2b96e6e7c8))
+- **engine:** Catch CallMethod method not defined error and add tests for CallMethod. ([96f9cb1](https://github.com/lowdefy/lowdefy/commit/96f9cb1d65c80727a27703497a9c25cf694de11d))
+- **engine:** Fixes to event debouncing and tests. ([89266f2](https://github.com/lowdefy/lowdefy/commit/89266f2dbdf860434c94811613a07a385afdc78d))
+- **engine:** Refactor Validate to work with getBlockMatcher. ([8c9de14](https://github.com/lowdefy/lowdefy/commit/8c9de14c3f26a64adf2a5dbb93b86105978c62d4))
+- **engine:** Remove showValidationErrors from context. ([24e0bbc](https://github.com/lowdefy/lowdefy/commit/24e0bbc3a849a8d3cc2b4b3313a3530dd0369b03))
+- **engine:** Update action tests to include debounce. ([b21c440](https://github.com/lowdefy/lowdefy/commit/b21c440eb0144bb5d53a2d3320bc8637de300c90))
+- **engine:** Update events test for undefined event. ([05bc928](https://github.com/lowdefy/lowdefy/commit/05bc928e45d07fba5b6a27e505cd3c1128b4216b))
+- **operators:** Fix homePageId typo and update tests. ([6bfa83a](https://github.com/lowdefy/lowdefy/commit/6bfa83a68c355858ab8ade2d3a2e8a8df45bb6dc))
+- Add \_number operator. ([1ca3966](https://github.com/lowdefy/lowdefy/commit/1ca3966495f96da9a66fa912a70703748c10d197))
+- Enable read/write checking for Elasticsearch ([9d13c32](https://github.com/lowdefy/lowdefy/commit/9d13c326eeb8e90d4880aa472a16c72bc71001fb))
+- Fix \_number operator tests. ([3b36a53](https://github.com/lowdefy/lowdefy/commit/3b36a53e42f0996c7ba6d5e2e19436c438a08ffe))
+- Fix Docker server docs ([5171320](https://github.com/lowdefy/lowdefy/commit/517132043f18dce96729252c2aaac90e204df5d7))
+- Fixes for configurable basePath. ([63955bb](https://github.com/lowdefy/lowdefy/commit/63955bbd1131da3b27b537d4e0d72dc943119287))
+
+### Features
+
+- **blocksAntd:** Add support for html on all input Label title and extra. ([59979c7](https://github.com/lowdefy/lowdefy/commit/59979c7ed2afd9ffadb97f06d59fca323a1ac589))
+- **blocksAntd:** Add support for html to Descriptions and refactor. ([6261355](https://github.com/lowdefy/lowdefy/commit/6261355f313a4d240407373c34c80608b4c1efd3))
+- **blocksAntd:** Added onclose action chain error detection to ConfirmModal, Drawer, Modal. ([66e0692](https://github.com/lowdefy/lowdefy/commit/66e0692d9c9dc8a25be9115d2522e4cb77075c50))
+- **blocksAntd:** options labels to support html. ([3533a96](https://github.com/lowdefy/lowdefy/commit/3533a96cb2031ba83932135a2d72fb554d9b9c12))
+- **blocksAntd:** Selector option.label can be html. ([9200e34](https://github.com/lowdefy/lowdefy/commit/9200e3461ccb719f40578e9f2c15de12fe3c7053))
+- **blocksBasic:** Added list direction, wrapping and scrolling. ([aba280a](https://github.com/lowdefy/lowdefy/commit/aba280a4f3768c462bff65c8726939a8e6b9cec9))
+- **build:** Add support for app default ref resolver function. ([b23e8c9](https://github.com/lowdefy/lowdefy/commit/b23e8c967ec1c48664a9aef954a0b53497af28d2))
+- **build:** Add support for resolver functions in \_ref operator. ([aa7fddc](https://github.com/lowdefy/lowdefy/commit/aa7fddcfc20b3689400bd69d9b865f9306e6991f))
+- **cli:** Add option to configure cli from the lowdefy.yaml file ([e4f62d0](https://github.com/lowdefy/lowdefy/commit/e4f62d0cf4784ec1ffb872f876469fc6beea0efd))
+- **cli:** Add watch and watchIgnore options to dev command ([9eaf3e8](https://github.com/lowdefy/lowdefy/commit/9eaf3e8adb39eca7e7c7a9c8fe131776960002c8))
+- **docs:** Add event debounce. ([e4c5db4](https://github.com/lowdefy/lowdefy/commit/e4c5db4abdf63fc27719bf72890393f33004ef43))
+- **docs:** Add ResetValidation docs. ([289c762](https://github.com/lowdefy/lowdefy/commit/289c762696cdf35f28a53d8d7ce1c340f8ca3b9f))
+- **docs:** Document \_ref resolver functions. ([446b383](https://github.com/lowdefy/lowdefy/commit/446b3833a9c3c861db609319ed11e1b14222327e))
+- **docs:** Document basePath setting. ([aa9601c](https://github.com/lowdefy/lowdefy/commit/aa9601c84935c60ec36c9bf752e94fe75a8b8505))
+- **docs:** Update docs for new Validation. ([a91a7c7](https://github.com/lowdefy/lowdefy/commit/a91a7c77e93f6ab20fd520b9aa9bd75ecbf9650d))
+- **engine:** Add async option to actions ([81036db](https://github.com/lowdefy/lowdefy/commit/81036db446ae64cd023fe198360fa9506e818ca0))
+- **engine:** Add async tests and update docs. ([fd967b9](https://github.com/lowdefy/lowdefy/commit/fd967b929b4ab57a787b1e052c74334dfc54e87b))
+- **engine:** Add debounce option to events. ([003cb0b](https://github.com/lowdefy/lowdefy/commit/003cb0b1ec13a246aa4848f2c5020a937b97ac3d))
+- **engine:** Add ResetValidation action. ([01237e3](https://github.com/lowdefy/lowdefy/commit/01237e3340b3547ae88cc7248eed7daa1ac5e4c5))
+- **engine:** Add tests for events debounce. ([2ff29cb](https://github.com/lowdefy/lowdefy/commit/2ff29cb772bc940bb59dc976c31d473771c8da97))
+- **engine:** Add Throw action. ([d2a23f0](https://github.com/lowdefy/lowdefy/commit/d2a23f0022aca6d9f0e330ef3652ad2a8f8364b7))
+- **engine:** Document Lowdefy action functions in JsAction. ([7634145](https://github.com/lowdefy/lowdefy/commit/7634145286cdb8483bbcd151343bbcb6d5a0a65f))
+- **engine:** showValidation on block level and params.regex for Validate. ([6824b07](https://github.com/lowdefy/lowdefy/commit/6824b07127f86ed19d0239ba903f88ddb4287932))
+- **graphql:** Updated mongo client to include connection options and documented command options. ([57127ee](https://github.com/lowdefy/lowdefy/commit/57127ee9240ae1e20fae109e4928048e232b9935))
+- **graphql:** Updated mongodb to 4.1.0 and documented MongoDBAggregation options. ([3fefe99](https://github.com/lowdefy/lowdefy/commit/3fefe9974362485d752a9de1c940d5e3f44932ea))
+- **operators:** Add basePath to \_location. ([eb95c8a](https://github.com/lowdefy/lowdefy/commit/eb95c8a64b2b7698f006750cd3639ee71dbbf4a9))
+- **operators:** Add pageId and homePageId to \_location. ([00842d4](https://github.com/lowdefy/lowdefy/commit/00842d48153fc2b49ac6bd6cd88d73c3cce0c178))
+- Ability to use html in ConfirmModal, Divider, Message, Modal. ([ec69fb7](https://github.com/lowdefy/lowdefy/commit/ec69fb7ed8759c2d84302da87b25ece52c2988e2))
+- Add back option to link. ([b6cf705](https://github.com/lowdefy/lowdefy/commit/b6cf705d5c7e0b54a3c22d7a33116fc30dc9e191)), closes [#728](https://github.com/lowdefy/lowdefy/issues/728)
+- add ElasticsearchDelete request. ([9f1fc34](https://github.com/lowdefy/lowdefy/commit/9f1fc347d60b5f2877d7331007359ff5746c735b))
+- Add ElasticsearchDeleteByQuery request. ([a370e9e](https://github.com/lowdefy/lowdefy/commit/a370e9e7c615bac4341f26f7bafb2abd5dc707a7))
+- add ElasticsearchIndex request. ([08de720](https://github.com/lowdefy/lowdefy/commit/08de720351c62d5211d94d145105e76e5dd55f5c))
+- Add ElasticsearchUpdate request. ([a23a7be](https://github.com/lowdefy/lowdefy/commit/a23a7be1632f60beef162dc726168b51f185508e))
+- Add ElasticsearchUpdateByQuery request. ([3cc30ca](https://github.com/lowdefy/lowdefy/commit/3cc30ca4a893e486c487fc6c1c3ca18042ce68d7))
+- Add Lowdefy actions to JsAction ([7af4442](https://github.com/lowdefy/lowdefy/commit/7af4442c6f2314ffbf927a413c15649425a93b59))
+- Added ability to use html in Alert, Descriptions and Notification. ([efa61bd](https://github.com/lowdefy/lowdefy/commit/efa61bd7a08172938a56025b68ca15f08195a088))
+- Added ability to use html in Button, Card and Collapse. ([6d4d696](https://github.com/lowdefy/lowdefy/commit/6d4d696ce35c327c22e014929e363aa8cc5c5954))
+- Added ability to use html in Paragraph, Result and Statistic. ([483eee6](https://github.com/lowdefy/lowdefy/commit/483eee6eecacffe90f76221e5cb62ddaa07e2649))
+- Added ability to use html in Title and Tooltip. ([9329d24](https://github.com/lowdefy/lowdefy/commit/9329d2487edda363a633eb4081914dd8fb7a1c9c))
+- Document node server. ([20dfb7d](https://github.com/lowdefy/lowdefy/commit/20dfb7db70868a0b2006f4f004736562acc480dc))
+- Initialise @lowdefy/server-node package ([17c27f7](https://github.com/lowdefy/lowdefy/commit/17c27f7f49ca8df85e609760c0c2c3fea73f4a62))
+- Make blocks server URL configurable. ([65c9fe7](https://github.com/lowdefy/lowdefy/commit/65c9fe79b254bf5a20b87e0a2ec4fdcd1ecd5427)), closes [#670](https://github.com/lowdefy/lowdefy/issues/670)
+- Make server basepath configurable ([3981f8c](https://github.com/lowdefy/lowdefy/commit/3981f8c60b9a2e6f5429a5fba499c65c16ccf30f))
+- Update Elasticsearch docs ([8feb78b](https://github.com/lowdefy/lowdefy/commit/8feb78b3cc168da818b156349d389c66ae8ddef3))
+- Updated antd blocks fields .json that support html. ([c9ae5e7](https://github.com/lowdefy/lowdefy/commit/c9ae5e745fe2010337228a6d6f75ca5903f0c0b0))
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
## Changes
diff --git a/lerna.json b/lerna.json
index 5fba717c3..5fc3bc387 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.19.0",
+ "version": "3.20.0",
"packages": [
"src/packages/*",
"src/packages/blocks/*",
diff --git a/package.json b/package.json
index 6f568f8d0..07e21d3fb 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/lowdefy",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"private": true,
"description": "Lowdefy monorepo",
diff --git a/packages/ajv/CHANGELOG.md b/packages/ajv/CHANGELOG.md
index 8ec66c2f0..c4e964dfe 100644
--- a/packages/ajv/CHANGELOG.md
+++ b/packages/ajv/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/ajv
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/ajv
diff --git a/packages/ajv/package.json b/packages/ajv/package.json
index 11709c18c..c6d94edd1 100644
--- a/packages/ajv/package.json
+++ b/packages/ajv/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/ajv",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -38,7 +38,7 @@
"prepare": "yarn build"
},
"dependencies": {
- "@lowdefy/nunjucks": "3.19.0",
+ "@lowdefy/nunjucks": "3.20.0",
"ajv": "6.12.6",
"ajv-errors": "1.0.1"
},
diff --git a/packages/blockTools/CHANGELOG.md b/packages/blockTools/CHANGELOG.md
index 449843fea..58b3a8cc0 100644
--- a/packages/blockTools/CHANGELOG.md
+++ b/packages/blockTools/CHANGELOG.md
@@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* Fixes for configurable basePath. ([63955bb](https://github.com/lowdefy/lowdefy/commit/63955bbd1131da3b27b537d4e0d72dc943119287))
+* **blockTools:** Add RenderHtml to blockTools. ([7662de1](https://github.com/lowdefy/lowdefy/commit/7662de1d1bf19b781cefcb2425e6b66f14e146ef))
+* **blockTools:** RenderHtml should default to display-inline block. ([dcaf615](https://github.com/lowdefy/lowdefy/commit/dcaf61575c09a9f253f1197826ff4ea60bdcd685))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/block-tools
diff --git a/packages/blockTools/package.json b/packages/blockTools/package.json
index 08870d5eb..ec264971c 100644
--- a/packages/blockTools/package.json
+++ b/packages/blockTools/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/block-tools",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "Lowdefy Block Tools",
"homepage": "https://lowdefy.com",
@@ -37,7 +37,7 @@
"test": "jest --coverage"
},
"dependencies": {
- "@lowdefy/helpers": "3.19.0",
+ "@lowdefy/helpers": "3.20.0",
"ajv": "6.12.6",
"ajv-errors": "1.0.1",
"create-emotion": "10.0.27",
diff --git a/packages/blocks/blocksAntd/CHANGELOG.md b/packages/blocks/blocksAntd/CHANGELOG.md
index 5c4bc9578..eba0dab99 100644
--- a/packages/blocks/blocksAntd/CHANGELOG.md
+++ b/packages/blocks/blocksAntd/CHANGELOG.md
@@ -3,6 +3,41 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* **blocks-antd:** Fix Descriptions block items schema ([525e8eb](https://github.com/lowdefy/lowdefy/commit/525e8eb8e3927e21e7b886cde0712ccb6d4c5b03))
+* **blocks-antd:** Update snapshot tests for basePath ([5add1a7](https://github.com/lowdefy/lowdefy/commit/5add1a72a3bc341761be7aee0626b9e29a5ded67))
+* Fixes for configurable basePath. ([63955bb](https://github.com/lowdefy/lowdefy/commit/63955bbd1131da3b27b537d4e0d72dc943119287))
+* **blocksAntd:** Add additional properties to Descriptions and use RenderHtml. ([dfc468d](https://github.com/lowdefy/lowdefy/commit/dfc468d1fef7b9aebb611c82ff19285260bc5d7e))
+* **blocksAntd:** Add blocks display type to Descriptions schema. ([bd78efc](https://github.com/lowdefy/lowdefy/commit/bd78efc0deb0702fb91bafd154f4aa64662d4f85))
+* **blocksAntd:** Add option to define `showTotal` as a string or function. ([9ac3fc9](https://github.com/lowdefy/lowdefy/commit/9ac3fc9711df889a1d58d83a68ed2e6baf8f0946))
+* **blocksAntd:** Added string output for ParagraphInput and TitleInput. ([5735bbf](https://github.com/lowdefy/lowdefy/commit/5735bbf1a51f9ea263797e62e69958cb9cfd5b3c))
+* **blocksAntd:** Do not close modals and drawer if event is bounced. ([33814b0](https://github.com/lowdefy/lowdefy/commit/33814b04fd70bad08cdca50f40ee8b05f13de9e6))
+* **blocksAntd:** Use relative paths with Link. ([f43762f](https://github.com/lowdefy/lowdefy/commit/f43762fc9eccd1876b0f240f3ea1ac64373238a3))
+* **blockTools:** RenderHtml should default to display-inline block. ([dcaf615](https://github.com/lowdefy/lowdefy/commit/dcaf61575c09a9f253f1197826ff4ea60bdcd685))
+
+
+### Features
+
+* **blocksAntd:** Add support for html on all input Label title and extra. ([59979c7](https://github.com/lowdefy/lowdefy/commit/59979c7ed2afd9ffadb97f06d59fca323a1ac589))
+* **blocksAntd:** Add support for html to Descriptions and refactor. ([6261355](https://github.com/lowdefy/lowdefy/commit/6261355f313a4d240407373c34c80608b4c1efd3))
+* **blocksAntd:** Added onclose action chain error detection to ConfirmModal, Drawer, Modal. ([66e0692](https://github.com/lowdefy/lowdefy/commit/66e0692d9c9dc8a25be9115d2522e4cb77075c50))
+* **blocksAntd:** options labels to support html. ([3533a96](https://github.com/lowdefy/lowdefy/commit/3533a96cb2031ba83932135a2d72fb554d9b9c12))
+* **blocksAntd:** Selector option.label can be html. ([9200e34](https://github.com/lowdefy/lowdefy/commit/9200e3461ccb719f40578e9f2c15de12fe3c7053))
+* Ability to use html in ConfirmModal, Divider, Message, Modal. ([ec69fb7](https://github.com/lowdefy/lowdefy/commit/ec69fb7ed8759c2d84302da87b25ece52c2988e2))
+* Added ability to use html in Alert, Descriptions and Notification. ([efa61bd](https://github.com/lowdefy/lowdefy/commit/efa61bd7a08172938a56025b68ca15f08195a088))
+* Added ability to use html in Button, Card and Collapse. ([6d4d696](https://github.com/lowdefy/lowdefy/commit/6d4d696ce35c327c22e014929e363aa8cc5c5954))
+* Added ability to use html in Paragraph, Result and Statistic. ([483eee6](https://github.com/lowdefy/lowdefy/commit/483eee6eecacffe90f76221e5cb62ddaa07e2649))
+* Added ability to use html in Title and Tooltip. ([9329d24](https://github.com/lowdefy/lowdefy/commit/9329d2487edda363a633eb4081914dd8fb7a1c9c))
+* Updated antd blocks fields .json that support html. ([c9ae5e7](https://github.com/lowdefy/lowdefy/commit/c9ae5e745fe2010337228a6d6f75ca5903f0c0b0))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
diff --git a/packages/blocks/blocksAntd/package.json b/packages/blocks/blocksAntd/package.json
index f35e778c4..de77c4fa3 100644
--- a/packages/blocks/blocksAntd/package.json
+++ b/packages/blocks/blocksAntd/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-antd",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "Lowdefy Ant Design Blocks",
"homepage": "https://lowdefy.com",
@@ -45,9 +45,9 @@
},
"dependencies": {
"@ant-design/icons": "4.5.0",
- "@lowdefy/block-tools": "3.19.0",
- "@lowdefy/color": "3.19.0",
- "@lowdefy/helpers": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
+ "@lowdefy/color": "3.20.0",
+ "@lowdefy/helpers": "3.20.0",
"antd": "4.4.2",
"classnames": "2.3.1",
"moment": "2.29.1",
diff --git a/packages/blocks/blocksBasic/CHANGELOG.md b/packages/blocks/blocksBasic/CHANGELOG.md
index b6465dbf9..258efb63b 100644
--- a/packages/blocks/blocksBasic/CHANGELOG.md
+++ b/packages/blocks/blocksBasic/CHANGELOG.md
@@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* **blocksBasic:** Add row-reverse, column-reverse options to List direction. ([5926be6](https://github.com/lowdefy/lowdefy/commit/5926be6da45aff20a1743d8871b8c1dd1ff5d4e9))
+* **blocksBasic:** Refactor to use RenderHtml. ([8e8ff8d](https://github.com/lowdefy/lowdefy/commit/8e8ff8daea67cff2637a4b83d7c0582fc3fc77d6))
+* **blocksBasic:** Updated List schema and snapshots. ([7319fe7](https://github.com/lowdefy/lowdefy/commit/7319fe793b65a681971d63f9dfc2214180d5621a))
+* **blocksBasic:** Updated List schema. ([006b3b7](https://github.com/lowdefy/lowdefy/commit/006b3b75d89517297c53ca2408c88eb46fe352bb))
+
+
+### Features
+
+* **blocksBasic:** Added list direction, wrapping and scrolling. ([aba280a](https://github.com/lowdefy/lowdefy/commit/aba280a4f3768c462bff65c8726939a8e6b9cec9))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/blocks-basic
diff --git a/packages/blocks/blocksBasic/package.json b/packages/blocks/blocksBasic/package.json
index d34283dff..1a2267957 100644
--- a/packages/blocks/blocksBasic/package.json
+++ b/packages/blocks/blocksBasic/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-basic",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "Basic html Lowdefy blocks.",
"homepage": "https://lowdefy.com",
@@ -38,7 +38,7 @@
"test": "jest --coverage --config jest.config.js --no-cache"
},
"dependencies": {
- "@lowdefy/block-tools": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
"dompurify": "2.2.8",
"react": "17.0.2",
"react-dom": "17.0.2"
@@ -48,7 +48,7 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/helpers": "3.19.0",
+ "@lowdefy/helpers": "3.20.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.1",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
diff --git a/packages/blocks/blocksColorSelectors/CHANGELOG.md b/packages/blocks/blocksColorSelectors/CHANGELOG.md
index 7b9401439..b2d79a12a 100644
--- a/packages/blocks/blocksColorSelectors/CHANGELOG.md
+++ b/packages/blocks/blocksColorSelectors/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/blocks-color-selectors
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/blocks-color-selectors
diff --git a/packages/blocks/blocksColorSelectors/package.json b/packages/blocks/blocksColorSelectors/package.json
index 585df7e15..154bc4e25 100644
--- a/packages/blocks/blocksColorSelectors/package.json
+++ b/packages/blocks/blocksColorSelectors/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-color-selectors",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "A Lowdefy color selector blocks based on react-color.",
"homepage": "https://lowdefy.com",
@@ -40,8 +40,8 @@
"test": "jest --coverage --config jest.config.js --no-cache"
},
"dependencies": {
- "@lowdefy/block-tools": "3.19.0",
- "@lowdefy/blocks-antd": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
+ "@lowdefy/blocks-antd": "3.20.0",
"react": "17.0.2",
"react-color": "2.19.3",
"react-dom": "17.0.2"
@@ -51,7 +51,7 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/helpers": "3.19.0",
+ "@lowdefy/helpers": "3.20.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.1",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
diff --git a/packages/blocks/blocksECharts/CHANGELOG.md b/packages/blocks/blocksECharts/CHANGELOG.md
index 84c836fe7..2a6bcc559 100644
--- a/packages/blocks/blocksECharts/CHANGELOG.md
+++ b/packages/blocks/blocksECharts/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/blocks-echarts
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/blocks-echarts
diff --git a/packages/blocks/blocksECharts/package.json b/packages/blocks/blocksECharts/package.json
index 80c962fb3..334327dcf 100644
--- a/packages/blocks/blocksECharts/package.json
+++ b/packages/blocks/blocksECharts/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-echarts",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "ECharts Blocks for Lowdefy.",
"homepage": "https://lowdefy.com",
@@ -40,7 +40,7 @@
"test": "jest --coverage --config jest.config.js --no-cache"
},
"dependencies": {
- "@lowdefy/block-tools": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
"echarts": "5.1.1",
"echarts-for-react": "3.0.1",
"react": "17.0.2",
@@ -52,7 +52,7 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/helpers": "3.19.0",
+ "@lowdefy/helpers": "3.20.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"buffer": "6.0.3",
diff --git a/packages/blocks/blocksMarkdown/CHANGELOG.md b/packages/blocks/blocksMarkdown/CHANGELOG.md
index 17d91449b..b3708d7f8 100644
--- a/packages/blocks/blocksMarkdown/CHANGELOG.md
+++ b/packages/blocks/blocksMarkdown/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/blocks-markdown
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/blocks-markdown
diff --git a/packages/blocks/blocksMarkdown/package.json b/packages/blocks/blocksMarkdown/package.json
index 68b131453..134ab2009 100644
--- a/packages/blocks/blocksMarkdown/package.json
+++ b/packages/blocks/blocksMarkdown/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/blocks-markdown",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "Lowdefy markdown blocks.",
"homepage": "https://lowdefy.com",
@@ -40,7 +40,7 @@
"test": "jest --coverage --config jest.config.js --no-cache"
},
"dependencies": {
- "@lowdefy/block-tools": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
"dompurify": "2.2.8",
"react": "17.0.2",
"react-dom": "17.0.2",
@@ -53,7 +53,7 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/helpers": "3.19.0",
+ "@lowdefy/helpers": "3.20.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.1",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
diff --git a/packages/build/CHANGELOG.md b/packages/build/CHANGELOG.md
index 2af62fe3e..9dd880a67 100644
--- a/packages/build/CHANGELOG.md
+++ b/packages/build/CHANGELOG.md
@@ -3,6 +3,39 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* **build:** Add tests for readConfigFile. ([809f09a](https://github.com/lowdefy/lowdefy/commit/809f09a51fb46d94c54a35042cd0fb6c58f11fbd))
+* **build:** Add writeBuildArtifact test. ([350f25f](https://github.com/lowdefy/lowdefy/commit/350f25faf8171c3ed42a738b39333d289cb1dee8))
+* **build:** Fix getMeta memoisation ([7f824b0](https://github.com/lowdefy/lowdefy/commit/7f824b0553358c695c64ffe0fcbf38ca04a075c3))
+* **build:** Fix getMeta memoised return. ([a939bd5](https://github.com/lowdefy/lowdefy/commit/a939bd5b3fd68c557e38848993551dff19b5622e))
+* **build:** Fix getMeta return value after dataloader has been removed. ([993d398](https://github.com/lowdefy/lowdefy/commit/993d3988be32e46e93619ed2edc5a6380f726510))
+* **build:** Refactor build refs. ([dbb7c88](https://github.com/lowdefy/lowdefy/commit/dbb7c88f44719277b2583c3b11a2cd150be841d1))
+* **build:** refactor buildRefs function. ([b66cc5a](https://github.com/lowdefy/lowdefy/commit/b66cc5a38db08666a8edc0312045c2b8ea20f66e))
+* **build:** Refactor buildRefs. ([8d43e00](https://github.com/lowdefy/lowdefy/commit/8d43e004e52384c143524645f36544d4795affe9))
+* **build:** Refactor reading of config files. ([d1591a2](https://github.com/lowdefy/lowdefy/commit/d1591a2a0578a4bda230e35e86fcbd1d4e5dcffa))
+* **build:** Refactor writing of build artifact files. ([7162760](https://github.com/lowdefy/lowdefy/commit/7162760b18b62c9b5f25ea1ff024c1c1724132df))
+* **build:** Remove dataloader dependency ([4c64bd7](https://github.com/lowdefy/lowdefy/commit/4c64bd7ce290ba7881d6deda3097d0b9fb765203))
+* **build:** remove metaloader to remove dataloader dependency ([f6f35a9](https://github.com/lowdefy/lowdefy/commit/f6f35a91342a771a644a350378ef52ab9d80c05d))
+* **build:** Remove unsupported eval property on _ref. ([808f619](https://github.com/lowdefy/lowdefy/commit/808f619d19c6b450133861913ee56e69f783fbc0))
+* **build:** Remove unused tests. ([f2db270](https://github.com/lowdefy/lowdefy/commit/f2db270a223e290a58fcd4e2225365692d83e097))
+* **build:** Standarise buildPages function signatures. ([65c7e8b](https://github.com/lowdefy/lowdefy/commit/65c7e8ba9b39609c992878d84968a2cbc60b4a16))
+* **build:** Test memoisation in getMeta. ([c1f887e](https://github.com/lowdefy/lowdefy/commit/c1f887e4ff3da0122d3d7b5566a1f64f7a6dc0e1))
+
+
+### Features
+
+* **build:** Add support for app default ref resolver function. ([b23e8c9](https://github.com/lowdefy/lowdefy/commit/b23e8c967ec1c48664a9aef954a0b53497af28d2))
+* **build:** Add support for resolver functions in _ref operator. ([aa7fddc](https://github.com/lowdefy/lowdefy/commit/aa7fddcfc20b3689400bd69d9b865f9306e6991f))
+* Make blocks server URL configurable. ([65c9fe7](https://github.com/lowdefy/lowdefy/commit/65c9fe79b254bf5a20b87e0a2ec4fdcd1ecd5427)), closes [#670](https://github.com/lowdefy/lowdefy/issues/670)
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/build
diff --git a/packages/build/package.json b/packages/build/package.json
index 58db8fdba..aa110418e 100644
--- a/packages/build/package.json
+++ b/packages/build/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/build",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -36,10 +36,10 @@
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
- "@lowdefy/ajv": "3.19.0",
- "@lowdefy/helpers": "3.19.0",
- "@lowdefy/node-utils": "3.19.0",
- "@lowdefy/nunjucks": "3.19.0",
+ "@lowdefy/ajv": "3.20.0",
+ "@lowdefy/helpers": "3.20.0",
+ "@lowdefy/node-utils": "3.20.0",
+ "@lowdefy/nunjucks": "3.20.0",
"ajv": "6.12.6",
"axios": "0.21.1",
"js-yaml": "4.1.0",
diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md
index bec1601e6..fe8814ed7 100644
--- a/packages/cli/CHANGELOG.md
+++ b/packages/cli/CHANGELOG.md
@@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* **cli:** Do not exit dev server if the initial build fails ([41653f8](https://github.com/lowdefy/lowdefy/commit/41653f827ad25d56a1cd189dcb551f7ca4db6ef9)), closes [#711](https://github.com/lowdefy/lowdefy/issues/711)
+* **cli:** Fix print tests in CI. ([6be137d](https://github.com/lowdefy/lowdefy/commit/6be137d45a6bfaf9a6c3a3254a7b5917893c4f6a))
+
+
+### Features
+
+* **build:** Add support for app default ref resolver function. ([b23e8c9](https://github.com/lowdefy/lowdefy/commit/b23e8c967ec1c48664a9aef954a0b53497af28d2))
+* **cli:** Add option to configure cli from the lowdefy.yaml file ([e4f62d0](https://github.com/lowdefy/lowdefy/commit/e4f62d0cf4784ec1ffb872f876469fc6beea0efd))
+* **cli:** Add watch and watchIgnore options to dev command ([9eaf3e8](https://github.com/lowdefy/lowdefy/commit/9eaf3e8adb39eca7e7c7a9c8fe131776960002c8))
+* **docs:** Document _ref resolver functions. ([446b383](https://github.com/lowdefy/lowdefy/commit/446b3833a9c3c861db609319ed11e1b14222327e))
+* Make blocks server URL configurable. ([65c9fe7](https://github.com/lowdefy/lowdefy/commit/65c9fe79b254bf5a20b87e0a2ec4fdcd1ecd5427)), closes [#670](https://github.com/lowdefy/lowdefy/issues/670)
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package lowdefy
diff --git a/packages/cli/package.json b/packages/cli/package.json
index b5c1f1368..6a3598401 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "lowdefy",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "Lowdefy CLI",
"homepage": "https://lowdefy.com",
@@ -40,8 +40,8 @@
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
- "@lowdefy/helpers": "3.19.0",
- "@lowdefy/node-utils": "3.19.0",
+ "@lowdefy/helpers": "3.20.0",
+ "@lowdefy/node-utils": "3.20.0",
"apollo-server-express": "2.25.0",
"axios": "0.21.1",
"chalk": "4.1.1",
@@ -69,7 +69,7 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/block-tools": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
diff --git a/packages/color/CHANGELOG.md b/packages/color/CHANGELOG.md
index 8ee44c4ec..8c307a559 100644
--- a/packages/color/CHANGELOG.md
+++ b/packages/color/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/color
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/color
diff --git a/packages/color/package.json b/packages/color/package.json
index ce5d56aa4..decc6c40d 100644
--- a/packages/color/package.json
+++ b/packages/color/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/color",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
diff --git a/packages/docs/CHANGELOG.md b/packages/docs/CHANGELOG.md
index 0fadf7d39..a809b3384 100644
--- a/packages/docs/CHANGELOG.md
+++ b/packages/docs/CHANGELOG.md
@@ -3,6 +3,51 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* **blocksAntd:** Add option to define `showTotal` as a string or function. ([9ac3fc9](https://github.com/lowdefy/lowdefy/commit/9ac3fc9711df889a1d58d83a68ed2e6baf8f0946))
+* **docs:** Add more examples to Throw. ([8ef4bb3](https://github.com/lowdefy/lowdefy/commit/8ef4bb3349e2edf3d95ab5c7bb70fa34f70c318e))
+* **docs:** Docs typo fixes. ([df5770d](https://github.com/lowdefy/lowdefy/commit/df5770d13b9ae539df7af09bf1f28a00dcd8b834))
+* **docs:** Fix AxiosHttp examples, closes [#686](https://github.com/lowdefy/lowdefy/issues/686) ([1fc3329](https://github.com/lowdefy/lowdefy/commit/1fc33295f07a215f12b229557468cb49159addcc))
+* **docs:** Fix custom blocks basePath typo. ([eaee5aa](https://github.com/lowdefy/lowdefy/commit/eaee5aa4bf6c745de08892ac99ecccec3137f66e))
+* **docs:** Fix mongodb examples in docs. ([cde85b7](https://github.com/lowdefy/lowdefy/commit/cde85b7fb81b4a02e631ca4381c8212e581b7fd9))
+* **docs:** Fix sentences on Validation docs. ([d5a5b7f](https://github.com/lowdefy/lowdefy/commit/d5a5b7f8e5ad818c19ecb75c6d40eb2d714042cc))
+* **docs:** Remove documentation for eval option on _ref. ([baf1090](https://github.com/lowdefy/lowdefy/commit/baf1090be7774d427be476411cca9167d28382c7))
+* **docs:** Remove local types. ([282380a](https://github.com/lowdefy/lowdefy/commit/282380a75d83eb66464ebd0fb4fda44c53b7d2bd))
+* **docs:** Sort endpoints alphabetically ([26ca2b7](https://github.com/lowdefy/lowdefy/commit/26ca2b7b2b107bdcb7c6fd1c5859e1bf89cbd3fe))
+* **docs:** Update Netlify deployment steps ([071d402](https://github.com/lowdefy/lowdefy/commit/071d402dfbd06c6cf28b4d58388e2910adae43a4))
+* Add _number operator. ([1ca3966](https://github.com/lowdefy/lowdefy/commit/1ca3966495f96da9a66fa912a70703748c10d197))
+* Fix Docker server docs ([5171320](https://github.com/lowdefy/lowdefy/commit/517132043f18dce96729252c2aaac90e204df5d7))
+
+
+### Features
+
+* **cli:** Add option to configure cli from the lowdefy.yaml file ([e4f62d0](https://github.com/lowdefy/lowdefy/commit/e4f62d0cf4784ec1ffb872f876469fc6beea0efd))
+* **cli:** Add watch and watchIgnore options to dev command ([9eaf3e8](https://github.com/lowdefy/lowdefy/commit/9eaf3e8adb39eca7e7c7a9c8fe131776960002c8))
+* **docs:** Add event debounce. ([e4c5db4](https://github.com/lowdefy/lowdefy/commit/e4c5db4abdf63fc27719bf72890393f33004ef43))
+* **docs:** Add ResetValidation docs. ([289c762](https://github.com/lowdefy/lowdefy/commit/289c762696cdf35f28a53d8d7ce1c340f8ca3b9f))
+* **docs:** Document _ref resolver functions. ([446b383](https://github.com/lowdefy/lowdefy/commit/446b3833a9c3c861db609319ed11e1b14222327e))
+* **docs:** Document basePath setting. ([aa9601c](https://github.com/lowdefy/lowdefy/commit/aa9601c84935c60ec36c9bf752e94fe75a8b8505))
+* **docs:** Update docs for new Validation. ([a91a7c7](https://github.com/lowdefy/lowdefy/commit/a91a7c77e93f6ab20fd520b9aa9bd75ecbf9650d))
+* **engine:** Add async tests and update docs. ([fd967b9](https://github.com/lowdefy/lowdefy/commit/fd967b929b4ab57a787b1e052c74334dfc54e87b))
+* **engine:** Add Throw action. ([d2a23f0](https://github.com/lowdefy/lowdefy/commit/d2a23f0022aca6d9f0e330ef3652ad2a8f8364b7))
+* **engine:** Document Lowdefy action functions in JsAction. ([7634145](https://github.com/lowdefy/lowdefy/commit/7634145286cdb8483bbcd151343bbcb6d5a0a65f))
+* **graphql:** Updated mongo client to include connection options and documented command options. ([57127ee](https://github.com/lowdefy/lowdefy/commit/57127ee9240ae1e20fae109e4928048e232b9935))
+* **graphql:** Updated mongodb to 4.1.0 and documented MongoDBAggregation options. ([3fefe99](https://github.com/lowdefy/lowdefy/commit/3fefe9974362485d752a9de1c940d5e3f44932ea))
+* **operators:** Add basePath to _location. ([eb95c8a](https://github.com/lowdefy/lowdefy/commit/eb95c8a64b2b7698f006750cd3639ee71dbbf4a9))
+* **operators:** Add pageId and homePageId to _location. ([00842d4](https://github.com/lowdefy/lowdefy/commit/00842d48153fc2b49ac6bd6cd88d73c3cce0c178))
+* Add back option to link. ([b6cf705](https://github.com/lowdefy/lowdefy/commit/b6cf705d5c7e0b54a3c22d7a33116fc30dc9e191)), closes [#728](https://github.com/lowdefy/lowdefy/issues/728)
+* Document node server. ([20dfb7d](https://github.com/lowdefy/lowdefy/commit/20dfb7db70868a0b2006f4f004736562acc480dc))
+* Make blocks server URL configurable. ([65c9fe7](https://github.com/lowdefy/lowdefy/commit/65c9fe79b254bf5a20b87e0a2ec4fdcd1ecd5427)), closes [#670](https://github.com/lowdefy/lowdefy/issues/670)
+* Update Elasticsearch docs ([8feb78b](https://github.com/lowdefy/lowdefy/commit/8feb78b3cc168da818b156349d389c66ae8ddef3))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
diff --git a/packages/docs/actions/JsAction.yaml b/packages/docs/actions/JsAction.yaml
index 336d9b1dd..b45e7f147 100644
--- a/packages/docs/actions/JsAction.yaml
+++ b/packages/docs/actions/JsAction.yaml
@@ -66,7 +66,7 @@ _ref:
```yaml
# lowdefy.yaml
name: intercom-example
- lowdefy: '3.19.0'
+ lowdefy: '3.20.0'
app:
html:
appendBody: |
@@ -137,7 +137,7 @@ _ref:
```yaml
# file: lowdefy.yaml
name: text-highlight-example
- lowdefy: '3.19.0'
+ lowdefy: '3.20.0'
app:
html:
# Load the custom modules into the index.html head tag.
diff --git a/packages/docs/concepts/custom-blocks.yaml b/packages/docs/concepts/custom-blocks.yaml
index 5c38642a9..41df4e83b 100644
--- a/packages/docs/concepts/custom-blocks.yaml
+++ b/packages/docs/concepts/custom-blocks.yaml
@@ -45,7 +45,7 @@ _ref:
```yaml
name: dashboard-app
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
types:
AmChartsXY:
url: https://blocks-cdn.lowdefy.com/v3.10.1/blocks-amcharts/meta/AmChartsXY.json
@@ -95,7 +95,7 @@ _ref:
```yaml
name: dashboard-app
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
types:
MyCustomBlock:
url: http://localhost:3002/meta/MyCustomBlock.json
diff --git a/packages/docs/concepts/custom-code.yaml b/packages/docs/concepts/custom-code.yaml
index 70ce1b64a..ca881632c 100644
--- a/packages/docs/concepts/custom-code.yaml
+++ b/packages/docs/concepts/custom-code.yaml
@@ -53,7 +53,7 @@ _ref:
```yaml
name: google-analytics-example
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
# ...
app:
html:
@@ -98,7 +98,7 @@ _ref:
```yaml
# /lowdefy.yaml
name: json-todos
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
app:
html:
appendHead:
@@ -156,7 +156,7 @@ _ref:
```yaml
# /lowdefy.yaml
name: operator-example
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
app:
html:
appendHead:
diff --git a/packages/docs/deployment/aws-lambda.yaml b/packages/docs/deployment/aws-lambda.yaml
index c70dc49f8..b89148fd5 100644
--- a/packages/docs/deployment/aws-lambda.yaml
+++ b/packages/docs/deployment/aws-lambda.yaml
@@ -58,7 +58,7 @@ _ref:
RUN npx lowdefy@latest build
# Use the correct Lowdefy base image
- FROM lowdefy/lowdefy-aws-lambda:3.19.0
+ FROM lowdefy/lowdefy-aws-lambda:3.20.0
# Copy build output from build stage
COPY --from=build /home/node/lowdefy/.lowdefy/build ./build
diff --git a/packages/docs/deployment/docker.yaml b/packages/docs/deployment/docker.yaml
index ac2828a6d..12116685c 100644
--- a/packages/docs/deployment/docker.yaml
+++ b/packages/docs/deployment/docker.yaml
@@ -68,7 +68,7 @@ _ref:
RUN npx lowdefy@latest build
# Use the correct Lowdefy base image
- FROM lowdefy/lowdefy:3.19.0
+ FROM lowdefy/lowdefy:3.20.0
# Copy build output from build stage
COPY --from=build --chown=node:node /home/node/lowdefy/.lowdefy/build ./build
diff --git a/packages/docs/lowdefy.yaml b/packages/docs/lowdefy.yaml
index e94d4db85..4975d4e2e 100644
--- a/packages/docs/lowdefy.yaml
+++ b/packages/docs/lowdefy.yaml
@@ -13,7 +13,7 @@
# limitations under the License.
name: '@lowdefy/docs'
-lowdefy: 3.19.0
+lowdefy: 3.20.0
licence: Apache-2.0
cli:
diff --git a/packages/docs/menus.yaml b/packages/docs/menus.yaml
index 5dac2dbac..d26c065e0 100644
--- a/packages/docs/menus.yaml
+++ b/packages/docs/menus.yaml
@@ -748,9 +748,14 @@
title: Lowdefy Versions
icon: BranchesOutlined
links:
- - id: v3.19.0
+ - id: v3.20.0
type: MenuLink
url: https://docs.lowdefy.com
+ properties:
+ title: v3.20.0
+ - id: v3.19.0
+ type: MenuLink
+ url: https://60feb65b4a8d320008674f72--lowdefy-docs.netlify.app/introduction
properties:
title: v3.19.0
- id: v3.18.1
diff --git a/packages/docs/operators/_actions.yaml b/packages/docs/operators/_actions.yaml
index 7e7fb0731..eb93f3fc1 100644
--- a/packages/docs/operators/_actions.yaml
+++ b/packages/docs/operators/_actions.yaml
@@ -77,7 +77,7 @@ _ref:
First register a custom JavaScript action: `getNormalizedEigenvector`
```yaml
# file: lowdefy.yaml
- lowdefy: '3.19.0'
+ lowdefy: '3.20.0'
app:
html:
appendHead: |
diff --git a/packages/docs/operators/_js.yaml b/packages/docs/operators/_js.yaml
index 6f0a2d3df..df8fd63f9 100644
--- a/packages/docs/operators/_js.yaml
+++ b/packages/docs/operators/_js.yaml
@@ -51,7 +51,7 @@ _ref:
```yaml
# lowdefy.yaml
name: make-me-primes
- lowdefy: '3.19.0'
+ lowdefy: '3.20.0'
app:
html:
# This HTML will be appended to the head HTML tag in the Lowdefy app
@@ -119,7 +119,7 @@ _ref:
```yaml
# file: lowdefy.yaml
name: my-chart
- lowdefy: '3.19.0'
+ lowdefy: '3.20.0'
app:
html:
appendHead:
diff --git a/packages/docs/operators/_ref.yaml b/packages/docs/operators/_ref.yaml
index 0a24e4cf9..b84c3bb12 100644
--- a/packages/docs/operators/_ref.yaml
+++ b/packages/docs/operators/_ref.yaml
@@ -73,7 +73,7 @@ _ref:
###### Reference pages:
```yaml
# lowdefy.yaml
- lowdefy: '3.19.0'
+ lowdefy: '3.20.0'
pages:
- _ref: pages/page1.yaml
- _ref: pages/page2.yaml
@@ -94,7 +94,7 @@ _ref:
```
Returns:
```
- lowdefy: '3.19.0'
+ lowdefy: '3.20.0'
pages:
- id: page1
type: PageHeaderMenu
@@ -189,7 +189,7 @@ _ref:
```yaml
// lowdefy.yaml
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
cli:
refResolver: resolvers/useLocalOrSharedConfig.js
@@ -215,7 +215,7 @@ _ref:
```
```yaml
// lowdefy.yaml
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
pages:
- _ref:
diff --git a/packages/docs/package.json b/packages/docs/package.json
index a220186a1..d2ad8c572 100644
--- a/packages/docs/package.json
+++ b/packages/docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/docs",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
diff --git a/packages/docs/public/sitemap.xml b/packages/docs/public/sitemap.xml
index 0c5855ad3..92da8eb37 100644
--- a/packages/docs/public/sitemap.xml
+++ b/packages/docs/public/sitemap.xml
@@ -3,967 +3,987 @@
https://docs.lowdefy.com/introduction
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/tutorial-start
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/tutorial-create-page
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/tutorial-create-page-config
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/tutorial-add-blocks
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/tutorial-add-blocks-config
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/tutorial-actions-operators
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/tutorial-actions-operators-config
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/tutorial-requests
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/tutorial-requests-config
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/tutorial-deploy
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/next-steps
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/overview
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/cli
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/lowdefy-schema
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/context-and-state
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/blocks
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/layout
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/connections-and-requests
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/events-and-actions
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/operators
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/secrets
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/lists
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/hosting-files
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/custom-code
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/custom-blocks
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/aws-lambda
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/docker
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/netlify
- 2021-07-26
+ 2021-08-20
+
+
+
+ https://docs.lowdefy.com/node-server
+ 2021-08-20
https://docs.lowdefy.com/users-introduction
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/openid-connect
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/login-and-logout
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/protected-pages
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/user-object
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/roles
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/AutoComplete
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/ButtonSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/CheckboxSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/ChromeColorSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/CircleColorSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/ColorSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/CompactColorSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/DateRangeSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/DateSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/DateTimeSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/GithubColorSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/MonthSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/MultipleSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/NumberInput
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Pagination
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/ParagraphInput
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/RadioSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/RatingSlider
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/S3UploadButton
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Selector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/SliderColorSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/SwatchesColorSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Switch
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/TextArea
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/TextInput
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/TitleInput
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/TwitterColorSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/WeekSelector
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Alert
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Anchor
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Avatar
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Breadcrumb
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Button
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/DangerousHtml
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/DangerousMarkdown
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Descriptions
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Divider
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/EChart
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Html
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Icon
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Img
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Markdown
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/MarkdownWithCode
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Menu
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Message
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/MobileMenu
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Notification
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Paragraph
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Progress
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Statistic
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Title
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Affix
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Badge
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Box
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Card
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Collapse
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Comment
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/ConfirmModal
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Drawer
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Label
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Modal
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Result
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Span
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Spin
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Tabs
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Tooltip
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Context
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/PageHCF
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/PageHCSF
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/PageHeaderMenu
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/PageHSCF
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/PageSHCF
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/PageSiderMenu
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/ControlledList
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/List
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/AmazonRedshift
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/AWSS3
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/AxiosHttp
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Elasticsearch
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/GoogleSheet
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Knex
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/MariaDB
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/MongoDB
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/MSSQL
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/MySQL
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/PostgreSQL
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/SendGridMail
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/SQLite
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/CallMethod
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/JsAction
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Link
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Login
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Logout
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/MessageAction
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/NotificationAction
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Request
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Reset
- 2021-07-26
+ 2021-08-20
+
+
+
+ https://docs.lowdefy.com/ResetValidation
+ 2021-08-20
https://docs.lowdefy.com/ScrollTo
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/SetGlobal
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/SetState
- 2021-07-26
+ 2021-08-20
+
+
+
+ https://docs.lowdefy.com/Throw
+ 2021-08-20
https://docs.lowdefy.com/Validate
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/Wait
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_actions
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_and
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_args
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_array
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_base64
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_change_case
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_date
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_diff
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_divide
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_eq
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_event
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_format
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_function
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_get
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_global
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_gt
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_gte
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_if
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_if_none
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_index
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_input
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_js
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_json
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_list_contexts
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_location
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_log
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_lt
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_lte
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_math
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_media
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_menu
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_mql
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_ne
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_not
- 2021-07-26
+ 2021-08-20
+
+
+
+ https://docs.lowdefy.com/_number
+ 2021-08-20
https://docs.lowdefy.com/_nunjucks
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_object
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_operator
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_or
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_product
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_random
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_ref
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_regex
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_request
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_secret
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_state
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_string
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_subtract
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_sum
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_type
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_uri
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_url_query
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_user
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_uuid
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_var
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/_yaml
- 2021-07-26
+ 2021-08-20
https://docs.lowdefy.com/404
- 2021-07-26
+ 2021-08-20
\ No newline at end of file
diff --git a/packages/docs/tutorial/tutorial-create-page.yaml b/packages/docs/tutorial/tutorial-create-page.yaml
index 317180df9..ebea1f51e 100644
--- a/packages/docs/tutorial/tutorial-create-page.yaml
+++ b/packages/docs/tutorial/tutorial-create-page.yaml
@@ -76,7 +76,7 @@ _ref:
```yaml
name: lowdefy-project-template
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
pages:
################ -------- Copy from here -------- ################
diff --git a/packages/docs/tutorial/tutorial-start.yaml b/packages/docs/tutorial/tutorial-start.yaml
index 6df006aa6..8b97eddd5 100644
--- a/packages/docs/tutorial/tutorial-start.yaml
+++ b/packages/docs/tutorial/tutorial-start.yaml
@@ -180,7 +180,7 @@ _ref:
Open the `lowdefy.yaml` file using a text editor like [VS Code](https://code.visualstudio.com/download). The content of the file should look like this:
```yaml
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
name: Lowdefy starter
pages:
diff --git a/packages/docs/users/login-and-logout.yaml b/packages/docs/users/login-and-logout.yaml
index 9671d94f7..2960a9b39 100644
--- a/packages/docs/users/login-and-logout.yaml
+++ b/packages/docs/users/login-and-logout.yaml
@@ -132,7 +132,7 @@ _ref:
###### Redirect to the Auth0 logout URL and return to the `logged-out` page in the app after logout:
```yaml
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
config:
auth:
openId:
@@ -144,7 +144,7 @@ _ref:
###### Redirect to the Keycloak logout URL and return to the `logged-out` page in the app after logout:
```yaml
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
config:
auth:
openId:
diff --git a/packages/docs/users/protected-pages.yaml b/packages/docs/users/protected-pages.yaml
index 58c7bea1c..d19f0bbbc 100644
--- a/packages/docs/users/protected-pages.yaml
+++ b/packages/docs/users/protected-pages.yaml
@@ -36,7 +36,7 @@ _ref:
###### List specific public pages:
```yaml
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
config:
auth:
pages:
@@ -48,7 +48,7 @@ _ref:
````
###### List specific protected pages:
```yaml
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
config:
auth:
pages:
diff --git a/packages/docs/users/roles.yaml b/packages/docs/users/roles.yaml
index 8f4e07882..f706d52e2 100644
--- a/packages/docs/users/roles.yaml
+++ b/packages/docs/users/roles.yaml
@@ -29,7 +29,7 @@ _ref:
Roles can be read from a custom claim on the OpenID Connect `idToken`. This should be an array of strings which are the role names. This needs to be configured at the OpenID Connect provider. The field that contains the roles array is configured in the `config.auth.openId` field in the Lowdefy configuration.
```yaml
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
config:
auth:
openId:
@@ -43,7 +43,7 @@ _ref:
###### Protect pages using roles:
```yaml
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
config:
auth:
openId:
diff --git a/packages/docs/users/users-introduction.yaml b/packages/docs/users/users-introduction.yaml
index 93c65614e..b9c922e1f 100644
--- a/packages/docs/users/users-introduction.yaml
+++ b/packages/docs/users/users-introduction.yaml
@@ -48,7 +48,7 @@ _ref:
content: |
Most authorization and authentication settings are configured in the `config.auth` object in the Lowdefy configuration. The following config can be set:
```yaml
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
config:
auth:
openId:
diff --git a/packages/docs/version.yaml b/packages/docs/version.yaml
index 3282124ee..c383e22aa 100644
--- a/packages/docs/version.yaml
+++ b/packages/docs/version.yaml
@@ -1 +1 @@
-v3.19.0
+v3.20.0
diff --git a/packages/engine/CHANGELOG.md b/packages/engine/CHANGELOG.md
index 2c62eb8ba..b3dd5a5e0 100644
--- a/packages/engine/CHANGELOG.md
+++ b/packages/engine/CHANGELOG.md
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* **engine:** Add tests for Blocks.validate. ([0a0a66a](https://github.com/lowdefy/lowdefy/commit/0a0a66aa7639db6fcded6aa5a4937c2b96e6e7c8))
+* **engine:** Catch CallMethod method not defined error and add tests for CallMethod. ([96f9cb1](https://github.com/lowdefy/lowdefy/commit/96f9cb1d65c80727a27703497a9c25cf694de11d))
+* **engine:** Fixes to event debouncing and tests. ([89266f2](https://github.com/lowdefy/lowdefy/commit/89266f2dbdf860434c94811613a07a385afdc78d))
+* **engine:** Refactor Validate to work with getBlockMatcher. ([8c9de14](https://github.com/lowdefy/lowdefy/commit/8c9de14c3f26a64adf2a5dbb93b86105978c62d4))
+* **engine:** Remove showValidationErrors from context. ([24e0bbc](https://github.com/lowdefy/lowdefy/commit/24e0bbc3a849a8d3cc2b4b3313a3530dd0369b03))
+* **engine:** Update action tests to include debounce. ([b21c440](https://github.com/lowdefy/lowdefy/commit/b21c440eb0144bb5d53a2d3320bc8637de300c90))
+* **engine:** Update events test for undefined event. ([05bc928](https://github.com/lowdefy/lowdefy/commit/05bc928e45d07fba5b6a27e505cd3c1128b4216b))
+
+
+### Features
+
+* **blocksAntd:** Added onclose action chain error detection to ConfirmModal, Drawer, Modal. ([66e0692](https://github.com/lowdefy/lowdefy/commit/66e0692d9c9dc8a25be9115d2522e4cb77075c50))
+* **engine:** Add async option to actions ([81036db](https://github.com/lowdefy/lowdefy/commit/81036db446ae64cd023fe198360fa9506e818ca0))
+* **engine:** Add async tests and update docs. ([fd967b9](https://github.com/lowdefy/lowdefy/commit/fd967b929b4ab57a787b1e052c74334dfc54e87b))
+* **engine:** Add debounce option to events. ([003cb0b](https://github.com/lowdefy/lowdefy/commit/003cb0b1ec13a246aa4848f2c5020a937b97ac3d))
+* **engine:** Add ResetValidation action. ([01237e3](https://github.com/lowdefy/lowdefy/commit/01237e3340b3547ae88cc7248eed7daa1ac5e4c5))
+* **engine:** Add tests for events debounce. ([2ff29cb](https://github.com/lowdefy/lowdefy/commit/2ff29cb772bc940bb59dc976c31d473771c8da97))
+* **engine:** Add Throw action. ([d2a23f0](https://github.com/lowdefy/lowdefy/commit/d2a23f0022aca6d9f0e330ef3652ad2a8f8364b7))
+* **engine:** Document Lowdefy action functions in JsAction. ([7634145](https://github.com/lowdefy/lowdefy/commit/7634145286cdb8483bbcd151343bbcb6d5a0a65f))
+* **engine:** showValidation on block level and params.regex for Validate. ([6824b07](https://github.com/lowdefy/lowdefy/commit/6824b07127f86ed19d0239ba903f88ddb4287932))
+* Add back option to link. ([b6cf705](https://github.com/lowdefy/lowdefy/commit/b6cf705d5c7e0b54a3c22d7a33116fc30dc9e191)), closes [#728](https://github.com/lowdefy/lowdefy/issues/728)
+* Add Lowdefy actions to JsAction ([7af4442](https://github.com/lowdefy/lowdefy/commit/7af4442c6f2314ffbf927a413c15649425a93b59))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/engine
diff --git a/packages/engine/package.json b/packages/engine/package.json
index c4b9ee620..5b5059f04 100644
--- a/packages/engine/package.json
+++ b/packages/engine/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/engine",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -36,8 +36,8 @@
"test": "jest --coverage"
},
"dependencies": {
- "@lowdefy/helpers": "3.19.0",
- "@lowdefy/operators": "3.19.0",
+ "@lowdefy/helpers": "3.20.0",
+ "@lowdefy/operators": "3.20.0",
"graphql": "15.5.0",
"graphql-tag": "2.12.4"
},
diff --git a/packages/format/CHANGELOG.md b/packages/format/CHANGELOG.md
index 8dc6470b0..fa2778bf5 100644
--- a/packages/format/CHANGELOG.md
+++ b/packages/format/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/format
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/format
diff --git a/packages/format/package.json b/packages/format/package.json
index 51e4828af..271867723 100644
--- a/packages/format/package.json
+++ b/packages/format/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/format",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
diff --git a/packages/graphql-federated/CHANGELOG.md b/packages/graphql-federated/CHANGELOG.md
index 847c5b706..ab431a53b 100644
--- a/packages/graphql-federated/CHANGELOG.md
+++ b/packages/graphql-federated/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/graphql-federated
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/graphql-federated
diff --git a/packages/graphql-federated/package.json b/packages/graphql-federated/package.json
index 66e46ab18..ee030f33c 100644
--- a/packages/graphql-federated/package.json
+++ b/packages/graphql-federated/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/graphql-federated",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -37,7 +37,7 @@
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
- "@lowdefy/graphql": "3.19.0"
+ "@lowdefy/graphql": "3.20.0"
},
"devDependencies": {
"@babel/cli": "7.14.3",
diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md
index 4c314b8c6..dd4cbd6ed 100644
--- a/packages/graphql/CHANGELOG.md
+++ b/packages/graphql/CHANGELOG.md
@@ -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.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* Enable read/write checking for Elasticsearch ([9d13c32](https://github.com/lowdefy/lowdefy/commit/9d13c326eeb8e90d4880aa472a16c72bc71001fb))
+
+
+### Features
+
+* **graphql:** Updated mongo client to include connection options and documented command options. ([57127ee](https://github.com/lowdefy/lowdefy/commit/57127ee9240ae1e20fae109e4928048e232b9935))
+* **graphql:** Updated mongodb to 4.1.0 and documented MongoDBAggregation options. ([3fefe99](https://github.com/lowdefy/lowdefy/commit/3fefe9974362485d752a9de1c940d5e3f44932ea))
+* add ElasticsearchDelete request. ([9f1fc34](https://github.com/lowdefy/lowdefy/commit/9f1fc347d60b5f2877d7331007359ff5746c735b))
+* Add ElasticsearchDeleteByQuery request. ([a370e9e](https://github.com/lowdefy/lowdefy/commit/a370e9e7c615bac4341f26f7bafb2abd5dc707a7))
+* add ElasticsearchIndex request. ([08de720](https://github.com/lowdefy/lowdefy/commit/08de720351c62d5211d94d145105e76e5dd55f5c))
+* Add ElasticsearchUpdate request. ([a23a7be](https://github.com/lowdefy/lowdefy/commit/a23a7be1632f60beef162dc726168b51f185508e))
+* Add ElasticsearchUpdateByQuery request. ([3cc30ca](https://github.com/lowdefy/lowdefy/commit/3cc30ca4a893e486c487fc6c1c3ca18042ce68d7))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
diff --git a/packages/graphql/package.json b/packages/graphql/package.json
index 048ff6863..dec0536f1 100644
--- a/packages/graphql/package.json
+++ b/packages/graphql/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/graphql",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -39,11 +39,11 @@
},
"dependencies": {
"@elastic/elasticsearch": "7.13.0",
- "@lowdefy/ajv": "3.19.0",
- "@lowdefy/helpers": "3.19.0",
- "@lowdefy/node-utils": "3.19.0",
- "@lowdefy/nunjucks": "3.19.0",
- "@lowdefy/operators": "3.19.0",
+ "@lowdefy/ajv": "3.20.0",
+ "@lowdefy/helpers": "3.20.0",
+ "@lowdefy/node-utils": "3.20.0",
+ "@lowdefy/nunjucks": "3.20.0",
+ "@lowdefy/operators": "3.20.0",
"@sendgrid/mail": "7.4.4",
"ajv": "6.12.6",
"ajv-errors": "1.0.1",
diff --git a/packages/helpers/CHANGELOG.md b/packages/helpers/CHANGELOG.md
index d608c265b..e38ff2e29 100644
--- a/packages/helpers/CHANGELOG.md
+++ b/packages/helpers/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/helpers
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/helpers
diff --git a/packages/helpers/package.json b/packages/helpers/package.json
index 418e82db8..b91d86fb4 100644
--- a/packages/helpers/package.json
+++ b/packages/helpers/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/helpers",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
diff --git a/packages/layout/CHANGELOG.md b/packages/layout/CHANGELOG.md
index e69eb9a9f..ae7068ff7 100644
--- a/packages/layout/CHANGELOG.md
+++ b/packages/layout/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/layout
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/layout
diff --git a/packages/layout/package.json b/packages/layout/package.json
index 3eb2d2978..ae59f5d6d 100644
--- a/packages/layout/package.json
+++ b/packages/layout/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/layout",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -37,8 +37,8 @@
"test": "jest --coverage"
},
"dependencies": {
- "@lowdefy/block-tools": "3.19.0",
- "@lowdefy/helpers": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
+ "@lowdefy/helpers": "3.20.0",
"antd": "4.4.2",
"react": "17.0.2",
"react-dom": "17.0.2"
diff --git a/packages/nodeUtils/CHANGELOG.md b/packages/nodeUtils/CHANGELOG.md
index e1b391c1a..ff84b0225 100644
--- a/packages/nodeUtils/CHANGELOG.md
+++ b/packages/nodeUtils/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/node-utils
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/node-utils
diff --git a/packages/nodeUtils/package.json b/packages/nodeUtils/package.json
index 34e12bc5d..604467988 100644
--- a/packages/nodeUtils/package.json
+++ b/packages/nodeUtils/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/node-utils",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -36,7 +36,7 @@
"prepare": "yarn build"
},
"dependencies": {
- "@lowdefy/helpers": "3.19.0",
+ "@lowdefy/helpers": "3.20.0",
"rimraf": "3.0.2"
},
"devDependencies": {
diff --git a/packages/nunjucks/CHANGELOG.md b/packages/nunjucks/CHANGELOG.md
index 5fd9754d0..5c58be183 100644
--- a/packages/nunjucks/CHANGELOG.md
+++ b/packages/nunjucks/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/nunjucks
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/nunjucks
diff --git a/packages/nunjucks/package.json b/packages/nunjucks/package.json
index 645d2f453..088f00063 100644
--- a/packages/nunjucks/package.json
+++ b/packages/nunjucks/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/nunjucks",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -38,7 +38,7 @@
"prepare": "yarn build"
},
"dependencies": {
- "@lowdefy/helpers": "3.19.0",
+ "@lowdefy/helpers": "3.20.0",
"moment": "2.29.1",
"nunjucks": "3.2.3"
},
diff --git a/packages/operators/CHANGELOG.md b/packages/operators/CHANGELOG.md
index e2b076564..b8ef5d375 100644
--- a/packages/operators/CHANGELOG.md
+++ b/packages/operators/CHANGELOG.md
@@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* **operators:** Fix homePageId typo and update tests. ([6bfa83a](https://github.com/lowdefy/lowdefy/commit/6bfa83a68c355858ab8ade2d3a2e8a8df45bb6dc))
+* Add _number operator. ([1ca3966](https://github.com/lowdefy/lowdefy/commit/1ca3966495f96da9a66fa912a70703748c10d197))
+* Fix _number operator tests. ([3b36a53](https://github.com/lowdefy/lowdefy/commit/3b36a53e42f0996c7ba6d5e2e19436c438a08ffe))
+* Fixes for configurable basePath. ([63955bb](https://github.com/lowdefy/lowdefy/commit/63955bbd1131da3b27b537d4e0d72dc943119287))
+
+
+### Features
+
+* **operators:** Add basePath to _location. ([eb95c8a](https://github.com/lowdefy/lowdefy/commit/eb95c8a64b2b7698f006750cd3639ee71dbbf4a9))
+* **operators:** Add pageId and homePageId to _location. ([00842d4](https://github.com/lowdefy/lowdefy/commit/00842d48153fc2b49ac6bd6cd88d73c3cce0c178))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
diff --git a/packages/operators/package.json b/packages/operators/package.json
index d2c4a584f..eb14c410a 100644
--- a/packages/operators/package.json
+++ b/packages/operators/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/operators",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -36,9 +36,9 @@
"prepare": "yarn build"
},
"dependencies": {
- "@lowdefy/format": "3.19.0",
- "@lowdefy/helpers": "3.19.0",
- "@lowdefy/nunjucks": "3.19.0",
+ "@lowdefy/format": "3.20.0",
+ "@lowdefy/helpers": "3.20.0",
+ "@lowdefy/nunjucks": "3.20.0",
"change-case": "4.1.2",
"deep-diff": "1.0.2",
"js-yaml": "4.1.0",
diff --git a/packages/renderer/CHANGELOG.md b/packages/renderer/CHANGELOG.md
index 2ca625c45..b02ebb0bc 100644
--- a/packages/renderer/CHANGELOG.md
+++ b/packages/renderer/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.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* Fixes for configurable basePath. ([63955bb](https://github.com/lowdefy/lowdefy/commit/63955bbd1131da3b27b537d4e0d72dc943119287))
+
+
+### Features
+
+* Add back option to link. ([b6cf705](https://github.com/lowdefy/lowdefy/commit/b6cf705d5c7e0b54a3c22d7a33116fc30dc9e191)), closes [#728](https://github.com/lowdefy/lowdefy/issues/728)
+* Make server basepath configurable ([3981f8c](https://github.com/lowdefy/lowdefy/commit/3981f8c60b9a2e6f5429a5fba499c65c16ccf30f))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/renderer
diff --git a/packages/renderer/package.json b/packages/renderer/package.json
index 98a68e256..3ba99ccd4 100644
--- a/packages/renderer/package.json
+++ b/packages/renderer/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/renderer",
- "version": "3.19.0",
+ "version": "3.20.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -40,10 +40,10 @@
"@apollo/link-context": "2.0.0-beta.3",
"@apollo/link-error": "2.0.0-beta.3",
"@apollo/link-retry": "2.0.0-beta.3",
- "@lowdefy/block-tools": "3.19.0",
- "@lowdefy/engine": "3.19.0",
- "@lowdefy/helpers": "3.19.0",
- "@lowdefy/layout": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
+ "@lowdefy/engine": "3.20.0",
+ "@lowdefy/helpers": "3.20.0",
+ "@lowdefy/layout": "3.20.0",
"graphql": "15.5.0",
"graphql-type-json": "0.3.2",
"react": "17.0.2",
diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md
index 785c54d76..3f4a9bdda 100644
--- a/packages/server/CHANGELOG.md
+++ b/packages/server/CHANGELOG.md
@@ -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.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* Fixes for configurable basePath. ([63955bb](https://github.com/lowdefy/lowdefy/commit/63955bbd1131da3b27b537d4e0d72dc943119287))
+
+
+### Features
+
+* Make server basepath configurable ([3981f8c](https://github.com/lowdefy/lowdefy/commit/3981f8c60b9a2e6f5429a5fba499c65c16ccf30f))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
diff --git a/packages/server/package.json b/packages/server/package.json
index e737b3437..2f1d87136 100644
--- a/packages/server/package.json
+++ b/packages/server/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/server",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -37,9 +37,9 @@
"start": "nodemon dist/server.js"
},
"dependencies": {
- "@lowdefy/graphql": "3.19.0",
- "@lowdefy/helpers": "3.19.0",
- "@lowdefy/node-utils": "3.19.0",
+ "@lowdefy/graphql": "3.20.0",
+ "@lowdefy/helpers": "3.20.0",
+ "@lowdefy/node-utils": "3.20.0",
"apollo-server-express": "2.25.0",
"dotenv": "10.0.0",
"express": "4.17.1",
@@ -50,7 +50,7 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/block-tools": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"jest": "26.6.3",
diff --git a/packages/servers/serverAwsLambda/CHANGELOG.md b/packages/servers/serverAwsLambda/CHANGELOG.md
index b1b3dcc29..ee1feec09 100644
--- a/packages/servers/serverAwsLambda/CHANGELOG.md
+++ b/packages/servers/serverAwsLambda/CHANGELOG.md
@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Features
+
+* Make server basepath configurable ([3981f8c](https://github.com/lowdefy/lowdefy/commit/3981f8c60b9a2e6f5429a5fba499c65c16ccf30f))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/server-aws-lambda
diff --git a/packages/servers/serverAwsLambda/package.json b/packages/servers/serverAwsLambda/package.json
index 55abf1eb9..32e5e81ac 100644
--- a/packages/servers/serverAwsLambda/package.json
+++ b/packages/servers/serverAwsLambda/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/server-aws-lambda",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -39,10 +39,10 @@
"start": "nodemon dist/server.js"
},
"dependencies": {
- "@lowdefy/graphql": "3.19.0",
- "@lowdefy/node-utils": "3.19.0",
- "@lowdefy/server": "3.19.0",
- "@lowdefy/shell": "3.19.0",
+ "@lowdefy/graphql": "3.20.0",
+ "@lowdefy/node-utils": "3.20.0",
+ "@lowdefy/server": "3.20.0",
+ "@lowdefy/shell": "3.20.0",
"apollo-server-express": "2.25.0",
"express": "4.17.1",
"graphql": "15.5.0",
@@ -53,7 +53,7 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/block-tools": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
@@ -61,7 +61,7 @@
"css-loader": "5.2.6",
"html-webpack-plugin": "5.3.1",
"jest": "26.6.3",
- "lowdefy": "3.19.0",
+ "lowdefy": "3.20.0",
"nodemon": "2.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
diff --git a/packages/servers/serverDev/CHANGELOG.md b/packages/servers/serverDev/CHANGELOG.md
index aaab64320..3aba314fc 100644
--- a/packages/servers/serverDev/CHANGELOG.md
+++ b/packages/servers/serverDev/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.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* Fixes for configurable basePath. ([63955bb](https://github.com/lowdefy/lowdefy/commit/63955bbd1131da3b27b537d4e0d72dc943119287))
+* **blocksAntd:** Use relative paths with Link. ([f43762f](https://github.com/lowdefy/lowdefy/commit/f43762fc9eccd1876b0f240f3ea1ac64373238a3))
+
+
+### Features
+
+* Make server basepath configurable ([3981f8c](https://github.com/lowdefy/lowdefy/commit/3981f8c60b9a2e6f5429a5fba499c65c16ccf30f))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/server-dev
diff --git a/packages/servers/serverDev/package.json b/packages/servers/serverDev/package.json
index 2dbc604e1..acbd8a52a 100644
--- a/packages/servers/serverDev/package.json
+++ b/packages/servers/serverDev/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/server-dev",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -36,10 +36,10 @@
"start": "nodemon dist/server.js"
},
"dependencies": {
- "@lowdefy/graphql": "3.19.0",
- "@lowdefy/node-utils": "3.19.0",
- "@lowdefy/server": "3.19.0",
- "@lowdefy/shell": "3.19.0",
+ "@lowdefy/graphql": "3.20.0",
+ "@lowdefy/node-utils": "3.20.0",
+ "@lowdefy/server": "3.20.0",
+ "@lowdefy/shell": "3.20.0",
"apollo-server-express": "2.25.0",
"dotenv": "10.0.0",
"express": "4.17.1",
@@ -50,7 +50,7 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/block-tools": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
diff --git a/packages/servers/serverDocker/CHANGELOG.md b/packages/servers/serverDocker/CHANGELOG.md
index 45b2cc6e8..a66d00e4f 100644
--- a/packages/servers/serverDocker/CHANGELOG.md
+++ b/packages/servers/serverDocker/CHANGELOG.md
@@ -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.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* Fix Docker server docs ([5171320](https://github.com/lowdefy/lowdefy/commit/517132043f18dce96729252c2aaac90e204df5d7))
+
+
+### Features
+
+* Make server basepath configurable ([3981f8c](https://github.com/lowdefy/lowdefy/commit/3981f8c60b9a2e6f5429a5fba499c65c16ccf30f))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/server-docker
diff --git a/packages/servers/serverDocker/package.json b/packages/servers/serverDocker/package.json
index 2ba455c6b..bff1c6f07 100644
--- a/packages/servers/serverDocker/package.json
+++ b/packages/servers/serverDocker/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/server-docker",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -39,10 +39,10 @@
"start": "node dist/server.js"
},
"dependencies": {
- "@lowdefy/graphql": "3.19.0",
- "@lowdefy/node-utils": "3.19.0",
- "@lowdefy/server": "3.19.0",
- "@lowdefy/shell": "3.19.0",
+ "@lowdefy/graphql": "3.20.0",
+ "@lowdefy/node-utils": "3.20.0",
+ "@lowdefy/server": "3.20.0",
+ "@lowdefy/shell": "3.20.0",
"apollo-server-express": "2.25.0",
"express": "4.17.1",
"graphql": "15.5.0"
@@ -52,11 +52,11 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/block-tools": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"jest": "26.6.3",
- "lowdefy": "3.19.0"
+ "lowdefy": "3.20.0"
},
"publishConfig": {
"access": "public"
diff --git a/packages/servers/serverNetlify/CHANGELOG.md b/packages/servers/serverNetlify/CHANGELOG.md
index d5de564f9..28c2f16e1 100644
--- a/packages/servers/serverNetlify/CHANGELOG.md
+++ b/packages/servers/serverNetlify/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+**Note:** Version bump only for package @lowdefy/server-netlify
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/server-netlify
diff --git a/packages/servers/serverNetlify/package.json b/packages/servers/serverNetlify/package.json
index 5d28e9f0c..2502017cd 100644
--- a/packages/servers/serverNetlify/package.json
+++ b/packages/servers/serverNetlify/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/server-netlify",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -37,9 +37,9 @@
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
- "@lowdefy/graphql": "3.19.0",
- "@lowdefy/node-utils": "3.19.0",
- "@lowdefy/server": "3.19.0",
+ "@lowdefy/graphql": "3.20.0",
+ "@lowdefy/node-utils": "3.20.0",
+ "@lowdefy/server": "3.20.0",
"apollo-server-express": "2.25.0",
"express": "4.17.1",
"graphql": "15.5.0",
@@ -50,7 +50,7 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/block-tools": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
diff --git a/packages/servers/serverNode/CHANGELOG.md b/packages/servers/serverNode/CHANGELOG.md
new file mode 100644
index 000000000..e4c13b2a8
--- /dev/null
+++ b/packages/servers/serverNode/CHANGELOG.md
@@ -0,0 +1,13 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Features
+
+* Document node server. ([20dfb7d](https://github.com/lowdefy/lowdefy/commit/20dfb7db70868a0b2006f4f004736562acc480dc))
+* Initialise @lowdefy/server-node package ([17c27f7](https://github.com/lowdefy/lowdefy/commit/17c27f7f49ca8df85e609760c0c2c3fea73f4a62))
+* Make server basepath configurable ([3981f8c](https://github.com/lowdefy/lowdefy/commit/3981f8c60b9a2e6f5429a5fba499c65c16ccf30f))
diff --git a/packages/servers/serverNode/package.json b/packages/servers/serverNode/package.json
index 9ebcd055f..216e64954 100644
--- a/packages/servers/serverNode/package.json
+++ b/packages/servers/serverNode/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/server-node",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -39,10 +39,10 @@
"start": "node dist/server.js"
},
"dependencies": {
- "@lowdefy/graphql": "3.19.0",
- "@lowdefy/node-utils": "3.19.0",
- "@lowdefy/server": "3.19.0",
- "@lowdefy/shell": "3.19.0",
+ "@lowdefy/graphql": "3.20.0",
+ "@lowdefy/node-utils": "3.20.0",
+ "@lowdefy/server": "3.20.0",
+ "@lowdefy/shell": "3.20.0",
"apollo-server-express": "2.25.0",
"express": "4.17.1",
"graphql": "15.5.0",
diff --git a/packages/shell/CHANGELOG.md b/packages/shell/CHANGELOG.md
index adcbda3c8..d0ebbc6aa 100644
--- a/packages/shell/CHANGELOG.md
+++ b/packages/shell/CHANGELOG.md
@@ -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.
+# [3.20.0](https://github.com/lowdefy/lowdefy/compare/v3.19.0...v3.20.0) (2021-08-20)
+
+
+### Bug Fixes
+
+* Fixes for configurable basePath. ([63955bb](https://github.com/lowdefy/lowdefy/commit/63955bbd1131da3b27b537d4e0d72dc943119287))
+
+
+### Features
+
+* Make server basepath configurable ([3981f8c](https://github.com/lowdefy/lowdefy/commit/3981f8c60b9a2e6f5429a5fba499c65c16ccf30f))
+
+
+
+
+
# [3.19.0](https://github.com/lowdefy/lowdefy/compare/v3.18.1...v3.19.0) (2021-07-26)
**Note:** Version bump only for package @lowdefy/shell
diff --git a/packages/shell/package.json b/packages/shell/package.json
index 806fb6c94..af8429b90 100644
--- a/packages/shell/package.json
+++ b/packages/shell/package.json
@@ -1,6 +1,6 @@
{
"name": "@lowdefy/shell",
- "version": "3.19.0",
+ "version": "3.20.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
@@ -38,9 +38,9 @@
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
- "@lowdefy/graphql": "3.19.0",
- "@lowdefy/node-utils": "3.19.0",
- "@lowdefy/server": "3.19.0",
+ "@lowdefy/graphql": "3.20.0",
+ "@lowdefy/node-utils": "3.20.0",
+ "@lowdefy/server": "3.20.0",
"apollo-server-express": "2.25.0",
"dotenv": "10.0.0",
"express": "4.17.1",
@@ -51,7 +51,7 @@
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
- "@lowdefy/block-tools": "3.19.0",
+ "@lowdefy/block-tools": "3.20.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
diff --git a/yarn.lock b/yarn.lock
index c2b470b43..3a7443b6f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2916,14 +2916,14 @@ __metadata:
languageName: node
linkType: hard
-"@lowdefy/ajv@3.19.0, @lowdefy/ajv@workspace:packages/ajv":
+"@lowdefy/ajv@3.20.0, @lowdefy/ajv@workspace:packages/ajv":
version: 0.0.0-use.local
resolution: "@lowdefy/ajv@workspace:packages/ajv"
dependencies:
"@babel/cli": 7.14.3
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
- "@lowdefy/nunjucks": 3.19.0
+ "@lowdefy/nunjucks": 3.20.0
ajv: 6.12.6
ajv-errors: 1.0.1
babel-jest: 26.6.3
@@ -2932,7 +2932,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/block-tools@3.19.0, @lowdefy/block-tools@workspace:packages/blockTools":
+"@lowdefy/block-tools@3.20.0, @lowdefy/block-tools@workspace:packages/blockTools":
version: 0.0.0-use.local
resolution: "@lowdefy/block-tools@workspace:packages/blockTools"
dependencies:
@@ -2940,7 +2940,7 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/helpers": 3.19.0
+ "@lowdefy/helpers": 3.20.0
"@wojtekmaj/enzyme-adapter-react-17": 0.6.1
ajv: 6.12.6
ajv-errors: 1.0.1
@@ -2971,7 +2971,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/blocks-antd@3.19.0, @lowdefy/blocks-antd@workspace:packages/blocks/blocksAntd":
+"@lowdefy/blocks-antd@3.20.0, @lowdefy/blocks-antd@workspace:packages/blocks/blocksAntd":
version: 0.0.0-use.local
resolution: "@lowdefy/blocks-antd@workspace:packages/blocks/blocksAntd"
dependencies:
@@ -2980,9 +2980,9 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/color": 3.19.0
- "@lowdefy/helpers": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/color": 3.20.0
+ "@lowdefy/helpers": 3.20.0
"@wojtekmaj/enzyme-adapter-react-17": 0.6.1
antd: 4.4.2
babel-jest: 26.6.3
@@ -3027,8 +3027,8 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/helpers": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/helpers": 3.20.0
"@wojtekmaj/enzyme-adapter-react-17": 0.6.1
babel-jest: 26.6.3
babel-loader: 8.2.2
@@ -3064,9 +3064,9 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/blocks-antd": 3.19.0
- "@lowdefy/helpers": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/blocks-antd": 3.20.0
+ "@lowdefy/helpers": 3.20.0
"@wojtekmaj/enzyme-adapter-react-17": 0.6.1
babel-jest: 26.6.3
babel-loader: 8.2.2
@@ -3107,8 +3107,8 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/helpers": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/helpers": 3.20.0
babel-jest: 26.6.3
babel-loader: 8.2.2
buffer: 6.0.3
@@ -3144,8 +3144,8 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/helpers": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/helpers": 3.20.0
"@wojtekmaj/enzyme-adapter-react-17": 0.6.1
babel-jest: 26.6.3
babel-loader: 8.2.2
@@ -3184,10 +3184,10 @@ __metadata:
"@babel/cli": 7.14.3
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
- "@lowdefy/ajv": 3.19.0
- "@lowdefy/helpers": 3.19.0
- "@lowdefy/node-utils": 3.19.0
- "@lowdefy/nunjucks": 3.19.0
+ "@lowdefy/ajv": 3.20.0
+ "@lowdefy/helpers": 3.20.0
+ "@lowdefy/node-utils": 3.20.0
+ "@lowdefy/nunjucks": 3.20.0
ajv: 6.12.6
axios: 0.21.1
babel-jest: 26.6.3
@@ -3202,7 +3202,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/color@3.19.0, @lowdefy/color@workspace:packages/color":
+"@lowdefy/color@3.20.0, @lowdefy/color@workspace:packages/color":
version: 0.0.0-use.local
resolution: "@lowdefy/color@workspace:packages/color"
dependencies:
@@ -3227,15 +3227,15 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/engine@3.19.0, @lowdefy/engine@workspace:packages/engine":
+"@lowdefy/engine@3.20.0, @lowdefy/engine@workspace:packages/engine":
version: 0.0.0-use.local
resolution: "@lowdefy/engine@workspace:packages/engine"
dependencies:
"@babel/cli": 7.14.3
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
- "@lowdefy/helpers": 3.19.0
- "@lowdefy/operators": 3.19.0
+ "@lowdefy/helpers": 3.20.0
+ "@lowdefy/operators": 3.20.0
babel-jest: 26.6.3
graphql: 15.5.0
graphql-tag: 2.12.4
@@ -3243,7 +3243,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/format@3.19.0, @lowdefy/format@workspace:packages/format":
+"@lowdefy/format@3.20.0, @lowdefy/format@workspace:packages/format":
version: 0.0.0-use.local
resolution: "@lowdefy/format@workspace:packages/format"
dependencies:
@@ -3263,7 +3263,7 @@ __metadata:
"@babel/cli": 7.14.3
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
- "@lowdefy/graphql": 3.19.0
+ "@lowdefy/graphql": 3.20.0
babel-loader: 8.2.2
clean-webpack-plugin: 3.0.0
webpack: 5.38.1
@@ -3271,7 +3271,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/graphql@3.19.0, @lowdefy/graphql@workspace:packages/graphql":
+"@lowdefy/graphql@3.20.0, @lowdefy/graphql@workspace:packages/graphql":
version: 0.0.0-use.local
resolution: "@lowdefy/graphql@workspace:packages/graphql"
dependencies:
@@ -3279,11 +3279,11 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@elastic/elasticsearch": 7.13.0
- "@lowdefy/ajv": 3.19.0
- "@lowdefy/helpers": 3.19.0
- "@lowdefy/node-utils": 3.19.0
- "@lowdefy/nunjucks": 3.19.0
- "@lowdefy/operators": 3.19.0
+ "@lowdefy/ajv": 3.20.0
+ "@lowdefy/helpers": 3.20.0
+ "@lowdefy/node-utils": 3.20.0
+ "@lowdefy/nunjucks": 3.20.0
+ "@lowdefy/operators": 3.20.0
"@sendgrid/mail": 7.4.4
"@shelf/jest-mongodb": 1.2.5
ajv: 6.12.6
@@ -3317,7 +3317,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/helpers@3.19.0, @lowdefy/helpers@workspace:packages/helpers":
+"@lowdefy/helpers@3.20.0, @lowdefy/helpers@workspace:packages/helpers":
version: 0.0.0-use.local
resolution: "@lowdefy/helpers@workspace:packages/helpers"
dependencies:
@@ -3332,7 +3332,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/layout@3.19.0, @lowdefy/layout@workspace:packages/layout":
+"@lowdefy/layout@3.20.0, @lowdefy/layout@workspace:packages/layout":
version: 0.0.0-use.local
resolution: "@lowdefy/layout@workspace:packages/layout"
dependencies:
@@ -3340,8 +3340,8 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/helpers": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/helpers": 3.20.0
antd: 4.4.2
babel-jest: 26.6.3
babel-loader: 8.2.2
@@ -3389,14 +3389,14 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/node-utils@3.19.0, @lowdefy/node-utils@workspace:packages/nodeUtils":
+"@lowdefy/node-utils@3.20.0, @lowdefy/node-utils@workspace:packages/nodeUtils":
version: 0.0.0-use.local
resolution: "@lowdefy/node-utils@workspace:packages/nodeUtils"
dependencies:
"@babel/cli": 7.14.3
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
- "@lowdefy/helpers": 3.19.0
+ "@lowdefy/helpers": 3.20.0
babel-jest: 26.6.3
jest: 26.6.3
jest-diff: 26.6.2
@@ -3404,14 +3404,14 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/nunjucks@3.19.0, @lowdefy/nunjucks@workspace:packages/nunjucks":
+"@lowdefy/nunjucks@3.20.0, @lowdefy/nunjucks@workspace:packages/nunjucks":
version: 0.0.0-use.local
resolution: "@lowdefy/nunjucks@workspace:packages/nunjucks"
dependencies:
"@babel/cli": 7.14.3
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
- "@lowdefy/helpers": 3.19.0
+ "@lowdefy/helpers": 3.20.0
babel-jest: 26.6.3
jest: 26.6.3
moment: 2.29.1
@@ -3419,16 +3419,16 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/operators@3.19.0, @lowdefy/operators@workspace:packages/operators":
+"@lowdefy/operators@3.20.0, @lowdefy/operators@workspace:packages/operators":
version: 0.0.0-use.local
resolution: "@lowdefy/operators@workspace:packages/operators"
dependencies:
"@babel/cli": 7.14.3
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
- "@lowdefy/format": 3.19.0
- "@lowdefy/helpers": 3.19.0
- "@lowdefy/nunjucks": 3.19.0
+ "@lowdefy/format": 3.20.0
+ "@lowdefy/helpers": 3.20.0
+ "@lowdefy/nunjucks": 3.20.0
babel-jest: 26.6.3
change-case: 4.1.2
deep-diff: 1.0.2
@@ -3449,10 +3449,10 @@ __metadata:
"@apollo/link-retry": 2.0.0-beta.3
"@babel/core": 7.14.3
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/engine": 3.19.0
- "@lowdefy/helpers": 3.19.0
- "@lowdefy/layout": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/engine": 3.20.0
+ "@lowdefy/helpers": 3.20.0
+ "@lowdefy/layout": 3.20.0
babel-loader: 8.2.2
clean-webpack-plugin: 3.0.0
css-loader: 5.2.6
@@ -3480,11 +3480,11 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/graphql": 3.19.0
- "@lowdefy/node-utils": 3.19.0
- "@lowdefy/server": 3.19.0
- "@lowdefy/shell": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/graphql": 3.20.0
+ "@lowdefy/node-utils": 3.20.0
+ "@lowdefy/server": 3.20.0
+ "@lowdefy/shell": 3.20.0
apollo-server-express: 2.25.0
babel-jest: 26.6.3
babel-loader: 8.2.2
@@ -3495,7 +3495,7 @@ __metadata:
graphql: 15.5.0
html-webpack-plugin: 5.3.1
jest: 26.6.3
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
nodemon: 2.0.7
react: 17.0.2
react-dom: 17.0.2
@@ -3514,11 +3514,11 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/graphql": 3.19.0
- "@lowdefy/node-utils": 3.19.0
- "@lowdefy/server": 3.19.0
- "@lowdefy/shell": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/graphql": 3.20.0
+ "@lowdefy/node-utils": 3.20.0
+ "@lowdefy/server": 3.20.0
+ "@lowdefy/shell": 3.20.0
apollo-server-express: 2.25.0
babel-jest: 26.6.3
babel-loader: 8.2.2
@@ -3547,18 +3547,18 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/graphql": 3.19.0
- "@lowdefy/node-utils": 3.19.0
- "@lowdefy/server": 3.19.0
- "@lowdefy/shell": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/graphql": 3.20.0
+ "@lowdefy/node-utils": 3.20.0
+ "@lowdefy/server": 3.20.0
+ "@lowdefy/shell": 3.20.0
apollo-server-express: 2.25.0
babel-jest: 26.6.3
babel-loader: 8.2.2
express: 4.17.1
graphql: 15.5.0
jest: 26.6.3
- lowdefy: 3.19.0
+ lowdefy: 3.20.0
languageName: unknown
linkType: soft
@@ -3570,10 +3570,10 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/graphql": 3.19.0
- "@lowdefy/node-utils": 3.19.0
- "@lowdefy/server": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/graphql": 3.20.0
+ "@lowdefy/node-utils": 3.20.0
+ "@lowdefy/server": 3.20.0
apollo-server-express: 2.25.0
babel-jest: 26.6.3
babel-loader: 8.2.2
@@ -3601,10 +3601,10 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/graphql": 3.19.0
- "@lowdefy/node-utils": 3.19.0
- "@lowdefy/server": 3.19.0
- "@lowdefy/shell": 3.19.0
+ "@lowdefy/graphql": 3.20.0
+ "@lowdefy/node-utils": 3.20.0
+ "@lowdefy/server": 3.20.0
+ "@lowdefy/shell": 3.20.0
apollo-server-express: 2.25.0
babel-jest: 26.6.3
babel-loader: 8.2.2
@@ -3617,7 +3617,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/server@3.19.0, @lowdefy/server@workspace:packages/server":
+"@lowdefy/server@3.20.0, @lowdefy/server@workspace:packages/server":
version: 0.0.0-use.local
resolution: "@lowdefy/server@workspace:packages/server"
dependencies:
@@ -3625,10 +3625,10 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/graphql": 3.19.0
- "@lowdefy/helpers": 3.19.0
- "@lowdefy/node-utils": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/graphql": 3.20.0
+ "@lowdefy/helpers": 3.20.0
+ "@lowdefy/node-utils": 3.20.0
apollo-server-express: 2.25.0
babel-jest: 26.6.3
babel-loader: 8.2.2
@@ -3640,7 +3640,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@lowdefy/shell@3.19.0, @lowdefy/shell@workspace:packages/shell":
+"@lowdefy/shell@3.20.0, @lowdefy/shell@workspace:packages/shell":
version: 0.0.0-use.local
resolution: "@lowdefy/shell@workspace:packages/shell"
dependencies:
@@ -3648,10 +3648,10 @@ __metadata:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/graphql": 3.19.0
- "@lowdefy/node-utils": 3.19.0
- "@lowdefy/server": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/graphql": 3.20.0
+ "@lowdefy/node-utils": 3.20.0
+ "@lowdefy/server": 3.20.0
apollo-server-express: 2.25.0
babel-jest: 26.6.3
babel-loader: 8.2.2
@@ -13713,7 +13713,7 @@ fsevents@^1.2.7:
languageName: node
linkType: hard
-"lowdefy@3.19.0, lowdefy@workspace:packages/cli":
+"lowdefy@3.20.0, lowdefy@workspace:packages/cli":
version: 0.0.0-use.local
resolution: "lowdefy@workspace:packages/cli"
dependencies:
@@ -13721,9 +13721,9 @@ fsevents@^1.2.7:
"@babel/core": 7.14.3
"@babel/preset-env": 7.14.4
"@babel/preset-react": 7.13.13
- "@lowdefy/block-tools": 3.19.0
- "@lowdefy/helpers": 3.19.0
- "@lowdefy/node-utils": 3.19.0
+ "@lowdefy/block-tools": 3.20.0
+ "@lowdefy/helpers": 3.20.0
+ "@lowdefy/node-utils": 3.20.0
apollo-server-express: 2.25.0
axios: 0.21.1
babel-jest: 26.6.3