mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-27 13:39:44 -08:00
f86d9a4b34
# [1.3.0](https://github.com/n8n-io/n8n/compare/n8n@1.2.0...n8n@1.3.0) (2023-08-16) ### Bug Fixes * **core:** Don't let bull override the default redis config ([#6897](https://github.com/n8n-io/n8n/issues/6897)) ([cfeb322
](cfeb322b3b
)) * **core:** Fix fetching of EE executions ([#6901](https://github.com/n8n-io/n8n/issues/6901)) ([f3fce48
](f3fce48155
)) * **core:** Update frontend urls when using the `--tunnel` option ([#6898](https://github.com/n8n-io/n8n/issues/6898)) ([718e613
](718e61354d
)) * **editor:** Disable telemetry in dev mode and in E2E tests ([#6869](https://github.com/n8n-io/n8n/issues/6869)) ([808a928
](808a92809e
)) * **editor:** Fix code node’s content property to be reactive ([#6931](https://github.com/n8n-io/n8n/issues/6931)) ([3b75bc6
](3b75bc6bc1
)) * **editor:** Fix event emit on credential sharing ([#6922](https://github.com/n8n-io/n8n/issues/6922)) ([297c3c9
](297c3c91f2
)) * **editor:** Fix multiOptions parameters resetting on initial load ([#6903](https://github.com/n8n-io/n8n/issues/6903)) ([49867c2
](49867c2b17
)) * **editor:** Update execution view layout ([#6882](https://github.com/n8n-io/n8n/issues/6882)) ([0339732
](0339732378
)) * **Email Trigger (IMAP) Node:** Fix connection issue with unexpected spaces in host ([#6886](https://github.com/n8n-io/n8n/issues/6886)) ([f3248e4
](f3248e46e4
)) * Fix issue with key formatting if null or undefined ([#6924](https://github.com/n8n-io/n8n/issues/6924)) ([4e4a3cf
](4e4a3cf7ab
)) * Fix issue with key formatting introduced in 1.2.0 ([#6896](https://github.com/n8n-io/n8n/issues/6896)) ([0e075c9
](0e075c9cb5
)) * Fix lag when node parameters are updated ([#6941](https://github.com/n8n-io/n8n/issues/6941)) ([3eb65e0
](3eb65e08c4
)) * **HTTP Request Node:** Improve error handling for TCP socket errors when `Continue On Fail` is enabled ([#6925](https://github.com/n8n-io/n8n/issues/6925)) ([96ff1f8
](96ff1f847d
)) * Prevent workflow breaking when credential type is unknown ([#6923](https://github.com/n8n-io/n8n/issues/6923)) ([e83b93f
](e83b93f293
)) * **Respond to Webhook Node:** Return headers in response ([#6921](https://github.com/n8n-io/n8n/issues/6921)) ([a82107f
](a82107fb05
)) ### Features * **core:** Add support for not requiring SMTP auth with user management ([#3742](https://github.com/n8n-io/n8n/issues/3742)) ([eead6d4
](eead6d49f2
)) * **core:** Descriptive message for common nodeJS errors ([#6841](https://github.com/n8n-io/n8n/issues/6841)) ([3adb0b6
](3adb0b66ea
)) * **editor:** Ask AI in Code node ([#6672](https://github.com/n8n-io/n8n/issues/6672)) ([fde6ad1
](fde6ad1e7f
)) * Enable parallel processing on multiple queue nodes ([#6295](https://github.com/n8n-io/n8n/issues/6295)) ([44afcff
](44afcff959
)) Co-authored-by: netroy <netroy@users.noreply.github.com>
83 lines
2.7 KiB
JSON
83 lines
2.7 KiB
JSON
{
|
|
"name": "n8n-design-system",
|
|
"version": "1.3.0",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"homepage": "https://n8n.io",
|
|
"author": {
|
|
"name": "Mutasem Aldmour",
|
|
"email": "mutasem@n8n.io"
|
|
},
|
|
"main": "src/main.ts",
|
|
"import": "src/main.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"build": "vite build",
|
|
"typecheck": "vue-tsc --declaration --emitDeclarationOnly",
|
|
"test": "vitest run --coverage",
|
|
"test:dev": "vitest",
|
|
"build:storybook": "storybook build",
|
|
"storybook": "storybook dev -p 6006",
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
"lint": "eslint src --ext .js,.ts,.vue --quiet --report-unused-disable-directives",
|
|
"lintfix": "eslint src --ext .js,.ts,.vue --fix --report-unused-disable-directives"
|
|
},
|
|
"peerDependencies": {
|
|
"@fortawesome/fontawesome-svg-core": "1.x",
|
|
"@fortawesome/free-solid-svg-icons": "5.x",
|
|
"@fortawesome/vue-fontawesome": "2.x",
|
|
"core-js": "3.x",
|
|
"markdown-it": "^12.3.2",
|
|
"markdown-it-emoji": "^2.0.0",
|
|
"markdown-it-link-attributes": "^4.0.0",
|
|
"markdown-it-task-lists": "^2.1.1",
|
|
"vue": "^2.7.14",
|
|
"xss": "^1.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.36",
|
|
"@fortawesome/free-solid-svg-icons": "^5.15.4",
|
|
"@fortawesome/vue-fontawesome": "^3.0.3",
|
|
"@storybook/addon-a11y": "^7.1.1",
|
|
"@storybook/addon-actions": "^7.1.1",
|
|
"@storybook/addon-docs": "^7.1.1",
|
|
"@storybook/addon-essentials": "^7.1.1",
|
|
"@storybook/addon-links": "^7.1.1",
|
|
"@storybook/addon-postcss": "3.0.0-alpha.1",
|
|
"@storybook/addon-styling": "^1.3.4",
|
|
"@storybook/vue3": "^7.1.1",
|
|
"@storybook/vue3-vite": "^7.1.1",
|
|
"@testing-library/jest-dom": "^5.17.0",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@testing-library/vue": "^7.0.0",
|
|
"@types/markdown-it": "^12.2.3",
|
|
"@types/markdown-it-emoji": "^2.0.2",
|
|
"@types/markdown-it-link-attributes": "^3.0.1",
|
|
"@types/sanitize-html": "^2.9.0",
|
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
"@vue/test-utils": "^2.4.1",
|
|
"autoprefixer": "^10.4.14",
|
|
"core-js": "^3.31.0",
|
|
"jsdom": "21.1.0",
|
|
"sass": "^1.64.1",
|
|
"sass-loader": "^13.3.2",
|
|
"storybook": "^7.1.1",
|
|
"storybook-addon-themes": "^6.1.0",
|
|
"storybook-dark-mode": "^3.0.1"
|
|
},
|
|
"dependencies": {
|
|
"element-plus": "^2.3.6",
|
|
"markdown-it": "^13.0.1",
|
|
"markdown-it-emoji": "^2.0.2",
|
|
"markdown-it-link-attributes": "^4.0.1",
|
|
"markdown-it-task-lists": "^2.1.1",
|
|
"sanitize-html": "2.10.0",
|
|
"vue": "^3.3.4",
|
|
"vue-boring-avatars": "^1.3.0",
|
|
"xss": "^1.0.14"
|
|
}
|
|
}
|