mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
# [1.11.0](https://github.com/n8n-io/n8n/compare/n8n@1.10.0...n8n@1.11.0) (2023-10-11) ### Bug Fixes * **core:** Add an option to enable postgres ssl with default certs ([#6889](https://github.com/n8n-io/n8n/issues/6889)) ([789e1e7](789e1e7ed4)) * **core:** Fix error on missing paired item data ([#7399](https://github.com/n8n-io/n8n/issues/7399)) ([47e8953](47e8953ec9)) * **core:** Missing pairing info ([#7326](https://github.com/n8n-io/n8n/issues/7326)) ([e2c3c7a](e2c3c7aceb)) * **core:** Prevent object deletion request on no prefix match ([#7366](https://github.com/n8n-io/n8n/issues/7366)) ([63e11e4](63e11e4be9)) * **editor:** Fix completions for `.json` on quoted node name in Code node ([#7382](https://github.com/n8n-io/n8n/issues/7382)) ([86e7ec7](86e7ec796a)) * **editor:** Implement canvas zoom UX improvements ([#7376](https://github.com/n8n-io/n8n/issues/7376)) ([7e06b31](7e06b31a5f)) * **editor:** Make workflow history button available only for dev builds ([#7392](https://github.com/n8n-io/n8n/issues/7392)) ([7ed466d](7ed466db7f)) * **editor:** Remove excess margin below run data editor ([#7372](https://github.com/n8n-io/n8n/issues/7372)) ([3fa2764](3fa27647d8)) * **editor:** Sanitize HTML binary-data before rendering in the UI ([#7400](https://github.com/n8n-io/n8n/issues/7400)) ([2b075bf](2b075bfc2d)) * **editor:** Use display option's @Version specifier ([#7351](https://github.com/n8n-io/n8n/issues/7351)) ([afbf0c3](afbf0c3d5e)) * **Google BigQuery Node:** Location default to jobReference ([#7354](https://github.com/n8n-io/n8n/issues/7354)) ([97bb703](97bb703d0a)) * **Google Drive Trigger Node:** Add Shared Drives support ([#7369](https://github.com/n8n-io/n8n/issues/7369)) ([3e7a4d3](3e7a4d3b2c)) * **Google Sheets Node:** Fix "Maximum call stack size exceeded" error on too many rows ([#7384](https://github.com/n8n-io/n8n/issues/7384)) ([732b15a](732b15a1fa)) * **HTML Node:** Update property fields to not use expressions on drag ([#7379](https://github.com/n8n-io/n8n/issues/7379)) ([77643e5](77643e5ccb)) * **Notion Node:** Handle empty values correctly for Notion selects + multi selects ([#7383](https://github.com/n8n-io/n8n/issues/7383)) ([fbcd1d4](fbcd1d40ed)) * **Set Node:** Increase search priority ([#7358](https://github.com/n8n-io/n8n/issues/7358)) ([e5ad1e7](e5ad1e7e4d)) * **Webhook Node:** Backward compatible form-data parsing for non-array files ([#7385](https://github.com/n8n-io/n8n/issues/7385)) ([6479eb1](6479eb180f)) ### Features * **core:** Add Job Summary to Worker response ([#7360](https://github.com/n8n-io/n8n/issues/7360)) ([b8608ce](b8608cee6d)) * **core:** Integrate object store as binary data manager ([#7253](https://github.com/n8n-io/n8n/issues/7253)) ([1a661e6](1a661e6d00)) * **core:** Switch binary filesystem mode to nested path structure ([#7307](https://github.com/n8n-io/n8n/issues/7307)) ([0847623](0847623f85)) * **editor:** Make PDF and Audio binary-data viewable in the UI ([#7367](https://github.com/n8n-io/n8n/issues/7367)) ([8187be1](8187be1b7d)) * **editor:** Support autologin for upgrade path ([#7316](https://github.com/n8n-io/n8n/issues/7316)) ([1dfa052](1dfa052301)) * **Execute Workflow Node:** Run once for each item mode ([#7289](https://github.com/n8n-io/n8n/issues/7289)) ([c8c14ca](c8c14ca0af)) * **Item Lists Node:** Split merge binary data ([#7297](https://github.com/n8n-io/n8n/issues/7297)) ([965db8f](965db8f7f2)) * **Loop Over Items (Split in Batches) Node:** Automatically add a loop + rename ([#7228](https://github.com/n8n-io/n8n/issues/7228)) ([7b773cc](7b773cc5cc)) * **Notion Node:** Fetch child blocks recursively ([#7304](https://github.com/n8n-io/n8n/issues/7304)) ([193181a](193181a9c6)) Co-authored-by: netroy <netroy@users.noreply.github.com>
97 lines
3.1 KiB
JSON
97 lines
3.1 KiB
JSON
{
|
|
"name": "n8n-editor-ui",
|
|
"version": "1.11.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 --coverage",
|
|
"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.2.0",
|
|
"@vueuse/core": "^10.2.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"
|
|
}
|
|
}
|