Skip to content

Commit c7e2779

Browse files
authored
chore: Updated changelog for v2 and removed dev-preview references (#2463)
1 parent 47c97ad commit c7e2779

File tree

7 files changed

+34
-8
lines changed

7 files changed

+34
-8
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on:
44
push:
55
branches:
66
- main
7-
- dev-preview
7+
- v1
88
pull_request:
99
# The branches below must be a subset of the branches above
1010
branches:
1111
- main
12-
- dev-preview
12+
- v1
1313
schedule:
1414
# ┌───────────── minute (0 - 59)
1515
# │ ┌───────────── hour (0 - 23)

.github/workflows/integ_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Integration Tests
22
on:
33
push:
4-
branches: [dev-preview]
4+
branches: [main]
55

66
permissions:
77
id-token: write

.github/workflows/integ_test_api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: API Integration Tests
22
on:
33
push:
4-
branches: [dev-preview-api]
4+
branches: [main]
55

66
permissions:
77
id-token: write

.github/workflows/integ_test_datastore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: DataStore Integration Tests
22
on:
33
push:
4-
branches: [dev-preview]
4+
branches: [main]
55

66
permissions:
77
id-token: write

AmplifyPlugins/Core/AWSPluginsCore/ServiceConfiguration/AmplifyAWSServiceConfiguration.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Foundation
99
import AWSClientRuntime
1010

1111
public class AmplifyAWSServiceConfiguration {
12-
public static let version = "1.27.1-swift-sdk-dev-preview.0"
12+
public static let version = "2.0.0"
1313
public static let platformName = "amplify-ios"
1414

1515
public static func frameworkMetaData() -> FrameworkMetadata {

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## 2.0.0 (2022-10-17)
6+
7+
### Breaking Changes
8+
- **Core**:
9+
- Updated all public apis to use the latest Swift concurrency features (Async/Await)
10+
- Removed dependency from aws-sdk-ios from all plugins
11+
- Cocoapods support is removed from v2.0.0
12+
13+
- **Analytics**:
14+
- `identifyUser(:withProfile:)` has been renamed to `identifyUser(userId:userProfile:)`
15+
- Removed support for different Analytics and Targeting regions
16+
17+
- **Predictions**:
18+
- Predictions plugin is currently unavailable for this version
19+
20+
### Features
21+
- **Auth**:
22+
- Escape hatch apis for federation to Cognito Identity Pool
23+
- Custom auth flow now support without SRP flow
24+
- Supports user migration flow
25+
26+
- **Analytics**:
27+
- Pinpoint APIs available through the escape hatch
28+
29+
- **Storage**:
30+
- Migrated storage plugin from TransferUtility
31+
432
## 1.27.1 (2022-07-22)
533
### Bug Fixes
634
- **Auth:** Mapping correct error when Device Operations fail due to user not signed in (#2023).

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ AWS Amplify provides a declarative and easy-to-use interface across different ca
55

66
The Amplify Library for Swift is layered on the [AWS SDK for Swift](https://aws.amazon.com/sdk-for-swift/), which was released as Developer Preview last year. This allows for access to the AWS SDK for Swift for a breadth of service-centric APIs.
77

8-
You can also quickly get started by using our [Photo Sharing Sample App](https://github.com/aws-amplify/amplify-ios-samples/tree/dev-preview).
9-
108
We deeply appreciate your feedback on this Developer Preview as we work towards our General Availability launch: [GitHub Discussion](https://github.com/aws-amplify/amplify-ios/discussions/categories/developer-preview) or [File a Bug Report](https://github.com/aws-amplify/amplify-ios/issues/new/choose).
119

1210
[**API Documentation**](https://aws-amplify.github.io/amplify-ios/docs/)

0 commit comments

Comments
 (0)