Skip to content

Commit de5db39

Browse files
committed
chore(version): 0.6.6
1 parent d665acd commit de5db39

File tree

39 files changed

+142
-54
lines changed

39 files changed

+142
-54
lines changed

packages/amplify/amplify_flutter/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 0.6.6 (2022-08-11)
2+
3+
- chore(datastore): improve custom primary key integration tests (#2000)
4+
- chore: bump amplify-ios dep to 1.28.0 (#2005)
5+
- chore: bump amplify-android dep to 1.37.0 (#2005)
6+
- fix(datastore): adapt amplify-ios CPK fix breaking change (#2005)
7+
- fix(datastore): missing query field model name cause ambigous column … (#1941)
8+
- chore(datastore): upgrade amplify-ios to cpk preview version (#1641)
9+
- chore(datastore): add custom primary key integration tests (#1641)
10+
- chore(datastore): update integration tests model schema (#1641)
11+
- feat(datastore): add targetNames support for codegen (#1641)
12+
- chore(datastore): unit tests for custom primary key native imp. (#1641)
13+
- chore(datastore): unit tests for custom primary key in Flutter (#1641)
14+
- feat(datastore): custom primary key Flutter native implementation (#1641)
15+
- chore(datastore): cleanup the codebase (#1641)
16+
117
## 0.6.5 (2022-07-28)
218

319
- chore: bump amplify-android dep to 1.36.5

packages/amplify/amplify_flutter/lib/src/amplify_impl.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ abstract class AmplifyClass {
133133
static AmplifyClass instance = AmplifyClass();
134134

135135
/// The library version.
136-
String get version => '0.6.5';
136+
String get version => '0.6.6';
137137

138138
/// Resets the Amplify implementation, removing all traces of Amplify from
139139
/// the device.

packages/amplify/amplify_flutter/pubspec.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_flutter
22
description: The top level Flutter package for the AWS Amplify libraries.
3-
version: 0.6.5
3+
version: 0.6.6
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -10,10 +10,10 @@ environment:
1010
flutter: ">=2.10.0"
1111

1212
dependencies:
13-
amplify_core: 0.6.5
14-
amplify_datastore_plugin_interface: 0.6.5
15-
amplify_flutter_android: 0.6.5
16-
amplify_flutter_ios: 0.6.5
13+
amplify_core: 0.6.6
14+
amplify_datastore_plugin_interface: 0.6.6
15+
amplify_flutter_android: 0.6.6
16+
amplify_flutter_ios: 0.6.6
1717
aws_common: ^0.1.1
1818
collection: ^1.15.0
1919
flutter:
@@ -39,12 +39,12 @@ dependencies:
3939
# path: ../amplify_storage_s3
4040

4141
dev_dependencies:
42-
amplify_analytics_pinpoint: 0.6.5
43-
amplify_api: 0.6.5
44-
amplify_auth_cognito: 0.6.5
45-
amplify_datastore: 0.6.5
42+
amplify_analytics_pinpoint: 0.6.6
43+
amplify_api: 0.6.6
44+
amplify_auth_cognito: 0.6.6
45+
amplify_datastore: 0.6.6
4646
amplify_lints: ^1.0.0
47-
amplify_storage_s3: 0.6.5
47+
amplify_storage_s3: 0.6.6
4848
amplify_test:
4949
path: ../../amplify_test
5050
build_runner: ^2.0.0

packages/amplify/amplify_flutter_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.6 (2022-08-11)
2+
3+
- chore: bump amplify-android dep to 1.37.0
4+
15
## 0.6.5 (2022-07-28)
26

37
- chore: bump amplify-android dep to 1.36.5

packages/amplify/amplify_flutter_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_flutter_android
22
description: The method channel implementation for amplify_flutter on Android
3-
version: 0.6.5
3+
version: 0.6.6
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues

packages/amplify/amplify_flutter_ios/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.6 (2022-08-11)
2+
3+
- chore: bump amplify-ios dep to 1.28.0
4+
15
## 0.6.5 (2022-07-28)
26

37
## 0.6.4 (2022-07-25)

packages/amplify/amplify_flutter_ios/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_flutter_ios
22
description: The method channel implementation for amplify_flutter on iOS
3-
version: 0.6.5
3+
version: 0.6.6
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -10,7 +10,7 @@ environment:
1010
flutter: ">=2.10.0"
1111

1212
dependencies:
13-
amplify_core: 0.6.5
13+
amplify_core: 0.6.6
1414
flutter:
1515
sdk: flutter
1616

packages/amplify_authenticator/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ environment:
2222
flutter: ">=2.10.0"
2323

2424
dependencies:
25-
amplify_auth_cognito: 0.6.5
25+
amplify_auth_cognito: 0.6.6
2626
amplify_authenticator:
2727
path: ../
28-
amplify_flutter: 0.6.5
28+
amplify_flutter: 0.6.6
2929

3030
flutter:
3131
sdk: flutter
@@ -38,7 +38,7 @@ dependencies:
3838
sdk: flutter
3939

4040
dev_dependencies:
41-
amplify_api: 0.6.5
41+
amplify_api: 0.6.6
4242
amplify_lints: ^1.0.0
4343
amplify_test:
4444
path: ../../amplify_test

packages/amplify_core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.6.6 (2022-08-11)
2+
3+
- feat(core): custom primary key supporting interface changes
4+
- chore: bump amplify-ios dep to 1.28.0
5+
- chore: bump amplify-android dep to 1.37.0
6+
17
## 0.6.5 (2022-07-28)
28

39
- chore: bump amplify-android dep to 1.36.5

packages/amplify_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_core
22
description: The base package containing common types and utilities that are shared across the Amplify Flutter packages.
3-
version: 0.6.5
3+
version: 0.6.6
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues

0 commit comments

Comments
 (0)