mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-02-17 14:30:34 +08:00
chore: Relaese version 3.15.0.
This commit is contained in:
parent
d040eb2db9
commit
eed7e942d8
46
CHANGELOG.md
46
CHANGELOG.md
@ -3,6 +3,52 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
## Changes
|
||||
|
||||
### BREAKING
|
||||
|
||||
- Remove `logoutFromProvider` option in `config.auth.openId`.
|
||||
- Remove OracleDB support.
|
||||
|
||||
### Features
|
||||
|
||||
- Allow custom OpenID Connect authorization url parameters.
|
||||
- Add nunjucks template logout url.
|
||||
- Use square logo for `PageHeaderMenu` and `PageSiderMenu` on mobile media sizes.
|
||||
- Docs for user authentication and authorization.
|
||||
|
||||
### Fixes
|
||||
|
||||
- Show warning message before validation error message.
|
||||
- Replace nunjucks-date-filter dependency with dateFilter function that does not default to utc time.
|
||||
- Do not filter OPENID_CLIENT_ID and OPENID_DOMAIN from secrets.
|
||||
- Id token was not sent with openIdLogoutUrlInput request.
|
||||
|
||||
## Commits
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **blocksAntd:** Add square logo for mobile menu. Closes [#545](https://github.com/lowdefy/lowdefy/issues/545) ([296c7ec](https://github.com/lowdefy/lowdefy/commit/296c7ecb1ba4ad92684e64816d55cc2863014152))
|
||||
- **blocksAntd:** Show warning before validation. Closes [#562](https://github.com/lowdefy/lowdefy/issues/562) ([7b4909b](https://github.com/lowdefy/lowdefy/commit/7b4909b07dd4560329aff6515d53c1f283fc9116))
|
||||
- **docs:** Add users object, general fixes. ([72c0e25](https://github.com/lowdefy/lowdefy/commit/72c0e25632061f90176e2e235ac06cc6a24b3f38))
|
||||
- **docs:** Add user authorization docs. ([9f259fd](https://github.com/lowdefy/lowdefy/commit/9f259fdb90bf5e6160c86343ae3ad64ce58b959a))
|
||||
- **docs:** Add user object and roles docs. ([ccc8138](https://github.com/lowdefy/lowdefy/commit/ccc8138d402e485fd05944436d9c52f661c9cae2))
|
||||
- **docs:** Document protected pages. ([7a338b9](https://github.com/lowdefy/lowdefy/commit/7a338b9e96e331bf5aa3cb81977d264fc45eaf84))
|
||||
- **docs:** Generate sitemap for docs. ([5a2e0cd](https://github.com/lowdefy/lowdefy/commit/5a2e0cdffbf9f03769dc32674a5b4e957c524428))
|
||||
- **docs:** Remove OracleDB. ([0672aa8](https://github.com/lowdefy/lowdefy/commit/0672aa8486daf7a43a7cb004606e682ecc52339c))
|
||||
- **nunjucks:** Fix tests. ([f60f00e](https://github.com/lowdefy/lowdefy/commit/f60f00ea131b26dc6aa70ad1d927c38dd71308be))
|
||||
- **nunjucks:** Replace nunjucks-date-filter dependancy with dateFilter function. ([f876c5b](https://github.com/lowdefy/lowdefy/commit/f876c5bc1fef68c8b7459678f1e4f5ce50cf9b73))
|
||||
- **operators:** Do not filter OPENID_CLIENT_ID and OPENID_DOMAIN from secrets. ([3c56737](https://github.com/lowdefy/lowdefy/commit/3c56737cc2b654382e6635b472ae371a2a46cdc8))
|
||||
- Remove support for oracle db due to lack of apple silicon support. ([0a1ca68](https://github.com/lowdefy/lowdefy/commit/0a1ca687607e4d49bc6a0a46e6784eb9a957cd09))
|
||||
- **renderer:** Id token was not sent with openIdLogoutUrlInput request. ([e636c79](https://github.com/lowdefy/lowdefy/commit/e636c7976724fc8e767e6fac3e1c22c617952ae2))
|
||||
|
||||
### Features
|
||||
|
||||
- Allow custom openid authorization url parameters. ([427b3a1](https://github.com/lowdefy/lowdefy/commit/427b3a10036ea77cef0a04335b3dc3bbf9b6e286)), closes [#546](https://github.com/lowdefy/lowdefy/issues/546)
|
||||
- Remove logoutFromProvider config, and nunjucks template logout url ([111d3da](https://github.com/lowdefy/lowdefy/commit/111d3da83f4d132e4243583dabbdd7cdaae69fe7)), closes [#563](https://github.com/lowdefy/lowdefy/issues/563)
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
## Changes
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"packages": [
|
||||
"src/packages/*",
|
||||
"src/packages/blocks/*",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/lowdefy",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"license": "Apache-2.0",
|
||||
"private": true,
|
||||
"description": "Lowdefy monorepo",
|
||||
|
@ -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.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/ajv
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/ajv
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/ajv",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -38,7 +38,7 @@
|
||||
"prepare": "yarn build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/nunjucks": "3.14.1",
|
||||
"@lowdefy/nunjucks": "3.15.0",
|
||||
"ajv": "6.12.6",
|
||||
"ajv-errors": "1.0.1"
|
||||
},
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/block-tools
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/block-tools
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/block-tools",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "Lowdefy Block Tools",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -37,7 +37,7 @@
|
||||
"test": "jest --coverage"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"ajv": "6.12.6",
|
||||
"ajv-errors": "1.0.1",
|
||||
"create-emotion": "10.0.27",
|
||||
|
@ -3,6 +3,18 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **blocksAntd:** Add square logo for mobile menu. Closes [#545](https://github.com/lowdefy/lowdefy/issues/545) ([296c7ec](https://github.com/lowdefy/lowdefy/commit/296c7ecb1ba4ad92684e64816d55cc2863014152))
|
||||
* **blocksAntd:** Show warning before validation. Closes [#562](https://github.com/lowdefy/lowdefy/issues/562) ([7b4909b](https://github.com/lowdefy/lowdefy/commit/7b4909b07dd4560329aff6515d53c1f283fc9116))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-antd
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-antd",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.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.14.1",
|
||||
"@lowdefy/color": "3.14.1",
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"@lowdefy/color": "3.15.0",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"antd": "4.4.2",
|
||||
"classnames": "2.2.6",
|
||||
"moment": "2.29.1",
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-basic
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-basic
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-basic",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.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.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"dompurify": "2.2.6",
|
||||
"react": "17.0.2",
|
||||
"react-dom": "17.0.2"
|
||||
@ -48,7 +48,7 @@
|
||||
"@babel/core": "7.12.16",
|
||||
"@babel/preset-env": "7.12.16",
|
||||
"@babel/preset-react": "7.12.13",
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"@wojtekmaj/enzyme-adapter-react-17": "0.6.0",
|
||||
"babel-jest": "26.6.3",
|
||||
"babel-loader": "8.2.2",
|
||||
|
@ -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.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-color-selectors
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-color-selectors
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-color-selectors",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.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.14.1",
|
||||
"@lowdefy/blocks-antd": "3.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"@lowdefy/blocks-antd": "3.15.0",
|
||||
"react": "17.0.2",
|
||||
"react-color": "2.19.3",
|
||||
"react-dom": "17.0.2"
|
||||
@ -51,7 +51,7 @@
|
||||
"@babel/core": "7.12.16",
|
||||
"@babel/preset-env": "7.12.16",
|
||||
"@babel/preset-react": "7.12.13",
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"@wojtekmaj/enzyme-adapter-react-17": "0.6.0",
|
||||
"babel-jest": "26.6.3",
|
||||
"babel-loader": "8.2.2",
|
||||
|
@ -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.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-echarts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-echarts
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-echarts",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.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.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"echarts": "5.0.2",
|
||||
"echarts-for-react": "3.0.1",
|
||||
"react": "17.0.2",
|
||||
@ -52,7 +52,7 @@
|
||||
"@babel/core": "7.12.16",
|
||||
"@babel/preset-env": "7.12.16",
|
||||
"@babel/preset-react": "7.12.13",
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"babel-jest": "26.6.3",
|
||||
"babel-loader": "8.2.2",
|
||||
"buffer": "6.0.3",
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-markdown
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-markdown
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-markdown",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.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.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"dompurify": "2.2.6",
|
||||
"react": "17.0.2",
|
||||
"react-dom": "17.0.2",
|
||||
@ -53,7 +53,7 @@
|
||||
"@babel/core": "7.12.16",
|
||||
"@babel/preset-env": "7.12.16",
|
||||
"@babel/preset-react": "7.12.13",
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"@wojtekmaj/enzyme-adapter-react-17": "0.6.0",
|
||||
"babel-jest": "26.6.3",
|
||||
"babel-loader": "8.2.2",
|
||||
|
@ -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.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* Remove logoutFromProvider config, and nunjucks template logout url ([111d3da](https://github.com/lowdefy/lowdefy/commit/111d3da83f4d132e4243583dabbdd7cdaae69fe7)), closes [#563](https://github.com/lowdefy/lowdefy/issues/563)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/build
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/build",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -36,10 +36,10 @@
|
||||
"webpack": "webpack --config webpack.config.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/ajv": "3.14.1",
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/node-utils": "3.14.1",
|
||||
"@lowdefy/nunjucks": "3.14.1",
|
||||
"@lowdefy/ajv": "3.15.0",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"@lowdefy/node-utils": "3.15.0",
|
||||
"@lowdefy/nunjucks": "3.15.0",
|
||||
"ajv": "6.12.6",
|
||||
"axios": "0.21.1",
|
||||
"dataloader": "2.0.0",
|
||||
|
@ -3,6 +3,17 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Remove support for oracle db due to lack of apple silicon support. ([0a1ca68](https://github.com/lowdefy/lowdefy/commit/0a1ca687607e4d49bc6a0a46e6784eb9a957cd09))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package lowdefy
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "lowdefy",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.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.14.1",
|
||||
"@lowdefy/node-utils": "3.14.1",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"@lowdefy/node-utils": "3.15.0",
|
||||
"apollo-server-express": "2.21.0",
|
||||
"axios": "0.21.1",
|
||||
"chalk": "4.1.0",
|
||||
@ -70,7 +70,7 @@
|
||||
"@babel/core": "7.12.16",
|
||||
"@babel/preset-env": "7.12.16",
|
||||
"@babel/preset-react": "7.12.13",
|
||||
"@lowdefy/block-tools": "3.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"babel-jest": "26.6.3",
|
||||
"babel-loader": "8.2.2",
|
||||
"clean-webpack-plugin": "3.0.0",
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/color
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/color
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/color",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
|
@ -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.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **docs:** Add users object, general fixes. ([72c0e25](https://github.com/lowdefy/lowdefy/commit/72c0e25632061f90176e2e235ac06cc6a24b3f38))
|
||||
* **docs:** Add user authorization docs. ([9f259fd](https://github.com/lowdefy/lowdefy/commit/9f259fdb90bf5e6160c86343ae3ad64ce58b959a))
|
||||
* **docs:** Add user object and roles docs. ([ccc8138](https://github.com/lowdefy/lowdefy/commit/ccc8138d402e485fd05944436d9c52f661c9cae2))
|
||||
* **docs:** Document protected pages. ([7a338b9](https://github.com/lowdefy/lowdefy/commit/7a338b9e96e331bf5aa3cb81977d264fc45eaf84))
|
||||
* **docs:** Generate sitemap for docs. ([5a2e0cd](https://github.com/lowdefy/lowdefy/commit/5a2e0cdffbf9f03769dc32674a5b4e957c524428))
|
||||
* **docs:** Remove OracleDB. ([0672aa8](https://github.com/lowdefy/lowdefy/commit/0672aa8486daf7a43a7cb004606e682ecc52339c))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/docs
|
||||
|
@ -13,7 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
name: '@lowdefy/docs'
|
||||
lowdefy: '3.14.1'
|
||||
lowdefy: '3.15.0'
|
||||
licence: Apache-2.0
|
||||
|
||||
global:
|
||||
|
@ -102,7 +102,7 @@ _ref:
|
||||
###### Reference pages:
|
||||
```yaml
|
||||
# lowdefy.yaml
|
||||
lowdefy: '3.14.1'
|
||||
lowdefy: '3.15.0'
|
||||
pages:
|
||||
- _ref: pages/page1.yaml
|
||||
- _ref: pages/page2.yaml
|
||||
@ -123,7 +123,7 @@ _ref:
|
||||
```
|
||||
Returns:
|
||||
```
|
||||
lowdefy: '3.14.1'
|
||||
lowdefy: '3.15.0'
|
||||
pages:
|
||||
- id: page1
|
||||
type: PageHeaderMenu
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/docs",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -76,7 +76,7 @@ _ref:
|
||||
|
||||
```yaml
|
||||
name: lowdefy-project-template
|
||||
lowdefy: 3.14.1
|
||||
lowdefy: 3.15.0
|
||||
|
||||
pages:
|
||||
################ -------- Copy from here -------- ################
|
||||
|
@ -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.14.1
|
||||
lowdefy: 3.15.0
|
||||
name: Lowdefy starter
|
||||
|
||||
pages:
|
||||
|
@ -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.14.1
|
||||
lowdefy: 3.15.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.14.1
|
||||
lowdefy: 3.15.0
|
||||
config:
|
||||
auth:
|
||||
openId:
|
||||
|
@ -36,7 +36,7 @@ _ref:
|
||||
|
||||
###### List specific public pages:
|
||||
```yaml
|
||||
lowdefy: 3.14.1
|
||||
lowdefy: 3.15.0
|
||||
config:
|
||||
auth:
|
||||
pages:
|
||||
@ -48,7 +48,7 @@ _ref:
|
||||
````
|
||||
###### List specific protected pages:
|
||||
```yaml
|
||||
lowdefy: 3.14.1
|
||||
lowdefy: 3.15.0
|
||||
config:
|
||||
auth:
|
||||
pages:
|
||||
|
@ -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.14.1
|
||||
lowdefy: 3.15.0
|
||||
config:
|
||||
auth:
|
||||
openId:
|
||||
@ -43,7 +43,7 @@ _ref:
|
||||
|
||||
###### Protect pages using roles:
|
||||
```yaml
|
||||
lowdefy: 3.14.1
|
||||
lowdefy: 3.15.0
|
||||
config:
|
||||
auth:
|
||||
openId:
|
||||
@ -61,7 +61,6 @@ _ref:
|
||||
- sales-report
|
||||
- operations-report
|
||||
````
|
||||
|
||||
# - _ref:
|
||||
# path: templates/navigation_buttons.yaml
|
||||
# vars:
|
||||
|
@ -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.14.1
|
||||
lowdefy: 3.15.0
|
||||
config:
|
||||
auth:
|
||||
openId:
|
||||
|
@ -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.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/engine
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/engine",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -36,8 +36,8 @@
|
||||
"test": "jest --coverage"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/operators": "3.14.1",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"@lowdefy/operators": "3.15.0",
|
||||
"graphql": "15.5.0",
|
||||
"graphql-tag": "2.11.0"
|
||||
},
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/format
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/format
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/format",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/graphql-federated
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/graphql-federated
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/graphql-federated",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -37,7 +37,7 @@
|
||||
"webpack": "webpack --config webpack.config.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/graphql": "3.14.1"
|
||||
"@lowdefy/graphql": "3.15.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.13.14",
|
||||
|
@ -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.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Remove support for oracle db due to lack of apple silicon support. ([0a1ca68](https://github.com/lowdefy/lowdefy/commit/0a1ca687607e4d49bc6a0a46e6784eb9a957cd09))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* Allow custom openid authorization url parameters. ([427b3a1](https://github.com/lowdefy/lowdefy/commit/427b3a10036ea77cef0a04335b3dc3bbf9b6e286)), closes [#546](https://github.com/lowdefy/lowdefy/issues/546)
|
||||
* Remove logoutFromProvider config, and nunjucks template logout url ([111d3da](https://github.com/lowdefy/lowdefy/commit/111d3da83f4d132e4243583dabbdd7cdaae69fe7)), closes [#563](https://github.com/lowdefy/lowdefy/issues/563)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/graphql
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/graphql",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -38,11 +38,11 @@
|
||||
"webpack": "webpack --config webpack.config.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/ajv": "3.14.1",
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/node-utils": "3.14.1",
|
||||
"@lowdefy/nunjucks": "3.14.1",
|
||||
"@lowdefy/operators": "3.14.1",
|
||||
"@lowdefy/ajv": "3.15.0",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"@lowdefy/node-utils": "3.15.0",
|
||||
"@lowdefy/nunjucks": "3.15.0",
|
||||
"@lowdefy/operators": "3.15.0",
|
||||
"@sendgrid/mail": "7.4.2",
|
||||
"ajv": "6.12.6",
|
||||
"ajv-errors": "1.0.1",
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/helpers
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/helpers
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/helpers",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/layout
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/layout
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/layout",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -37,8 +37,8 @@
|
||||
"test": "jest --coverage"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/block-tools": "3.14.1",
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"antd": "4.4.2",
|
||||
"react": "17.0.2",
|
||||
"react-dom": "17.0.2"
|
||||
|
@ -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.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/node-utils
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/node-utils
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/node-utils",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -36,7 +36,7 @@
|
||||
"prepare": "yarn build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"rimraf": "3.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -3,6 +3,18 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **nunjucks:** Fix tests. ([f60f00e](https://github.com/lowdefy/lowdefy/commit/f60f00ea131b26dc6aa70ad1d927c38dd71308be))
|
||||
* **nunjucks:** Replace nunjucks-date-filter dependancy with dateFilter function. ([f876c5b](https://github.com/lowdefy/lowdefy/commit/f876c5bc1fef68c8b7459678f1e4f5ce50cf9b73))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/nunjucks
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/nunjucks",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -38,7 +38,7 @@
|
||||
"prepare": "yarn build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"moment": "2.29.1",
|
||||
"nunjucks": "3.2.3"
|
||||
},
|
||||
|
@ -3,6 +3,17 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **operators:** Do not filter OPENID_CLIENT_ID and OPENID_DOMAIN from secrets. ([3c56737](https://github.com/lowdefy/lowdefy/commit/3c56737cc2b654382e6635b472ae371a2a46cdc8))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"licence": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -36,9 +36,9 @@
|
||||
"prepare": "yarn build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/format": "3.14.1",
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/nunjucks": "3.14.1",
|
||||
"@lowdefy/format": "3.15.0",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"@lowdefy/nunjucks": "3.15.0",
|
||||
"deep-diff": "1.0.2",
|
||||
"js-yaml": "4.0.0",
|
||||
"mingo": "4.1.2",
|
||||
|
@ -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.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **renderer:** Id token was not sent with openIdLogoutUrlInput request. ([e636c79](https://github.com/lowdefy/lowdefy/commit/e636c7976724fc8e767e6fac3e1c22c617952ae2))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* Allow custom openid authorization url parameters. ([427b3a1](https://github.com/lowdefy/lowdefy/commit/427b3a10036ea77cef0a04335b3dc3bbf9b6e286)), closes [#546](https://github.com/lowdefy/lowdefy/issues/546)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/renderer
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/renderer",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.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.14.1",
|
||||
"@lowdefy/engine": "3.14.1",
|
||||
"@lowdefy/helpers": "3.14.1",
|
||||
"@lowdefy/layout": "3.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"@lowdefy/engine": "3.15.0",
|
||||
"@lowdefy/helpers": "3.15.0",
|
||||
"@lowdefy/layout": "3.15.0",
|
||||
"graphql": "15.5.0",
|
||||
"graphql-type-json": "0.3.2",
|
||||
"react": "17.0.2",
|
||||
|
@ -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.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/server-dev
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/server-dev
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/server-dev",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -37,8 +37,8 @@
|
||||
"webpack": "webpack --config webpack.config.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/graphql": "3.14.1",
|
||||
"@lowdefy/node-utils": "3.14.1",
|
||||
"@lowdefy/graphql": "3.15.0",
|
||||
"@lowdefy/node-utils": "3.15.0",
|
||||
"apollo-server-express": "2.21.0",
|
||||
"dotenv": "8.2.0",
|
||||
"express": "4.17.1",
|
||||
@ -49,7 +49,7 @@
|
||||
"@babel/core": "7.12.16",
|
||||
"@babel/preset-env": "7.12.16",
|
||||
"@babel/preset-react": "7.12.13",
|
||||
"@lowdefy/block-tools": "3.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"babel-jest": "26.6.3",
|
||||
"babel-loader": "8.2.2",
|
||||
"clean-webpack-plugin": "3.0.0",
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/server-docker
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/server-docker
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/server-docker",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -39,8 +39,8 @@
|
||||
"webpack": "webpack --config webpack.config.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/graphql": "3.14.1",
|
||||
"@lowdefy/node-utils": "3.14.1",
|
||||
"@lowdefy/graphql": "3.15.0",
|
||||
"@lowdefy/node-utils": "3.15.0",
|
||||
"apollo-server-express": "2.21.0",
|
||||
"express": "4.17.1",
|
||||
"graphql": "15.5.0"
|
||||
@ -50,7 +50,7 @@
|
||||
"@babel/core": "7.12.16",
|
||||
"@babel/preset-env": "7.12.16",
|
||||
"@babel/preset-react": "7.12.13",
|
||||
"@lowdefy/block-tools": "3.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"babel-jest": "26.6.3",
|
||||
"babel-loader": "8.2.2",
|
||||
"clean-webpack-plugin": "3.0.0",
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [3.15.0](https://github.com/lowdefy/lowdefy/compare/v3.14.1...v3.15.0) (2021-05-11)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/server-netlify
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [3.14.1](https://github.com/lowdefy/lowdefy/compare/v3.14.0...v3.14.1) (2021-04-28)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/server-netlify
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/server-netlify",
|
||||
"version": "3.14.1",
|
||||
"version": "3.15.0",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -37,8 +37,8 @@
|
||||
"webpack": "webpack --config webpack.config.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/graphql": "3.14.1",
|
||||
"@lowdefy/node-utils": "3.14.1",
|
||||
"@lowdefy/graphql": "3.15.0",
|
||||
"@lowdefy/node-utils": "3.15.0",
|
||||
"apollo-server-express": "2.21.0",
|
||||
"express": "4.17.1",
|
||||
"graphql": "15.5.0",
|
||||
@ -49,7 +49,7 @@
|
||||
"@babel/core": "7.12.16",
|
||||
"@babel/preset-env": "7.12.16",
|
||||
"@babel/preset-react": "7.12.13",
|
||||
"@lowdefy/block-tools": "3.14.1",
|
||||
"@lowdefy/block-tools": "3.15.0",
|
||||
"babel-jest": "26.6.3",
|
||||
"babel-loader": "8.2.2",
|
||||
"clean-webpack-plugin": "3.0.0",
|
||||
|
122
yarn.lock
122
yarn.lock
@ -3002,14 +3002,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@lowdefy/ajv@3.14.1, @lowdefy/ajv@workspace:packages/ajv":
|
||||
"@lowdefy/ajv@3.15.0, @lowdefy/ajv@workspace:packages/ajv":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/ajv@workspace:packages/ajv"
|
||||
dependencies:
|
||||
"@babel/cli": 7.13.14
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@lowdefy/nunjucks": 3.14.1
|
||||
"@lowdefy/nunjucks": 3.15.0
|
||||
ajv: 6.12.6
|
||||
ajv-errors: 1.0.1
|
||||
babel-jest: 26.6.3
|
||||
@ -3018,7 +3018,7 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/block-tools@3.14.1, @lowdefy/block-tools@workspace:packages/blockTools":
|
||||
"@lowdefy/block-tools@3.15.0, @lowdefy/block-tools@workspace:packages/blockTools":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/block-tools@workspace:packages/blockTools"
|
||||
dependencies:
|
||||
@ -3026,7 +3026,7 @@ __metadata:
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@babel/preset-react": 7.13.13
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@wojtekmaj/enzyme-adapter-react-17": 0.6.0
|
||||
ajv: 6.12.6
|
||||
ajv-errors: 1.0.1
|
||||
@ -3057,7 +3057,7 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/blocks-antd@3.14.1, @lowdefy/blocks-antd@workspace:packages/blocks/blocksAntd":
|
||||
"@lowdefy/blocks-antd@3.15.0, @lowdefy/blocks-antd@workspace:packages/blocks/blocksAntd":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/blocks-antd@workspace:packages/blocks/blocksAntd"
|
||||
dependencies:
|
||||
@ -3066,9 +3066,9 @@ __metadata:
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@babel/preset-react": 7.13.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/color": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/color": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@wojtekmaj/enzyme-adapter-react-17": 0.6.0
|
||||
antd: 4.4.2
|
||||
babel-jest: 26.6.3
|
||||
@ -3113,8 +3113,8 @@ __metadata:
|
||||
"@babel/core": 7.12.16
|
||||
"@babel/preset-env": 7.12.16
|
||||
"@babel/preset-react": 7.12.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@wojtekmaj/enzyme-adapter-react-17": 0.6.0
|
||||
babel-jest: 26.6.3
|
||||
babel-loader: 8.2.2
|
||||
@ -3150,9 +3150,9 @@ __metadata:
|
||||
"@babel/core": 7.12.16
|
||||
"@babel/preset-env": 7.12.16
|
||||
"@babel/preset-react": 7.12.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/blocks-antd": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/blocks-antd": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@wojtekmaj/enzyme-adapter-react-17": 0.6.0
|
||||
babel-jest: 26.6.3
|
||||
babel-loader: 8.2.2
|
||||
@ -3193,8 +3193,8 @@ __metadata:
|
||||
"@babel/core": 7.12.16
|
||||
"@babel/preset-env": 7.12.16
|
||||
"@babel/preset-react": 7.12.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
babel-jest: 26.6.3
|
||||
babel-loader: 8.2.2
|
||||
buffer: 6.0.3
|
||||
@ -3230,8 +3230,8 @@ __metadata:
|
||||
"@babel/core": 7.12.16
|
||||
"@babel/preset-env": 7.12.16
|
||||
"@babel/preset-react": 7.12.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@wojtekmaj/enzyme-adapter-react-17": 0.6.0
|
||||
babel-jest: 26.6.3
|
||||
babel-loader: 8.2.2
|
||||
@ -3270,10 +3270,10 @@ __metadata:
|
||||
"@babel/cli": 7.13.14
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@lowdefy/ajv": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/node-utils": 3.14.1
|
||||
"@lowdefy/nunjucks": 3.14.1
|
||||
"@lowdefy/ajv": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@lowdefy/node-utils": 3.15.0
|
||||
"@lowdefy/nunjucks": 3.15.0
|
||||
ajv: 6.12.6
|
||||
axios: 0.21.1
|
||||
babel-jest: 26.6.3
|
||||
@ -3289,7 +3289,7 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/color@3.14.1, @lowdefy/color@workspace:packages/color":
|
||||
"@lowdefy/color@3.15.0, @lowdefy/color@workspace:packages/color":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/color@workspace:packages/color"
|
||||
dependencies:
|
||||
@ -3314,15 +3314,15 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/engine@3.14.1, @lowdefy/engine@workspace:packages/engine":
|
||||
"@lowdefy/engine@3.15.0, @lowdefy/engine@workspace:packages/engine":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/engine@workspace:packages/engine"
|
||||
dependencies:
|
||||
"@babel/cli": 7.13.14
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/operators": 3.14.1
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@lowdefy/operators": 3.15.0
|
||||
babel-jest: 26.6.3
|
||||
graphql: 15.5.0
|
||||
graphql-tag: 2.11.0
|
||||
@ -3330,7 +3330,7 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/format@3.14.1, @lowdefy/format@workspace:packages/format":
|
||||
"@lowdefy/format@3.15.0, @lowdefy/format@workspace:packages/format":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/format@workspace:packages/format"
|
||||
dependencies:
|
||||
@ -3350,7 +3350,7 @@ __metadata:
|
||||
"@babel/cli": 7.13.14
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@lowdefy/graphql": 3.14.1
|
||||
"@lowdefy/graphql": 3.15.0
|
||||
babel-loader: 8.2.2
|
||||
clean-webpack-plugin: 3.0.0
|
||||
webpack: 5.28.0
|
||||
@ -3358,18 +3358,18 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/graphql@3.14.1, @lowdefy/graphql@workspace:packages/graphql":
|
||||
"@lowdefy/graphql@3.15.0, @lowdefy/graphql@workspace:packages/graphql":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/graphql@workspace:packages/graphql"
|
||||
dependencies:
|
||||
"@babel/cli": 7.13.14
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@lowdefy/ajv": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/node-utils": 3.14.1
|
||||
"@lowdefy/nunjucks": 3.14.1
|
||||
"@lowdefy/operators": 3.14.1
|
||||
"@lowdefy/ajv": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@lowdefy/node-utils": 3.15.0
|
||||
"@lowdefy/nunjucks": 3.15.0
|
||||
"@lowdefy/operators": 3.15.0
|
||||
"@sendgrid/mail": 7.4.2
|
||||
"@shelf/jest-mongodb": 1.2.3
|
||||
ajv: 6.12.6
|
||||
@ -3403,7 +3403,7 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/helpers@3.14.1, @lowdefy/helpers@workspace:packages/helpers":
|
||||
"@lowdefy/helpers@3.15.0, @lowdefy/helpers@workspace:packages/helpers":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/helpers@workspace:packages/helpers"
|
||||
dependencies:
|
||||
@ -3418,7 +3418,7 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/layout@3.14.1, @lowdefy/layout@workspace:packages/layout":
|
||||
"@lowdefy/layout@3.15.0, @lowdefy/layout@workspace:packages/layout":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/layout@workspace:packages/layout"
|
||||
dependencies:
|
||||
@ -3426,8 +3426,8 @@ __metadata:
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@babel/preset-react": 7.13.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
antd: 4.4.2
|
||||
babel-jest: 26.6.3
|
||||
babel-loader: 8.2.2
|
||||
@ -3475,14 +3475,14 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/node-utils@3.14.1, @lowdefy/node-utils@workspace:packages/nodeUtils":
|
||||
"@lowdefy/node-utils@3.15.0, @lowdefy/node-utils@workspace:packages/nodeUtils":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/node-utils@workspace:packages/nodeUtils"
|
||||
dependencies:
|
||||
"@babel/cli": 7.13.14
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
babel-jest: 26.6.3
|
||||
jest: 26.6.3
|
||||
jest-diff: 26.6.2
|
||||
@ -3490,14 +3490,14 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/nunjucks@3.14.1, @lowdefy/nunjucks@workspace:packages/nunjucks":
|
||||
"@lowdefy/nunjucks@3.15.0, @lowdefy/nunjucks@workspace:packages/nunjucks":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/nunjucks@workspace:packages/nunjucks"
|
||||
dependencies:
|
||||
"@babel/cli": 7.13.14
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
babel-jest: 26.6.3
|
||||
jest: 26.6.3
|
||||
moment: 2.29.1
|
||||
@ -3505,16 +3505,16 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@lowdefy/operators@3.14.1, @lowdefy/operators@workspace:packages/operators":
|
||||
"@lowdefy/operators@3.15.0, @lowdefy/operators@workspace:packages/operators":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@lowdefy/operators@workspace:packages/operators"
|
||||
dependencies:
|
||||
"@babel/cli": 7.13.14
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-env": 7.13.12
|
||||
"@lowdefy/format": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/nunjucks": 3.14.1
|
||||
"@lowdefy/format": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@lowdefy/nunjucks": 3.15.0
|
||||
babel-jest: 26.6.3
|
||||
deep-diff: 1.0.2
|
||||
jest: 26.6.3
|
||||
@ -3535,10 +3535,10 @@ __metadata:
|
||||
"@apollo/link-retry": 2.0.0-beta.3
|
||||
"@babel/core": 7.13.14
|
||||
"@babel/preset-react": 7.13.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/engine": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/layout": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/engine": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@lowdefy/layout": 3.15.0
|
||||
babel-loader: 8.2.2
|
||||
clean-webpack-plugin: 3.0.0
|
||||
css-loader: 5.0.2
|
||||
@ -3566,9 +3566,9 @@ __metadata:
|
||||
"@babel/core": 7.12.16
|
||||
"@babel/preset-env": 7.12.16
|
||||
"@babel/preset-react": 7.12.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/graphql": 3.14.1
|
||||
"@lowdefy/node-utils": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/graphql": 3.15.0
|
||||
"@lowdefy/node-utils": 3.15.0
|
||||
apollo-server-express: 2.21.0
|
||||
babel-jest: 26.6.3
|
||||
babel-loader: 8.2.2
|
||||
@ -3597,9 +3597,9 @@ __metadata:
|
||||
"@babel/core": 7.12.16
|
||||
"@babel/preset-env": 7.12.16
|
||||
"@babel/preset-react": 7.12.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/graphql": 3.14.1
|
||||
"@lowdefy/node-utils": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/graphql": 3.15.0
|
||||
"@lowdefy/node-utils": 3.15.0
|
||||
apollo-server-express: 2.21.0
|
||||
babel-jest: 26.6.3
|
||||
babel-loader: 8.2.2
|
||||
@ -3627,9 +3627,9 @@ __metadata:
|
||||
"@babel/core": 7.12.16
|
||||
"@babel/preset-env": 7.12.16
|
||||
"@babel/preset-react": 7.12.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/graphql": 3.14.1
|
||||
"@lowdefy/node-utils": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/graphql": 3.15.0
|
||||
"@lowdefy/node-utils": 3.15.0
|
||||
apollo-server-express: 2.21.0
|
||||
babel-jest: 26.6.3
|
||||
babel-loader: 8.2.2
|
||||
@ -14178,9 +14178,9 @@ fsevents@^1.2.7:
|
||||
"@babel/core": 7.12.16
|
||||
"@babel/preset-env": 7.12.16
|
||||
"@babel/preset-react": 7.12.13
|
||||
"@lowdefy/block-tools": 3.14.1
|
||||
"@lowdefy/helpers": 3.14.1
|
||||
"@lowdefy/node-utils": 3.14.1
|
||||
"@lowdefy/block-tools": 3.15.0
|
||||
"@lowdefy/helpers": 3.15.0
|
||||
"@lowdefy/node-utils": 3.15.0
|
||||
apollo-server-express: 2.21.0
|
||||
axios: 0.21.1
|
||||
babel-jest: 26.6.3
|
||||
|
Loading…
Reference in New Issue
Block a user