mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
e6ba841c5f
# [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.4 KiB
JSON
97 lines
3.4 KiB
JSON
{
|
|
"name": "n8n",
|
|
"version": "1.11.0",
|
|
"private": true,
|
|
"homepage": "https://n8n.io",
|
|
"engines": {
|
|
"node": ">=18.10",
|
|
"pnpm": ">=8.9"
|
|
},
|
|
"packageManager": "pnpm@8.9.0",
|
|
"scripts": {
|
|
"preinstall": "node scripts/block-npm-install.js",
|
|
"build": "turbo run build",
|
|
"typecheck": "turbo run typecheck",
|
|
"dev": "turbo run dev --parallel",
|
|
"clean": "turbo run clean --parallel",
|
|
"format": "turbo run format && node scripts/format.mjs",
|
|
"lint": "turbo run lint",
|
|
"lintfix": "turbo run lintfix",
|
|
"optimize-svg": "find ./packages -name '*.svg' ! -name 'pipedrive.svg' -print0 | xargs -0 -P16 -L20 npx svgo",
|
|
"start": "run-script-os",
|
|
"start:default": "cd packages/cli/bin && ./n8n",
|
|
"start:tunnel": "./packages/cli/bin/n8n start --tunnel",
|
|
"start:windows": "cd packages/cli/bin && n8n",
|
|
"test": "turbo run test",
|
|
"watch": "turbo run watch",
|
|
"webhook": "./packages/cli/bin/n8n webhook",
|
|
"worker": "./packages/cli/bin/n8n worker",
|
|
"cypress:install": "cypress install",
|
|
"cypress:open": "CYPRESS_BASE_URL=http://localhost:8080 cypress open",
|
|
"test:e2e:ui": "cross-env E2E_TESTS=true NODE_OPTIONS=--dns-result-order=ipv4first start-server-and-test start http://localhost:5678/favicon.ico 'cypress open'",
|
|
"test:e2e:dev": "cross-env E2E_TESTS=true NODE_OPTIONS=--dns-result-order=ipv4first CYPRESS_BASE_URL=http://localhost:8080 start-server-and-test dev http://localhost:8080/favicon.ico 'cypress open'",
|
|
"test:e2e:all": "cross-env E2E_TESTS=true NODE_OPTIONS=--dns-result-order=ipv4first start-server-and-test start http://localhost:5678/favicon.ico 'cypress run --headless'"
|
|
},
|
|
"dependencies": {
|
|
"n8n": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@n8n_io/eslint-config": "workspace:*",
|
|
"@ngneat/falso": "^6.4.0",
|
|
"@types/jest": "^29.5.3",
|
|
"@types/supertest": "^2.0.12",
|
|
"@vitest/coverage-v8": "^0.33.0",
|
|
"cross-env": "^7.0.3",
|
|
"cypress-otp": "^1.0.3",
|
|
"cypress": "^12.17.2",
|
|
"cypress-real-events": "^1.9.1",
|
|
"jest": "^29.6.2",
|
|
"jest-environment-jsdom": "^29.6.2",
|
|
"jest-expect-message": "^1.1.3",
|
|
"jest-mock": "^29.6.2",
|
|
"jest-mock-extended": "^3.0.4",
|
|
"nock": "^13.3.2",
|
|
"nodemon": "^3.0.1",
|
|
"p-limit": "^3.1.0",
|
|
"rimraf": "^5.0.1",
|
|
"run-script-os": "^1.0.7",
|
|
"start-server-and-test": "^2.0.0",
|
|
"supertest": "^6.3.3",
|
|
"ts-jest": "^29.1.1",
|
|
"tsc-alias": "^1.8.7",
|
|
"tsc-watch": "^6.0.4",
|
|
"turbo": "1.10.12",
|
|
"typescript": "*",
|
|
"vite": "^4.4.7",
|
|
"vitest": "^0.33.0",
|
|
"vue-tsc": "^1.8.8"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"sqlite3"
|
|
],
|
|
"overrides": {
|
|
"@types/node": "^18.16.16",
|
|
"chokidar": "3.5.2",
|
|
"jsonwebtoken": "9.0.0",
|
|
"prettier": "^3.0.3",
|
|
"semver": "^7.5.4",
|
|
"tough-cookie": "^4.1.3",
|
|
"tslib": "^2.6.1",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.2.2",
|
|
"xml2js": "^0.5.0",
|
|
"cpy@8>globby": "^11.1.0",
|
|
"qqjs>globby": "^11.1.0"
|
|
},
|
|
"patchedDependencies": {
|
|
"typedi@0.10.0": "patches/typedi@0.10.0.patch",
|
|
"@sentry/cli@2.17.0": "patches/@sentry__cli@2.17.0.patch",
|
|
"pkce-challenge@3.0.0": "patches/pkce-challenge@3.0.0.patch",
|
|
"pyodide@0.23.4": "patches/pyodide@0.23.4.patch",
|
|
"@types/ws@8.5.4": "patches/@types__ws@8.5.4.patch"
|
|
}
|
|
}
|
|
}
|