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 the flutter-dependencies group with 4 updates #122

Merged
merged 1 commit into from
Dec 16, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

Bumps the flutter-dependencies group with 4 updates: fluent_ui, flutter_mobx, mobx and mobx_codegen.

Updates fluent_ui from 4.9.2 to 4.10.0

Changelog

Sourced from fluent_ui's changelog.

4.10.0

  • fix: Add missing properties (closeIconSize, closeButtonStyle) in debugFillProperties and InfoBarThemeData.merge (#1128

  • feat: Add TabView.reservedStripWidth, which adds a minimum empty area between the tabs and the tab view footer (#1106)]

  • fix: Correctly unfocus NumberBox when user taps outside (#1135)

  • fix: Do try to scroll Date and Time at build time (#1117)

  • feat: Use a Decoration instead of Color in NavigationAppBar (#1118)

  • feat: Add EditableComboBox.inputFormatters (#1041)

  • BREAKING feat: TextBox.decoration and TextBox.foregroundDecoration are now of type WidgetStateProperty (#987)

    Before:

    TextBox(
      decoration: BoxDecoration(
        color: Colors.red,
      ),
      foregroundDecoration: BoxDecoration(
        color: Colors.blue,
      ),
    ),

    After:

    TextBox(
      decoration: WidgetStateProperty.all(BoxDecoration(
        color: Colors.red,
      )),
      foregroundDecoration: WidgetStateProperty.all(BoxDecoration(
        color: Colors.blue,
      )),
    ),
  • feat: Add TabView.gestures, which allows the manipulation of the tab gestures (#1138)

  • feat: Add DropDownButton.style (#1139)

  • feat: Possibility to open date and time pickers programatically (#1142)

  • fix: TimePicker hour offset

  • feat: Add ColorPicker (#1152)

  • fix: NumberBox initial value formatting (#1153)

  • fix: NumberBox incrementing/decrementing when not focused (#1124)

  • fix: NumberBox text is correctly when there are no visible actions (#1150)

Commits
  • 1306c53 Flutter latest (#1156)
  • cf5fa13 chore: Remove pubspec
  • f0fd3a1 chore: Remove gitignored files
  • 7f0f710 fix(ColorPicker): Do not divide colors by 255 since it is already done under ...
  • 6db8d2f fix: ColorPicker alpha slider styling
  • 5b09e00 fix: ColorPicker slider
  • c14f17c fix: Remove unecessary switch.default clauses
  • bd4493a chore: Bump version
  • 0bac787 chore: Update changelog
  • 6120b4c fix: NumberBox text is correctly when there are no visible actions
  • Additional commits viewable in compare view

Updates flutter_mobx from 2.2.1+1 to 2.2.2

Commits

Updates mobx from 2.4.0 to 2.5.0

Release notes

Sourced from mobx's releases.

mobx_codegen-2.5.0

What's Changed

Full Changelog: mobxjs/mobx.dart@mobx_codegen-2.4.1...mobx_codegen-2.5.0

mobx_codegen-2.4.1

What's Changed

Full Changelog: mobxjs/mobx.dart@mobx_codegen-2.4.0...mobx_codegen-2.4.1

Changelog

Sourced from mobx's changelog.

mobx - v2.5.0

  • FIX: package upgrades, analysis issue fixes.
  • FIX: Observable.value setter (covariant) (#993).
  • FIX: stacktrace in computed (#988).
  • FIX: observableset and observablemap notify all listeners when one is added with fireimmediately true (#962).
  • FIX: revert #784 (#842).
  • FIX: ObservableStream.listen() should also keep observable values updated (#708).
  • FIX: Widgets failed to call super.dispose() (#334).
  • FIX: issue 62 (#64).
  • FEAT: add scheduler option to autorun and reaction (#979).
  • FEAT: add keepAlive to Computed (#976).
  • FEAT: Adds useEquatable for creating observables (#971).
  • FEAT: Adds custom equals for creating observables. (#907).
  • FEAT: Adds support for annotations (#904).
  • FEAT: Allow a custom equals parameter for ObservableStream (#771).
  • FEAT: Allow use custom context (#770).

mobx_codegen - v2.7.0

  • FIX: package upgrades, analysis issue fixes.
  • FIX: error with code generation when file has unnamed extension (#1020).
  • FIX: make readonly work with computed (#710).
  • FIX: ObservableStream.listen() should also keep observable values updated (#708).
  • FEAT: add keepAlive to Computed (#976).
  • FEAT: support late observables (#973).
  • FEAT: Adds useEquatable for creating observables (#971).
  • FEAT: require analyzer: ^5.12.0 (#934).
  • FEAT: Adds custom equals for creating observables. (#907).
  • FEAT: Adds support for annotations (#904).
  • FEAT: Allow use custom context (#770).

mobx_examples - v1.1.0

  • FEAT: Adds support for annotations (#904).

mobx_lint - v1.1.0

  • FIX: package upgrades, analysis issue fixes.
  • FEAT: add wrap with observer assist (#949).
Commits

Updates mobx_codegen from 2.6.2 to 2.7.0

Changelog

Sourced from mobx_codegen's changelog.

mobx_codegen - v2.7.0

  • FIX: package upgrades, analysis issue fixes.
  • FIX: error with code generation when file has unnamed extension (#1020).
  • FIX: make readonly work with computed (#710).
  • FIX: ObservableStream.listen() should also keep observable values updated (#708).
  • FEAT: add keepAlive to Computed (#976).
  • FEAT: support late observables (#973).
  • FEAT: Adds useEquatable for creating observables (#971).
  • FEAT: require analyzer: ^5.12.0 (#934).
  • FEAT: Adds custom equals for creating observables. (#907).
  • FEAT: Adds support for annotations (#904).
  • FEAT: Allow use custom context (#770).

mobx_examples - v1.1.0

  • FEAT: Adds support for annotations (#904).

mobx_lint - v1.1.0

  • FIX: package upgrades, analysis issue fixes.
  • FEAT: add wrap with observer assist (#949).
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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Dec 16, 2024
Bumps the flutter-dependencies group with 4 updates: [fluent_ui](https://github.com/bdlukaa/fluent_ui), [flutter_mobx](https://github.com/mobxjs/mobx.dart), [mobx](https://github.com/mobxjs/mobx.dart) and [mobx_codegen](https://github.com/mobxjs/mobx.dart).


Updates `fluent_ui` from 4.9.2 to 4.10.0
- [Release notes](https://github.com/bdlukaa/fluent_ui/releases)
- [Changelog](https://github.com/bdlukaa/fluent_ui/blob/master/CHANGELOG.md)
- [Commits](bdlukaa/fluent_ui@v4.9.2...v4.10.0)

Updates `flutter_mobx` from 2.2.1+1 to 2.2.2
- [Release notes](https://github.com/mobxjs/mobx.dart/releases)
- [Changelog](https://github.com/mobxjs/mobx.dart/blob/main/CHANGELOG.md)
- [Commits](mobxjs/mobx.dart@flutter_mobx-2.2.1...flutter_mobx-2.2.2)

Updates `mobx` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/mobxjs/mobx.dart/releases)
- [Changelog](https://github.com/mobxjs/mobx.dart/blob/main/CHANGELOG.md)
- [Commits](mobxjs/mobx.dart@mobx-2.4.0...mobx-2.5.0)

Updates `mobx_codegen` from 2.6.2 to 2.7.0
- [Release notes](https://github.com/mobxjs/mobx.dart/releases)
- [Changelog](https://github.com/mobxjs/mobx.dart/blob/main/CHANGELOG.md)
- [Commits](mobxjs/mobx.dart@mobx_codegen-2.6.2...mobx_codegen-2.7.0)

---
updated-dependencies:
- dependency-name: fluent_ui
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-dependencies
- dependency-name: flutter_mobx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: flutter-dependencies
- dependency-name: mobx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-dependencies
- dependency-name: mobx_codegen
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@h3x4d3c1m4l h3x4d3c1m4l force-pushed the dependabot/pub/flutter-dependencies-9cd08dbfd0 branch from 09a8d48 to 0189970 Compare December 16, 2024 21:29
@h3x4d3c1m4l h3x4d3c1m4l merged commit d9d10c7 into main Dec 16, 2024
1 check passed
@h3x4d3c1m4l h3x4d3c1m4l deleted the dependabot/pub/flutter-dependencies-9cd08dbfd0 branch December 16, 2024 21:30
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.

1 participant