diff --git a/packages/flutter_riverpod/CHANGELOG.md b/packages/flutter_riverpod/CHANGELOG.md index bfef58eeb..972634d9c 100644 --- a/packages/flutter_riverpod/CHANGELOG.md +++ b/packages/flutter_riverpod/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.3.4 - 2023-04-07 + +- Fixes an issue with nested ProviderScope (thanks to @jeiea) + ## 2.3.3 - 2023-04-06 - The debugger no-longer pauses on uncaught exceptions inside providers. diff --git a/packages/flutter_riverpod/pubspec.yaml b/packages/flutter_riverpod/pubspec.yaml index 75a74dd58..c9b7bc628 100644 --- a/packages/flutter_riverpod/pubspec.yaml +++ b/packages/flutter_riverpod/pubspec.yaml @@ -2,7 +2,7 @@ name: flutter_riverpod description: > A simple way to access state from anywhere in your application while robust and testable. -version: 2.3.3 +version: 2.3.4 homepage: https://riverpod.dev repository: https://github.com/rrousselGit/riverpod issue_tracker: https://github.com/rrousselGit/riverpod/issues @@ -18,7 +18,7 @@ dependencies: flutter: sdk: flutter meta: ^1.4.0 - riverpod: 2.3.3 + riverpod: 2.3.4 state_notifier: ^0.7.2 dev_dependencies: diff --git a/packages/hooks_riverpod/CHANGELOG.md b/packages/hooks_riverpod/CHANGELOG.md index 257bbec99..d34fd0741 100644 --- a/packages/hooks_riverpod/CHANGELOG.md +++ b/packages/hooks_riverpod/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.3.4 - 2023-04-07 + +- Fixes an issue with nested ProviderScope (thanks to @jeiea) + ## 2.3.3 - 2023-04-06 - The debugger no-longer pauses on uncaught exceptions inside providers. diff --git a/packages/hooks_riverpod/pubspec.yaml b/packages/hooks_riverpod/pubspec.yaml index 565e15c0c..9dbf0ffe6 100644 --- a/packages/hooks_riverpod/pubspec.yaml +++ b/packages/hooks_riverpod/pubspec.yaml @@ -2,7 +2,7 @@ name: hooks_riverpod description: > A simple way to access state from anywhere in your application while robust and testable. -version: 2.3.3 +version: 2.3.4 homepage: https://riverpod.dev repository: https://github.com/rrousselGit/riverpod issue_tracker: https://github.com/rrousselGit/riverpod/issues @@ -18,8 +18,8 @@ dependencies: flutter: sdk: flutter flutter_hooks: ^0.18.0 - flutter_riverpod: 2.3.3 - riverpod: 2.3.3 + flutter_riverpod: 2.3.4 + riverpod: 2.3.4 state_notifier: ^0.7.2 dev_dependencies: diff --git a/packages/riverpod/CHANGELOG.md b/packages/riverpod/CHANGELOG.md index eb6d3459d..9dbf6529f 100644 --- a/packages/riverpod/CHANGELOG.md +++ b/packages/riverpod/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased fix +## 2.3.4 - 2023-04-07 - Fixes an issue with nested ProviderScope (thanks to @jeiea) diff --git a/packages/riverpod/pubspec.yaml b/packages/riverpod/pubspec.yaml index 66ababbe2..72bb5a580 100644 --- a/packages/riverpod/pubspec.yaml +++ b/packages/riverpod/pubspec.yaml @@ -2,7 +2,7 @@ name: riverpod description: > A simple way to access state from anywhere in your application while robust and testable. -version: 2.3.3 +version: 2.3.4 homepage: https://riverpod.dev repository: https://github.com/rrousselGit/riverpod issue_tracker: https://github.com/rrousselGit/riverpod/issues diff --git a/packages/riverpod_analyzer_utils/CHANGELOG.md b/packages/riverpod_analyzer_utils/CHANGELOG.md index d724fe1c5..d32c6122b 100644 --- a/packages/riverpod_analyzer_utils/CHANGELOG.md +++ b/packages/riverpod_analyzer_utils/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased fix +## 0.2.1 - 2023-04-07 - Handle cascade operators in ref expressions - Fix ref.watch/read/... not being decoded inside Notifier methods of generated providers. diff --git a/packages/riverpod_analyzer_utils/pubspec.yaml b/packages/riverpod_analyzer_utils/pubspec.yaml index a1c6cec5a..8b8c20fed 100644 --- a/packages/riverpod_analyzer_utils/pubspec.yaml +++ b/packages/riverpod_analyzer_utils/pubspec.yaml @@ -4,7 +4,7 @@ repository: https://github.com/rrousselGit/river_pod issue_tracker: https://github.com/rrousselGit/riverpod/issues funding: - https://github.com/sponsors/rrousselGit/ -version: 0.2.0 +version: 0.2.1 environment: sdk: ">=2.18.0 <3.0.0" diff --git a/packages/riverpod_annotation/CHANGELOG.md b/packages/riverpod_annotation/CHANGELOG.md index 6f26b7eeb..be9d3b4eb 100644 --- a/packages/riverpod_annotation/CHANGELOG.md +++ b/packages/riverpod_annotation/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.4 - 2023-04-07 + +- `riverpod` upgraded to `2.3.4` + ## 2.0.3 - 2023-04-06 - `riverpod` upgraded to `2.3.3` diff --git a/packages/riverpod_annotation/pubspec.yaml b/packages/riverpod_annotation/pubspec.yaml index 60c41c80a..2bd99db5e 100644 --- a/packages/riverpod_annotation/pubspec.yaml +++ b/packages/riverpod_annotation/pubspec.yaml @@ -1,6 +1,6 @@ name: riverpod_annotation description: A package exposing annotations for riverpod_generator -version: 2.0.3 +version: 2.0.4 repository: https://github.com/rrousselGit/riverpod issue_tracker: https://github.com/rrousselGit/riverpod/issues funding: @@ -11,7 +11,7 @@ environment: dependencies: meta: ^1.7.0 - riverpod: ^2.3.3 + riverpod: ^2.3.4 dev_dependencies: test: ^1.21.0 diff --git a/packages/riverpod_generator/CHANGELOG.md b/packages/riverpod_generator/CHANGELOG.md index 3a7ed1447..886aa4ec2 100644 --- a/packages/riverpod_generator/CHANGELOG.md +++ b/packages/riverpod_generator/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased patch +## 2.1.6 - 2023-04-07 - If a provider has an empty list of dependencies, the generated list is now `const` (thanks to @K9i-0) diff --git a/packages/riverpod_generator/pubspec.yaml b/packages/riverpod_generator/pubspec.yaml index 56ea0ef9b..2d57a28a4 100644 --- a/packages/riverpod_generator/pubspec.yaml +++ b/packages/riverpod_generator/pubspec.yaml @@ -1,6 +1,6 @@ name: riverpod_generator description: A code generator for Riverpod. This both simplifies the syntax empowers it, such as allowing stateful hot-reload. -version: 2.1.5 +version: 2.1.6 repository: https://github.com/rrousselGit/riverpod issue_tracker: https://github.com/rrousselGit/riverpod/issues funding: @@ -17,8 +17,8 @@ dependencies: crypto: ^3.0.2 meta: ^1.7.0 path: ^1.8.0 - riverpod_analyzer_utils: ^0.2.0 - riverpod_annotation: ^2.0.3 + riverpod_analyzer_utils: ^0.2.1 + riverpod_annotation: ^2.0.4 source_gen: ^1.2.0 dev_dependencies: diff --git a/packages/riverpod_lint/CHANGELOG.md b/packages/riverpod_lint/CHANGELOG.md index 56a51426e..03d1a2967 100644 --- a/packages/riverpod_lint/CHANGELOG.md +++ b/packages/riverpod_lint/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased fix +## 1.1.8 - 2023-04-07 - Disable unsupported_provider_value when a notifier returns "this" - Fix scoped_providers_should_specify_dependencies incorrectly triggering on functions other than "main" diff --git a/packages/riverpod_lint/pubspec.yaml b/packages/riverpod_lint/pubspec.yaml index a0560b1b9..3f7eff8d5 100644 --- a/packages/riverpod_lint/pubspec.yaml +++ b/packages/riverpod_lint/pubspec.yaml @@ -1,6 +1,6 @@ name: riverpod_lint description: Riverpod_lint is a developper tool for users of Riverpod, designed to help stop common issue and simplify repetetive tasks. -version: 1.1.7 +version: 1.1.8 homepage: https://riverpod.dev repository: https://github.com/rrousselGit/river_pod issue_tracker: https://github.com/rrousselGit/riverpod/issues @@ -18,8 +18,8 @@ dependencies: custom_lint_builder: ^0.3.3 meta: ^1.7.0 path: ^1.8.1 - riverpod: ^2.3.3 - riverpod_analyzer_utils: ^0.2.0 + riverpod: ^2.3.4 + riverpod_analyzer_utils: ^0.2.1 source_span: ^1.8.0 yaml: ^3.1.1