Skip to content

Commit 30e28b5

Browse files
authored
chore: kickoff v1 release
2 parents b6c5a0d + 8e0d54d commit 30e28b5

File tree

35 files changed

+416
-415
lines changed

35 files changed

+416
-415
lines changed

.github/workflows/build_test_amplify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
build-test-amplify:
15-
runs-on: macos-latest
15+
runs-on: macos-12
1616
steps:
1717
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
1818
with:
@@ -25,7 +25,7 @@ jobs:
2525
scheme: Amplify
2626

2727
build-amplify-spm:
28-
runs-on: macos-latest
28+
runs-on: macos-12
2929
steps:
3030
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
3131
with:

.github/workflows/deploy_package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
name: Release new ${{ inputs.type }} version
3131
environment: Release
3232
needs: [build-and-test-amplify, unit-tests, fortify]
33-
runs-on: macos-latest
33+
runs-on: macos-12
3434
steps:
3535
- name: Configure AWS credentials
3636
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 #v2

.github/workflows/fortify_scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
fortify-scan:
16-
runs-on: macos-latest
16+
runs-on: macos-12
1717
environment: Fortify
1818
steps:
1919
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b

.github/workflows/integ_test.yml

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Integration Tests
22
on:
33
workflow_call:
4+
workflow_dispatch:
45
push:
56
branches: [v1]
67

@@ -14,7 +15,7 @@ concurrency:
1415

1516
jobs:
1617
prepare-for-test:
17-
runs-on: macos-latest
18+
runs-on: macos-12
1819
environment: IntegrationTest
1920
steps:
2021
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -87,7 +88,7 @@ jobs:
8788
api-graphqliam-integration-test:
8889
if: ${{ false }}
8990
needs: [api-integration-test]
90-
runs-on: macos-latest
91+
runs-on: macos-12
9192
environment: IntegrationTest
9293
steps:
9394
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -143,7 +144,7 @@ jobs:
143144
api-restiam-integration-test:
144145
if: ${{ false }}
145146
needs: [api-integration-test]
146-
runs-on: macos-latest
147+
runs-on: macos-12
147148
environment: IntegrationTest
148149
steps:
149150
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -171,7 +172,7 @@ jobs:
171172
api-restuserpool-integration-test:
172173
if: ${{ false }}
173174
needs: [api-integration-test]
174-
runs-on: macos-latest
175+
runs-on: macos-12
175176
environment: IntegrationTest
176177
steps:
177178
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -199,7 +200,7 @@ jobs:
199200
api-graphqllambda-integration-test:
200201
if: ${{ false }}
201202
needs: [api-integration-test]
202-
runs-on: macos-latest
203+
runs-on: macos-12
203204
environment: IntegrationTest
204205
steps:
205206
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -283,7 +284,7 @@ jobs:
283284
datastore-integration-hub-test:
284285
if: ${{ false }}
285286
needs: [datastore-integration-test]
286-
runs-on: macos-latest
287+
runs-on: macos-12
287288
environment: IntegrationTest
288289
steps:
289290
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -366,7 +367,7 @@ jobs:
366367
datastore-integration-V1-S2-test:
367368
if: ${{ false }}
368369
needs: [datastore-integration-test]
369-
runs-on: macos-latest
370+
runs-on: macos-12
370371
environment: IntegrationTest
371372
steps:
372373
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -393,7 +394,7 @@ jobs:
393394
datastore-integration-V1-S3-test:
394395
if: ${{ false }}
395396
needs: [datastore-integration-test]
396-
runs-on: macos-latest
397+
runs-on: macos-12
397398
environment: IntegrationTest
398399
steps:
399400
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -420,7 +421,7 @@ jobs:
420421
datastore-integration-V1-S4-test:
421422
if: ${{ false }}
422423
needs: [datastore-integration-test]
423-
runs-on: macos-latest
424+
runs-on: macos-12
424425
environment: IntegrationTest
425426
steps:
426427
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -447,7 +448,7 @@ jobs:
447448
datastore-integration-V1-S5-test:
448449
if: ${{ false }}
449450
needs: [datastore-integration-test]
450-
runs-on: macos-latest
451+
runs-on: macos-12
451452
environment: IntegrationTest
452453
steps:
453454
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -474,7 +475,7 @@ jobs:
474475
datastore-integration-V1-S6-test:
475476
if: ${{ false }}
476477
needs: [datastore-integration-test]
477-
runs-on: macos-latest
478+
runs-on: macos-12
478479
environment: IntegrationTest
479480
steps:
480481
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -501,7 +502,7 @@ jobs:
501502
datastore-integration-V2-S1-test:
502503
if: ${{ false }}
503504
needs: [datastore-integration-test]
504-
runs-on: macos-latest
505+
runs-on: macos-12
505506
environment: IntegrationTest
506507
steps:
507508
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -528,7 +529,7 @@ jobs:
528529
datastore-integration-V2-S2-test:
529530
if: ${{ false }}
530531
needs: [datastore-integration-test]
531-
runs-on: macos-latest
532+
runs-on: macos-12
532533
environment: IntegrationTest
533534
steps:
534535
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -555,7 +556,7 @@ jobs:
555556
datastore-integration-V2-S3a-test:
556557
if: ${{ false }}
557558
needs: [datastore-integration-test]
558-
runs-on: macos-latest
559+
runs-on: macos-12
559560
environment: IntegrationTest
560561
steps:
561562
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -582,7 +583,7 @@ jobs:
582583
datastore-integration-V2-S3-test:
583584
if: ${{ false }}
584585
needs: [datastore-integration-test]
585-
runs-on: macos-latest
586+
runs-on: macos-12
586587
environment: IntegrationTest
587588
steps:
588589
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -609,7 +610,7 @@ jobs:
609610
datastore-integration-V2-S4-test:
610611
if: ${{ false }}
611612
needs: [datastore-integration-test]
612-
runs-on: macos-latest
613+
runs-on: macos-12
613614
environment: IntegrationTest
614615
steps:
615616
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -636,7 +637,7 @@ jobs:
636637
datastore-integration-V2-S5-test:
637638
if: ${{ false }}
638639
needs: [datastore-integration-test]
639-
runs-on: macos-latest
640+
runs-on: macos-12
640641
environment: IntegrationTest
641642
steps:
642643
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -663,7 +664,7 @@ jobs:
663664
datastore-integration-V2-S6-test:
664665
if: ${{ false }}
665666
needs: [datastore-integration-test]
666-
runs-on: macos-latest
667+
runs-on: macos-12
667668
environment: IntegrationTest
668669
steps:
669670
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -690,7 +691,7 @@ jobs:
690691
datastore-integration-V2-S7-test:
691692
if: ${{ false }}
692693
needs: [datastore-integration-test]
693-
runs-on: macos-latest
694+
runs-on: macos-12
694695
environment: IntegrationTest
695696
steps:
696697
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -717,7 +718,7 @@ jobs:
717718
datastore-integration-V2-S8-test:
718719
if: ${{ false }}
719720
needs: [datastore-integration-test]
720-
runs-on: macos-latest
721+
runs-on: macos-12
721722
environment: IntegrationTest
722723
steps:
723724
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -772,7 +773,7 @@ jobs:
772773
datastore-integration-observe-query-test:
773774
if: ${{ false }}
774775
needs: [datastore-integration-test]
775-
runs-on: macos-latest
776+
runs-on: macos-12
776777
environment: IntegrationTest
777778
steps:
778779
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -800,7 +801,7 @@ jobs:
800801
datastore-auth-integration-test:
801802
if: ${{ false }}
802803
needs: [datastore-integration-test]
803-
runs-on: macos-latest
804+
runs-on: macos-12
804805
environment: IntegrationTest
805806
steps:
806807
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
@@ -828,7 +829,7 @@ jobs:
828829
datastore-flutter-integration-test:
829830
if: ${{ false }}
830831
needs: [datastore-integration-test]
831-
runs-on: macos-latest
832+
runs-on: macos-12
832833
environment: IntegrationTest
833834
steps:
834835
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b

.github/workflows/unit_test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
unit-test-aws-plugins-core:
15-
runs-on: macos-latest
15+
runs-on: macos-12
1616
steps:
1717
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
1818
with:
@@ -26,7 +26,7 @@ jobs:
2626
scheme: AWSPluginsCore
2727

2828
unit-test-analytics:
29-
runs-on: macos-latest
29+
runs-on: macos-12
3030
steps:
3131
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
3232
with:
@@ -40,7 +40,7 @@ jobs:
4040
scheme: AWSPinpointAnalyticsPlugin
4141

4242
unit-test-api:
43-
runs-on: macos-latest
43+
runs-on: macos-12
4444
steps:
4545
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
4646
with:
@@ -54,7 +54,7 @@ jobs:
5454
scheme: AWSAPICategoryPlugin
5555

5656
unit-test-auth:
57-
runs-on: macos-latest
57+
runs-on: macos-12
5858
steps:
5959
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
6060
with:
@@ -68,7 +68,7 @@ jobs:
6868
scheme: AWSCognitoAuthPlugin
6969

7070
unit-test-datastore:
71-
runs-on: macos-latest
71+
runs-on: macos-12
7272
steps:
7373
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
7474
with:
@@ -82,7 +82,7 @@ jobs:
8282
scheme: AWSDataStoreCategoryPlugin
8383

8484
unit-test-geo:
85-
runs-on: macos-latest
85+
runs-on: macos-12
8686
steps:
8787
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
8888
with:
@@ -96,7 +96,7 @@ jobs:
9696
scheme: AWSLocationGeoPlugin
9797

9898
unit-test-predictions:
99-
runs-on: macos-latest
99+
runs-on: macos-12
100100
steps:
101101
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
102102
with:
@@ -110,7 +110,7 @@ jobs:
110110
scheme: CoreMLPredictionsPlugin
111111

112112
unit-test-storage:
113-
runs-on: macos-latest
113+
runs-on: macos-12
114114
steps:
115115
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
116116
with:

AWSPluginsCore.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
$AMPLIFY_VERSION = '1.30.9'
1111
$AMPLIFY_RELEASE_TAG = "#{$AMPLIFY_VERSION}"
1212

13-
$AWS_SDK_VERSION = '2.35.0'
13+
$AWS_SDK_VERSION = '2.36.0'
1414
$OPTIMISTIC_AWS_SDK_VERSION = "~> #{$AWS_SDK_VERSION}"
1515

1616
Pod::Spec.new do |s|
@@ -26,7 +26,7 @@ Pod::Spec.new do |s|
2626
s.author = { 'Amazon Web Services' => 'amazonwebservices' }
2727
s.source = { :git => 'https://github.com/aws-amplify/amplify-ios.git', :tag => $AMPLIFY_RELEASE_TAG }
2828

29-
s.platform = :ios, '11.0'
29+
s.platform = :ios, '12.0'
3030
s.swift_version = '5.0'
3131

3232
s.source_files = 'AmplifyPlugins/Core/AWSPluginsCore/**/*.swift'

AWSPredictionsPlugin.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
$AMPLIFY_VERSION = '1.30.9'
33
$AMPLIFY_RELEASE_TAG = "#{$AMPLIFY_VERSION}"
44

5-
$AWS_SDK_VERSION = '2.35.0'
5+
$AWS_SDK_VERSION = '2.36.0'
66
$OPTIMISTIC_AWS_SDK_VERSION = "~> #{$AWS_SDK_VERSION}"
77

88
Pod::Spec.new do |s|

Amplify.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Pod::Spec.new do |s|
2222
s.author = { 'Amazon Web Services' => 'amazonwebservices' }
2323
s.source = { :git => 'https://github.com/aws-amplify/amplify-swift.git', :tag => $AMPLIFY_RELEASE_TAG }
2424

25-
s.platform = :ios, '11.0'
25+
s.platform = :ios, '12.0'
2626
s.swift_version = '5.0'
2727

2828
s.source_files = 'Amplify/**/*.swift'

0 commit comments

Comments
 (0)