mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
# [1.10.0](https://github.com/n8n-io/n8n/compare/n8n@1.9.0...n8n@1.10.0) (2023-10-05) ### Bug Fixes * **Convert to/from binary data Node:** Rename 'Move Binary Data' to 'Convert to/from binary data' ([#7318](https://github.com/n8n-io/n8n/issues/7318)) ([5e6c1d4](5e6c1d4f4b)) * **core:** Account for itemless case on restoring binary data ID ([#7305](https://github.com/n8n-io/n8n/issues/7305)) ([1691223](1691223789)) * **core:** Fix pruning of non-finished executions ([#7333](https://github.com/n8n-io/n8n/issues/7333)) ([1b4848a](1b4848afcb)) * **editor:** Disable email confirmation banner for trialing users ([#7340](https://github.com/n8n-io/n8n/issues/7340)) ([6d3d178](6d3d1789db)) * **editor:** Display value of selected matching column in RMC ([#7298](https://github.com/n8n-io/n8n/issues/7298)) ([3aac22b](3aac22b4c1)) * **editor:** Fix canvas endpoint snapping when dragging connection ([#7346](https://github.com/n8n-io/n8n/issues/7346)) ([b59b908](b59b9086d7)) * **editor:** Fix disappearing NDV header in code nodes ([#7290](https://github.com/n8n-io/n8n/issues/7290)) ([7ebf8f3](7ebf8f327a)) * **editor:** Fix RLC not loading when an expression can't resolve ([#7295](https://github.com/n8n-io/n8n/issues/7295)) ([ddc26c2](ddc26c21bd)) * **editor:** Separate cloud endpoint calls ([#7312](https://github.com/n8n-io/n8n/issues/7312)) ([04dfcd7](04dfcd73be)) * **Jira Software Node:** Get all users in dropdown/RLC ([#7322](https://github.com/n8n-io/n8n/issues/7322)) ([3704760](3704760724)), closes [#2670](https://github.com/n8n-io/n8n/issues/2670) * **Notion Node:** Rename Notion API Key to Internal Integration Token ([#7176](https://github.com/n8n-io/n8n/issues/7176)) ([ec2aa38](ec2aa3819c)) * **Postgres Node:** Node requires comma-separated string even when using a single parameter through an expression ([#7300](https://github.com/n8n-io/n8n/issues/7300)) ([763d451](763d4514fa)) * **Set Node:** Do not stringify null and undefined ([#7313](https://github.com/n8n-io/n8n/issues/7313)) ([f0a6687](f0a66873b9)) * **Typeform Trigger Node:** Change output format for TypeForm trigger to object instead of array ([#7315](https://github.com/n8n-io/n8n/issues/7315)) ([b3fc00e](b3fc00e045)) ### Features * **core:** Add "Sent by n8n" attribution ([#7183](https://github.com/n8n-io/n8n/issues/7183)) ([8f9fe62](8f9fe6269b)) * **core:** Add support for building LLM applications ([#7235](https://github.com/n8n-io/n8n/issues/7235)) ([00a4b8b](00a4b8b0c6)), closes [#7246](https://github.com/n8n-io/n8n/issues/7246) [#7137](https://github.com/n8n-io/n8n/issues/7137) * Workflow History pruning and prune time settings ([#7343](https://github.com/n8n-io/n8n/issues/7343)) ([0adc533](0adc533719)) Co-authored-by: krynble <krynble@users.noreply.github.com>
74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "n8n-core",
|
|
"version": "1.10.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"
|
|
}
|
|
}
|