Bump riverpod_annotation, freezed_annotation, riverpod_generator, json_serializable, build_runner, freezed and flutter_riverpod
Type: Pull Request
State: Open
Association: Unknown
Comments: 1
(about 1 month ago)
(about 1 month ago)
Bumps riverpod_annotation, freezed_annotation, riverpod_generator, json_serializable, build_runner, freezed and flutter_riverpod. These dependencies needed to be updated together.
Updates riverpod_annotation from 2.6.1 to 4.0.2
Commits
e35c43cThe following packages have been updated:fe2a260Fix https://github.com/rrousselGit/riverpod/issues/ (#4679)f8734c9Fix doc typo (#4678)3f53dd7fix range7f180c7Add note about beta channel15f4b6dUpdate goldensf3e1304Sort offsetsa2b1d21Typos3b267bcTypoc5d309dSupport encore class heading for assist- Additional commits viewable in compare view
Updates freezed_annotation from 2.4.4 to 3.1.0
Commits
6351730Don't publish benchmarkac7666ffreezed_annotation : 3.0.0 -> 3.1.02c0d0a1fixes #126171b51d2⚡️ Stop writing// dart format width=80to the generated freezed files (#1256)05e2bb4Add when/map back (#1271)170db3bfix markdown link syntax (#1254)9317203chore: update sponsors.svga42c20cUsebuilt_test3.2.1, test fixes. (#1266)6f1a033chore: update sponsors.svg168513bdocs: simplify dependency installation commands by grouping packages (#1268)- Additional commits viewable in compare view
Updates riverpod_generator from 2.6.4 to 4.0.3
Commits
e35c43cThe following packages have been updated:fe2a260Fix https://github.com/rrousselGit/riverpod/issues/ (#4679)f8734c9Fix doc typo (#4678)3f53dd7fix range7f180c7Add note about beta channel15f4b6dUpdate goldensf3e1304Sort offsetsa2b1d21Typos3b267bcTypoc5d309dSupport encore class heading for assist- Additional commits viewable in compare view
Updates json_serializable from 6.9.5 to 6.11.4
Release notes
Sourced from json_serializable's releases.
package:json_serializable v6.11.4
- Allow
analyzer: >=9.0.0 <11.0.0package:json_serializable v6.11.3
- Require
analyzer: ^9.0.0- Require
build: ^4.0.3- Require
build_config: ^1.2.0- Require
dart_style: ^3.1.3- Require
sdk: ^3.9.0- Require
source_gen: ^4.1.1- Require
source_helper: ^1.3.9package:json_serializable v6.11.2
- Allow
run_only_if_triggeredto be specified inbuild.yamlto turn on thebuild_runnertriggers heuristic.- Skip warning about annotations on both constructor and field if the values match.
package:json_serializable v6.11.1
- Allow
build: '>=3.0.0 <5.0.0'.- Allow
source_gen: '>=3.1.0 <5.0.0'.package:json_serializable v6.11.0
- Support
JsonKeyannotation on constructor parameters.- Require
analyzer: '>=7.4.0 <9.0.0'- Require
dart_style: ^3.0.0- Require
meta: ^1.15.0- Require
source_helper: ^1.3.6- Require
source_gen: ^3.1.0, stop using deprecatedTypeChecker.fromRuntimeand use the newTypeChecker.typeNamedinstead.package:json_serializable v6.10.0
- Required
analyzer: ^7.4.0.- Switch to analyzer element2 model and
build: ^3.0.0-dev.- Move
package:collectionto a dev dependency.- Use new
null-aware elementfeature in generated code.- Require Dart 3.8
package:json_serializable v6.10.0-dev
- Switch to analyzer element2 model and
build: ^3.0.0-dev.- Move
package:collectionto a dev dependency.- Use new
null-aware elementfeature in generated code.- Require Dart 3.8
Commits
44e28e6Allow analyzer 10. (#1542)613a0c7Bump the dependencies group with 4 updates (#1540)41ecd7bBump the dependencies group with 2 updates (#1537)cf78644Update json_serializable to support the latest pkg:analyzer (#1535)a9eb6c3Release 6.11.2. (#1534)8288fa3Skip warning about duplicate annotations if the values match. (#1532)3c09ab4Allow an option calledrun_only_if_triggered. (#1531)b7fd5fcBump the dependencies group with 2 updates (#1529)d95430cAllow build 4.0.0. (#1525)8cb173fBump the dependencies group with 2 updates (#1522)- Additional commits viewable in compare view
Updates build_runner from 2.5.4 to 2.15.0
Release notes
Sourced from build_runner's releases.
package:build_runner v2.15.0
- Remove
--low-resources-modeas default memory usage has been improved. If you have problems with RAM usage please file an issue.- Remove
--log-performanceand--track-performance. File an issue if you have performance measurement needs not covered by the newer--dart-aot-perf.- Removed options can still be passed, they will be ignored with a warning.
- Bug fix: fix crash during logging if an asset path is an invalid URI.
- Bug fix: with
--workspacethe global options affecting build order were read from the wrong package. They are now read frombuild.yamlin the workspace root, like other global options.- Allow
analyzer13.0.0.package:build_runner v2.14.1
- Bug fix: fix crash if a package used to belong to a workspace but was removed from the workspace leaving a stale
workspace.reffile.- Bug fix: the
watchcommand now always does one build before exiting due to a request from anotherbuild_runnerprocess. Fix crashes related to request before build start.package:build_runner v2.14.0
- Performance: further improvements to management of files for analysis for 2x faster incremental builds.
- Performance: default to AOT compilation for commands other than
run. This costs more initial startup time but gives faster builds afterwards. Fall back to JIT if the compile fails due to use ofdart:mirrors. Use the--force-jitflag if you want the old default JIT builder compile. Use the--force-aotflag to turn off the fallback to JIT compile.- Add support for
asset:scheme to the--build-filterflag. It is likepackage:but for the whole package, not justlib. For example,package:a/b.dartis the same asasset:a/lib/b.dart.- Paths specified using
--build-filterwhen using the--workspaceflag now apply to the current package, not the workspace root. Other packages must be referred to usingpackage:orasset:schemes.- Add OSC 8 hyperlinks for logged input paths.
- Better handling of deletions of files during the build: if the file is not needed ignore the deletion, if it's needed try to use the cached version, as a last resort restart the build.
- Defer deletions of files by
build_runneruntil the build is complete. Don't write files unless the contents changed. These reduce unnecessary work by tools that watch the filesystem.--workspaceflag is no longer experimental, remove the warning.- Add
--workspaceflag tocleancommand, use it to clear the cache used for a--workspacebuild.- Add new command
stop: rundart run build_runner stopto terminate a runningwatchorservecommand in the current package or workspace. If a build is in progress, the build will complete first.- Add locking:
build_runnerwill wait for any already-running command before running. If there is an already-runningwatchorservecommand, it will be closed after the currently-running build, as if you ran the newdart run build_runner stop.
... (truncated)
Commits
a634766Releasebuild_runner2.15. (#4903)5512226Fix read of global options from wrong workspace package. (#4902)0095f15Publish build_web_compiler 4.4.19 (#4901)0835a0fAdd support for deferred loading when compiling to wasm. (#4900)eff07b5Fix render of URI for invalid path on Windows. (#4899)50e2e2dMockito: fix accidental API change. (#4896)4e0f6c0Allow analyzer 13. (#4895)07246b6Restore ignore comment needed in google3. (#4894)b9c9daeSwitch back to dev branch. (#4893)d61a379Remove old performance-related options. (#4892)- Additional commits viewable in compare view
Updates freezed from 2.5.8 to 3.2.5
Commits
9494429freezed : 3.2.4 -> 3.2.53268f9aAnalyzer 10.00fe515dchore: update sponsors.svg886d4d4chore: update sponsors.svgbcd618bAdd readAllSourcesFromFilesystem everywhere1b0c710chore: update sponsors.svg821021cFormatf106a44Disable Freezed_lint CI228499a3.2.4c793702Migrate Freezed- Additional commits viewable in compare view
Updates flutter_riverpod from 2.6.1 to 3.3.1
Commits
6b8a0aaUpdate deps9315150Bump3c81881Bump81a15d3Fix missing disposeNotifier flag onChangeNotifierProvider.override(#4708)43e7ff13.3.0299de51AddeddisposeNotifierflag (#4707)e35c43cThe following packages have been updated:fe2a260Fix https://github.com/rrousselGit/riverpod/issues/ (#4679)f8734c9Fix doc typo (#4678)3f53dd7fix range- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Package Dependencies
Technical Details
| ID: | 15725531 |
| UUID: | 4414294275 |
| Node ID: | PR_kwDOSZFYFs7Z7i6t |
| Host: | GitHub |
| Repository: | inossan-dev/codebase-flutter |