Uh oh!
There was an error while loading. Please reload this page.
feat!: Rename GameWidget.controlled to GameWidget.managed - #3961
Merged
Conversation
Uh oh!
There was an error while loading. Please reload this page.
4 tasks
spydon added a commit
that referenced
this pull request
Jul 22, 2026
Adds a new "Migration Guides" page to the docs describing the breaking changes users need to be aware of when upgrading between major versions of Flame, along with the steps required to migrate. This first version covers migrating from v1.38.0 to v2.0.0. To start with, it documents the one breaking change that has landed on `main` since the v1.38.0 tag: - `GameWidget.controlled` was renamed to `GameWidget.managed` (#3961). The page explains the change and shows a before/after code snippet. The page is registered in the Flame section's `toctree` (right after "Getting Started") so it is discoverable in the rendered docs. As more breaking PRs land before the v2.0.0 release, new subsections can be appended under the same version heading. Changed files: - `doc/flame/migration.md` (new page) - `doc/flame/flame.md` (added the page to the visible list and hidden `toctree`)
3 tasks
spydon added a commit
that referenced
this pull request
Aug 16, 2026
Releases `flame_forge2d` 0.20.0, scoped to only this package so that the pending unreleased changes in `flame` and the other packages stay unreleased. New version: `flame_forge2d` 0.19.3+7 -> 0.20.0 Included changes: - **FIX**: Adapt to Flutter 3.47 (#3995) - **BREAKING** **FEAT**: Migrate flame_forge2d to the Box2D v3 based forge2d (#3952) The flame-side breaking changes that also touched this package's directory (#3968, #3961) only affected its tests and example, so they are intentionally left out of the changelog: they do not apply to flame_forge2d consumers until flame v2 is released. The package keeps its `flame: ^1.38.0` dependency, verified by resolving against the published flame 1.38.0 and forge2d 0.15.1 (`dart analyze` clean, all 91 tests pass, `flutter pub publish --dry-run` passes). Since melos refuses to version a package whose workspace dependency (`flame`) has pending changes outside the scope filter, the version bump, changelogs, and dependent constraint updates were applied manually in the same format melos generates. On merge, the `release-tag` workflow tags `flame_forge2d-v0.20.0` and triggers the publish workflow for it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Renames
GameWidget.controlledtoGameWidget.managedand all of its mentions.Checklist
docsand added dartdoc comments with///.examplesordocs.Breaking Change?
Related Issues
Part of #1938