Skip to content

Bump dio, retrofit, retrofit_generator, build_runner, json_annotation, injectable, mockito, injectable_generator, json_serializable, freezed_annotation and freezed#1

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pub/dio-and-retrofit-and-retrofit_generator-and-build_runner-and-json_annotation-and-injectable-and-mockito-and-injectable_generator-and-json_serializable-and-freezed_annotation-and-freezed-5.0.3
Open

Bump dio, retrofit, retrofit_generator, build_runner, json_annotation, injectable, mockito, injectable_generator, json_serializable, freezed_annotation and freezed#1
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pub/dio-and-retrofit-and-retrofit_generator-and-build_runner-and-json_annotation-and-injectable-and-mockito-and-injectable_generator-and-json_serializable-and-freezed_annotation-and-freezed-5.0.3

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Mar 21, 2023

Bumps dio, retrofit, retrofit_generator, build_runner, json_annotation, injectable, mockito, injectable_generator, json_serializable, freezed_annotation and freezed. These dependencies needed to be updated together.
Updates dio from 4.0.0 to 5.0.3

Release notes

Sourced from dio's releases.

dio 5.0.3

What's new

  • Imply List<Map> as JSON content in ImplyContentTypeInterceptor.
  • Fix FormData encoding for collections and objects.

dio 5.0.2

What's new

  • Improve code formats according to linter rules.
  • Remove the force conversion for the response body.
  • Fix DioErrorType.cancel in Interceptors.
  • Fix wrong encoding of collection query parameters.
  • Fix "unsupported operation" error on web platform.

dio 5.0.1

What's new

  • Add ImplyContentTypeInterceptor as a default interceptor.
  • Add Headers.multipartFormDataContentType for headers usage.
  • Fix variable shadowing of withCredentials in browser_adapers.dart.
Commits

Updates retrofit from 2.0.1 to 4.0.1

Release notes

Sourced from retrofit's releases.

4.0.1

What's Changed

New Contributors

Full Changelog: trevorwang/retrofit.dart@4.0.0...4.0.1

4.0.0

What's Changed

New Contributors

Full Changelog: trevorwang/retrofit.dart@3.0.1...4.0.0

4.0.0+3

What's Changed

New Contributors

Full Changelog: trevorwang/retrofit.dart@4.0.0...4.0.0+3

4.0.0+5

What's Changed

New Contributors

Full Changelog: trevorwang/retrofit.dart@4.0.0...4.0.0+5

3.0.1

No release notes provided.

3.0.1+1

No release notes provided.

3.0.0

... (truncated)

Commits
  • dbbf36c fix: fix ReponseType cast error (#453)
  • 057ee37 feat: change newRequestOptions argument to Object. (#451)
  • 6afd631 fix: deps issue
  • e275b2f Fix bug deserialize List (#449)
  • d81ac47 chore: bump generator version to 4.0
  • 0eff8fa update analyzer dependency (#446)
  • 7c710ab [generator] Adds a ignore_for_file rule to suppress the analyzer warnings f...
  • 001bdde fix(generator): fix nullable body generation (#441)
  • 0fa2ec2 docs: add changelog for 3.0.1
  • 31858c7 feat: Generate code for Multipart mime-type (#442)
  • Additional commits viewable in compare view

Updates retrofit_generator from 2.0.1+1 to 5.0.0+1

Release notes

Sourced from retrofit_generator's releases.

5.0.0+1

No release notes provided.

4.2.0

4.1.2

No release notes provided.

4.1.1

No release notes provided.

4.1.0

No release notes provided.

4.1.0+1

No release notes provided.

4.0.3

No release notes provided.

4.0.3+1

No release notes provided.

4.0.3+2

No release notes provided.

4.0.2

No release notes provided.

4.0.1

What's Changed

New Contributors

Full Changelog: trevorwang/retrofit.dart@4.0.0...4.0.1

4.0.0

What's Changed

New Contributors

... (truncated)

Commits

Updates build_runner from 2.1.2 to 2.1.11

Commits

Updates json_annotation from 4.1.0 to 4.7.0

Commits
  • feadf4c json_serializable: more enum util cleanup (#1205)
  • 12414e0 json_serialiable: make utility function private
  • 52236b0 json_serializable: refactor enum logic (#1204)
  • 9143b83 Add JsonEnum.valueField for encoding enhanced enum values (#1203)
  • 572e813 json_serialiable: fix bug with pkg:build output in test (#1201)
  • e30a519 latest pkg:analyzer, prepare to publish (#1200)
  • b1cd6be latest mono_repo, ignore hints for now, use pubspec feature (#1197)
  • 10dd2ee Fix JsonConverter docs example (#1193)
  • 5c26a0a Update to latest pkg:analyzer, bump SDK constraint (#1180)
  • f50eb99 Fix support for Duration fields with default values (#1172)
  • Additional commits viewable in compare view

Updates injectable from 1.5.0 to 2.1.0

Commits

Updates mockito from 5.0.16 to 5.3.2

Changelog

Sourced from mockito's changelog.

5.3.2

  • Support analyzer 5.0.0.

5.3.1

  • Fix analyzer and code_builder dependencies.
  • Reference @GenerateNiceMocks in documentation.
  • Allow generating a mock class which includes overriding members with private types in their signature. Such members cannot be stubbed with mockito, and will only be generated when specified in MockSpec unsupportedMembers.
  • Include required keyword in functions used as default return values.

5.3.0

  • Introduce a new MockSpec parameter, onMissingStub, which allows specifying three actions to take when a real call is made to a mock method with no matching stub. The two existing behaviors are the default behavior of throwing an exception, and the legacy behavior of returning null. A new behavior is also introduced: returning a legal default value. With this behavior, legal default values are returned for any given type.
  • Deprecate the MockSpec returnNullOnMissingStub parameter in favor of the new onMissingStub parameter.
  • Introduce a new @GenerateNiceMocks annotation, that uses the new "return a legal value" behavior for missing stubs.
  • Add SmartFake class to be used as a return values for unstubbed methods. It remembers where it was created and throws a descriptive error in case the fake is later used.
  • Include required keyword in function types to match overridden function types.

5.2.0

  • Fix generation of methods with return type of FutureOr<T> for generic, potentially nullable T.
  • Support @GenerateMocks annotations on import and export directives.
  • Support analyzer 4.x.

5.1.0

  • In creating mocks for a pre-null-safe library, opt out of null safety in the generated code.
  • Properly generate method overrides for methods with covariant parameters. #506
  • Correctly generate a toString override method for pre-null safe libraries, for which the class-to-mock implements toString with additional parameters.
  • Improve messaging in a MissingStubError, directing to the docs for MockSpec.
  • Fix incorrect error when trying to mock a method with a parameter with inner function types (like in type arguments) which are potentially non-nullable. #476

... (truncated)

Commits
  • 02ad6c7 Bump analyzer to support 5.0.0
  • ef37e87 Bump SDK to 2.17 and code_builder to 4.3.0
  • 5d23067 Mockito codegen: use fallbackGenerator when present to create a default 'retu...
  • 04b74f1 Automated g4 rollback of changelist 471719348.
  • b33ce96 Automated g4 rollback of changelist 471650729.
  • dff3d82 Include required keyword in functions used as default return values.
  • dd17535 Expand private-in-signature support to getters and setters
  • 21f486f Allow generating a mock class which includes overriding members with private ...
  • ced77c9 Restrict the exception for CAST_FROM_NULL_ALWAYS_FAILS
  • 1363d90 Stop using deprecated declarations, prepare for analyzer breaking changes.
  • Additional commits viewable in compare view

Updates injectable_generator from 1.5.2 to 2.1.4

Commits

Updates json_serializable from 5.0.2 to 6.5.4

Commits

Updates freezed_annotation from 0.14.3 to 2.2.0

Commits

Updates freezed from 0.14.5 to 2.1.0+1

Commits

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

…, injectable, mockito, injectable_generator, json_serializable, freezed_annotation and freezed

Bumps [dio](https://github.com/cfug/dio), [retrofit](https://github.com/trevorwang/retrofit.dart), [retrofit_generator](https://github.com/trevorwang/retrofit.dart), [build_runner](https://github.com/dart-lang/build), [json_annotation](https://github.com/google/json_serializable.dart), [injectable](https://github.com/Milad-Akarie/injectable), [mockito](https://github.com/dart-lang/mockito), [injectable_generator](https://github.com/Milad-Akarie/injectable), [json_serializable](https://github.com/google/json_serializable.dart), [freezed_annotation](https://github.com/rrousselGit/freezed) and [freezed](https://github.com/rrousselGit/freezed). These dependencies needed to be updated together.

Updates `dio` from 4.0.0 to 5.0.3
- [Release notes](https://github.com/cfug/dio/releases)
- [Commits](cfug/dio@4.0.0...dio_v5.0.3)

Updates `retrofit` from 2.0.1 to 4.0.1
- [Release notes](https://github.com/trevorwang/retrofit.dart/releases)
- [Commits](trevorwang/retrofit.dart@2.0.1...4.0.1)

Updates `retrofit_generator` from 2.0.1+1 to 5.0.0+1
- [Release notes](https://github.com/trevorwang/retrofit.dart/releases)
- [Commits](trevorwang/retrofit.dart@2.0.1...5.0.0)

Updates `build_runner` from 2.1.2 to 2.1.11
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](dart-lang/build@build_runner-v2.1.2...build_runner-v2.1.11)

Updates `json_annotation` from 4.1.0 to 4.7.0
- [Release notes](https://github.com/google/json_serializable.dart/releases)
- [Commits](google/json_serializable.dart@json_annotation-v4.1.0...json_annotation-v4.7.0)

Updates `injectable` from 1.5.0 to 2.1.0
- [Release notes](https://github.com/Milad-Akarie/injectable/releases)
- [Commits](https://github.com/Milad-Akarie/injectable/commits)

Updates `mockito` from 5.0.16 to 5.3.2
- [Release notes](https://github.com/dart-lang/mockito/releases)
- [Changelog](https://github.com/dart-lang/mockito/blob/master/CHANGELOG.md)
- [Commits](dart-archive/mockito@5.0.16...5.3.2)

Updates `injectable_generator` from 1.5.2 to 2.1.4
- [Release notes](https://github.com/Milad-Akarie/injectable/releases)
- [Commits](https://github.com/Milad-Akarie/injectable/commits)

Updates `json_serializable` from 5.0.2 to 6.5.4
- [Release notes](https://github.com/google/json_serializable.dart/releases)
- [Commits](google/json_serializable.dart@json_serializable-v5.0.2...json_serializable-v6.5.4)

Updates `freezed_annotation` from 0.14.3 to 2.2.0
- [Release notes](https://github.com/rrousselGit/freezed/releases)
- [Commits](rrousselGit/freezed@v0.14.3...freezed_annotation-v2.2.0)

Updates `freezed` from 0.14.5 to 2.1.0+1
- [Release notes](https://github.com/rrousselGit/freezed/releases)
- [Commits](rrousselGit/freezed@v0.14.5...freezed-v2.1.0)

---
updated-dependencies:
- dependency-name: dio
  dependency-type: direct:production
- dependency-name: retrofit
  dependency-type: direct:production
- dependency-name: retrofit_generator
  dependency-type: direct:production
- dependency-name: build_runner
  dependency-type: direct:production
- dependency-name: json_annotation
  dependency-type: direct:production
- dependency-name: injectable
  dependency-type: direct:production
- dependency-name: mockito
  dependency-type: direct:production
- dependency-name: injectable_generator
  dependency-type: direct:production
- dependency-name: json_serializable
  dependency-type: direct:production
- dependency-name: freezed_annotation
  dependency-type: direct:production
- dependency-name: freezed
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Mar 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants