Skip to content

Bump rive from 0.13.20 to 0.14.8#1212

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pub/rive-0.14.8
Closed

Bump rive from 0.13.20 to 0.14.8#1212
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pub/rive-0.14.8

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor

Bumps rive from 0.13.20 to 0.14.8.

Changelog

Sourced from rive's changelog.

0.14.8

  • Bumps to rive_native: 0.1.8. Updates the Rive C++ runtime and renderer for the latest features, bug fixes, and performance improvements.

Fixes

  • Fixed Rive widgets blurring (Factory.rive) during parent rotation/skew animations.
  • Fixed RivePanel painters never settling when multiple painters shared the same texture. Each painter previously owned its own ticker and the shared paint pass would re-call advance on settled siblings, accidentally reviving them. SharedRenderTexture now owns a single ticker that stops when every painter reports settled and restarts on new painters or wake notifications.
  • Fixed shared-texture rendering for rotated, skewed, or mirrored RiveWidgets. The widget→panel transform now reaches the texture as a full 2D affine instead of being flattened to its scale diagonal, so the texture content matches how the Texture widget composites.
  • Fixed RiveWidget swallowing controller swaps on a stable element (no Key) when drawing into a shared texture. The wrapping painter was bound to the original controller on first build and never rebuilt, so the new controller's state machine wasn't driving the on-screen artboard and disposing the old controller crashed at the native boundary.
  • Improved RiveWidget and RivePanel (Factory.rive) flickering. The texture is reused and scaled during a resize and recreated at the new size once it settles.
  • Fixed shared-texture (RivePanel) content not redrawing on a window resize that didn't change a child's size (e.g. a vertical resize of a fixed-width grid) — it previously only updated after an unrelated repaint.

Changes

  • Deprecated RenderTexture.onTextureChanged in favour of addTextureChangedListener / removeTextureChangedListener, which allow multiple painters to share a single texture.
  • Added RiveNativeRenderBox.textureResizeInterval to tune how often the texture is recreated while resizing.

0.14.7

  • Bumps to rive_native: 0.1.7. Updates the Rive C++ runtime and renderer for the latest features, bug fixes, and performance improvements.

Breaking Changes

  • Expose audio events through the Dart API. Event is a sealed class and EventType gains an audio value, so exhaustive switch statements over either now require a new AudioRuntimeEvent / EventType.audio arm.
  • State machine event listeners now receive AudioRuntimeEvents alongside GeneralEvent and OpenUrlEvent. Listeners that branch on event type with non-exhaustive if/is checks will see the new type pass through unhandled.

Shared Texture API (Experimental)

  • Add SharedRenderTexture.create() to construct a user-owned shared texture independent of the RivePanel lookup. Place it in the tree with the new RiveSurface widget and attach painters by passing the same instance to RiveWidget.sharedTexture. This lets a single native texture be shared across RiveWidgets that aren't ancestor/descendant of each other — siblings, separate subtrees, or across routes (e.g. via a Provider/Riverpod).
  • Add RiveSurface widget that renders the native surface of a SharedRenderTexture anywhere in the tree. Wrapped in IgnorePointer by default; set ignorePointer: false to route pointer events to the texture widget.
  • Add RiveWidget.sharedTexture parameter to draw into an explicit SharedRenderTexture, bypassing the ancestor-based RivePanel lookup. Takes precedence over useSharedTexture when both are set.
  • SharedRenderTexture gained dispose() and isDisposed. Instances created via SharedRenderTexture.create() own their underlying native texture and must be disposed by the caller; instances constructed with an external texture are not affected.

Fixes

  • Fixed an issue where setState on an ancestor of a RivePanel (or RiveSharedTexture) would allocate a new SharedRenderTexture wrapper on every rebuild, dirtying every descendant RiveWidget and detaching their painters from the previous wrapper. The wrapper instance is now stable across ancestor rebuilds, and RiveSharedTexture.updateShouldNotify compares by identity.
  • Fixed an iOS "carousel flash" where a stale post-frame paint callback queued before the last painter detached could fire afterwards with an empty painter list and momentarily blank the shared texture. The paint pass now no-ops when there are no painters.
  • Fixed an issue where a RiveWidget drawing into a RivePanel shared texture could render at the wrong size when an ancestor Transform.scale animated. The shared-texture path now reads the live local-to-panel transform on every paint instead of relying on a cached scale that composited ancestors (RepaintBoundary, Opacity layers, PageView's internal slots) could leave stale.
  • Fixed a Windows crash in the rive_native removeTexture method channel handler when the texture id arrived as int32_t rather than int64_t. Most commonly seen when dragging the app window between displays with different DPI settings, or when rapidly creating/disposing render textures.

0.14.6

  • Bumps to rive_native: 0.1.6. Updates the Rive C++ runtime and renderer for the latest features, bug fixes, and performance improvements.

Fixes

  • Fixed 623 - Explicitly nil Metal ivars in dealloc to prevent use-after-free on teardown

0.14.5

... (truncated)

Commits

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [rive](https://github.com/rive-app/rive-flutter) from 0.13.20 to 0.14.8.
- [Release notes](https://github.com/rive-app/rive-flutter/releases)
- [Changelog](https://github.com/rive-app/rive-flutter/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rive-app/rive-flutter/commits)

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

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 Jun 8, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Contributor Author

Looks like rive is no longer a dependency, so this is no longer needed.

@dependabot dependabot Bot closed this Jun 15, 2026
@dependabot dependabot Bot deleted the dependabot/pub/rive-0.14.8 branch June 15, 2026 18:32
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