Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ Important changes to data models, configuration, and migrations between each
AppEngine version, listed here to ease deployment and troubleshooting.

## Next Release (replace with git tag when deployed)
* Bumped runtimeVersion to `2024.09.04`.
* Upgraded stable Dart analysis SDK to `3.5.2`
* Upgraded dartdoc to `8.1.0`.

## `20240829t084400-all`
* Bumped runtimeVersion to `2024.08.27`.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN mkdir -p /home/worker/config/dart-stable
RUN mkdir -p /home/worker/config/flutter-stable

# Setup Dart SDK into /home/worker/dart/{stable,preview}/
RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable 3.5.1
RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable 3.5.2

# Setup Flutter SDK into /home/worker/flutter/{stable,preview}/
RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.24.1
Expand Down
8 changes: 4 additions & 4 deletions app/lib/shared/versions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$');
/// when the version switch happens.
const _acceptedRuntimeVersions = <String>[
// The current [runtimeVersion].
'2024.08.27',
'2024.09.04',
// Fallback runtime versions.
'2024.08.27',
'2024.08.20',
'2024.08.09',
];

/// Sets the current runtime versions.
Expand Down Expand Up @@ -62,7 +62,7 @@ bool shouldGCVersion(String version) =>

// keep in-sync with SDK version in .mono_repo.yml and Dockerfile
final String runtimeSdkVersion = '3.5.0';
final String toolStableDartSdkVersion = '3.5.1';
final String toolStableDartSdkVersion = '3.5.2';
final String toolStableFlutterSdkVersion = '3.24.1';

final semanticToolStableDartSdkVersion =
Expand All @@ -74,4 +74,4 @@ final semanticToolStableFlutterSdkVersion =
final String panaVersion = pana.packageVersion;

// keep in-sync with pkg/pub-worker/lib/src/bin/pana_wrapper.dart
final String dartdocVersion = '8.0.14';
final String dartdocVersion = '8.1.0';
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ <h1>
<li>TypeEnum</li>
</ul>
</dd>
<dt>Available extensions</dt>
<dd>
<ul class="comma-separated clazz-relationships">
<li>
<a href="https://api.dart.dev/stable/%%stable-dart-version%%/dart-core/EnumName.html">EnumName</a>
</li>
</ul>
</dd>
</dl>
</div>
<div class="summary offset-anchor" id="values">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,14 @@ <h1>
<li>TypeEnum</li>
</ul>
</dd>
<dt>Available extensions</dt>
<dd>
<ul class="comma-separated clazz-relationships">
<li>
<a href="https://api.dart.dev/stable/%%stable-dart-version%%/dart-core/EnumName.html">EnumName</a>
</li>
</ul>
</dd>
</dl>
</div>
<div class="summary offset-anchor" id="values">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,14 @@ <h1>
<li>TypeEnum</li>
</ul>
</dd>
<dt>Available extensions</dt>
<dd>
<ul class="comma-separated clazz-relationships">
<li>
<a href="https://api.dart.dev/stable/%%stable-dart-version%%/dart-core/EnumName.html">EnumName</a>
</li>
</ul>
</dd>
</dl>
</div>
<div class="summary offset-anchor" id="values">
Expand Down
2 changes: 1 addition & 1 deletion pkg/pub_worker/lib/src/bin/pana_wrapper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const _totalTimeout = Duration(minutes: 50);

/// The dartdoc version to use.
/// keep in-sync with app/lib/shared/versions.dart
const _dartdocVersion = '8.0.14';
const _dartdocVersion = '8.1.0';

/// Program to be used as subprocess for running pana, ensuring that we capture
/// all the output, and only run analysis in a subprocess that can timeout and
Expand Down
4 changes: 2 additions & 2 deletions third_party/dartdoc/resources/docs.dart.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions third_party/dartdoc/resources/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,7 @@ footer a, footer a:hover {
}

.markdown.desc {
margin-bottom: 1em;
max-width: 700px;
}

Expand Down