From dc0f1d99bf534ef118ab85b6e459882bf0dfd3e6 Mon Sep 17 00:00:00 2001 From: Jacob MacDonald Date: Tue, 26 Mar 2024 11:37:52 -0700 Subject: [PATCH] allow the 3.5.x Dart SDK (#3660) * allow the 3.5.x Dart SDK * ignore https://bazel.build links in the markdown checker --- build_modules/CHANGELOG.md | 4 ++++ build_modules/pubspec.yaml | 4 ++-- build_web_compilers/CHANGELOG.md | 4 ++++ build_web_compilers/pubspec.yaml | 4 ++-- mlc_config.json | 3 +++ 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/build_modules/CHANGELOG.md b/build_modules/CHANGELOG.md index fc5dc1a96..b1b56702e 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 fe9dfadac..c9ee3ccf6 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 e4eba8b1b..daa1f7f8e 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 de2a74545..fc3ede481 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' diff --git a/mlc_config.json b/mlc_config.json index 0c6ec5fa5..8f5c330d0 100644 --- a/mlc_config.json +++ b/mlc_config.json @@ -2,6 +2,9 @@ "ignorePatterns": [ { "pattern": "^https://stackoverflow.com" + }, + { + "pattern": "^https://bazel.build" } ] }