mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
167124ceb8
# [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>
68 lines
1.7 KiB
JSON
68 lines
1.7 KiB
JSON
{
|
|
"name": "n8n-workflow",
|
|
"version": "1.9.0",
|
|
"description": "Workflow base code 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.js",
|
|
"module": "src/index.ts",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.js",
|
|
"import": "./src/index.ts",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"dev": "pnpm watch",
|
|
"typecheck": "tsc",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
"lint": "eslint . --quiet",
|
|
"lintfix": "eslint . --fix",
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
"test": "jest",
|
|
"test:dev": "jest --watch"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"devDependencies": {
|
|
"@types/crypto-js": "^4.1.1",
|
|
"@types/deep-equal": "^1.0.1",
|
|
"@types/express": "^4.17.6",
|
|
"@types/jmespath": "^0.15.0",
|
|
"@types/lodash": "^4.14.195",
|
|
"@types/luxon": "^3.2.0",
|
|
"@types/xml2js": "^0.4.11"
|
|
},
|
|
"dependencies": {
|
|
"@n8n/tournament": "^1.0.2",
|
|
"@n8n_io/riot-tmpl": "^4.0.0",
|
|
"ast-types": "0.15.2",
|
|
"crypto-js": "^4.1.1",
|
|
"deep-equal": "^2.2.0",
|
|
"esprima-next": "5.8.4",
|
|
"form-data": "^4.0.0",
|
|
"jmespath": "^0.16.0",
|
|
"js-base64": "^3.7.2",
|
|
"lodash": "^4.17.21",
|
|
"luxon": "^3.3.0",
|
|
"recast": "^0.21.5",
|
|
"title-case": "^3.0.3",
|
|
"transliteration": "^2.3.5",
|
|
"xml2js": "^0.5.0"
|
|
}
|
|
}
|