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
31 changes: 31 additions & 0 deletions .dart_tool/extension_discovery/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Extension Discovery Cache
=========================

This folder is used by `package:extension_discovery` to cache lists of
packages that contains extensions for other packages.

DO NOT USE THIS FOLDER
----------------------

* Do not read (or rely) the contents of this folder.
* Do write to this folder.

If you're interested in the lists of extensions stored in this folder use the
API offered by package `extension_discovery` to get this information.

If this package doesn't work for your use-case, then don't try to read the
contents of this folder. It may change, and will not remain stable.

Use package `extension_discovery`
---------------------------------

If you want to access information from this folder.

Feel free to delete this folder
-------------------------------

Files in this folder act as a cache, and the cache is discarded if the files
are older than the modification time of `.dart_tool/package_config.json`.

Hence, it should never be necessary to clear this cache manually, if you find a
need to do please file a bug.
3 changes: 3 additions & 0 deletions flutter_modular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [6.4.1] - 2025/06/12
- Fix AppModule Dispose.

## [6.4.0] - 2025-06-10
- Fix Deep Link query parameters.
- Update Result.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ class ModularRouterDelegate extends RouterDelegate<ModularBook>
final parallel = page.route;
parallel.popCallback?.call(result);
currentConfiguration?.routes.remove(parallel);
currentConfiguration?.routes.removeWhere((element) => element.parent == parallel.uri.toString());
if (currentConfiguration?.routes.indexWhere(
(element) => element.uri.toString() == parallel.uri.toString()) ==
-1) {
Expand Down
4 changes: 2 additions & 2 deletions flutter_modular/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_modular
description: Smart project structure with dependency injection and route management
version: 6.4.0
version: 6.4.1
homepage: https://github.com/Flutterando/modular

resolution: workspace
Expand All @@ -9,7 +9,7 @@ environment:
sdk: ">=3.6.0 <4.0.0"

dependencies:
modular_core: ">=3.4.0 <4.0.0"
modular_core: ">=3.4.1 <4.0.0"
meta: ">=1.3.0 <2.0.0"
result_dart: ">=2.1.0 <3.0.0"
flutter:
Expand Down
3 changes: 3 additions & 0 deletions modular_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 3.4.1 - 2025/06/12
- Fix AppModule Dispose.

## 3.4.0 - 2025/06/10

- Fix Deep Link query parameters.
Expand Down
2 changes: 1 addition & 1 deletion modular_core/lib/src/tracker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class _Tracker implements Tracker {
continue;
}

moduleTags.removeWhere((element) => element.startsWith(tag));
moduleTags.remove(tag);
if (tag.characters.last == '/') {
moduleTags.remove('$tag/'.replaceAll('//', ''));
}
Expand Down
2 changes: 1 addition & 1 deletion modular_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: modular_core
description: Smart project structure with dependency injection and route management
version: 3.4.0
version: 3.4.1
homepage: https://github.com/Flutterando/modular

resolution: workspace
Expand Down
Loading