[code_assets] [hooks_runner] [native_toolchain_c] Release Releasing package:code_assets v1.2.0, package:hooks_runner v1.4.0, and package:native_toolchain_c v0.19.1.
diff --git a/pkgs/code_assets/CHANGELOG.md b/pkgs/code_assets/CHANGELOG.md index b62b0ce..90ecc1c 100644 --- a/pkgs/code_assets/CHANGELOG.md +++ b/pkgs/code_assets/CHANGELOG.md
@@ -1,4 +1,4 @@ -## 1.2.0-wip +## 1.2.0 - Added an optional `sanitizer` parameter to `CodeConfig` and `CodeAssetExtension` supporting `asan`, `msan`, and `tsan`.
diff --git a/pkgs/code_assets/pubspec.yaml b/pkgs/code_assets/pubspec.yaml index a6dc251..ffb68f4 100644 --- a/pkgs/code_assets/pubspec.yaml +++ b/pkgs/code_assets/pubspec.yaml
@@ -3,7 +3,7 @@ This library contains the hook protocol specification for bundling native code with Dart packages. -version: 1.2.0-wip +version: 1.2.0 repository: https://github.com/dart-lang/native/tree/main/pkgs/code_assets
diff --git a/pkgs/hooks_runner/CHANGELOG.md b/pkgs/hooks_runner/CHANGELOG.md index 9e202b6..03a78d9 100644 --- a/pkgs/hooks_runner/CHANGELOG.md +++ b/pkgs/hooks_runner/CHANGELOG.md
@@ -1,8 +1,9 @@ -## 1.4.0-wip +## 1.4.0 - Add cache-isolation for recorded usages under link hooks using `RecordUseConfig`, and deprecate the legacy `resourceIdentifiers` parameters. - Add `APPDATA`, `LOCALAPPDATA`, and prefixes `DOTNET_` and `NUGET_` to the environment variables allowlist. +- Bumped dependency on `package:code_assets` to `^1.2.0`. ## 1.3.0
diff --git a/pkgs/hooks_runner/pubspec.yaml b/pkgs/hooks_runner/pubspec.yaml index 0bfa7f2..5a77eb0 100644 --- a/pkgs/hooks_runner/pubspec.yaml +++ b/pkgs/hooks_runner/pubspec.yaml
@@ -2,7 +2,7 @@ description: >- This package is the backend that invokes build hooks. -version: 1.4.0-wip +version: 1.4.0 repository: https://github.com/dart-lang/native/tree/main/pkgs/hooks_runner @@ -12,7 +12,7 @@ sdk: '>=3.10.0 <4.0.0' dependencies: - code_assets: ^1.1.0 # Needed for OS for Target for KernelAssets. + code_assets: ^1.2.0 # Needed for OS for Target for KernelAssets. collection: ^1.19.1 crypto: ^3.0.6 file: ^7.0.1
diff --git a/pkgs/native_toolchain_c/CHANGELOG.md b/pkgs/native_toolchain_c/CHANGELOG.md index ade36d4..e413c30 100644 --- a/pkgs/native_toolchain_c/CHANGELOG.md +++ b/pkgs/native_toolchain_c/CHANGELOG.md
@@ -1,7 +1,7 @@ -## 0.19.1-wip +## 0.19.1 - Added support for passing sanitizer flags (`-fsanitize=address`, `-fsanitize=memory`, `-fsanitize=thread`) to C compilers and linkers. -- Depend on `package:code_assets` `^1.2.0-wip`. +- Depend on `package:code_assets` `^1.2.0`. ## 0.19.0
diff --git a/pkgs/native_toolchain_c/pubspec.yaml b/pkgs/native_toolchain_c/pubspec.yaml index 5995c10..64ac35f 100644 --- a/pkgs/native_toolchain_c/pubspec.yaml +++ b/pkgs/native_toolchain_c/pubspec.yaml
@@ -1,7 +1,7 @@ name: native_toolchain_c description: >- A library to invoke the native C compiler installed on the host machine. -version: 0.19.1-wip +version: 0.19.1 repository: https://github.com/dart-lang/native/tree/main/pkgs/native_toolchain_c topics: @@ -17,7 +17,7 @@ sdk: '>=3.10.0 <4.0.0' dependencies: - code_assets: ^1.2.0-wip + code_assets: ^1.2.0 glob: ^2.1.1 hooks: ^2.0.0 logging: ^1.3.0