mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
# [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>
101 lines
3.3 KiB
JSON
101 lines
3.3 KiB
JSON
{
|
|
"name": "n8n",
|
|
"version": "1.16.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",
|
|
"build:backend": "pnpm --filter=!n8n-design-system --filter=!n8n-editor-ui build",
|
|
"build:frontend": "pnpm --filter=n8n-design-system --filter=n8n-editor-ui 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",
|
|
"test:backend": "pnpm --filter=!n8n-design-system --filter=!n8n-editor-ui test",
|
|
"test:frontend": "pnpm --filter=n8n-design-system --filter=n8n-editor-ui 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": "scripts/run-e2e.js ui",
|
|
"test:e2e:dev": "scripts/run-e2e.js dev",
|
|
"test:e2e:all": "scripts/run-e2e.js all"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|