Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dio, kiwi_generator, kiwi, mockito, build_runner and uuid #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

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

Bumps dio, kiwi_generator, kiwi, mockito, build_runner and uuid. These dependencies needed to be updated together.
Updates dio from 3.0.3 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 kiwi_generator from 0.4.0 to 4.1.0

Release notes

Sourced from kiwi_generator's releases.

kg_4.0.1

[4.0.1] - 2021-10-13

Fixed

  • Dart constraint issue for kiwi

4.0.1

[4.0.1] - 2021-10-13

Fixed

  • Dart constraint issue for kiwi

kg_4.0.0

[4.0.0] - 2021-10-13

BREAKING

  • Updated to analyzer 2.0.0
  • Dart 2.14 min requirement

Updated dependencies

4.0.0

[4.0.0] - 2021-10-13

BREAKING

  • Support for kiwi_generator 4.0.0
  • Dart 2.14 min requirement

Updated dependencies

kg_3.0.0

[3.0.0] - 2021-06-01

Added

  • Nullsafety codebase migration

Updated dependencies

  • Updated dependencies to make sure we can still build with new dependencies.

3.0.0

[3.0.0] - 2021-06-01

Added

  • Nullsafety codebase migration

Updated dependencies

  • Updated dependencies to make sure we can still build with new dependencies.

kg_2.1.1

Updated

  • Kiwi version to 2.1.1

2.1.1

Updated

  • Description to make the kiwi package easy to find in pub.dev

kg_2.1.0

Updated

  • Updated the documentation for the use of subclasses & subclasses with generics
  • Updated dependencies

... (truncated)

Commits

Updates kiwi from 0.2.0 to 4.1.0

Release notes

Sourced from kiwi's releases.

kg_4.0.1

[4.0.1] - 2021-10-13

Fixed

  • Dart constraint issue for kiwi

4.0.1

[4.0.1] - 2021-10-13

Fixed

  • Dart constraint issue for kiwi

kg_4.0.0

[4.0.0] - 2021-10-13

BREAKING

  • Updated to analyzer 2.0.0
  • Dart 2.14 min requirement

Updated dependencies

4.0.0

[4.0.0] - 2021-10-13

BREAKING

  • Support for kiwi_generator 4.0.0
  • Dart 2.14 min requirement

Updated dependencies

kg_3.0.0

[3.0.0] - 2021-06-01

Added

  • Nullsafety codebase migration

Updated dependencies

  • Updated dependencies to make sure we can still build with new dependencies.

3.0.0

[3.0.0] - 2021-06-01

Added

  • Nullsafety codebase migration

Updated dependencies

  • Updated dependencies to make sure we can still build with new dependencies.

kg_2.1.1

Updated

  • Kiwi version to 2.1.1

2.1.1

Updated

  • Description to make the kiwi package easy to find in pub.dev

kg_2.1.0

Updated

  • Updated the documentation for the use of subclasses & subclasses with generics
  • Updated dependencies

... (truncated)

Commits

Updates mockito from 4.1.1 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 build_runner from 1.7.2 to 2.3.3

Commits

Updates uuid from 2.0.2 to 3.0.7

Release notes

Sourced from uuid's releases.

3.0.7

  • Fixed parse to allow buffers larger than 16 bytes to be used. [Thanks @​hoylen]

3.0.6

  • Enable avoid_dynamic_calls linting and fix appropriately. (Thanks @​devoncarew)

3.0.5

3.0.4

  • isValidUUID now handles some Microsoft GUIDs better that only deviate in the Variant setting. (Thanks @​FluentChange)
  • Improve error output so that it better explains how to handle the above change in your code if you encounter it. (Thanks @​FluentChange)
  • Improve validation logic to better handle multiple validation cases, error output, and feedback to developers. (Thanks @​FluentChange)

3.0.3

  • [Experimental] Fixed UuidValue to properly check things are valid. (Thanks @​FlorianUlivi) #65
  • [Experimental] Added new constructors fromByteList and fromList to UuidValue #64
  • [Experimental] Added == operator override and hashcode override. (Thanks @​giorgiofran for suggestion) #64
  • Added parseAsByteList to offer a direct output to Uint8List #64
  • [Experimental][BREAKING CHANGE] Change toBytes in UuidValue to return Uint8List instead of List<int>
  • [Experimental][BREAKING CHANGE] isValidUuid function signature has changed, now takes 2 optional parameters fromString and fromList that will do the appropriate validation on different sources.

3.0.2

No release notes provided.

3.0.1

No release notes provided.

3.0.0

No release notes provided.

3.0.0-nullsafety.1

No release notes provided.

v3.0.0-nullsafety.0

No release notes provided.

2.2.2

No release notes provided.

2.2.0

No release notes provided.

Changelog

Sourced from uuid's changelog.

v3.0.7

  • Fixed parse to allow buffers larger than 16 bytes to be used. [Thanks @​hoylen]

v3.0.6

  • Enable avoid_dynamic_calls linting and fix appropriately. (Thanks @​devoncarew)

v3.0.5

v3.0.4

  • isValidUUID now handles some Microsoft GUIDs better that only deviate in the Variant setting. (Thanks @​FluentChange)
  • Improve error output so that it better explains how to handle the above change in your code if you encounter it. (Thanks @​FluentChange)
  • Improve validation logic to better handle multiple validation cases, error output, and feedback to developers. (Thanks @​FluentChange)

v3.0.3

  • [Experimental] Fixed UuidValue to properly check things are valid. (Thanks @​FlorianUlivi)
  • [Experimental] Added new constructors fromByteList and fromList to UuidValue
  • [Experimental] Added == operator override and hashcode override. (Thanks @​giorgiofran for suggestion)
  • Added parseAsByteList to offer a direct output to Uint8List
  • [Experimental][BREAKING CHANGE] Change toBytes in UuidValue to return Uint8List instead of List<int>
  • [Experimental][BREAKING CHANGE] isValidUuid function signature has changed, now takes 2 optional parameters fromString and fromList that will do the appropriate validation on different sources.

v3.0.2

  • [Experimental] Add flags to UuidValue constructor and parse to disable validation of the UUID, primarily to allow Microsoft GUIDs to not break things.

v3.0.1

  • Fix RNG to not need shuffling and improve performance/memory usage (Thanks @​julemand101)

v3.0.0

  • Release nullsafety version

v3.0.0-nullsafety.1

  • [BREAKING CHANGE] Changed parse() to throw a FormatException instead of returning NIL uuids or partially handled UUIDs.
  • Changed Uuid constructor to be constant, and adjusted all the code accordingly.
  • New isValidUUID function for validating UUIDs.
  • [BREAKING CHANGE] parse and unparse are now static functions.
  • [Exprimental] Object version of the UUID instead of a string or list of bytes.

... (truncated)

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.

Bumps [dio](https://github.com/cfug/dio), [kiwi_generator](https://github.com/vanlooverenkoen/kiwi), [kiwi](https://github.com/vanlooverenkoen/kiwi), [mockito](https://github.com/dart-lang/mockito), [build_runner](https://github.com/dart-lang/build) and [uuid](https://github.com/Daegalus/dart-uuid). These dependencies needed to be updated together.

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

Updates `kiwi_generator` from 0.4.0 to 4.1.0
- [Release notes](https://github.com/vanlooverenkoen/kiwi/releases)
- [Commits](https://github.com/vanlooverenkoen/kiwi/commits)

Updates `kiwi` from 0.2.0 to 4.1.0
- [Release notes](https://github.com/vanlooverenkoen/kiwi/releases)
- [Commits](https://github.com/vanlooverenkoen/kiwi/commits)

Updates `mockito` from 4.1.1 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-lang/mockito@4.1.1...5.3.2)

Updates `build_runner` from 1.7.2 to 2.3.3
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](dart-lang/build@build_runner-v1.7.2...build_runner-v2.3.3)

Updates `uuid` from 2.0.2 to 3.0.7
- [Release notes](https://github.com/Daegalus/dart-uuid/releases)
- [Changelog](https://github.com/Daegalus/dart-uuid/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Daegalus/dart-uuid/commits/3.0.7)

---
updated-dependencies:
- dependency-name: dio
  dependency-type: direct:production
- dependency-name: kiwi_generator
  dependency-type: direct:production
- dependency-name: kiwi
  dependency-type: direct:production
- dependency-name: mockito
  dependency-type: direct:production
- dependency-name: build_runner
  dependency-type: direct:production
- dependency-name: uuid
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@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