mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
# [1.9.0](https://github.com/n8n-io/n8n/compare/n8n@1.8.0...n8n@1.9.0) (2023-09-28) ### Bug Fixes * **Airtable Node:** Attachments field type fix ([#7227](https://github.com/n8n-io/n8n/issues/7227)) ([2af967c](2af967cf88)) * **core:** Change WorkflowHistory nodes/connections columns to be json ([#7282](https://github.com/n8n-io/n8n/issues/7282)) ([a80abad](a80abad3af)) * **core:** Fix binary data manager check on pruning ([#7251](https://github.com/n8n-io/n8n/issues/7251)) ([484035e](484035eb51)) * **core:** Fix missing execution ID in webhook-based workflow producing binary data ([#7244](https://github.com/n8n-io/n8n/issues/7244)) ([33991e9](33991e92d0)) * **core:** Handle filename* with quotes in Content-Disposition header ([#7229](https://github.com/n8n-io/n8n/issues/7229)) ([67b985f](67b985fe89)) * **core:** Make DNS resolution order configurable ([#7272](https://github.com/n8n-io/n8n/issues/7272)) ([5b3121c](5b3121c415)) * **core:** Make senderId required for all command messages ([#7252](https://github.com/n8n-io/n8n/issues/7252)) ([4b01428](4b014286cf)) * **core:** Prevent executions from displaying Running status incorrectly ([#7261](https://github.com/n8n-io/n8n/issues/7261)) ([861cac5](861cac5257)) * **core:** Use consistent timezone-aware timestamps in postgres ([#6948](https://github.com/n8n-io/n8n/issues/6948)) ([0132514](0132514f8b)), closes [#2178](https://github.com/n8n-io/n8n/issues/2178) [#2810](https://github.com/n8n-io/n8n/issues/2810) [#3855](https://github.com/n8n-io/n8n/issues/3855) [#2813](https://github.com/n8n-io/n8n/issues/2813) * **editor:** Add debug feature docs link ([#7240](https://github.com/n8n-io/n8n/issues/7240)) ([4614e1e](4614e1e1c9)) * **editor:** Fix SQL editor issue ([#7236](https://github.com/n8n-io/n8n/issues/7236)) ([647fc6c](647fc6c555)) * **editor:** Ensure new Set node is on top of search list ([#7215](https://github.com/n8n-io/n8n/issues/7215)) ([2491ccf](2491ccf4d9)) * **editor:** Forbid password reset when cloud account is limited in the number of users [7188](https://github.com/n8n-io/n8n/issues/7188) ([303bc8e](303bc8e71e)) * **HTTP Request Node:** Add suggestion how to fix '429 - too many requests' errors ([#7293](https://github.com/n8n-io/n8n/issues/7293)) ([0bc33b1](0bc33b1cc2)) * **Item Lists Node:** Concatenate operation pairedItems fix ([#7286](https://github.com/n8n-io/n8n/issues/7286)) ([cde23a1](cde23a1bb1)) * **Respond to Webhook Node:** JSON output from expression fix ([#7294](https://github.com/n8n-io/n8n/issues/7294)) ([8bc369d](8bc369dd40)) ### Features * Add onboarding flow ([#7212](https://github.com/n8n-io/n8n/issues/7212)) ([01e9340](01e9340621)) * **core:** Add secrets provider reload and refactor ([#7277](https://github.com/n8n-io/n8n/issues/7277)) ([53a7502](53a7502d20)) * **core:** Add Tournament as the new default expression evaluator ([#6964](https://github.com/n8n-io/n8n/issues/6964)) ([bf74f09](bf74f09d69)) * **core:** Initial workflow history API ([#7234](https://github.com/n8n-io/n8n/issues/7234)) ([0083a9e](0083a9e45d)) * **core:** Introduce object store service ([#7225](https://github.com/n8n-io/n8n/issues/7225)) ([fa84545](fa845453bb)) * **editor:** Add user cloud ID to telemetry [#7232](https://github.com/n8n-io/n8n/issues/7232) ([60c152d](60c152dc72)) * **editor:** Rework banners framework and add email confirmation banner ([#7205](https://github.com/n8n-io/n8n/issues/7205)) ([b0e98b5](b0e98b59a6)) * **MISP Node:** Update credential to support HTTP Request node ([#7268](https://github.com/n8n-io/n8n/issues/7268)) ([e4c302c](e4c302c683)) ### Performance Improvements * **core:** Skip unneeded calls on every pruning cycle ([#7260](https://github.com/n8n-io/n8n/issues/7260)) ([db01164](db01164ce1)) Co-authored-by: netroy <netroy@users.noreply.github.com>
74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "n8n-core",
|
|
"version": "1.9.0",
|
|
"description": "Core functionality of n8n",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"homepage": "https://n8n.io",
|
|
"author": {
|
|
"name": "Jan Oberhauser",
|
|
"email": "jan@n8n.io"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
},
|
|
"main": "dist/index",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"n8n-generate-known": "./bin/generate-known",
|
|
"n8n-generate-ui-types": "./bin/generate-ui-types"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"typecheck": "tsc",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"dev": "pnpm watch",
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
"lint": "eslint . --quiet",
|
|
"lintfix": "eslint . --fix",
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
"test": "jest"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin"
|
|
],
|
|
"devDependencies": {
|
|
"@types/aws4": "^1.5.1",
|
|
"@types/concat-stream": "^2.0.0",
|
|
"@types/cron": "~1.7.1",
|
|
"@types/crypto-js": "^4.0.1",
|
|
"@types/express": "^4.17.6",
|
|
"@types/lodash": "^4.14.195",
|
|
"@types/mime-types": "^2.1.0",
|
|
"@types/request-promise-native": "~1.0.15",
|
|
"@types/uuid": "^8.3.2",
|
|
"@types/xml2js": "^0.4.11"
|
|
},
|
|
"peerDependencies": {
|
|
"n8n-nodes-base": "workspace:*"
|
|
},
|
|
"dependencies": {
|
|
"@n8n/client-oauth2": "workspace:*",
|
|
"aws4": "^1.8.0",
|
|
"axios": "^0.21.1",
|
|
"concat-stream": "^2.0.0",
|
|
"cron": "~1.7.2",
|
|
"crypto-js": "~4.1.1",
|
|
"fast-glob": "^3.2.5",
|
|
"file-type": "^16.5.4",
|
|
"flatted": "^3.2.4",
|
|
"form-data": "^4.0.0",
|
|
"lodash": "^4.17.21",
|
|
"mime-types": "^2.1.27",
|
|
"n8n-workflow": "workspace:*",
|
|
"oauth-1.0a": "^2.2.6",
|
|
"p-cancelable": "^2.0.0",
|
|
"pretty-bytes": "^5.6.0",
|
|
"qs": "^6.10.1",
|
|
"typedi": "^0.10.0",
|
|
"uuid": "^8.3.2",
|
|
"xml2js": "^0.5.0"
|
|
}
|
|
}
|