FlutterPlaza / FinFlow

MIT License
5 stars 7 forks source link

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

Open dependabot[bot] opened 1 year ago

dependabot[bot] commented 1 year ago

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)