mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-13 16:14:07 -08:00
955bd327ff
# [1.6.0](https://github.com/n8n-io/n8n/compare/n8n@1.5.1...n8n@1.6.0) (2023-09-06) ### Bug Fixes * **core:** Add support for in-transit encryption (TLS) on Redis connections ([#7047](https://github.com/n8n-io/n8n/issues/7047)) ([a910757
](a910757cc5
)) * **core:** Disallow orphan executions ([#7069](https://github.com/n8n-io/n8n/issues/7069)) ([8a28e98
](8a28e98ec8
)) * **core:** Split event bus controller into community and ee ([#7107](https://github.com/n8n-io/n8n/issues/7107)) ([011ee2e
](011ee2e04b
)) * **editor:** Standardize save text ([#7093](https://github.com/n8n-io/n8n/issues/7093)) ([58b3492
](58b3492b0d
)) * Ensure all new executions are saved ([#7061](https://github.com/n8n-io/n8n/issues/7061)) ([b8e06d2
](b8e06d245f
)) * Load remote resources even if expressions in non requried parameters resolve ([#6987](https://github.com/n8n-io/n8n/issues/6987)) ([8a8d4e8
](8a8d4e8bb3
)) * **Postgres Node:** Connection pool of the database object has been destroyed ([#7074](https://github.com/n8n-io/n8n/issues/7074)) ([9dd5f0e
](9dd5f0e579
)) * **Postgres Node:** Tunnel doesn't always close ([#7087](https://github.com/n8n-io/n8n/issues/7087)) ([58e55ba
](58e55ba669
)) ### Features * **core:** Add list query middleware to credentials ([#7041](https://github.com/n8n-io/n8n/issues/7041)) ([fd78021
](fd78021b68
)) * **core:** Add support for floating licenses ([#7090](https://github.com/n8n-io/n8n/issues/7090)) ([e26553f
](e26553f198
)) * **core:** Migration for soft deletions for executions ([#7088](https://github.com/n8n-io/n8n/issues/7088)) ([413e0bc
](413e0bccb4
)) * **HTTP Request Node:** Determine binary file name from content-disposition headers ([#7032](https://github.com/n8n-io/n8n/issues/7032)) ([273d091
](273d0913fe
)) * **TheHive Node:** Overhaul ([#6457](https://github.com/n8n-io/n8n/issues/6457)) ([73e782e
](73e782e2cf
)) Co-authored-by: netroy <netroy@users.noreply.github.com>
73 lines
1.9 KiB
JSON
73 lines
1.9 KiB
JSON
{
|
|
"name": "n8n-core",
|
|
"version": "1.6.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/concat-stream": "^2.0.0",
|
|
"@types/content-disposition": "^0.5.5",
|
|
"@types/content-type": "^1.1.5",
|
|
"@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"
|
|
},
|
|
"peerDependencies": {
|
|
"n8n-nodes-base": "workspace:*"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.21.1",
|
|
"@n8n/client-oauth2": "workspace:*",
|
|
"concat-stream": "^2.0.0",
|
|
"content-disposition": "^0.5.4",
|
|
"content-type": "^1.0.4",
|
|
"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",
|
|
"uuid": "^8.3.2"
|
|
}
|
|
}
|