Skip to content

Commit b87777c

Browse files
authored
[pigeon] Update analyzer version (#10352)
Adds compatibility with version 8 of the `analyzer` package. I did not update to version 9 of the `analyzer` directly, because I think it's sensible to adopt 8 and have a release of pigeon that conforms to 8 first. This will give the chance to consuming projects to upgrade analyzer versions at their own pace. As as follow up PR, I can also work on updating to version 9 for a future release. Fixes flutter/flutter#175432 ## Pre-Review Checklist **Note**: The Flutter team is currently trialing the use of [Gemini Code Assist for GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code). Comments from the `gemini-code-assist` bot should not be taken as authoritative feedback from the Flutter team. If you find its comments useful you can update your code accordingly, but if you are unsure or disagree with the feedback, please feel free to wait for a Flutter team member's review for guidance on which automated comments should be addressed. [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
1 parent 850087b commit b87777c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

packages/pigeon/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 26.0.4
2+
3+
* Adds compatibility with `analyzer` 8.x.
4+
15
## 26.0.3
26

37
* [kotlin] Removes all `containsKey` and replaces with `contains`.

packages/pigeon/lib/src/generator_tools.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import 'generator.dart';
1515
/// The current version of pigeon.
1616
///
1717
/// This must match the version in pubspec.yaml.
18-
const String pigeonVersion = '26.0.3';
18+
const String pigeonVersion = '26.0.4';
1919

2020
/// Read all the content from [stdin] to a String.
2121
String readStdin() {

packages/pigeon/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: pigeon
22
description: Code generator tool to make communication between Flutter and the host platform type-safe and easier.
33
repository: https://github.com/flutter/packages/tree/main/packages/pigeon
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+pigeon%22
5-
version: 26.0.3 # This must match the version in lib/src/generator_tools.dart
5+
version: 26.0.4 # This must match the version in lib/src/generator_tools.dart
66

77
environment:
88
sdk: ^3.7.0
99

1010
dependencies:
11-
analyzer: ">=6.0.0 <8.0.0"
11+
analyzer: ">=6.0.0 <9.0.0"
1212
args: ^2.1.0
1313
code_builder: ^4.10.0
1414
collection: ^1.15.0

0 commit comments

Comments
 (0)