Skip to content

chore(deps): bump the pub-minor-patch group across 1 directory with 5 updates#212

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/patch_app/pub-minor-patch-4c78bdcdab
Open

chore(deps): bump the pub-minor-patch group across 1 directory with 5 updates#212
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/patch_app/pub-minor-patch-4c78bdcdab

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown

Bumps the pub-minor-patch group with 5 updates in the /patch_app directory:

Package From To
audioplayers 6.7.1 6.8.1
build_runner 2.15.0 2.15.1
flutter_markdown_plus 1.0.7 1.0.12
uuid 4.5.3 4.6.0
window_manager 0.5.1 0.5.2

Updates audioplayers from 6.7.1 to 6.8.1

Changelog

Sourced from audioplayers's changelog.

audioplayers - v6.8.1

audioplayers_windows - v4.4.1

2026-06-22

Changes


Packages with breaking changes:

  • There are no breaking changes in this release.

Packages with other changes:


audioplayers - v6.8.0

  • FIX(windows): Update to C++23 & Windows Implementation Lib (#2004). (faa84312)
  • FEAT(android): Compatibility with Built-In Kotlin (#1991). (687218b9)

audioplayers_android - v5.3.0

  • FEAT(android): Compatibility with Built-In Kotlin (#1991). (687218b9)

audioplayers_android_exo - v0.1.4

  • FEAT(android): Compatibility with Built-In Kotlin (#1991). (687218b9)

audioplayers_darwin - v6.5.0

... (truncated)

Commits
  • 494fdb6 chore(release): Publish packages (#2012)
  • d8a4f39 fix: Avoid throwing a StateError in AudioPlayer._completePrepared (#2010)
  • ae5f4b9 fix(windows): Compatibility with Visual Studio 18 (2026) (#2011)
  • 6c522b4 chore(release): Publish packages (#2009)
  • 6e61293 example: Remove wrongly added path provider plugin registration (#2007)
  • faa8431 fix(windows): Update to C++23 & Windows Implementation Lib (#2004)
  • 8575786 example: Recreate ios and macos platform folders (#1997)
  • 25c43cf test: Replace environment variables with internal test flags (#1996)
  • 687218b feat(android): Compatibility with Built-In Kotlin (#1991)
  • See full diff in compare view

Updates build_runner from 2.15.0 to 2.15.1

Release notes

Sourced from build_runner's releases.

package:build_runner v2.15.1

  • Pass Dart SDK --packages arg to builder compiles, so they can be compiled with different packages to the current version solve.
  • More efficient watching for file changes in workspaces and other setups with nested packages.
  • Support builders with no declared outputs. They can't output anything, but they can do processing, write log messages and choose whether to fail the build.
  • Mention in command usage that --define values are parsed as JSON with a fallback.
  • Performance: reduce size of serialized build state when there are optional outputs that are not written.
  • Bug fix: handle errors from post process builders in previous runs without crashing.
  • Bug fix: fix dart run build_runner test to correctly pass arguments after -- to the test process.
  • Bug fix: fix crash if a resolved Dart source contains invalid utf8.
  • Bug fix: fix incorrect output when builder code changes during builder compile.
  • Bug fix: do a clean build when switching between a workspace build and a package build, as incremental builds were sometimes incorrect.
  • Require Dart 3.8.0.
Commits
  • 565856b Release build 4.0.7, build_runner 3.15.1. (#5010)
  • 76f0f89 Fix workspace vs package build config conflict (#5008)
  • 8921c3f Formatting changes due to latest dev SDK. (#5007)
  • e999ea4 Fix incorrect build due to racy builder changes. (#4988)
  • d2a2f4f Bump SDK upper bounds. (#5006)
  • a72038d Set flattenBuild in passed ReaderWriter. (#5004)
  • ea0cf6b fix(build_daemon): reject cross-origin WebSocket handshakes (CSWSH) (#4992)
  • ae52e61 Use BuiltList.of instead of BuiltList.from. (#5003)
  • a8e949c Fix trigger evaluation reading ungenerated parts. (#5000)
  • 39353ef Bump actions/cache from 5.0.5 to 6.1.0 in the github-actions group (#5002)
  • Additional commits viewable in compare view

Updates flutter_markdown_plus from 1.0.7 to 1.0.12

Release notes

Sourced from flutter_markdown_plus's releases.

v1.0.12

  • Added golden render regression tests for the Markdown widgets, covering text formatting, emphasis, blockquotes, lists, tables, task lists, and code blocks. They render with real fonts and run in the local flutter test suite; like the existing image goldens they are platform-specific, and are skipped on CI (whose Flutter stable channel is unpinned) to avoid flaky pixel-exact diffs when the toolchain drifts
  • Documentation: the 1.0.11 README overhaul documented the previously undocumented onTapLink and styleSheet APIs, resolving #123

v1.0.11

  • Overhauled the README: added a feature list, installation instructions, a widget comparison (Markdown / MarkdownBody / MarkdownRaw), and code examples for link handling (onTapLink), MarkdownStyleSheet styling, and custom element builders
  • Added screenshots to the pub.dev listing showcasing rich-text formatting, GitHub Flavored Markdown tables and task lists, and code blocks
  • Pointed the documentation link at the generated API docs on pub.dev

v1.0.10

  • Added a contextMenuBuilder parameter to Markdown and MarkdownBody, letting callers customise or suppress (pass null) the text-selection toolbar shown when selectable is enabled. Defaults to the platform-adaptive Flutter selection toolbar, so existing behaviour is unchanged (#134)
  • onSelectionChanged now reports the full selectable plain text via TextSpan.toPlainText(). Previously, paragraphs containing rich/nested inline spans (bold, italic, code, links) reported the top-level TextSpan.text, which was null for multi-child spans; callers now receive the complete text so TextSelection.textInside works as expected (#134)

Thanks to our contributors:

v1.0.9

  • Fixed custom inline builders (e.g. a) duplicating trailing text when the element had multiple children, such as link text containing a _ or * delimiter that the parser splits into separate text nodes (#132)

Thanks to our contributors:

v1.0.8

  • Fixed custom builders and paddingBuilders for the hr tag being ignored
  • Fixed bold, italic, and link formatting not rendering inside blockquotes
  • Forced a consistent line height within each text block so mixed font weights (e.g. bold) no longer shift line height, while headers and other blocks keep their own height
  • Updated the default blockquote styling to be theme-aware (uses surfaceContainerHighest with a primary-coloured left border) for better light/dark mode support
  • Added a noScroll option to the Markdown widget to render content in a non-scrolling Column for use inside an existing scroll view
  • Added an integration test suite (example/integration_test/) that runs on a device or emulator, covering link taps, scrolling, task-list checkboxes, text selection, and example app launch
  • Added scripts/integration_test.sh and a GitHub Actions job that runs the integration tests on an Android emulator
  • Migrated linting to package:flutter_lints, retaining strict type analysis and required public API documentation
  • Updated dependencies: markdown to ^7.3.1, mockito to ^5.7.0, and pinned leak_tracker_flutter_testing
  • Aligned the example app's Flutter constraint with the package and added a documentation link to the pubspec
  • Updated the example app's Android Gradle Plugin to 8.6.0 (Flutter's current minimum) and removed an unused Google Cloud Artifact Registry Gradle plugin
  • Excluded the locally symlinked flutter_markdown_plus_latex package from analysis and publishing

Thanks to our contributors:

Changelog

Sourced from flutter_markdown_plus's changelog.

1.0.12

  • Added golden render regression tests for the Markdown widgets, covering text formatting, emphasis, blockquotes, lists, tables, task lists, and code blocks. They render with real fonts and run in the local flutter test suite; like the existing image goldens they are platform-specific, and are skipped on CI (whose Flutter stable channel is unpinned) to avoid flaky pixel-exact diffs when the toolchain drifts

1.0.11

  • Overhauled the README: added a feature list, installation instructions, a widget comparison (Markdown / MarkdownBody / MarkdownRaw), and code examples for link handling (onTapLink), MarkdownStyleSheet styling, and custom element builders — documenting the previously undocumented onTapLink and styleSheet APIs (resolves #123)
  • Added screenshots to the pub.dev listing showcasing rich-text formatting, GitHub Flavored Markdown tables and task lists, and code blocks
  • Pointed the documentation link at the generated API docs on pub.dev

1.0.10

  • Added a contextMenuBuilder parameter to Markdown and MarkdownBody, letting callers customise or suppress (pass null) the text-selection toolbar shown when selectable is enabled. Defaults to the platform-adaptive Flutter selection toolbar, so existing behaviour is unchanged (#134)
  • onSelectionChanged now reports the full selectable plain text via TextSpan.toPlainText(). Previously, paragraphs containing rich/nested inline spans (bold, italic, code, links) reported the top-level TextSpan.text, which was null for multi-child spans; callers now receive the complete text so TextSelection.textInside works as expected (#134)

Thanks to our contributors:

1.0.9

  • Fixed custom inline builders (e.g. a) duplicating trailing text when the element had multiple children, such as link text containing a _ or * delimiter that the parser splits into separate text nodes (#132)

Thanks to our contributors:

1.0.8

  • Fixed custom builders and paddingBuilders for the hr tag being ignored
  • Fixed bold, italic, and link formatting not rendering inside blockquotes
  • Forced a consistent line height within each text block so mixed font weights (e.g. bold) no longer shift line height, while headers and other blocks keep their own height
  • Updated the default blockquote styling to be theme-aware (uses surfaceContainerHighest with a primary-coloured left border) for better light/dark mode support
  • Added a noScroll option to the Markdown widget to render content in a non-scrolling Column for use inside an existing scroll view
  • Added an integration test suite (example/integration_test/) that runs on a device or emulator, covering link taps, scrolling, task-list checkboxes, text selection, and example app launch
  • Added scripts/integration_test.sh and a GitHub Actions job that runs the integration tests on an Android emulator
  • Migrated linting to package:flutter_lints, retaining strict type analysis and required public API documentation
  • Updated dependencies: markdown to ^7.3.1, mockito to ^5.7.0, and pinned leak_tracker_flutter_testing
  • Aligned the example app's Flutter constraint with the package and added a documentation link to the pubspec
  • Updated the example app's Android Gradle Plugin to 8.6.0 (Flutter's current minimum) and removed an unused Google Cloud Artifact Registry Gradle plugin
  • Excluded the locally symlinked flutter_markdown_plus_latex package from analysis and publishing

Thanks to our contributors:

Commits
  • 75d08fd Merge pull request #141 from foresightmobile/test/golden-render-suite
  • aad3501 test: add golden render regression suite (v1.0.12)
  • fed25ea Merge pull request #140 from foresightmobile/release/v1.0.11
  • 70485b3 docs: overhaul README and add pub.dev screenshots (v1.0.11)
  • 5c57378 Merge pull request #139 from foresightmobile/docs/readme-advertise-maintenance
  • 03eaa36 docs: refresh README header to advertise active maintenance
  • d94ee7f Merge pull request #138 from foresightmobile/chore/gitignore-claude-md
  • 24dec30 Merge main into chore/gitignore-claude-md
  • 909f1b9 docs: add CONTRIBUTING.md preserving dev, architecture, and release docs
  • d726f0d Merge pull request #137 from foresightmobile/release/v1.0.10
  • Additional commits viewable in compare view

Updates uuid from 4.5.3 to 4.6.0

Release notes

Sourced from uuid's releases.

4.6.0

What's Changed

New Contributors

Full Changelog: daegalus/dart-uuid@4.5.3...4.6.0

Changelog

Sourced from uuid's changelog.

v4.6.0

  • Add explicit 128-bit hexadecimal format validators: Uuid.isValidUUIDFormat(...), UuidValue.validateFormat(), UuidValidation.isValidUUIDFormat(...), and UuidValidation.isValidFormatOrThrow(...). (thanks @​DPDmancul)
  • Add UuidValue.withFormatValidation(...) for values whose UUID version and variant bits should not be checked. (thanks @​DPDmancul)
  • Add Uuid.parseHex128(...), Uuid.parseHex128AsByteList(...), UuidParsing.parseHex128(...), and UuidParsing.parseHex128AsByteList(...). (thanks @​DPDmancul)
  • Require exact single-line 8-4-4-4-12 or 32-character hexadecimal input and exactly 16 bytes during format validation.
  • Expose the existing noDashes parsing option through the public Uuid parse methods.
Commits

Updates window_manager from 0.5.1 to 0.5.2

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 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

… updates

Bumps the pub-minor-patch group with 5 updates in the /patch_app directory:

| Package | From | To |
| --- | --- | --- |
| [audioplayers](https://github.com/bluefireteam/audioplayers/tree/master/packages) | `6.7.1` | `6.8.1` |
| [build_runner](https://github.com/dart-lang/build) | `2.15.0` | `2.15.1` |
| [flutter_markdown_plus](https://github.com/foresightmobile/flutter_markdown_plus) | `1.0.7` | `1.0.12` |
| [uuid](https://github.com/Daegalus/dart-uuid) | `4.5.3` | `4.6.0` |
| [window_manager](https://github.com/leanflutter/window_manager) | `0.5.1` | `0.5.2` |



Updates `audioplayers` from 6.7.1 to 6.8.1
- [Changelog](https://github.com/bluefireteam/audioplayers/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bluefireteam/audioplayers/commits/audioplayers-v6.8.1/packages)

Updates `build_runner` from 2.15.0 to 2.15.1
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](dart-lang/build@build_runner-v2.15.0...build_runner-v2.15.1)

Updates `flutter_markdown_plus` from 1.0.7 to 1.0.12
- [Release notes](https://github.com/foresightmobile/flutter_markdown_plus/releases)
- [Changelog](https://github.com/foresightmobile/flutter_markdown_plus/blob/main/CHANGELOG.md)
- [Commits](foresightmobile/flutter_markdown_plus@v1.0.7...v1.0.12)

Updates `uuid` from 4.5.3 to 4.6.0
- [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.3...4.6.0)

Updates `window_manager` from 0.5.1 to 0.5.2
- [Release notes](https://github.com/leanflutter/window_manager/releases)
- [Commits](https://github.com/leanflutter/window_manager/commits)

---
updated-dependencies:
- dependency-name: audioplayers
  dependency-version: 6.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pub-minor-patch
- dependency-name: build_runner
  dependency-version: 2.15.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pub-minor-patch
- dependency-name: flutter_markdown_plus
  dependency-version: 1.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pub-minor-patch
- dependency-name: uuid
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pub-minor-patch
- dependency-name: window_manager
  dependency-version: 0.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pub-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dart Pull requests that update dart code dependencies Pull requests that update a dependency file labels Jul 20, 2026
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