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

chore(deps): bump formz from 0.4.1 to 0.6.0 #137

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

Conversation

dependabot[bot]
Copy link

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

Bumps formz from 0.4.1 to 0.6.0.

Release notes

Sourced from formz's releases.

v0.6.0

  • feat: add FormzInputErrorCacheMixin mixin
  • feat: add isInProgressOrSuccess to FormzSubmissionStatusX
  • feat: add purity check to FormzMixin

v0.5.0

  • docs: add a caching example
  • refactor: update very good analysis, workflows, flutter/dart version
  • feat: update very good analysis
  • feat: add dependabot
  • BREAKING: this release promotes 0.5.0-dev.1 which brings breaking changes

v0.5.0+1

No release notes provided.

v0.5.0-dev.1

0.5.0-dev.1

  • docs: use nullable validator in README

  • feat: add example Flutter app

  • BREAKING: decouple purity, validity, and submission status

    Changes

    1. FormzStatus renamed to FormzSubmissionStatus:
    /// Enum representing the submission status of a form.
    enum FormzSubmissionStatus {
    /// The form is in the process of being submitted.
    inProgress,
    /// The form has been submitted successfully.
    success,
    /// The form submission failed.
    failure,
    /// The form submission has been canceled.
    canceled
    }

    1. FormzInput class no longer exposes a status (FormzInputStatus). Instead there are isValid and isNotValid getters:
    class NameInput extends FormzInput<String, NameInputError> {
    const NameInput.pure() : super.pure('');
    const NameInput.dirty({String value = ''}) : super.dirty(value);

... (truncated)

Changelog

Sourced from formz's changelog.

0.6.0

  • feat: add FormzInputErrorCacheMixin mixin
  • feat: add isInProgressOrSuccess to FormzSubmissionStatusX
  • feat: add purity check to FormzMixin

0.5.0

  • docs: add caching example
  • refactor: update very good analysis, workflows, flutter/dart version
  • feat: update very good analysis
  • feat: add dependabot
  • BREAKING: this release promotes 0.5.0-dev.1 which brings breaking changes

0.5.0-dev.1

  • docs: use nullable validator in README

  • feat: add example Flutter app

  • BREAKING: decouple purity, validity, and submission status

    Changes

    1. FormzStatus renamed to FormzSubmissionStatus:
    /// Enum representing the submission status of a form.
    enum FormzSubmissionStatus {
    /// The form is in the process of being submitted.
    inProgress,
    /// The form has been submitted successfully.
    success,
    /// The form submission failed.
    failure,
    /// The form submission has been canceled.
    canceled
    }

    1. FormzInput class no longer exposes a status (FormzInputStatus). Instead there are isValid and isNotValid getters:
    class NameInput extends FormzInput<String, NameInputError> {
    const NameInput.pure() : super.pure('');
    const NameInput.dirty({String value = ''}) : super.dirty(value);
    @​override
    NameInputError? validator(String value) {

... (truncated)

Commits
  • 91b2573 chore: v0.6.0 (#88)
  • aa8c84f feat: add purety check to FormzMixin (#87)
  • 1b8334f chore(deps): bump actions/checkout from 3.3.0 to 3.4.0 (#85)
  • 7122df7 feat: add isInProgressOrSuccess to FormzSubmissionStatusX (#83)
  • 5806b0d feat: add FormzInputErrorCacheMixin mixin (#81)
  • 1043039 chore: v0.5.0+1 (#80)
  • edc7647 chore: v0.5.0 (#79)
  • 3abdce8 docs: add caching example (#78)
  • acbec34 refactor: update very good analysis, workflows, flutter/dart version (#76)
  • 44afba0 chore(deps): bump actions/checkout from 3.1.0 to 3.3.0 (#72)
  • Additional commits viewable in compare view

Dependabot compatibility score

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)

@dependabot dependabot bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Mar 24, 2023
Bumps [formz](https://github.com/VeryGoodOpenSource/formz) from 0.4.1 to 0.6.0.
- [Release notes](https://github.com/VeryGoodOpenSource/formz/releases)
- [Changelog](https://github.com/VeryGoodOpenSource/formz/blob/main/CHANGELOG.md)
- [Commits](VeryGoodOpenSource/formz@v0.4.1...v0.6.0)

---
updated-dependencies:
- dependency-name: formz
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pub/formz-0.6.0 branch from 8b0cb03 to 91550b1 Compare March 27, 2023 09:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dart Pull requests that update Dart code dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants