From e5f855680162c84d3627753c258f316da20f2d60 Mon Sep 17 00:00:00 2001 From: Ben Konyi Date: Tue, 8 Oct 2024 11:24:43 -0400 Subject: [PATCH 1/3] Support Dart 3.7 Will fix failures in DWDS daily testing. --- build_modules/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_modules/pubspec.yaml b/build_modules/pubspec.yaml index 095545f07..6f6da5214 100644 --- a/build_modules/pubspec.yaml +++ b/build_modules/pubspec.yaml @@ -7,7 +7,7 @@ repository: https://github.com/dart-lang/build/tree/master/build_modules resolution: workspace environment: - sdk: '>=3.5.0 <3.7.0' + sdk: '>=3.5.0 <3.8.0' dependencies: analyzer: '>=5.1.0 <7.0.0' From d04633b409c82ddfca57b0f61eec365bba7fd133 Mon Sep 17 00:00:00 2001 From: Ben Konyi Date: Tue, 8 Oct 2024 11:28:24 -0400 Subject: [PATCH 2/3] Update CHANGELOG.md --- build_modules/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/build_modules/CHANGELOG.md b/build_modules/CHANGELOG.md index fd09cedb3..eacbb4d9e 100644 --- a/build_modules/CHANGELOG.md +++ b/build_modules/CHANGELOG.md @@ -1,6 +1,7 @@ ## 5.0.10-wip - Bump the min sdk to 3.5.0. +- Allow version 3.7.x of the Dart SDK. ## 5.0.9 From 574f8f76cd179ab054c3c5eaab12960ae7217520 Mon Sep 17 00:00:00 2001 From: Jake Macdonald Date: Tue, 8 Oct 2024 18:20:25 +0000 Subject: [PATCH 3/3] update build_web_compilers constraints, only allow dev releases of 3.7.0 --- build_modules/CHANGELOG.md | 4 ++-- build_modules/pubspec.yaml | 4 ++-- build_web_compilers/CHANGELOG.md | 4 ++++ build_web_compilers/pubspec.yaml | 4 ++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/build_modules/CHANGELOG.md b/build_modules/CHANGELOG.md index eacbb4d9e..fbdffbd83 100644 --- a/build_modules/CHANGELOG.md +++ b/build_modules/CHANGELOG.md @@ -1,7 +1,7 @@ -## 5.0.10-wip +## 5.0.10-beta.0 - Bump the min sdk to 3.5.0. -- Allow version 3.7.x of the Dart SDK. +- Support 3.7.0 pre-release sdks. ## 5.0.9 diff --git a/build_modules/pubspec.yaml b/build_modules/pubspec.yaml index 6f6da5214..f49fabcef 100644 --- a/build_modules/pubspec.yaml +++ b/build_modules/pubspec.yaml @@ -1,5 +1,5 @@ name: build_modules -version: 5.0.10-wip +version: 5.0.10-beta.0 description: >- Builders to analyze and split Dart code into individually compilable modules based on imports. @@ -7,7 +7,7 @@ repository: https://github.com/dart-lang/build/tree/master/build_modules resolution: workspace environment: - sdk: '>=3.5.0 <3.8.0' + sdk: '>=3.5.0 <3.7.0-z' dependencies: analyzer: '>=5.1.0 <7.0.0' diff --git a/build_web_compilers/CHANGELOG.md b/build_web_compilers/CHANGELOG.md index 3bc8c58d9..2dfe672fb 100644 --- a/build_web_compilers/CHANGELOG.md +++ b/build_web_compilers/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.1.0-beta.3 + +- Support 3.7.0 pre-release sdks. + ## 4.1.0-beta.2 - Add source maps for dart2wasm builds. diff --git a/build_web_compilers/pubspec.yaml b/build_web_compilers/pubspec.yaml index 0e6598e01..a50400bfb 100644 --- a/build_web_compilers/pubspec.yaml +++ b/build_web_compilers/pubspec.yaml @@ -1,5 +1,5 @@ name: build_web_compilers -version: 4.1.0-beta.2 +version: 4.1.0-beta.3 description: Builder implementations wrapping the dart2js and DDC compilers. repository: https://github.com/dart-lang/build/tree/master/build_web_compilers # This package can't be part of the workspace because it requires a very recent @@ -7,7 +7,7 @@ repository: https://github.com/dart-lang/build/tree/master/build_web_compilers #resolution: workspace environment: - sdk: ^3.6.0-165.0.dev + sdk: '>=3.6.0-165.0.dev <3.7.0-z' dependencies: analyzer: '>=5.1.0 <7.0.0'