Skip to content

Commit d30d6ea

Browse files
touyouclaude
andcommitted
chore: Release v0.17.0
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent c6123aa commit d30d6ea

17 files changed

Lines changed: 67 additions & 32 deletions

File tree

README.ja.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ flutter_intents/
5151

5252
```yaml
5353
dependencies:
54-
app_intents: ^0.16.0
55-
app_intents_annotations: ^0.16.0
54+
app_intents: ^0.17.0
55+
app_intents_annotations: ^0.17.0
5656

5757
dev_dependencies:
58-
app_intents_codegen: ^0.16.0
58+
app_intents_codegen: ^0.17.0
5959
build_runner: ^2.4.0
6060
```
6161

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ flutter_intents/
5151

5252
```yaml
5353
dependencies:
54-
app_intents: ^0.16.0
55-
app_intents_annotations: ^0.16.0
54+
app_intents: ^0.17.0
55+
app_intents_annotations: ^0.17.0
5656

5757
dev_dependencies:
58-
app_intents_codegen: ^0.16.0
58+
app_intents_codegen: ^0.17.0
5959
build_runner: ^2.4.0
6060
```
6161

docs/packages.ja.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ Dartアノテーションからコードを生成するツール。
413413
- glob: ^2.1.0
414414
- path: ^1.9.0
415415
- yaml: ^3.1.0
416-
- app_intents_annotations: ^0.16.0
416+
- app_intents_annotations: ^0.17.0
417417

418418
### 実装済み機能
419419

@@ -463,7 +463,7 @@ Dartアノテーションからコードを生成するツール。
463463
# pubspec.yaml
464464
dev_dependencies:
465465
build_runner: ^2.4.0
466-
app_intents_codegen: ^0.16.0
466+
app_intents_codegen: ^0.17.0
467467
```
468468
469469
```bash

docs/packages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ Tool for generating code from Dart annotations.
413413
- glob: ^2.1.0
414414
- path: ^1.9.0
415415
- yaml: ^3.1.0
416-
- app_intents_annotations: ^0.16.0
416+
- app_intents_annotations: ^0.17.0
417417

418418
### Implemented Features
419419

@@ -464,7 +464,7 @@ Tool for generating code from Dart annotations.
464464
# pubspec.yaml
465465
dev_dependencies:
466466
build_runner: ^2.4.0
467-
app_intents_codegen: ^0.16.0
467+
app_intents_codegen: ^0.17.0
468468
```
469469
470470
```bash

docs/usage.ja.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
```yaml
88
# pubspec.yaml
99
dependencies:
10-
app_intents: ^0.16.0
11-
app_intents_annotations: ^0.16.0
10+
app_intents: ^0.17.0
11+
app_intents_annotations: ^0.17.0
1212

1313
dev_dependencies:
14-
app_intents_codegen: ^0.16.0
14+
app_intents_codegen: ^0.17.0
1515
build_runner: ^2.4.0
1616
```
1717

docs/usage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
```yaml
88
# pubspec.yaml
99
dependencies:
10-
app_intents: ^0.16.0
11-
app_intents_annotations: ^0.16.0
10+
app_intents: ^0.17.0
11+
app_intents_annotations: ^0.17.0
1212

1313
dev_dependencies:
14-
app_intents_codegen: ^0.16.0
14+
app_intents_codegen: ^0.17.0
1515
build_runner: ^2.4.0
1616
```
1717

packages/app_intents/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.17.0
2+
3+
> **Action required if you wired relevant-entity donation (#55).**
4+
> `AppIntentsPlugin.relevantEntitiesDonationForwarder` and the closure passed to
5+
> `FlutterBridge.registerRelevantEntitiesDonator` gain an `operation` argument.
6+
> Update the AppDelegate wiring — see `docs/usage.md`.
7+
8+
- `AppIntentExecution.current` — inside a long-running intent's handler: `reportProgress` / `reportProgressUnits`, `isCancelled` / `cancelled`, and `requestValue<T>(parameter)` (#130, #131, ADR 0010). `AppIntents().onIntentCancellation` observes cancellations from outside the handler.
9+
- `AppIntents().registerValueImportHandler` (#129).
10+
- `AppIntents().removeRelevantEntities` / `removeAllRelevantEntities` and `RelevantEntitiesOperation` (#133).
11+
- iOS: `FlutterBridge.beginExecution` / `endExecution` / `updateProgress` / `requestValue` / `setCancellationNotifier`, plus `AppIntentsPlugin.intentProgressForwarder` / `intentValueRequestForwarder` to wire in AppDelegate.
12+
113
## 0.16.0
214

315
- `RelevantIntentDonation.toMap()` encodes `DateTime` parameter values as ISO-8601 strings; Flutter's standard method-channel codec cannot carry a `DateTime`, so a donation with one would have thrown before reaching iOS.

packages/app_intents/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ Add `app_intents` to your `pubspec.yaml`:
2525

2626
```yaml
2727
dependencies:
28-
app_intents: ^0.16.0
29-
app_intents_annotations: ^0.16.0
28+
app_intents: ^0.17.0
29+
app_intents_annotations: ^0.17.0
3030

3131
dev_dependencies:
32-
app_intents_codegen: ^0.16.0
32+
app_intents_codegen: ^0.17.0
3333
build_runner: ^2.4.0
3434
```
3535

packages/app_intents/ios/app_intents.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'app_intents'
7-
s.version = '0.16.0'
7+
s.version = '0.17.0'
88
s.summary = 'Flutter plugin for iOS App Intents integration.'
99
s.description = <<-DESC
1010
Flutter plugin for iOS App Intents integration. Enables Siri, Shortcuts, and Spotlight support.

packages/app_intents/ios/app_intents_bridge.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Pod::Spec.new do |s|
3030
# symptom is indirect: the import itself may not report `No such module`,
3131
# only the types come out as `Cannot find 'AppIntentsEntityCache' in scope`.
3232
s.module_name = 'AppIntentsBridge'
33-
s.version = '0.16.0'
33+
s.version = '0.17.0'
3434
s.summary = 'Flutter-free Swift bridge shared by the app_intents plugin and its App Extensions.'
3535
s.description = <<-DESC
3636
The Swift side of the app_intents Flutter plugin: the FlutterBridge executor

0 commit comments

Comments
 (0)