Skip to content

Commit fb40d2b

Browse files
srawlinsscheglov
andauthored
Cherry-pick #3784 into an 8.0.9+1 release (#3800)
4 cherry-picks + a version bump: 1. cherry-pick 8be17e1 Fix flutter CI with re-internalized snippets tool (#3776) 2. cherry-pick ae1f184 Use package:analyzer/source/source.dart (#3780) 3. cherry-pick db3a0ec Restrict validation of runtime renderer files to a single, target version of (#3778) the analyzer package. 4. cherry-pick 36db497 Fix referencing an aliased type parameter. (#3784) What is an aliased type parameter? Good question! `typedef TD<T> = T;` is such an alias. The fix is pretty simple, we just weren't previously handling this case, or being safe. 5. Bump to 8.0.9+1 --------- Co-authored-by: Konstantin Scheglov <[email protected]>
1 parent dff86ed commit fb40d2b

12 files changed

+859
-811
lines changed

.github/workflows/test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Test
33
on:
44
# Run CI on pushes to the main branch, and on PRs against main.
55
push:
6-
branches: [ main ]
6+
branches: [ main, eight-oh-nine-one ]
77
pull_request:
8-
branches: [ main ]
8+
branches: [ main, eight-oh-nine-one ]
99
schedule:
1010
- cron: 0 15 * * *
1111

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 8.0.9+1
2+
3+
* Fix referencing an aliased type parameter. (#3784)
4+
15
## 8.0.9
26

37
* Deprecate the `missingCodeBlockLanguage` warning. This is replaced with the

dartdoc_options.yaml

+1-1
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.0.9/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.0.9+1/%f%#L%l%'

0 commit comments

Comments
 (0)