mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
📚 Update CHANGELOG.md and main package.json to 0.216.0
This commit is contained in:
parent
12ae095154
commit
fcac1ddd9f
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -1,3 +1,28 @@
|
|||
# [0.216.0](https://github.com/n8n-io/n8n/compare/n8n@0.215.2...n8n@0.216.0) (2023-02-16)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **Bubble Node:** Fix pagination issue when returning all objects ([#5483](https://github.com/n8n-io/n8n/issues/5483)) ([1a20fd9](https://github.com/n8n-io/n8n/commit/1a20fd9f46495e32508d74dbb9ccaaa0f6194a07))
|
||||
* **core:** Fix data transformation function that are reported not to work properly ([#5338](https://github.com/n8n-io/n8n/issues/5338)) ([0cf45bc](https://github.com/n8n-io/n8n/commit/0cf45bc4c862c7544e69af4981d4607bf0b530e3))
|
||||
* **core:** Remove unnecessary info from `GET /workflows` response ([#5311](https://github.com/n8n-io/n8n/issues/5311)) ([a2c6ea9](https://github.com/n8n-io/n8n/commit/a2c6ea9e110e51debf137707b52eb7fedbc0032b))
|
||||
* **HTTP Request Node:** Ignore empty body for auto detect json ([#5215](https://github.com/n8n-io/n8n/issues/5215)) ([af70337](https://github.com/n8n-io/n8n/commit/af703371fc96dcfdd8f418201d3880f124cfcfc4))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* Add workflow and credential sharing access e2e tests ([#5463](https://github.com/n8n-io/n8n/issues/5463)) ([246189f](https://github.com/n8n-io/n8n/commit/246189f6dae2ce96dabd900ce0a192de731cc6aa))
|
||||
* **editor:** Add correct credential owner contact details for readonly credentials ([#5208](https://github.com/n8n-io/n8n/issues/5208)) ([36108f8](https://github.com/n8n-io/n8n/commit/36108f82a1c1657c3959225d0635255668bf0af6))
|
||||
* **editor:** Add most important native props and methods to autocomplete ([#5486](https://github.com/n8n-io/n8n/issues/5486)) ([6592d14](https://github.com/n8n-io/n8n/commit/6592d144d1fb680b34240ce57a6615b06de5cde5))
|
||||
* **editor:** Update to personalization survey v4 ([#5474](https://github.com/n8n-io/n8n/issues/5474)) ([6265f3a](https://github.com/n8n-io/n8n/commit/6265f3a27a076f6c3c24d0fb323e44c471d85b23))
|
||||
* **Github Node:** Use resource locator component ([#5489](https://github.com/n8n-io/n8n/issues/5489)) ([00ac4c3](https://github.com/n8n-io/n8n/commit/00ac4c308a4d96a0f93401402dd92bbbd087f082))
|
||||
* **Github Trigger Node:** Use resource locator component ([#5253](https://github.com/n8n-io/n8n/issues/5253)) ([a3d8fac](https://github.com/n8n-io/n8n/commit/a3d8fac73a8a93d6b7f769e1386276e34066a1b7))
|
||||
* **Notion Node:** Add icon support for page and database page creation ([#5468](https://github.com/n8n-io/n8n/issues/5468)) ([71cba06](https://github.com/n8n-io/n8n/commit/71cba06b7c1ee8ed42a4dacc2d8114df119339dc))
|
||||
* **Slack Node:** Add support for manually inputting a channel name ([#5488](https://github.com/n8n-io/n8n/issues/5488)) ([7954ed3](https://github.com/n8n-io/n8n/commit/7954ed3cfbd4d8d0611c0cc51385b49cc80282a6))
|
||||
* Update telemetry api endpoints ([#5482](https://github.com/n8n-io/n8n/issues/5482)) ([3de49e8](https://github.com/n8n-io/n8n/commit/3de49e8f7894e628b722e2a0c62e8739b1de6be9))
|
||||
|
||||
|
||||
|
||||
## [0.215.2](https://github.com/n8n-io/n8n/compare/n8n@0.215.1...n8n@0.215.2) (2023-02-14)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n",
|
||||
"version": "0.215.2",
|
||||
"version": "0.216.0",
|
||||
"private": true,
|
||||
"homepage": "https://n8n.io",
|
||||
"engines": {
|
||||
|
|
|
@ -207,10 +207,10 @@ importers:
|
|||
luxon: ^3.1.0
|
||||
mock-jwks: ^1.0.9
|
||||
mysql2: ~2.3.3
|
||||
n8n-core: ~0.154.1
|
||||
n8n-editor-ui: ~0.181.1
|
||||
n8n-nodes-base: ~0.213.1
|
||||
n8n-workflow: ~0.136.1
|
||||
n8n-core: ~0.155.0
|
||||
n8n-editor-ui: ~0.182.0
|
||||
n8n-nodes-base: ~0.214.0
|
||||
n8n-workflow: ~0.137.0
|
||||
nodemailer: ^6.7.1
|
||||
nodemon: ^2.0.2
|
||||
oauth-1.0a: ^2.2.6
|
||||
|
@ -403,7 +403,7 @@ importers:
|
|||
form-data: ^4.0.0
|
||||
lodash.get: ^4.4.2
|
||||
mime-types: ^2.1.27
|
||||
n8n-workflow: ~0.136.1
|
||||
n8n-workflow: ~0.137.0
|
||||
oauth-1.0a: ^2.2.6
|
||||
p-cancelable: ^2.0.0
|
||||
pretty-bytes: ^5.6.0
|
||||
|
@ -590,8 +590,8 @@ importers:
|
|||
lodash.set: ^4.3.2
|
||||
luxon: ^3.1.0
|
||||
monaco-editor: ^0.33.0
|
||||
n8n-design-system: ~0.53.0
|
||||
n8n-workflow: ~0.136.1
|
||||
n8n-design-system: ~0.54.0
|
||||
n8n-workflow: ~0.137.0
|
||||
normalize-wheel: ^1.0.1
|
||||
pinia: ^2.0.22
|
||||
prettier: ^2.8.3
|
||||
|
@ -721,8 +721,8 @@ importers:
|
|||
change-case: ^4.1.1
|
||||
fast-glob: ^3.2.5
|
||||
inquirer: ^7.0.1
|
||||
n8n-core: ~0.154.1
|
||||
n8n-workflow: ~0.136.1
|
||||
n8n-core: ~0.155.0
|
||||
n8n-workflow: ~0.137.0
|
||||
oauth-1.0a: ^2.2.6
|
||||
replace-in-file: ^6.0.0
|
||||
request: ^2.88.2
|
||||
|
@ -814,8 +814,8 @@ importers:
|
|||
mqtt: 4.2.6
|
||||
mssql: ^8.1.2
|
||||
mysql2: ~2.3.0
|
||||
n8n-core: ~0.154.1
|
||||
n8n-workflow: ~0.136.1
|
||||
n8n-core: ~0.155.0
|
||||
n8n-workflow: ~0.137.0
|
||||
node-html-markdown: ^1.1.3
|
||||
node-ssh: ^12.0.0
|
||||
nodemailer: ^6.7.1
|
||||
|
@ -4138,7 +4138,7 @@ packages:
|
|||
dependencies:
|
||||
'@storybook/client-logger': 7.0.0-beta.46
|
||||
'@storybook/core-events': 7.0.0-beta.46
|
||||
'@storybook/csf': 0.0.2-next.8
|
||||
'@storybook/csf': 0.0.2-next.9
|
||||
'@storybook/global': 5.0.0
|
||||
'@storybook/manager-api': 7.0.0-beta.46_6l5554ty5ajsajah6yazvrjhoe
|
||||
'@storybook/preview-api': 7.0.0-beta.46
|
||||
|
@ -4346,7 +4346,7 @@ packages:
|
|||
'@storybook/client-logger': 7.0.0-beta.46
|
||||
'@storybook/components': 7.0.0-beta.46_6l5554ty5ajsajah6yazvrjhoe
|
||||
'@storybook/core-events': 7.0.0-beta.46
|
||||
'@storybook/csf': 0.0.2-next.8
|
||||
'@storybook/csf': 0.0.2-next.9
|
||||
'@storybook/docs-tools': 7.0.0-beta.46
|
||||
'@storybook/global': 5.0.0
|
||||
'@storybook/manager-api': 7.0.0-beta.46_6l5554ty5ajsajah6yazvrjhoe
|
||||
|
@ -4566,7 +4566,7 @@ packages:
|
|||
'@babel/core': 7.20.12
|
||||
'@babel/preset-env': 7.20.2_@babel+core@7.20.12
|
||||
'@babel/types': 7.20.7
|
||||
'@storybook/csf': 0.0.2-next.8
|
||||
'@storybook/csf': 0.0.2-next.9
|
||||
'@storybook/csf-tools': 7.0.0-beta.46
|
||||
'@storybook/node-logger': 7.0.0-beta.46
|
||||
'@storybook/types': 7.0.0-beta.46
|
||||
|
@ -4606,7 +4606,7 @@ packages:
|
|||
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
|
||||
dependencies:
|
||||
'@storybook/client-logger': 7.0.0-beta.46
|
||||
'@storybook/csf': 0.0.2-next.8
|
||||
'@storybook/csf': 0.0.2-next.9
|
||||
'@storybook/global': 5.0.0
|
||||
'@storybook/theming': 7.0.0-beta.46_6l5554ty5ajsajah6yazvrjhoe
|
||||
'@storybook/types': 7.0.0-beta.46
|
||||
|
@ -4677,7 +4677,7 @@ packages:
|
|||
'@storybook/builder-manager': 7.0.0-beta.46
|
||||
'@storybook/core-common': 7.0.0-beta.46
|
||||
'@storybook/core-events': 7.0.0-beta.46
|
||||
'@storybook/csf': 0.0.2-next.8
|
||||
'@storybook/csf': 0.0.2-next.9
|
||||
'@storybook/csf-tools': 7.0.0-beta.46
|
||||
'@storybook/docs-mdx': 0.0.1-next.6
|
||||
'@storybook/global': 5.0.0
|
||||
|
@ -4747,7 +4747,7 @@ packages:
|
|||
resolution: {integrity: sha512-H7zXfL1wf/1jWi5MaFISt/taxE41fgpV/uLfi5CHcHLX9ZgeQs2B/2utpUgwvBsxiL+E/jKAt5cLeuZCIvglMg==}
|
||||
dependencies:
|
||||
'@babel/types': 7.20.7
|
||||
'@storybook/csf': 0.0.2-next.8
|
||||
'@storybook/csf': 0.0.2-next.9
|
||||
'@storybook/types': 7.0.0-beta.46
|
||||
fs-extra: 11.1.0
|
||||
recast: 0.23.1
|
||||
|
@ -4762,11 +4762,9 @@ packages:
|
|||
lodash: 4.17.21
|
||||
dev: true
|
||||
|
||||
/@storybook/csf/0.0.2-next.8:
|
||||
resolution: {integrity: sha512-3T6rflW7D9q1iXOR+bidwoNbd9rVUTyjYH/sqsnYjbXhb/aOXsQzGKwNeq9QqZIFVpKfg5BoOF5i7DCMtoGknQ==}
|
||||
/@storybook/csf/0.0.2-next.9:
|
||||
resolution: {integrity: sha512-ECOLMK425s+z8oA0aVAhBhhquuwTsZrM4oha/5De44JG8uYGXhqVrv/l27oxZEkwytuiQu+9f65HxYli+DY+3w==}
|
||||
dependencies:
|
||||
expect-type: 0.14.2
|
||||
lodash: 4.17.21
|
||||
type-fest: 2.19.0
|
||||
dev: true
|
||||
|
||||
|
@ -4801,7 +4799,7 @@ packages:
|
|||
'@storybook/channels': 7.0.0-beta.46
|
||||
'@storybook/client-logger': 7.0.0-beta.46
|
||||
'@storybook/core-events': 7.0.0-beta.46
|
||||
'@storybook/csf': 0.0.2-next.8
|
||||
'@storybook/csf': 0.0.2-next.9
|
||||
'@storybook/global': 5.0.0
|
||||
'@storybook/router': 7.0.0-beta.46_6l5554ty5ajsajah6yazvrjhoe
|
||||
'@storybook/theming': 7.0.0-beta.46_6l5554ty5ajsajah6yazvrjhoe
|
||||
|
@ -4891,7 +4889,7 @@ packages:
|
|||
'@storybook/channels': 7.0.0-beta.46
|
||||
'@storybook/client-logger': 7.0.0-beta.46
|
||||
'@storybook/core-events': 7.0.0-beta.46
|
||||
'@storybook/csf': 0.0.2-next.8
|
||||
'@storybook/csf': 0.0.2-next.9
|
||||
'@storybook/global': 5.0.0
|
||||
'@storybook/types': 7.0.0-beta.46
|
||||
'@types/qs': 6.9.7
|
||||
|
@ -5306,6 +5304,8 @@ packages:
|
|||
|
||||
/@types/deep-equal/1.0.1:
|
||||
resolution: {integrity: sha512-mMUu4nWHLBlHtxXY17Fg6+ucS/MnndyOWyOe7MmwkoMYxvfQU2ajtRaEvqSUv+aVkMqH/C0NCI8UoVfRNQ10yg==}
|
||||
dev: true
|
||||
|
||||
/@types/detect-port/1.3.2:
|
||||
resolution: {integrity: sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==}
|
||||
dev: true
|
||||
|
@ -10585,10 +10585,6 @@ packages:
|
|||
dependencies:
|
||||
homedir-polyfill: 1.0.3
|
||||
|
||||
/expect-type/0.14.2:
|
||||
resolution: {integrity: sha512-ed3+tr5ujbIYXZ8Pl/VgIphwJQ0q5tBLGGdn7Zvwt1WyPBRX83xjT5pT77P/GkuQbctx0K2ZNSSan7eruJqTCQ==}
|
||||
dev: true
|
||||
|
||||
/expect/29.3.1:
|
||||
resolution: {integrity: sha512-gGb1yTgU30Q0O/tQq+z30KBWv24ApkMgFUpvKBkyLUBL68Wv8dHdJxTBZFl/iT8K/bqDHvUYRH6IIN3rToopPA==}
|
||||
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
||||
|
|
Loading…
Reference in a new issue