Skip to content

Commit 157f34e

Browse files
authored
Upgrade analysis SDK, pana, dartdoc (dart-lang#9468)
1 parent c0091aa commit 157f34e

6 files changed

Lines changed: 14 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ Important changes to data models, configuration, and migrations between each
22
AppEngine version, listed here to ease deployment and troubleshooting.
33

44
## Next Release (replace with git tag when deployed)
5+
* Bump runtimeVersion to `2026.07.02`.
6+
* Upgraded stable Flutter analysis SDK to `3.44.4`.
7+
* Upgraded pana to `0.23.14`.
8+
* Upgraded dartdoc to `9.0.6`.
59

610
## `20260625t134000-all`
711
* Bump runtimeVersion to `2026.06.25`.

Dockerfile.worker

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN mkdir -p /home/worker/config/flutter-stable
3131
RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable 3.12.2
3232

3333
# Setup Flutter SDK into /home/worker/flutter/{stable,preview}/
34-
RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.44.3
34+
RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.44.4
3535

3636
# Setup webp
3737
RUN tool/setup-webp.sh /home/worker/bin
@@ -48,7 +48,7 @@ ENV PATH="/home/worker/bin:/home/worker/dart/stable/bin:${PATH}"
4848

4949
# Setup dartdoc
5050
ENV DARTDOC_DIR=/home/worker/dartdoc
51-
RUN tool/setup-dartdoc.sh "${DARTDOC_DIR}" 9.0.5
51+
RUN tool/setup-dartdoc.sh "${DARTDOC_DIR}" 9.0.6
5252
ENV DARTDOC_BINARY="${DARTDOC_DIR}/build/dartdoc"
5353
ENV DARTDOC_RESOURCES_DIR="${DARTDOC_DIR}/lib/resources"
5454

app/lib/shared/versions.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$');
2424
/// when the version switch happens.
2525
const _acceptedRuntimeVersions = <String>[
2626
// The current [runtimeVersion].
27-
'2026.06.25',
27+
'2026.07.02',
2828
// Fallback runtime versions.
29+
'2026.06.25',
2930
'2026.06.18',
30-
'2026.06.03',
3131
];
3232

3333
/// Sets the current runtime versions.
@@ -63,7 +63,7 @@ bool shouldGCVersion(String version) =>
6363
// keep in-sync with SDK version in .github/workflows/all-test.yml and Dockerfile.app
6464
final String runtimeSdkVersion = '3.12.0';
6565
final String toolStableDartSdkVersion = '3.12.2';
66-
final String toolStableFlutterSdkVersion = '3.44.3';
66+
final String toolStableFlutterSdkVersion = '3.44.4';
6767

6868
final semanticToolStableDartSdkVersion = Version.parse(
6969
toolStableDartSdkVersion,
@@ -77,4 +77,4 @@ final String panaVersion = pana.packageVersion;
7777

7878
// keep in-sync with pkg/pub-worker/lib/src/bin/pub_worker_subprocess.dart
7979
// keep in-sync with Dockerfile.worker
80-
final String dartdocVersion = '9.0.5';
80+
final String dartdocVersion = '9.0.6';

app/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies:
4848
watcher: ^1.0.0
4949
yaml: ^3.1.0
5050
# pana version to be pinned
51-
pana: '0.23.13'
51+
pana: '0.23.14'
5252
# 3rd-party packages with pinned versions
5353
mailer: '6.6.0'
5454
postgres: '3.5.12'

pkg/pub_worker/bin/pub_worker_subprocess.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const _totalTimeout = Duration(minutes: 50);
3333

3434
/// The dartdoc version to use.
3535
/// keep in-sync with app/lib/shared/versions.dart
36-
const _dartdocVersion = '9.0.5';
36+
const _dartdocVersion = '9.0.6';
3737

3838
/// Program to be used as subprocess for processing packages, ensuring that we
3939
/// capture all the output, and only run analysis in a subprocess that can

pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,10 +613,10 @@ packages:
613613
dependency: transitive
614614
description:
615615
name: pana
616-
sha256: "98f6485cd6c634d13a890b01b11cc15bd16a44b54b380ab062b34ecb3c3290c6"
616+
sha256: "63aa0e68629332c2b44a7b935737a46b06c6bd7ab34f5c9bafd379752b284d4b"
617617
url: "https://pub.dev"
618618
source: hosted
619-
version: "0.23.13"
619+
version: "0.23.14"
620620
path:
621621
dependency: transitive
622622
description:

0 commit comments

Comments
 (0)