appattest_flutter 0.4.0
appattest_flutter: ^0.4.0 copied to clipboard
Flutter bridge for AppAttest — App-Attest-gated secret delivery for iOS.
Changelog #
0.4.0 - 2026-07-15 #
Re-synced with the AppAttest Swift SDK, which this plugin had stopped
tracking: it sat at 0.1.0 through the SDK's v0.2.0, v0.3.0 and v0.4.0.
The version jumps 0.1.0 → 0.4.0 with no 0.2.0/0.3.0 in between — the
podspec pins AppAttest at = #{s.version}, so the plugin version is
the pod version it resolves, and it now resolves 0.4.0.
Changed (breaking) #
-
AppAttest.start()→AppAttest.start(release:).releaseis a required named argument taking aReleaseBucket. There is no default and no inference fromkDebugModeor build flavor; the bucket is exactly what you pass. Mirrors the Swift SDK'sstart(release:)(SDK v0.4.0).- AppAttest.start(); + AppAttest.start(release: ReleaseBucket.production);
Added #
ReleaseBucketenum (staging,production).
Fixed #
- Docs no longer claim the bucket is AAGUID-derived. Apple's AAGUID
picks the secrets column (sandbox vs production);
releasepicks the server bucket. Two independent axes — both servers have both columns.
0.1.0 - 2026-05-29 #
First public release, in lockstep with the AppAttest Swift SDK v0.1.0. See the repository-level CHANGELOG for the full release notes.