Skip to content

Commit b48e08b

Browse files
committed
Merge branch 'main' into misc/sass-nesting
2 parents 6351b4f + 98a199f commit b48e08b

File tree

78 files changed

+28045
-17440
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+28045
-17440
lines changed

.github/workflows/scorecards-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141

4242
# Upload the results as artifacts (optional).
4343
- name: "Upload artifact"
44-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
44+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b
4545
with:
4646
name: SARIF file
4747
path: results.sarif
4848
retention-days: 5
4949

5050
# Upload the results to GitHub's code scanning dashboard.
5151
- name: "Upload to code-scanning"
52-
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88
52+
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169
5353
with:
5454
sarif_file: results.sarif

.github/workflows/test.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os: [ubuntu-latest]
25-
# TODO(srawlins): Re-enable stable when stable works with analyzer 6.9.0
26-
# (Dart 3.6.0).
27-
sdk: [dev]
25+
sdk: [3.6.0, dev]
2826
job: [main, flutter, packages, sdk-docs]
2927
include:
3028
- os: macos-latest
@@ -37,9 +35,9 @@ jobs:
3735
# Do not try to run flutter against the "stable" sdk,
3836
# it is unlikely to work and produces uninteresting
3937
# results.
40-
- sdk: stable
38+
- sdk: 3.6.0
4139
job: flutter
42-
- sdk: stable
40+
- sdk: 3.6.0
4341
job: sdk-docs
4442

4543
steps:
@@ -48,7 +46,7 @@ jobs:
4846
run: echo "name=today::$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
4947
shell: bash
5048
- name: Cache clean flutter
51-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a
49+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
5250
if: matrix.job == 'flutter'
5351
env:
5452
# Increment version to invalidate bad/obsolete caches.
@@ -57,7 +55,7 @@ jobs:
5755
path: ~/.dartdoc_grinder
5856
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ steps.date.outputs.today }}
5957
- name: Cache .pub-cache
60-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a
58+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
6159
if: matrix.job == 'flutter'
6260
env:
6361
# Increment version to invalidate bad/obsolete caches.

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
1-
## 8.3.1-wip
1+
## 8.3.3-wip
2+
3+
* Require Dart 3.6 or later.
4+
* Require analyzer 7.2.0 APIs.
5+
6+
## 8.3.2
7+
8+
* Fix a LateInitializationError by not depending on PackageGraph.objectClass.
9+
10+
## 8.3.1
211

312
* Require Dart 3.5 or later.
13+
* Append the href of each library with a slash. (#3940)
14+
* Compress generated css by configuring sass output style. (#3919)
15+
* Generate included css using sass. (#3917)
16+
* Correct links to remote, canonical libraries (#3912)
17+
* Use web 1.1. (#3915)
418

519
## 8.3.0
620

analysis_options.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ linter:
1818
rules:
1919
- always_declare_return_types
2020
- always_put_required_named_parameters_first
21+
- analyzer_use_new_elements
2122
- avoid_bool_literals_in_conditional_expressions
2223
- avoid_catching_errors
2324
- avoid_dynamic_calls

analyzer_use_new_elements.txt

Whitespace-only changes.

dartdoc_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dartdoc:
22
linkToSource:
33
root: '.'
4-
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.3.1-wip/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.3.3-wip/%f%#L%l%'

0 commit comments

Comments
 (0)