Skip to content

Commit 235ae4e

Browse files
authored
Upgrade dartdoc to 9.0.5 (dart-lang#9443)
1 parent 3df308f commit 235ae4e

4 files changed

Lines changed: 7 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +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.06.16`.
5+
* Bump runtimeVersion to `2026.06.18`.
66
* Upgraded stable Dart analysis SDK to `3.12.2`
77
* Upgraded stable Flutter analysis SDK to `3.44.2`.
8+
* Upgraded dartdoc to `9.0.5`.
89

910
## `20260611t083300-all`
1011
* Bump runtimeVersion to `2026.06.03`.

Dockerfile.worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.4
51+
RUN tool/setup-dartdoc.sh "${DARTDOC_DIR}" 9.0.5
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: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ 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.16',
27+
'2026.06.18',
2828
// Fallback runtime versions.
2929
'2026.06.03',
3030
'2026.06.01',
@@ -53,10 +53,7 @@ String get runtimeVersion => acceptedRuntimeVersions.first;
5353
/// The version which marks the earliest version of the data which we'd like to
5454
/// keep during various GC processes. Data prior to this version is subject to
5555
/// delete (unless there is another rule in place to keep it).
56-
String get gcBeforeRuntimeVersion => acceptedRuntimeVersions.length == 1
57-
// TODO: remove after task backend is released
58-
? '2026.04.29'
59-
: acceptedRuntimeVersions.last;
56+
String get gcBeforeRuntimeVersion => acceptedRuntimeVersions.last;
6057

6158
/// Returns true if the given version should be considered as obsolete and can
6259
/// be deleted.
@@ -80,4 +77,4 @@ final String panaVersion = pana.packageVersion;
8077

8178
// keep in-sync with pkg/pub-worker/lib/src/bin/pub_worker_subprocess.dart
8279
// keep in-sync with Dockerfile.worker
83-
final String dartdocVersion = '9.0.4';
80+
final String dartdocVersion = '9.0.5';

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.4';
36+
const _dartdocVersion = '9.0.5';
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

0 commit comments

Comments
 (0)