Releases: dart-lang/native
Releases · dart-lang/native
ffigen-v19.0.0
- Use package:objective_c 8.0.0.
- Breaking change: Major change to the way ObjC methods are code-genned.
Methods now use named parameters, making them more readable and closer to how
they're written in ObjC. For example, theNSData
method
dataWithBytes:length:
used to be generated as
dataWithBytes_length_(Pointer<Void> bytes, int length)
, but is now generated
asdataWithBytes(Pointer<Void> bytes, {required int length})
. Protocol
methods are not affected.- Migration tip: A quick way to find affected methods is to search for
_(
.
- Migration tip: A quick way to find affected methods is to search for
- Make it easier for a downstream clone to change behavior of certain utils.
- Fix a bug where types could
occasionally show up as a generic ObjCObjectBase, when they were supposed to
be codegenned as a more specific interface types.
package:native_toolchain_c v0.16.0
- Depend on
package:code_assets
andpackage:hooks
0.19.0.
(package:native_assets_cli
was split up into these packages.)
package:hooks_runner v0.19.0
- Renamed package from
native_assets_builder
tohooks_runner
. - Depend on
package:code_assets
,package:data_assets
, andpackage:hooks
0.19.0. (package:native_assets_cli
was split up into these packages.)
package:hooks v0.19.0
- Split up
package:native_assets_cli
inpackage:hooks
,
package:code_assets
, andpackage:data_assets
.
package:data_assets v0.19.0
- Split up
package:native_assets_cli
inpackage:hooks
,
package:code_assets
, andpackage:data_assets
.
package:code_assets v0.19.0
- Split up
package:native_assets_cli
inpackage:hooks
,
package:code_assets
, andpackage:data_assets
.
package:native_toolchain_c v0.15.0
- Bump
package:native_assets_cli
to 0.18.0.
package:native_assets_cli v0.18.0
- Breaking change Reorganized the libraries structure. Classes are no longer
exported multiple times. - Breaking change multiple classes renamed.
package:native_assets_builder v0.18.0
- Bump
package:native_assets_cli
to 0.18.0.
package:native_toolchain_c v0.14.0
- Bump
package:native_assets_cli
to 0.17.0.