Skip to content

Commit 52a105f

Browse files
HuiSFdependabot[bot]Jordan-NelsonTravis Shepparddnys1
authored
chore(version): 0.6.8 (#2135)
* chore(deps): bump file_picker from 4.6.1 to 5.0.1 in /example (#1944) Bumps [file_picker](https://github.com/miguelpruivo/flutter_file_picker) from 4.6.1 to 5.0.1. - [Release notes](https://github.com/miguelpruivo/flutter_file_picker/releases) - [Changelog](https://github.com/miguelpruivo/flutter_file_picker/blob/master/CHANGELOG.md) - [Commits](https://github.com/miguelpruivo/flutter_file_picker/commits) --- updated-dependencies: - dependency-name: file_picker dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jordan Nelson <[email protected]> * chore(auth): enable integration tests in CI (#1886) * chore(repo): Update bug report to include deployment option (#1928) Adds the following info to the bug report template: - Whether the CLI or another mechanism was used to deploy their backend - Their sanitized amplifyconfig These both seem to provide a lot of insight and they can be missed in the conversation, especially the first one. We cannot assume that people filing issues are using pristine Amplify-generated backends. * feat(authenticator): listen to all auth hub events (#2053) * feat: listen to hub events * chore: wait for config completion to listen to hub * chore(api): add field to schema in provision script (#1909) * fix(core): Podspec deployment target (#2099) Fixes an issue surfaced in Flutter 3.3.0 which configures XCode projects based off this value. Previously, if the value was <9, the logic would apply. Now if the value is <11, the logic applies. We don't want this logic to apply. The previous value was incorrect anyway so it's a good change to make regardless. * chore(core): Export `safePrint` from amplify_core And, by extension `amplify_flutter` which already exports `amplify_core`. This aligns the exports with `next`. Fixes #2092. commit-id:4afa07da * fix(storage): Download to existing file Fixes #2105. Fixes an issue where downloading to an existing file will not work on iOS. For whatever reason, it will report progress and success, but will ultimately not overwrite the contents of the file. commit-id:157d4ea3 * chore(storage): Update dependencies commit-id:fa7c4c42 * chore(storage): Download to temp file First downloads to a non-existent file, then copies the file to the location of the original in order to avoid iOS restrictions on overwriting data and potential failures which would result in deletion of the original file. commit-id:7fbfb559 * fix(datastore): cpk errors on a custom type (#2134) * chore: adds platform/category table (#2115) * chore: adds platform/category table * added dev preview matrix to amplify-flutter + root README; removed from package READMEs Co-authored-by: Dustin Noyes <[email protected]> * chore(version): 0.6.8 * ad PR numbers to changelogs Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jordan Nelson <[email protected]> Co-authored-by: Travis Sheppard <[email protected]> Co-authored-by: Dillon Nys <[email protected]> Co-authored-by: Dillon Nys <[email protected]> Co-authored-by: Dustin Noyes <[email protected]> Co-authored-by: Dustin Noyes <[email protected]>
1 parent 8671019 commit 52a105f

File tree

69 files changed

+766
-470
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+766
-470
lines changed

.github/ISSUE_TEMPLATE/BUG-REPORT.yaml

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,19 +128,44 @@ body:
128128
placeholder: "iOS 15.1, Android 11, macOS 12.1, Chrome 101"
129129
validations:
130130
required: true
131+
- type: dropdown
132+
id: deployment-method
133+
attributes:
134+
label: Deployment Method
135+
description: "How do you currently deploy your backend?"
136+
multiple: false
137+
options:
138+
- Amplify CLI
139+
- Amplify CLI + Custom Pipeline
140+
- Custom Pipeline
141+
validations:
142+
required: true
131143
- type: input
132144
id: cli-version
133145
attributes:
134146
label: CLI Version
135147
description: "Which version of the Amplify CLI are you running? (`amplify -v`)"
136148
placeholder: "9.1.0"
137-
validations:
138-
required: true
139149
- type: textarea
140150
id: additional-context
141151
attributes:
142152
label: Additional Context
143-
description: Please add any other context about the problem here.
153+
description: >
154+
Please add any other context about the problem here. If you are currently using a custom deployment
155+
pipeline, it is helpful to understand how your cloud resources might differ from those provisioned by
156+
the Amplify CLI, for example.
144157
placeholder: "No additional context provided"
145158
validations:
146159
required: false
160+
- type: textarea
161+
id: amplify-config
162+
attributes:
163+
label: Amplify Config
164+
description: Please provide a sanitized version of your Amplify config.
165+
placeholder: |
166+
{
167+
"UserAgent": "aws-amplify-cli/2.0",
168+
"Version": "1.0"
169+
}
170+
validations:
171+
required: true

.github/workflows/amplify_integration_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
scope: ["amplify_api_example", "amplify_storage_s3_example"] # , "amplify_auth_cognito_example"]
23+
scope: ["amplify_api_example", "amplify_storage_s3_example", "amplify_auth_cognito_example"]
2424
steps:
2525
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
2626
with:
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
fail-fast: false
6969
matrix:
70-
scope: ["amplify_api_example", "amplify_storage_s3_example"] # "amplify_auth_cognito_example"]
70+
scope: ["amplify_api_example", "amplify_storage_s3_example", "amplify_auth_cognito_example"]
7171
steps:
7272
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # 2.4.0
7373
with:

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,30 @@ We are iterating and looking for feedback and collaboration, so please [**let us
5353
<img src="https://img.shields.io/pub/v/amplify_api.svg">
5454
</a>
5555

56+
## Category / Platform Support
57+
58+
### Stable Release
59+
60+
| Category | Android | iOS | Web | Windows | MacOS | Linux |
61+
| -------------- | ------- | --- | --- | ------- | ----- | ----- |
62+
| Analytics | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
63+
| API (REST) | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
64+
| API (GraphQL) | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
65+
| Authentication | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
66+
| DataStore | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
67+
| Storage | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
68+
69+
### Developer Preview Release
70+
71+
| Category | Android | iOS | Web | Windows | MacOS | Linux |
72+
| -------------- | ------- | --- | --- | ------- | ----- | ----- |
73+
| Analytics | [ ] | [X] | [ ] | [ ] | [ ] | [ ] |
74+
| API (REST) | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
75+
| API (GraphQL) | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
76+
| Authentication | [X] | [X] | [X] | [X] | [X] | [X] |
77+
| DataStore | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
78+
| Storage | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
79+
5680
### To Be Implemented
5781

5882
- [ ] Predictions

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ environment:
2424
dependencies:
2525
flutter:
2626
sdk: flutter
27-
file_picker: ^4.0.0
27+
file_picker: ^5.0.1
2828
amplify_flutter: 0.6.5
2929
amplify_analytics_pinpoint: 0.6.5
3030
amplify_auth_cognito: 0.6.5

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.8 (2022-09-19)
2+
3+
- feat(authenticator): listen to all auth hub events (#2053)
4+
5+
- fix(core): Podspec deployment target (#2099)
6+
- fix(storage): Download to existing file (#2116)
7+
- fix(datastore): cpk errors on a custom type (#2134)
8+
9+
- chore(core): Export `safePrint` from amplify_core (#2114)
10+
- chore(auth): enable integration tests in CI (#1886)
11+
- chore(repo): Update bug report to include deployment option (#1928)
12+
- chore(api): add field to schema in provision script (#1909)
13+
- chore(storage): Update dependencies (#2116)
14+
- chore(storage): Download to temp file (#2116)
15+
- chore: adds platform/category table (#2115)
16+
117
## 0.6.7 (2022-09-07)
218

319
- fix: Podspec deployment target ([#2099](https://github.com/aws-amplify/amplify-flutter/pull/2099))

packages/amplify/amplify_flutter/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
22

33
The top level module for Amplify Flutter.
44

5+
## Category / Platform Support
6+
7+
### Stable Release
8+
9+
| Category | Android | iOS | Web | Windows | MacOS | Linux |
10+
| -------------- | ------- | --- | --- | ------- | ----- | ----- |
11+
| Analytics | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
12+
| API (REST) | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
13+
| API (GraphQL) | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
14+
| Authentication | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
15+
| DataStore | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
16+
| Storage | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
17+
18+
### Developer Preview Release
19+
20+
| Category | Android | iOS | Web | Windows | MacOS | Linux |
21+
| -------------- | ------- | --- | --- | ------- | ----- | ----- |
22+
| Analytics | [ ] | [X] | [ ] | [ ] | [ ] | [ ] |
23+
| API (REST) | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
24+
| API (GraphQL) | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
25+
| Authentication | [X] | [X] | [X] | [X] | [X] | [X] |
26+
| DataStore | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
27+
| Storage | [X] | [X] | [ ] | [ ] | [ ] | [ ] |
28+
529
## Getting Started
630

731
### Visit our [Web Site](https://docs.amplify.aws/) to learn more about AWS Amplify.

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.7';
136+
String get version => '0.6.8';
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.7
3+
version: 0.6.8
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.7
14-
amplify_datastore_plugin_interface: 0.6.7
15-
amplify_flutter_android: 0.6.7
16-
amplify_flutter_ios: 0.6.7
13+
amplify_core: 0.6.8
14+
amplify_datastore_plugin_interface: 0.6.8
15+
amplify_flutter_android: 0.6.8
16+
amplify_flutter_ios: 0.6.8
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.7
43-
amplify_api: 0.6.7
44-
amplify_auth_cognito: 0.6.7
45-
amplify_datastore: 0.6.7
42+
amplify_analytics_pinpoint: 0.6.8
43+
amplify_api: 0.6.8
44+
amplify_auth_cognito: 0.6.8
45+
amplify_datastore: 0.6.8
4646
amplify_lints: ^1.0.0
47-
amplify_storage_s3: 0.6.7
47+
amplify_storage_s3: 0.6.8
4848
amplify_test:
4949
path: ../../amplify_test
5050
build_runner: ^2.0.0

packages/amplify/amplify_flutter_android/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.6.8 (2022-09-19)
2+
13
## 0.6.7 (2022-09-07)
24

35
## 0.6.6 (2022-08-16)

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.7
3+
version: 0.6.8
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)