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 production-dependencies group across 1 directory with 7 updates #134

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 7, 2024

Bumps the production-dependencies group with 7 updates in the / directory:

Package From To
build_runner 2.4.11 2.4.13
flex_color_picker 3.5.1 3.6.0
flutter_launcher_icons 0.13.1 0.14.1
flutter_lints 4.0.0 5.0.0
get_it 7.7.0 8.0.0
icalendar_parser 2.0.0 2.1.0
uuid 4.5.0 4.5.1

Updates build_runner from 2.4.11 to 2.4.13

Release notes

Sourced from build_runner's releases.

package:build_runner v2.4.13

  • Bump the min sdk to 3.5.0.
  • Bump the mime dependency to allow version 2.x.

package:build_runner v2.4.12

  • Bump the min sdk to 3.5.0-259.0.dev.
  • Fix watch mode for workspace repos.
Commits
  • 144c598 Bump the package:mime dep to 2.0.0 (#3758)
  • bac3844 release build_web_compilers 4.1.0-beta.1 (#3756)
  • 564250e Fix relative imports in wasm loader (#3752)
  • 16da6fb fix _gitIsClean check (#3755)
  • 9bf9ec6 Remove unneeded default cases in switch, move to switch expressions (#3753)
  • 81c309b Prepare beta release for build_web_compilers (#3749)
  • 1b95352 Fix build web compilers wasm issue (#3748)
  • 49d83f4 Compile with dart2js and dart2wasm (#3737)
  • 1b33ba9 Support compiling to wasm in build_web_compilers (#3727)
  • 59a8aa6 Account for the snapshot of dartdevc in the Dart SDK changing from a JIT snap...
  • Additional commits viewable in compare view

Updates flex_color_picker from 3.5.1 to 3.6.0

Release notes

Sourced from flex_color_picker's releases.

Version 3.6.0

3.6.0

September 25, 2024

NEW

The ColorPicker got the following new properties and features:

  • Boolean showEditIconButton, defaults to false.

    • Whether to show an edit icon button before the color code field. The edit icon button can be used to give users a visual que that the color code field can be edited. When set to true, the icon button is only shown when the wheel picker is active and colorCodeReadOnly is false. Tapping the icon button will focus the color code entry field.
    • Feature included in updated web demo app: YES
  • IconData editIcon, defaults to Icons.edit.

    • The icon to use on the edit icon button.
    • Feature included in updated web demo app: NO, only default icon used.
  • Boolean focusedEditHasNoColor, defaults to false.

    • Whether the color code entry field should have no color when focused. If the option, to make the color code field have the same color as the selected color is enabled via colorCodeHasColor, it makes it look and double like a big color indicator that shows the selected color. This can also make the edit of the color code confusing, as its color on purpose also changes as you edit and enter a new color value. If you find this behavior confusing and want to make the color code field always have no color during value entry, regardless of the selected color, then set this option to true.
    • Feature included in updated web demo app: YES
  • Boolean tonalPaletteFixedMinChroma, defaults to false.

    • Whether the tonal palette uses a fixed minimum chroma value for all tones, or if it uses the chroma value of the selected color. Prior to version 3.6.0, the tonal palette used minimum chroma value of 48 or chroma of the selected color. This was the default primary tonal palette behavior in Flutter's ColorScheme.fromSeed method before Flutter version 3.22.0. Starting from FlexColorPicker version 3.6.0, the picker creates a HCT color space tonal palette using whatever hue and chroma the selected color has. If you for some reason want to use the old behavior, set this property to true. This will make the tonal palette use the fixed minimum chroma value of 48 for all tones.
    • Feature included in updated web demo app: YES

FIX

  • Since version 3.4.0 the value of property ColorPickerCopyPasteBehavior.editUsesParsedPaste had no impact on the picker's paste behavior when the color code text field was focused. The color picker always behaved as if this property was true. Which incidentally is the behavior that pretty much all uses cases should use. This feature now again works as stated in its doc comments. However, the default value was changed from false to true, to match the actual default behavior it has had since version 3.4.0, and the behavior that should be preferred. The false setting was there to provide color code text field paste behavior backwards compatibility with versions before 2.0.0. We may deprecate this property in a future version, as it is not really recommended to use false at all, but for now it is fixed again.

TESTS

  • Improved the test coverage of the ColorPicker.
Changelog

Sourced from flex_color_picker's changelog.

3.6.0

September 25, 2024

NEW

The ColorPicker got the following new properties and features:

  • Boolean showEditIconButton, defaults to false.

    • Whether to show an edit icon button before the color code field. The edit icon button can be used to give users a visual que that the color code field can be edited. When set to true, the icon button is only shown when the wheel picker is active and colorCodeReadOnly is false. Tapping the icon button will focus the color code entry field.
    • Feature included in updated web demo app: YES
  • IconData editIcon, defaults to Icons.edit.

    • The icon to use on the edit icon button.
    • Feature included in updated web demo app: NO, only default icon used.
  • Boolean focusedEditHasNoColor, defaults to false.

    • Whether the color code entry field should have no color when focused. If the option, to make the color code field have the same color as the selected color is enabled via colorCodeHasColor, it makes it look and double like a big color indicator that shows the selected color. This can also make the edit of the color code confusing, as its color on purpose also changes as you edit and enter a new color value. If you find this behavior confusing and want to make the color code field always have no color during value entry, regardless of the selected color, then set this option to true.
    • Feature included in updated web demo app: YES
  • Boolean tonalPaletteFixedMinChroma, defaults to false.

    • Whether the tonal palette uses a fixed minimum chroma value for all tones, or if it uses the chroma value of the selected color. Prior to version 3.6.0, the tonal palette used minimum chroma value of 48 or chroma of the selected color. This was the default primary tonal palette behavior in Flutter's ColorScheme.fromSeed method before Flutter version 3.22.0. Starting from FlexColorPicker version 3.6.0, the picker creates a HCT color space tonal palette using whatever hue and chroma the selected color has. If you for some reason want to use the old behavior, set this property to true. This will make the tonal palette use the fixed minimum chroma value of 48 for all tones.
    • Feature included in updated web demo app: YES

FIX

  • Since version 3.4.0 the value of property ColorPickerCopyPasteBehavior.editUsesParsedPaste had no impact on the picker's paste behavior when the color code text field was focused. The color picker always behaved as if this property was true. Which incidentally is the behavior that pretty much all uses cases should use. This feature now again works as stated in its doc comments. However, the default value was changed from false to true, to match the actual default behavior it has had since version 3.4.0, and the behavior that should be preferred. The false setting was there to provide color code text field paste behavior backwards compatibility with versions before 2.0.0. We may deprecate this property in a future version, as it is not really recommended to use false at all, but for now it is fixed again.

TESTS

  • Improved the test coverage of the ColorPicker.
Commits
  • 086e776 Set back test action to only run on pull request, not on push
  • 368ee38 Version 3.6.0 Add tests
  • 9e36b40 ADD: Line breaks in About dialog for web demo app
  • f995a21 Version 3.6.0 DRAFT
  • See full diff in compare view

Updates flutter_launcher_icons from 0.13.1 to 0.14.1

Release notes

Sourced from flutter_launcher_icons's releases.

v0.14.1

What's Changed

New Contributors

Full Changelog: fluttercommunity/flutter_launcher_icons@v0.14.0...v0.14.1

v0.14.0

What's Changed

New Contributors

Full Changelog: fluttercommunity/flutter_launcher_icons@v0.13.1...v0.14.0

Changelog

Sourced from flutter_launcher_icons's changelog.

0.14.1 (24th September 2024)

  • Fixed README

0.14.0 (21st September 2024)

  • Android: Support for monochrome icons #497

Before

Now

  • Android: Ability to set inset for adaptive icon foreground and monochrome icon #563
  • iOS: Dark and Tinted icons for iOS 18+ #569
Commits
  • 2b852d5 build: v0.14.1
  • 76f53fa docs: fixed run commands (#577)
  • 4999e95 docs: updated github templates
  • 3705b51 docs: updated readme
  • 5371620 build: updated dependencies
  • 28f715b build: increased dart sdk version
  • 05b1068 build: bumped version to 0.14.0
  • 79077ee fix: tests fails for the newly generated list (#576)
  • a1b9a5b update readme to use dart run (#561)
  • 8cf8aef related to [issue #96], Suggestion for an easier way to apply foreground inse...
  • Additional commits viewable in compare view

Updates flutter_lints from 4.0.0 to 5.0.0

Commits
  • f38b780 [package:flutter_lints] update the dep on package:lints to 5.0.0 and the sd...
  • 7da2374 Update test to not depend on Color.toString() (#7701)
  • 54dd888 [flutter_lints] remove prefer_const_constructors, prefer_const_declarations, ...
  • 47795ab [go_router] Fixed TabView swiping in custom stateful shell route example (#7...
  • 4926c0f [quick_actions] Add guidance for correcting task management/back press behavi...
  • 21d99dc [various] Adds macOS privacy manifests (#7687)
  • 24594a0 [google_maps_flutter_android] Convert PlatformPolyline.pattern to Pigeon (#...
  • f54fe93 [pigeon] Validates support for nested collections with generic types. (#7614)
  • e9253e6 [interactive_media_ads] Adds internal wrapper for Android native `AdsRenderin...
  • fef7ffb [interactive_media_ads]: Bump com.google.ads.interactivemedia.v3:interactivem...
  • Additional commits viewable in compare view

Updates get_it from 7.7.0 to 8.0.0

Changelog

Sourced from get_it's changelog.

[8.0.0] official new release with all the changes

[8.0.0-pre-7] - 12.08.2024

  • adding cachedFatories and better scope protection against race conditions

[8.0.0-pre-6] - 11.08.2024 testing weak references in lazySingeltons

[8.0.0-pre-5] - 25.06.2024 adding changeTypeInstanceName

[8.0.0-pre-4] - 03.06.2024 fixing bug in unregister that happened if you tried to unregister a named registration by providing an instance instead of the type and the instance name

[8.0.0-pre-3] - 31.05.2024 releaseInstance will now throw if the instance isn't registered

[8.0.0-pre-2] - 29.05.2024 fixing negative reference count

[8.0.0-pre-1] - 26.05.2024

  • getAll() and getAllAsync() now have a fromAllScopes parameter.
  • adding safeguards according to fluttercommunity/get_it#364 to make it impossible to call push/popScope while the init() function of another pushScope is running.
  • fixed an unsafe type check when using a runtime type to access an object in get_it.
Commits

Updates icalendar_parser from 2.0.0 to 2.1.0

Release notes

Sourced from icalendar_parser's releases.

2.1.0

What's Changed

Full Changelog: TesteurManiak/icalendar_parser@2.0.0...2.1.0

Changelog

Sourced from icalendar_parser's changelog.

[2.1.0]

Full Changelog: TesteurManiak/icalendar_parser@2.0.0...2.1.0

Commits
  • 455135e chore: update CHANGELOG
  • 33850a5 chore: bump dependencies
  • 37d0509 Merge pull request #97 from TesteurManiak/chore/bump-dependencies
  • 2ece7e8 chore: bump dependencies
  • 2c68bb2 Merge pull request #94 from TesteurManiak/dependabot/pub/coverage-1.9.0
  • 47d0843 Bump coverage from 1.8.0 to 1.9.0
  • 5b3ad99 Merge pull request #93 from TesteurManiak/dependabot/pub/test-1.25.8
  • 637ba11 Bump test from 1.25.7 to 1.25.8
  • 3b87e8d Merge pull request #92 from TesteurManiak/dependabot/pub/collection-1.19.0
  • 2810ee6 Bump collection from 1.18.0 to 1.19.0
  • Additional commits viewable in compare view

Updates uuid from 4.5.0 to 4.5.1

Release notes

Sourced from uuid's releases.

4.5.1

Changelog

  • Add UuidValue.fromNamespace to let you make constant variants of the namespace, as due to language limitations on Enums, Namespace.*.uuidValue can't be constant.
  • Added isV#(), isNil(), and isMax() functions to UuidValue for matching Dart standards.

Full Changelog: daegalus/dart-uuid@4.5.0...4.5.1

Changelog

Sourced from uuid's changelog.

v4.5.1

  • Add UuidValue.fromNamespace to let you make constant variants of the namespace, as due to language limitations on Enums, Namespace.*.uuidValue can't be constant.
  • Added isV#(), isNil(), and isMax() functions to UuidValue for matching Dart standards.
Commits
  • 1af5c28 Docs update
  • 51fde46 Add way to get constant Namespace UUIDValues, and added extra utility functio...
  • See full diff in compare view

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

Bumps the production-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [build_runner](https://github.com/dart-lang/build) | `2.4.11` | `2.4.13` |
| [flex_color_picker](https://github.com/rydmike/flex_color_picker) | `3.5.1` | `3.6.0` |
| [flutter_launcher_icons](https://github.com/fluttercommunity/flutter_launcher_icons) | `0.13.1` | `0.14.1` |
| [flutter_lints](https://github.com/flutter/packages/tree/main/packages) | `4.0.0` | `5.0.0` |
| [get_it](https://github.com/fluttercommunity/get_it) | `7.7.0` | `8.0.0` |
| [icalendar_parser](https://github.com/TesteurManiak/icalendar_parser) | `2.0.0` | `2.1.0` |
| [uuid](https://github.com/Daegalus/dart-uuid) | `4.5.0` | `4.5.1` |



Updates `build_runner` from 2.4.11 to 2.4.13
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](dart-lang/build@build_runner-v2.4.11...build_runner-v2.4.13)

Updates `flex_color_picker` from 3.5.1 to 3.6.0
- [Release notes](https://github.com/rydmike/flex_color_picker/releases)
- [Changelog](https://github.com/rydmike/flex_color_picker/blob/master/CHANGELOG.md)
- [Commits](rydmike/flex_color_picker@3.5.1...3.6.0)

Updates `flutter_launcher_icons` from 0.13.1 to 0.14.1
- [Release notes](https://github.com/fluttercommunity/flutter_launcher_icons/releases)
- [Changelog](https://github.com/fluttercommunity/flutter_launcher_icons/blob/master/CHANGELOG.md)
- [Commits](fluttercommunity/flutter_launcher_icons@v0.13.1...v0.14.1)

Updates `flutter_lints` from 4.0.0 to 5.0.0
- [Release notes](https://github.com/flutter/packages/releases)
- [Commits](https://github.com/flutter/packages/commits/flutter_lints-v5.0.0/packages)

Updates `get_it` from 7.7.0 to 8.0.0
- [Changelog](https://github.com/fluttercommunity/get_it/blob/master/CHANGELOG.md)
- [Commits](https://github.com/fluttercommunity/get_it/commits/V8.0.0)

Updates `icalendar_parser` from 2.0.0 to 2.1.0
- [Release notes](https://github.com/TesteurManiak/icalendar_parser/releases)
- [Changelog](https://github.com/TesteurManiak/icalendar_parser/blob/main/CHANGELOG.md)
- [Commits](TesteurManiak/icalendar_parser@2.0.0...2.1.0)

Updates `uuid` from 4.5.0 to 4.5.1
- [Release notes](https://github.com/Daegalus/dart-uuid/releases)
- [Changelog](https://github.com/daegalus/dart-uuid/blob/main/CHANGELOG.md)
- [Commits](daegalus/dart-uuid@4.5.0...4.5.1)

---
updated-dependencies:
- dependency-name: build_runner
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: flex_color_picker
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: flutter_launcher_icons
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: flutter_lints
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: get_it
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: icalendar_parser
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Oct 7, 2024
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