mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
e5c6a1bdf9
# [1.16.0](https://github.com/n8n-io/n8n/compare/n8n@1.15.1...n8n@1.16.0) (2023-11-08) ### Bug Fixes * **core:** Comply with custom default for workflow saving settings ([#7634](https://github.com/n8n-io/n8n/issues/7634)) ([48c068f
](48c068f97b
)) * **core:** Decrease reset password token expire time ([#7598](https://github.com/n8n-io/n8n/issues/7598)) ([2aa7f63
](2aa7f6375a
)) * **core:** Ensure `init` before checking leader or follower in multi-main scenario ([#7621](https://github.com/n8n-io/n8n/issues/7621)) ([a994ba5
](a994ba5e8d
)) * **core:** Ensure pruning starts only after migrations have completed ([#7626](https://github.com/n8n-io/n8n/issues/7626)) ([f748de9
](f748de9567
)) * **core:** Fix accessor error when running partial execution ([#7618](https://github.com/n8n-io/n8n/issues/7618)) ([26361df
](26361dfcd3
)), closes [#6229](https://github.com/n8n-io/n8n/issues/6229) * **core:** Make password-reset urls valid only for single-use ([#7622](https://github.com/n8n-io/n8n/issues/7622)) ([6031424
](60314248f4
)) * **Crypto Node:** Fix issue with value not appearing for Sign action ([#7619](https://github.com/n8n-io/n8n/issues/7619)) ([5df583f
](5df583f783
)) * **editor:** Allow overriding theme from query params ([#7591](https://github.com/n8n-io/n8n/issues/7591)) ([2854a0c
](2854a0cf46
)) * **editor:** Fix issue that frontend breaks with unkown nodes ([#7596](https://github.com/n8n-io/n8n/issues/7596)) ([db56a9e
](db56a9ee37
)) * **editor:** Fix local storage flags defaulting to undefined string ([#7603](https://github.com/n8n-io/n8n/issues/7603)) ([151e60f
](151e60f829
)) * **editor:** Fix workflow history prune time limit (getting hours instead of days) ([#7644](https://github.com/n8n-io/n8n/issues/7644)) ([3d5a485
](3d5a485bcf
)) * **editor:** Hide not supported node options ([#7597](https://github.com/n8n-io/n8n/issues/7597)) ([b532a7b
](b532a7bdb7
)) * **editor:** Remove unknown credentials on pasting workflow ([#7582](https://github.com/n8n-io/n8n/issues/7582)) ([d633753
](d633753687
)) * **editor:** Reset canvas zoom before workspace reset in node view ([#7625](https://github.com/n8n-io/n8n/issues/7625)) ([78b84af
](78b84af8d1
)) * **editor:** Zoom in/out on canvas the same amount on scroll/gesture ([#7602](https://github.com/n8n-io/n8n/issues/7602)) ([c92402a
](c92402a3ca
)) * **Facebook Lead Ads Trigger Node:** Fix issue with missing scope for business management ([#7616](https://github.com/n8n-io/n8n/issues/7616)) ([32b85ba
](32b85ba2fe
)) ### Features * **core:** Add the node version to telemetry in node_graph_string ([#7449](https://github.com/n8n-io/n8n/issues/7449)) ([59dc36a
](59dc36abd9
)) * **core:** Coordinate workflow activation in multiple main scenario in internal API ([#7566](https://github.com/n8n-io/n8n/issues/7566)) ([c857e42
](c857e42677
)) * **core:** Initial support for two-way communication over websockets ([#7570](https://github.com/n8n-io/n8n/issues/7570)) ([ac87701
](ac877014ed
)) * **core:** Log executed migrations with info level ([#7586](https://github.com/n8n-io/n8n/issues/7586)) ([7dac9ab
](7dac9ab82c
)) * **core:** Rate limit forgot password endpoint ([#7604](https://github.com/n8n-io/n8n/issues/7604)) ([5790e25
](5790e251b8
)) * **LinkedIn Node:** Add support for Article thumbnails ([#7489](https://github.com/n8n-io/n8n/issues/7489)) ([e6d3d1a
](e6d3d1a4c2
)) * **NocoDB Node:** Add new data apis and workspace support ([#7329](https://github.com/n8n-io/n8n/issues/7329)) ([da2d2a8
](da2d2a83bb
)) Co-authored-by: ivov <ivov@users.noreply.github.com>
97 lines
3.1 KiB
JSON
97 lines
3.1 KiB
JSON
{
|
|
"name": "n8n-editor-ui",
|
|
"version": "1.16.0",
|
|
"description": "Workflow Editor UI for n8n",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"homepage": "https://n8n.io",
|
|
"author": {
|
|
"name": "Jan Oberhauser",
|
|
"email": "jan@n8n.io"
|
|
},
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"build": "cross-env VUE_APP_PUBLIC_PATH=\"/{{BASE_PATH}}/\" NODE_OPTIONS=\"--max-old-space-size=8192\" vite build",
|
|
"typecheck": "vue-tsc --emitDeclarationOnly",
|
|
"dev": "pnpm serve",
|
|
"lint": "eslint src --ext .js,.ts,.vue --quiet",
|
|
"lintfix": "eslint src --ext .js,.ts,.vue --fix",
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
"serve": "cross-env VUE_APP_URL_BASE_API=http://localhost:5678/ vite --host 0.0.0.0 --port 8080 dev",
|
|
"test": "vitest run",
|
|
"test:dev": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "^6.4.0",
|
|
"@codemirror/commands": "^6.1.0",
|
|
"@codemirror/lang-javascript": "^6.1.2",
|
|
"@codemirror/lang-json": "^6.0.1",
|
|
"@codemirror/lang-python": "^6.1.2",
|
|
"@codemirror/language": "^6.2.1",
|
|
"@codemirror/lint": "^6.0.0",
|
|
"@codemirror/state": "^6.1.4",
|
|
"@codemirror/view": "^6.5.1",
|
|
"@fontsource/open-sans": "^4.5.0",
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.35",
|
|
"@fortawesome/free-regular-svg-icons": "^6.1.1",
|
|
"@fortawesome/free-solid-svg-icons": "^5.15.3",
|
|
"@fortawesome/vue-fontawesome": "^3.0.3",
|
|
"@jsplumb/browser-ui": "^5.13.2",
|
|
"@jsplumb/common": "^5.13.2",
|
|
"@jsplumb/connector-bezier": "^5.13.2",
|
|
"@jsplumb/core": "^5.13.2",
|
|
"@jsplumb/util": "^5.13.2",
|
|
"@lezer/common": "^1.0.4",
|
|
"@n8n/codemirror-lang-sql": "^1.0.2",
|
|
"@vueuse/components": "^10.5.0",
|
|
"@vueuse/core": "^10.5.0",
|
|
"axios": "^0.21.1",
|
|
"codemirror-lang-html-n8n": "^1.0.0",
|
|
"codemirror-lang-n8n-expression": "^0.2.0",
|
|
"copy-to-clipboard": "^3.3.3",
|
|
"dateformat": "^3.0.3",
|
|
"esprima-next": "5.8.4",
|
|
"fast-json-stable-stringify": "^2.1.0",
|
|
"file-saver": "^2.0.2",
|
|
"flatted": "^3.2.4",
|
|
"humanize-duration": "^3.27.2",
|
|
"jsonpath": "^1.1.1",
|
|
"lodash-es": "^4.17.21",
|
|
"luxon": "^3.3.0",
|
|
"n8n-design-system": "workspace:*",
|
|
"n8n-workflow": "workspace:*",
|
|
"pinia": "^2.1.6",
|
|
"prettier": "^3.0.3",
|
|
"qrcode.vue": "^3.3.4",
|
|
"stream-browserify": "^3.0.0",
|
|
"timeago.js": "^4.0.2",
|
|
"uuid": "^8.3.2",
|
|
"v3-infinite-loading": "^1.2.2",
|
|
"vue": "^3.3.4",
|
|
"vue-agile": "^2.0.0",
|
|
"vue-i18n": "^9.2.2",
|
|
"vue-json-pretty": "2.2.4",
|
|
"vue-markdown-render": "^2.0.1",
|
|
"vue-router": "^4.2.2",
|
|
"vue3-touch-events": "^4.1.3",
|
|
"xss": "^1.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@faker-js/faker": "^8.0.2",
|
|
"@pinia/testing": "^0.1.3",
|
|
"@sentry/vite-plugin": "^2.5.0",
|
|
"@types/dateformat": "^3.0.0",
|
|
"@types/file-saver": "^2.0.1",
|
|
"@types/humanize-duration": "^3.27.1",
|
|
"@types/jsonpath": "^0.2.0",
|
|
"@types/lodash-es": "^4.17.6",
|
|
"@types/luxon": "^3.2.0",
|
|
"@types/uuid": "^8.3.2",
|
|
"miragejs": "^0.1.47"
|
|
}
|
|
}
|