Skip to content

Commit

Permalink
The following packages have been updated:
Browse files Browse the repository at this point in the history
riverpod            : 2.5.0 -> 2.5.1
riverpod_annotation : 2.3.4 -> 2.3.5
riverpod_generator  : 2.3.11 -> 2.4.0
riverpod_lint       : 2.3.9 -> 2.3.10
flutter_riverpod    : 2.4.10 -> 2.5.1
hooks_riverpod      : 2.4.10 -> 2.5.1
  • Loading branch information
rrousselGit committed Mar 10, 2024
1 parent 32302a2 commit d4431fe
Show file tree
Hide file tree
Showing 12 changed files with 47 additions and 16 deletions.
11 changes: 10 additions & 1 deletion packages/flutter_riverpod/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
## Unreleased patch
## 2.5.1 - 2024-03-10

- Deprecate `ProviderScope.parent` due to fundamentally not working.
See https://github.com/rrousselGit/riverpod/issues/3261
- Improved `Provider(dependencies: [...])` documentation.
- Fix out of date `pub.dev` description
- `ref.invalidate` now correctly clear all resources associated
with the provider if the provider is no-longer used.
- Fix `selectAsync` sometimes never resolving.
- Fix `ProviderSubscription.read` returned by `ref.listen(provider.future)` not throwing if used after the subscription has been closed.
- Fix `ref.onAddListener` and other life-cycles not being triggered when
listening to `provider.future`/`provider.notifier`.
- Fix a bug that caused `Assertion failed: _lastFuture == null`

## 2.4.10 - 2024-02-03

Expand Down
4 changes: 2 additions & 2 deletions packages/flutter_riverpod/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flutter_riverpod
description: >
A reactive caching and data-binding framework.
Riverpod makes working with asynchronous code a breeze.
version: 2.4.10
version: 2.5.1
homepage: https://riverpod.dev
repository: https://github.com/rrousselGit/riverpod
issue_tracker: https://github.com/rrousselGit/riverpod/issues
Expand All @@ -18,7 +18,7 @@ dependencies:
flutter:
sdk: flutter
meta: ^1.4.0
riverpod: 2.5.0
riverpod: 2.5.1
state_notifier: ">=0.7.2 <2.0.0"

dev_dependencies:
Expand Down
14 changes: 14 additions & 0 deletions packages/hooks_riverpod/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 2.5.1 - 2024-03-10

- Deprecate `ProviderScope.parent` due to fundamentally not working.
See https://github.com/rrousselGit/riverpod/issues/3261
- Improved `Provider(dependencies: [...])` documentation.
- Fix out of date `pub.dev` description
- `ref.invalidate` now correctly clear all resources associated
with the provider if the provider is no-longer used.
- Fix `selectAsync` sometimes never resolving.
- Fix `ProviderSubscription.read` returned by `ref.listen(provider.future)` not throwing if used after the subscription has been closed.
- Fix `ref.onAddListener` and other life-cycles not being triggered when
listening to `provider.future`/`provider.notifier`.
- Fix a bug that caused `Assertion failed: _lastFuture == null`

## 2.4.10 - 2024-02-03

- Fix out of date `pub.dev` description
Expand Down
6 changes: 3 additions & 3 deletions packages/hooks_riverpod/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: hooks_riverpod
description: >
A reactive caching and data-binding framework.
Riverpod makes working with asynchronous code a breeze.
version: 2.4.10
version: 2.5.1
homepage: https://riverpod.dev
repository: https://github.com/rrousselGit/riverpod
issue_tracker: https://github.com/rrousselGit/riverpod/issues
Expand All @@ -18,8 +18,8 @@ dependencies:
flutter:
sdk: flutter
flutter_hooks: '>=0.18.0 <0.21.0'
flutter_riverpod: 2.4.10
riverpod: 2.5.0
flutter_riverpod: 2.5.1
riverpod: 2.5.1
state_notifier: ">=0.7.2 <2.0.0"

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion packages/riverpod/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased fix
## 2.5.1 - 2024-03-10

- Improved `Provider(dependencies: [...])` documentation.
- Fix out of date `pub.dev` description
Expand Down
2 changes: 1 addition & 1 deletion packages/riverpod/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: riverpod
description: >
A reactive caching and data-binding framework.
Riverpod makes working with asynchronous code a breeze.
version: 2.5.0
version: 2.5.1
homepage: https://riverpod.dev
repository: https://github.com/rrousselGit/riverpod
issue_tracker: https://github.com/rrousselGit/riverpod/issues
Expand Down
4 changes: 4 additions & 0 deletions packages/riverpod_annotation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.3.5 - 2024-03-10

- `riverpod` upgraded to `2.5.1`

## 2.3.4 - 2024-02-03

- Improved `@Riverpod(dependencies: [...])` documentation.
Expand Down
4 changes: 2 additions & 2 deletions packages/riverpod_annotation/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: riverpod_annotation
description: A package exposing annotations for riverpod_generator
version: 2.3.4
version: 2.3.5
repository: https://github.com/rrousselGit/riverpod
issue_tracker: https://github.com/rrousselGit/riverpod/issues
funding:
Expand All @@ -11,7 +11,7 @@ environment:

dependencies:
meta: ^1.7.0
riverpod: ^2.5.0
riverpod: 2.5.1

dev_dependencies:
test: ^1.21.0
2 changes: 1 addition & 1 deletion packages/riverpod_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased minor
## 2.4.0 - 2024-03-10

- Adds `provider_name_prefix` and `provider_family_name_prefix` to `build.yaml`. (thanks to @ValentinVignal)

Expand Down
6 changes: 3 additions & 3 deletions packages/riverpod_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.3.11
version: 2.4.0
repository: https://github.com/rrousselGit/riverpod
issue_tracker: https://github.com/rrousselGit/riverpod/issues
funding:
Expand All @@ -18,11 +18,11 @@ dependencies:
meta: ^1.7.0
path: ^1.8.0
riverpod_analyzer_utils: ^0.5.1
riverpod_annotation: ^2.3.4
riverpod_annotation: ^2.3.5
source_gen: ^1.2.0

dev_dependencies:
build_runner: ^2.1.7
build_verify: ^3.0.0
riverpod: ^2.5.0
riverpod: 2.5.1
test: ^1.21.0
4 changes: 4 additions & 0 deletions packages/riverpod_lint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.3.10 - 2024-03-10

- `riverpod` upgraded to `2.5.1`

## 2.3.9 - 2024-02-04

- Bumped `custom_lint` version
Expand Down
4 changes: 2 additions & 2 deletions packages/riverpod_lint/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: riverpod_lint
description: Riverpod_lint is a developer tool for users of Riverpod, designed to help stop common issues and simplify repetitive tasks.
version: 2.3.9
version: 2.3.10
homepage: https://riverpod.dev
repository: https://github.com/rrousselGit/river_pod
issue_tracker: https://github.com/rrousselGit/riverpod/issues
Expand All @@ -17,7 +17,7 @@ dependencies:
custom_lint_builder: ^0.6.0
meta: ^1.7.0
path: ^1.8.1
riverpod: ^2.5.0
riverpod: ^2.5.1
riverpod_analyzer_utils: ^0.5.1
source_span: ^1.8.0
yaml: ^3.1.1
Expand Down

0 comments on commit d4431fe

Please sign in to comment.