From 3c7d1720a675093e44b5404b9dfc8dbaa8fef86e Mon Sep 17 00:00:00 2001 From: Jake Macdonald Date: Tue, 26 Mar 2024 14:59:30 +0000 Subject: [PATCH 1/2] allow the 3.5.x Dart SDK --- 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, 12 insertions(+), 4 deletions(-) diff --git a/build_modules/CHANGELOG.md b/build_modules/CHANGELOG.md index fc5dc1a969..b1b56702ea 100644 --- a/build_modules/CHANGELOG.md +++ b/build_modules/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.0.8 + +- Allow version 3.5.x of the Dart SDK. + ## 5.0.7 - Fixes to support package:js version 0.7.0. diff --git a/build_modules/pubspec.yaml b/build_modules/pubspec.yaml index fe9dfadac7..c9ee3ccf68 100644 --- a/build_modules/pubspec.yaml +++ b/build_modules/pubspec.yaml @@ -1,12 +1,12 @@ name: build_modules -version: 5.0.7 +version: 5.0.8 description: >- Builders to analyze and split Dart code into individually compilable modules based on imports. repository: https://github.com/dart-lang/build/tree/master/build_modules environment: - sdk: '>=3.0.0 <3.5.0' + sdk: '>=3.0.0 <3.6.0' dependencies: analyzer: '>=5.1.0 <7.0.0' diff --git a/build_web_compilers/CHANGELOG.md b/build_web_compilers/CHANGELOG.md index e4eba8b1b1..daa1f7f8e0 100644 --- a/build_web_compilers/CHANGELOG.md +++ b/build_web_compilers/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.0.10 + +- Allow version 3.5.x of the Dart SDK. + ## 4.0.9 - Support latest version of `package:js`. diff --git a/build_web_compilers/pubspec.yaml b/build_web_compilers/pubspec.yaml index de2a745458..fc3ede4814 100644 --- a/build_web_compilers/pubspec.yaml +++ b/build_web_compilers/pubspec.yaml @@ -1,10 +1,10 @@ name: build_web_compilers -version: 4.0.9 +version: 4.0.10 description: Builder implementations wrapping the dart2js and DDC compilers. repository: https://github.com/dart-lang/build/tree/master/build_web_compilers environment: - sdk: '>=3.1.0 <3.5.0' + sdk: '>=3.1.0 <3.6.0' dependencies: analyzer: '>=5.1.0 <7.0.0' From e7eafed9067c0917c4ee16e64d3ab956d2000a9e Mon Sep 17 00:00:00 2001 From: Jake Macdonald Date: Tue, 26 Mar 2024 15:25:39 +0000 Subject: [PATCH 2/2] ignore https://bazel.build links in the markdown checker --- mlc_config.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mlc_config.json b/mlc_config.json index 0c6ec5fa59..8f5c330d00 100644 --- a/mlc_config.json +++ b/mlc_config.json @@ -2,6 +2,9 @@ "ignorePatterns": [ { "pattern": "^https://stackoverflow.com" + }, + { + "pattern": "^https://bazel.build" } ] }