From d8bbd479f45269b24f5a039543bd423c299b8c6b Mon Sep 17 00:00:00 2001 From: "rete-js[bot]" Date: Sat, 14 Sep 2024 19:06:37 +0000 Subject: [PATCH 1/2] chore(release): 2.2.0 --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79b7785..a8e646a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [2.2.0](https://github.com/retejs/angular-plugin/compare/v2.1.2...v2.2.0) (2024-09-14) + + +### Features + +* add support for angular 18 ([3189913](https://github.com/retejs/angular-plugin/commit/31899136770001f8ebde4fe51d7ac2437dfb630d)) + ## [2.1.2](https://github.com/retejs/angular-plugin/compare/v2.1.1...v2.1.2) (2024-08-23) diff --git a/package-lock.json b/package-lock.json index 95a2d1e..a3b593e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rete-angular-plugin", - "version": "2.1.2", + "version": "2.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rete-angular-plugin", - "version": "2.1.2", + "version": "2.2.0", "hasInstallScript": true, "license": "MIT", "devDependencies": { diff --git a/package.json b/package.json index dfc4d4f..ed62e86 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rete-angular-plugin", - "version": "2.1.2", + "version": "2.2.0", "scripts": { "ng": "ng", "build": "npm run build:legacy && npm run build:12 && npm run build:13 && npm run build:14 && npm run build:15 && npm run build:16 && npm run build:17 && npm run build:18", From 5870f773b4029d211f99af1490af12196e3b0ccb Mon Sep 17 00:00:00 2001 From: Ni55aN Date: Sat, 14 Sep 2024 22:48:30 +0300 Subject: [PATCH 2/2] fix: fix peer dependencies constraints --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index ed62e86..ed0e853 100755 --- a/package.json +++ b/package.json @@ -32,9 +32,9 @@ "url": "https://github.com/retejs/angular-plugin/issues" }, "peerDependencies": { - "@angular/common": ">= 12 < 18", - "@angular/core": ">= 12 < 18", - "@angular/elements": ">= 12 < 18", + "@angular/common": ">= 12 < 19", + "@angular/core": ">= 12 < 19", + "@angular/elements": ">= 12 < 19", "rete": "^2.0.1", "rete-area-plugin": "^2.0.0", "rete-render-utils": "^2.0.0",