Skip to content

🔖 5.11.0 #700

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 17, 2025
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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 5.11.0

**Feature**

- [#576](https://github.com/FlutterGen/flutter_gen/pull/576) Add support for deferred components. by [@ianmaciel](https://github.com/ianmaciel)
- [#676](https://github.com/FlutterGen/flutter_gen/pull/676) Add new option `parse_animation` to parse metadata for animated images. by [@HuanDu](https://github.com/huandu)
- [#680](https://github.com/FlutterGen/flutter_gen/pull/680) Add svg `ColorMapper` to svg loader. by [@AlexV525](https://github.com/AlexV525)
- [#685](https://github.com/FlutterGen/flutter_gen/pull/685) Use `.vec` SVG class for `vector_graphics_compiler` transformed assets. by [@Albert221](https://github.com/Albert221)
- [#697](https://github.com/FlutterGen/flutter_gen/pull/697) Refactor how generated files are being formatted. by [@AlexV525](https://github.com/AlexV525)

**Development**

- [#681](https://github.com/FlutterGen/flutter_gen/pull/682) Bump `dart_style` v3 which also requires Dart 3.4. by [@AlexV525](https://github.com/AlexV525)
- [#682](https://github.com/FlutterGen/flutter_gen/pull/682) Add Facts generate utils. by [@AlexV525](https://github.com/AlexV525)
- [#694](https://github.com/FlutterGen/flutter_gen/pull/694) Use fine-grained logger instead of `stdout.writeln`. by [@AlexV525](https://github.com/AlexV525)
- [#698](https://github.com/FlutterGen/flutter_gen/pull/698) Improve workflow with automatic formatting. by [@AlexV525](https://github.com/AlexV525)
- [#699](https://github.com/FlutterGen/flutter_gen/pull/699) Allow `build 3.0.0`. by [@davidmorgan](https://github.com/davidmorgan)

## 5.10.0

**Feature**
Expand Down
6 changes: 3 additions & 3 deletions packages/command/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: flutter_gen
description: The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.
version: 5.10.0
version: 5.11.0
homepage: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen/tree/main/packages/command
documentation: https://github.com/FlutterGen/flutter_gen
issue_tracker: https://github.com/FlutterGen/flutter_gen/issues

Expand All @@ -13,7 +13,7 @@ executables:
fluttergen: flutter_gen_command

dependencies:
flutter_gen_core: 5.10.0
flutter_gen_core: 5.11.0

args: ^2.0.0
logging: ^1.3.0
Expand Down
4 changes: 2 additions & 2 deletions packages/core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: flutter_gen_core
description: The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.
version: 5.10.0
version: 5.11.0
homepage: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen/tree/main/packages/core
documentation: https://github.com/FlutterGen/flutter_gen
issue_tracker: https://github.com/FlutterGen/flutter_gen/issues

Expand Down
6 changes: 3 additions & 3 deletions packages/runner/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: flutter_gen_runner
description: The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.
version: 5.10.0
version: 5.11.0
homepage: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen/tree/main/packages/runner
documentation: https://github.com/FlutterGen/flutter_gen
issue_tracker: https://github.com/FlutterGen/flutter_gen/issues

environment:
sdk: ^3.4.0

dependencies:
flutter_gen_core: 5.10.0
flutter_gen_core: 5.11.0
build: '>=2.0.0 <4.0.0'
collection: ^1.17.0
crypto: ^3.0.0
Expand Down
Loading