chore(deps): update dependency ffigen to v16 #89
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.
This PR contains the following updates:
^14.0.0
->^16.0.0
Release Notes
dart-lang/native (ffigen)
v16.0.0
package:dart_style
directly to format generated Dart code, rather thansubprocessing to
dart format
.typealiases were treated as non-null.
https://github.com/dart-lang/native/issues/11361136
inserting their methods into the interface, generate Dart extension methods.
For instance methods this makes no difference to user code (as long as the
extension methods are imported correctly). But for static methods it means
MyInterface.staticMethod
must change toMyCategory.staticMethod
.Categories are included/excluded by the
objc-categories
config entry.include-transitive-objc-interfaces
,include-transitive-objc-protocols
,and
include-transitive-objc-categories
config flags, which control whethertransitively included ObjC interfaces, protocols, and categories are
generated.
include-transitive-objc-interfaces
defaults to false,which changes the default behavior from pulling in all transitive deps, to
generating them as stubs.
include-transitive-objc-protocols
defaults tofalse, and
include-transitive-objc-categories
defaults to true, but theseboth replicate the existing behavior.
mismatches between ObjC and Dart's inheritance rules.
v15.0.0
ObjCBlock
trampolines to reduce generated ObjC code.package:objective_c
.required and optional methods are included. Optional methods will throw an
exception if the method isn't implemented.
protocols that are included by the config filters. This is breaking because
previously super protocols would automatically get implementation bindings,
rather than just being incorporated into the child protocol. If you want those
implementation bindings, you may need to add the super protocol to your
objc-protocols
filters.ObjC but before the invocation was received by Dahttps://github.com/dart-lang/native/issues/1571ues/1571
sort:
config option now affects ObjC interface/protocol methods.NSRange
was not being imported from package:objective_c:https://github.com/dart-lang/native/issues/11801180
taking a struct return pointer.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.