mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
Merge tag 'n8n@0.219.1'
This commit is contained in:
commit
dc0e052c83
5
.github/scripts/bump-versions.mjs
vendored
5
.github/scripts/bump-versions.mjs
vendored
|
@ -28,7 +28,10 @@ for (let { name, path, version, private: isPrivate, dependencies } of packages)
|
||||||
packageMap[name] = { path, isDirty, version };
|
packageMap[name] = { path, isDirty, version };
|
||||||
}
|
}
|
||||||
|
|
||||||
assert.ok(packageMap['n8n'].isDirty, 'No changes found since the last release');
|
assert.ok(
|
||||||
|
Object.values(packageMap).some(({ isDirty }) => isDirty),
|
||||||
|
'No changes found since the last release',
|
||||||
|
);
|
||||||
|
|
||||||
// Keep the monorepo version up to date with the released version
|
// Keep the monorepo version up to date with the released version
|
||||||
packageMap['monorepo-root'].version = packageMap['n8n'].version;
|
packageMap['monorepo-root'].version = packageMap['n8n'].version;
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
## [0.219.1](https://github.com/n8n-io/n8n/compare/n8n@0.219.0...n8n@0.219.1) (2023-03-10)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **HTTP Request Node:** Remove streaming response ([#5663](https://github.com/n8n-io/n8n/issues/5663)) ([974d57d](https://github.com/n8n-io/n8n/commit/974d57dfed78489d3f22c8c63e0ea624c637bfe0))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [0.219.0](https://github.com/n8n-io/n8n/compare/n8n@0.218.0...n8n@0.219.0) (2023-03-09)
|
# [0.219.0](https://github.com/n8n-io/n8n/compare/n8n@0.218.0...n8n@0.219.0) (2023-03-09)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "n8n",
|
"name": "n8n",
|
||||||
"version": "0.219.0",
|
"version": "0.219.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"homepage": "https://n8n.io",
|
"homepage": "https://n8n.io",
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "n8n",
|
"name": "n8n",
|
||||||
"version": "0.219.0",
|
"version": "0.219.1",
|
||||||
"description": "n8n Workflow Automation Tool",
|
"description": "n8n Workflow Automation Tool",
|
||||||
"license": "SEE LICENSE IN LICENSE.md",
|
"license": "SEE LICENSE IN LICENSE.md",
|
||||||
"homepage": "https://n8n.io",
|
"homepage": "https://n8n.io",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "n8n-nodes-base",
|
"name": "n8n-nodes-base",
|
||||||
"version": "0.217.0",
|
"version": "0.217.1",
|
||||||
"description": "Base nodes of n8n",
|
"description": "Base nodes of n8n",
|
||||||
"license": "SEE LICENSE IN LICENSE.md",
|
"license": "SEE LICENSE IN LICENSE.md",
|
||||||
"homepage": "https://n8n.io",
|
"homepage": "https://n8n.io",
|
||||||
|
|
Loading…
Reference in a new issue