mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
823b589e09
# [1.20.0](https://github.com/n8n-io/n8n/compare/n8n@1.19.0...n8n@1.20.0) (2023-12-06) ### Bug Fixes * **AWS DynamoDB Node:** Improve error message parsing ([#7793](https://github.com/n8n-io/n8n/issues/7793)) ([5ba5ed8
](5ba5ed8e3c
)) * **core:** Allow grace period for binary data deletion after manual execution ([#7889](https://github.com/n8n-io/n8n/issues/7889)) ([61d8aeb
](61d8aebeaf
)) * **core:** Consolidate ownership and sharing data on workflows and credentials ([#7920](https://github.com/n8n-io/n8n/issues/7920)) ([38b88b9
](38b88b946b
)) * **core:** Fix hard deletes stopping if database query throws ([#7848](https://github.com/n8n-io/n8n/issues/7848)) ([46dd4d3
](46dd4d3105
)) * **core:** Make sure mfa secret and recovery codes are not returned on login ([#7936](https://github.com/n8n-io/n8n/issues/7936)) ([f5502cc
](f5502cc628
)) * **editor:** Fix deletion of last execution at execution preview ([#7883](https://github.com/n8n-io/n8n/issues/7883)) ([ce2d388
](ce2d388f05
)) * **editor:** Replace isInstanceOwner checks with scopes where applicable ([#7858](https://github.com/n8n-io/n8n/issues/7858)) ([132d691
](132d691cbf
)) * **Google Sheets Node:** Fix issue with paired items not being set correctly ([#7862](https://github.com/n8n-io/n8n/issues/7862)) ([5207a2f
](5207a2fe52
)) * **Notion Node:** Fix broken Notion node parameters ([#7864](https://github.com/n8n-io/n8n/issues/7864)) ([51d1f5b
](51d1f5b820
)), closes [#7791](https://github.com/n8n-io/n8n/issues/7791) ### Features * **BambooHR Node:** Add support for Only Current on company reports ([#7878](https://github.com/n8n-io/n8n/issues/7878)) ([4175801
](4175801c90
)) * **core:** Allow admin creation ([#7837](https://github.com/n8n-io/n8n/issues/7837)) ([476806e
](476806ebb0
)) * **editor:** Add sections to create node panel ([#7831](https://github.com/n8n-io/n8n/issues/7831)) ([39fa8d2
](39fa8d21bb
)) * **editor:** Open template credential setup from collection ([#7882](https://github.com/n8n-io/n8n/issues/7882)) ([627ddb9
](627ddb91fb
)) * **editor:** Select credentials in template setup if theres only one ([#7879](https://github.com/n8n-io/n8n/issues/7879)) ([fe3417a
](fe3417a615
)) ### Performance Improvements * **editor:** Improve node rendering performance when opening large workflows ([#7904](https://github.com/n8n-io/n8n/issues/7904)) ([a8049a0
](a8049a0def
)) * **editor:** Improve performance when opening large workflows with node issues ([#7901](https://github.com/n8n-io/n8n/issues/7901)) ([4bd7ae2
](4bd7ae29f7
)) Co-authored-by: ivov <ivov@users.noreply.github.com>
101 lines
3.2 KiB
JSON
101 lines
3.2 KiB
JSON
{
|
|
"name": "n8n-editor-ui",
|
|
"version": "1.20.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",
|
|
"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",
|
|
"@n8n/permissions": "workspace:*",
|
|
"@vueuse/components": "^10.5.0",
|
|
"@vueuse/core": "^10.5.0",
|
|
"axios": "^0.21.1",
|
|
"chart.js": "^4.4.0",
|
|
"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.1.0",
|
|
"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-chartjs": "^5.2.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",
|
|
"@testing-library/vue": "^7.0.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"
|
|
}
|
|
}
|