From 48f538e76efa617cd3caf45c7d8249d717ebd217 Mon Sep 17 00:00:00 2001 From: Gavin Zhao Date: Thu, 6 Apr 2023 22:53:21 -0400 Subject: [PATCH] chore(release): publish packages - ngcompiler@3.0.0-dev.1 - ngdart@8.0.0-dev.1 - ngforms@5.0.0-dev.1 - ngrouter@4.0.0-dev.1 - ngtest@5.0.0-dev.1 --- CHANGELOG.md | 48 +++++++++++++++++++++++++++++++++++++++++ _tests/pubspec.yaml | 4 ++-- ngcompiler/CHANGELOG.md | 8 +++++++ ngcompiler/pubspec.yaml | 4 ++-- ngdart/CHANGELOG.md | 9 ++++++++ ngdart/pubspec.yaml | 4 ++-- ngforms/CHANGELOG.md | 6 ++++++ ngforms/pubspec.yaml | 6 +++--- ngrouter/CHANGELOG.md | 4 ++++ ngrouter/pubspec.yaml | 6 +++--- ngtest/CHANGELOG.md | 4 ++++ ngtest/pubspec.yaml | 4 ++-- 12 files changed, 93 insertions(+), 14 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..8c9865b9e3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,48 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 2023-04-06 + +### Changes + +--- + +Packages with breaking changes: + + - [`ngcompiler` - `v3.0.0-dev.1`](#ngcompiler---v300-dev1) + - [`ngdart` - `v8.0.0-dev.1`](#ngdart---v800-dev1) + - [`ngforms` - `v5.0.0-dev.1`](#ngforms---v500-dev1) + +Packages with other changes: + + - [`ngrouter` - `v4.0.0-dev.1`](#ngrouter---v400-dev1) + - [`ngtest` - `v5.0.0-dev.1`](#ngtest---v500-dev1) + +Packages with dependency updates only: + +> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project. + + - `ngrouter` - `v4.0.0-dev.1` + - `ngtest` - `v5.0.0-dev.1` + +--- + +#### `ngcompiler` - `v3.0.0-dev.1` + + - **FIX**(ngcompiler): declare types to be X instead of XImpl. ([51bd17b3](https://github.com/angulardart-community/angular/commit/51bd17b3abaa1feac82e13ce6df231106649a231)) + - **BREAKING** **REFACTOR**(ngdart): migrate ViewEncapsulation to enum. ([2e15858b](https://github.com/angulardart-community/angular/commit/2e15858b6f32a14f9874bf3f95a3daf2c930a290)) + - **BREAKING** **REFACTOR**(ngdart): rename and remove deprecated values from ChangeDetectionStrategy and APP_ID ([#41](https://github.com/angulardart-community/angular/issues/41)). ([3c5523a0](https://github.com/angulardart-community/angular/commit/3c5523a089d323789f1dec6dd294b735d8a28066)) + +#### `ngdart` - `v8.0.0-dev.1` + + - **FEAT**(ngdart): bring back DomSanitizationService. ([f1b65727](https://github.com/angulardart-community/angular/commit/f1b657276387021557bdd4987e47be960e1e1eed)) + - **BREAKING** **REFACTOR**(ngdart): migrate ViewEncapsulation to enum. ([2e15858b](https://github.com/angulardart-community/angular/commit/2e15858b6f32a14f9874bf3f95a3daf2c930a290)) + - **BREAKING** **REFACTOR**(ngdart): rename and remove deprecated values from ChangeDetectionStrategy and APP_ID ([#41](https://github.com/angulardart-community/angular/issues/41)). ([3c5523a0](https://github.com/angulardart-community/angular/commit/3c5523a089d323789f1dec6dd294b735d8a28066)) + - **BREAKING** **REFACTOR**(ngdart): migrate ChangeDetectorState to enum. ([598cae20](https://github.com/angulardart-community/angular/commit/598cae207148fee962db9d4a6e62c90a817be443)) + +#### `ngforms` - `v5.0.0-dev.1` + + - **BREAKING** **REFACTOR**(ngdart): rename and remove deprecated values from ChangeDetectionStrategy and APP_ID ([#41](https://github.com/angulardart-community/angular/issues/41)). ([3c5523a0](https://github.com/angulardart-community/angular/commit/3c5523a089d323789f1dec6dd294b735d8a28066)) + diff --git a/_tests/pubspec.yaml b/_tests/pubspec.yaml index d9e0234889..75adfbbf3d 100644 --- a/_tests/pubspec.yaml +++ b/_tests/pubspec.yaml @@ -9,8 +9,8 @@ dependencies: build_resolvers: ^2.1.0 build_test: ^2.1.6 collection: ^1.17.0 - ngdart: ^8.0.0-dev.0 - ngtest: ^5.0.0-dev.0 + ngdart: ^8.0.0-dev.1 + ngtest: ^5.0.0-dev.1 test: ^1.22.2 dev_dependencies: diff --git a/ngcompiler/CHANGELOG.md b/ngcompiler/CHANGELOG.md index d032377925..388149415e 100644 --- a/ngcompiler/CHANGELOG.md +++ b/ngcompiler/CHANGELOG.md @@ -1,3 +1,11 @@ +## 3.0.0-dev.1 + +> Note: This release has breaking changes. + + - **FIX**(ngcompiler): declare types to be X instead of XImpl. ([51bd17b3](https://github.com/angulardart-community/angular/commit/51bd17b3abaa1feac82e13ce6df231106649a231)) + - **BREAKING** **REFACTOR**(ngdart): migrate ViewEncapsulation to enum. ([2e15858b](https://github.com/angulardart-community/angular/commit/2e15858b6f32a14f9874bf3f95a3daf2c930a290)) + - **BREAKING** **REFACTOR**(ngdart): rename and remove deprecated values from ChangeDetectionStrategy and APP_ID ([#41](https://github.com/angulardart-community/angular/issues/41)). ([3c5523a0](https://github.com/angulardart-community/angular/commit/3c5523a089d323789f1dec6dd294b735d8a28066)) + ## 3.0.0-dev.0 > Note: This release has breaking changes. diff --git a/ngcompiler/pubspec.yaml b/ngcompiler/pubspec.yaml index 5696e3105c..a90a0d440c 100644 --- a/ngcompiler/pubspec.yaml +++ b/ngcompiler/pubspec.yaml @@ -3,7 +3,7 @@ description: > The AngularDart compiler. It compiles your component files written in Dart into templates so that you don't have to worry about all the complicated hassle. -version: 3.0.0-dev.0 +version: 3.0.0-dev.1 repository: https://github.com/angulardart-community/angular environment: @@ -21,7 +21,7 @@ dependencies: logging: ^1.1.0 meta: ^1.8.0 ngast: ^3.0.0-dev.0 - ngdart: any + ngdart: ^8.0.0-dev.1 package_config: ^2.1.0 path: ^1.8.3 source_gen: ^1.2.6 diff --git a/ngdart/CHANGELOG.md b/ngdart/CHANGELOG.md index 71da53c3a8..6f13f75c64 100644 --- a/ngdart/CHANGELOG.md +++ b/ngdart/CHANGELOG.md @@ -1,3 +1,12 @@ +## 8.0.0-dev.1 + +> Note: This release has breaking changes. + + - **FEAT**(ngdart): bring back DomSanitizationService. ([f1b65727](https://github.com/angulardart-community/angular/commit/f1b657276387021557bdd4987e47be960e1e1eed)) + - **BREAKING** **REFACTOR**(ngdart): migrate ViewEncapsulation to enum. ([2e15858b](https://github.com/angulardart-community/angular/commit/2e15858b6f32a14f9874bf3f95a3daf2c930a290)) + - **BREAKING** **REFACTOR**(ngdart): rename and remove deprecated values from ChangeDetectionStrategy and APP_ID ([#41](https://github.com/angulardart-community/angular/issues/41)). ([3c5523a0](https://github.com/angulardart-community/angular/commit/3c5523a089d323789f1dec6dd294b735d8a28066)) + - **BREAKING** **REFACTOR**(ngdart): migrate ChangeDetectorState to enum. ([598cae20](https://github.com/angulardart-community/angular/commit/598cae207148fee962db9d4a6e62c90a817be443)) + ## 8.0.0-dev.0 > Note: This release has breaking changes. diff --git a/ngdart/pubspec.yaml b/ngdart/pubspec.yaml index 79c4f2feda..81b163a0ed 100644 --- a/ngdart/pubspec.yaml +++ b/ngdart/pubspec.yaml @@ -2,7 +2,7 @@ name: ngdart description: >- Fast and productive web framework by Google. Separate, but similar to the JavaScript framework with a similar name. -version: 8.0.0-dev.0 +version: 8.0.0-dev.1 repository: https://github.com/angulardart-community/angular environment: @@ -19,7 +19,7 @@ dependencies: js: ^0.6.5 meta: ^1.8.0 ngast: ^3.0.0-dev.0 - ngcompiler: ^3.0.0-dev.0 + ngcompiler: ^3.0.0-dev.1 stream_transform: ^2.1.0 dev_dependencies: diff --git a/ngforms/CHANGELOG.md b/ngforms/CHANGELOG.md index 7a00953116..feee283d4a 100644 --- a/ngforms/CHANGELOG.md +++ b/ngforms/CHANGELOG.md @@ -1,3 +1,9 @@ +## 5.0.0-dev.1 + +> Note: This release has breaking changes. + + - **BREAKING** **REFACTOR**(ngdart): rename and remove deprecated values from ChangeDetectionStrategy and APP_ID ([#41](https://github.com/angulardart-community/angular/issues/41)). ([3c5523a0](https://github.com/angulardart-community/angular/commit/3c5523a089d323789f1dec6dd294b735d8a28066)) + ## 5.0.0-dev.0 > Note: This release has breaking changes. diff --git a/ngforms/pubspec.yaml b/ngforms/pubspec.yaml index 47d1a5bd61..d23844c1c5 100644 --- a/ngforms/pubspec.yaml +++ b/ngforms/pubspec.yaml @@ -2,7 +2,7 @@ name: ngforms description: > Forms framework for AngularDart. Easily create forms to accept input from users. -version: 5.0.0-dev.0 +version: 5.0.0-dev.1 repository: https://github.com/angulardart-community/angular environment: @@ -10,12 +10,12 @@ environment: dependencies: meta: ^1.8.0 - ngdart: ^8.0.0-dev.0 + ngdart: ^8.0.0-dev.1 dev_dependencies: build_runner: ^2.3.3 build_test: ^2.1.6 build_web_compilers: ^3.2.7 lints: ^2.0.1 mockito: ^5.3.2 - ngtest: ^5.0.0-dev.0 + ngtest: ^5.0.0-dev.1 test: ^1.22.2 diff --git a/ngrouter/CHANGELOG.md b/ngrouter/CHANGELOG.md index a341b7f29d..c0e602eea4 100644 --- a/ngrouter/CHANGELOG.md +++ b/ngrouter/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.0.0-dev.1 + + - Update a dependency to the latest release. + ## 4.0.0-dev.0 > Note: This release has breaking changes. diff --git a/ngrouter/pubspec.yaml b/ngrouter/pubspec.yaml index 615202b292..09cc789d5b 100644 --- a/ngrouter/pubspec.yaml +++ b/ngrouter/pubspec.yaml @@ -2,7 +2,7 @@ name: ngrouter description: > Router for AngularDart. It enables navigation from one view to the next as users perform tasks. -version: 4.0.0-dev.0 +version: 4.0.0-dev.1 repository: https://github.com/angulardart-community/angular environment: @@ -10,7 +10,7 @@ environment: dependencies: collection: ^1.17.0 - ngdart: ^8.0.0-dev.0 + ngdart: ^8.0.0-dev.1 dev_dependencies: async: ^2.10.0 build_runner: ^2.3.3 @@ -18,5 +18,5 @@ dev_dependencies: build_web_compilers: ^3.2.7 lints: ^2.0.1 mockito: ^5.3.2 - ngtest: ^5.0.0-dev.0 + ngtest: ^5.0.0-dev.1 test: ^1.22.2 diff --git a/ngtest/CHANGELOG.md b/ngtest/CHANGELOG.md index f405b366d1..2525038624 100644 --- a/ngtest/CHANGELOG.md +++ b/ngtest/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.0.0-dev.1 + + - Update a dependency to the latest release. + ## 5.0.0-dev.0 > Note: This release has breaking changes. diff --git a/ngtest/pubspec.yaml b/ngtest/pubspec.yaml index 06739d4228..6c04294c99 100644 --- a/ngtest/pubspec.yaml +++ b/ngtest/pubspec.yaml @@ -2,7 +2,7 @@ name: ngtest description: > Testing runner and library for AngularDart. This package is necessary to write component tests for AngularDart components. -version: 5.0.0-dev.0 +version: 5.0.0-dev.1 repository: https://github.com/angulardart-community/angular environment: @@ -11,7 +11,7 @@ environment: dependencies: collection: ^1.17.0 meta: ^1.8.0 - ngdart: ^8.0.0-dev.0 + ngdart: ^8.0.0-dev.1 dev_dependencies: build_runner: ^2.3.3 build_test: ^2.1.6