Skip to content

chore(version): Bump version #5091

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
11 changes: 11 additions & 0 deletions .github/composite_actions/fetch_backends/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ inputs:
secret-identifier:
required: true
description: ARN of secret from AWS Secrets Manger which is a JSON object of app IDs / s3 bucket ARNs
needs-gen2-config:
required: true
description: Whether the E2E workflow needs amplify_outputs from AWS

runs:
using: "composite"
Expand Down Expand Up @@ -44,6 +47,14 @@ runs:
shell: bash
run: dart pub global run aft exec --include=${{ inputs.scope }} -- tool/pull_test_backend.sh

- name: Pull Amplify Outputs
shell: bash
run: |
if [[ "${{inputs.needs-gen2-config}}" == true ]]; then
dart pub global run aft exec --include=${{ inputs.scope }} -- tool/pull_test_gen2_backend.sh ...
fi
exit 0

- name: Undo any codegen changes from amplify pull
shell: bash
run: dart pub global run aft exec --include=${{ inputs.scope }} -- [ -d "lib/models" ] && git checkout '**/lib/models/*' || exit 0
Expand Down
63 changes: 49 additions & 14 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,27 @@ updates:
- dependency-name: "*"
update-types:
- "version-update:semver-patch"
- package-ecosystem: "npm"
directory: "infra-gen2"
schedule:
interval: "weekly"
groups:
cdk:
patterns:
- "aws-amplify"
- "@aws-amplify/*"
- "aws-cdk"
- "aws-cdk-lib"
- "constructs"
aws-sdk-js:
patterns:
- "@aws-sdk/*"
- "@aws-crypto/*"
ignore:
# Ignore patch version bumps
- dependency-name: "*"
update-types:
- "version-update:semver-patch"
- package-ecosystem: "pub"
directory: "/"
schedule:
Expand Down Expand Up @@ -129,20 +150,6 @@ updates:
test:
patterns:
- "test"
- package-ecosystem: "pub"
directory: "infra"
schedule:
interval: "daily"
ignore:
# Ignore patch version bumps
- dependency-name: "*"
update-types:
- "version-update:semver-patch"
# Ignore all repo packages
- dependency-name: "amplify_core"
- dependency-name: "aws_common"
- dependency-name: "amplify_lints"
- dependency-name: "aws_signature_v4"
- package-ecosystem: "pub"
directory: "actions"
schedule:
Expand Down Expand Up @@ -207,6 +214,34 @@ updates:
- dependency-name: "amplify_datastore_plugin_interface"
- dependency-name: "amplify_storage_s3"
- dependency-name: "amplify_storage_s3_dart"
- package-ecosystem: "pub"
directory: "infra"
schedule:
interval: "daily"
ignore:
# Ignore patch version bumps
- dependency-name: "*"
update-types:
- "version-update:semver-patch"
# Ignore all repo packages
- dependency-name: "amplify_core"
- dependency-name: "aws_common"
- dependency-name: "amplify_lints"
- dependency-name: "aws_signature_v4"
- package-ecosystem: "pub"
directory: "infra-gen2"
schedule:
interval: "daily"
ignore:
# Ignore patch version bumps
- dependency-name: "*"
update-types:
- "version-update:semver-patch"
# Ignore all repo packages
- dependency-name: "amplify_core"
- dependency-name: "aws_common"
- dependency-name: "amplify_lints"
- dependency-name: "aws_signature_v4"
- package-ecosystem: "pub"
directory: "packages/aft"
schedule:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/amplify_analytics_pinpoint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches:
- main
- stable
- next
pull_request:
paths:
- 'packages/analytics/amplify_analytics_pinpoint/**/*.yaml'
Expand All @@ -15,6 +14,7 @@ on:
- '.github/workflows/amplify_analytics_pinpoint_android.yaml'
schedule:
- cron: "0 0 * * 0" # Every Sunday at 00:00
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/amplify_analytics_pinpoint_dart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/amplify_analytics_pinpoint_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down Expand Up @@ -165,6 +166,7 @@ jobs:
package-name: amplify_analytics_pinpoint_example
working-directory: packages/analytics/amplify_analytics_pinpoint/example
needs-aws-config: true
needs-gen2-config: false
e2e_ios_test:
needs: [test]
uses: ./.github/workflows/e2e_ios.yaml
Expand All @@ -173,6 +175,7 @@ jobs:
package-name: amplify_analytics_pinpoint_example
working-directory: packages/analytics/amplify_analytics_pinpoint/example
needs-aws-config: true
needs-gen2-config: false
e2e_web_test:
needs: [test]
uses: ./.github/workflows/e2e_web.yaml
Expand All @@ -181,6 +184,7 @@ jobs:
package-name: amplify_analytics_pinpoint_example
working-directory: packages/analytics/amplify_analytics_pinpoint/example
needs-aws-config: true
needs-gen2-config: false
e2e_linux_test:
needs: [test]
uses: ./.github/workflows/e2e_linux.yaml
Expand All @@ -189,6 +193,7 @@ jobs:
package-name: amplify_analytics_pinpoint_example
working-directory: packages/analytics/amplify_analytics_pinpoint/example
needs-aws-config: true
needs-gen2-config: false
e2e_windows_test:
needs: [test]
uses: ./.github/workflows/e2e_windows.yaml
Expand All @@ -197,3 +202,4 @@ jobs:
package-name: amplify_analytics_pinpoint_example
working-directory: packages/analytics/amplify_analytics_pinpoint/example
needs-aws-config: true
needs-gen2-config: false
1 change: 1 addition & 0 deletions .github/workflows/amplify_api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/amplify_api_dart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ on:
- 'packages/aws_signature_v4/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/amplify_api_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down Expand Up @@ -169,6 +170,7 @@ jobs:
package-name: amplify_api_example
working-directory: packages/api/amplify_api/example
needs-aws-config: true
needs-gen2-config: false
e2e_ios_test:
needs: [test]
uses: ./.github/workflows/e2e_ios.yaml
Expand All @@ -177,6 +179,7 @@ jobs:
package-name: amplify_api_example
working-directory: packages/api/amplify_api/example
needs-aws-config: true
needs-gen2-config: false
e2e_web_test:
needs: [test]
uses: ./.github/workflows/e2e_web.yaml
Expand All @@ -185,6 +188,7 @@ jobs:
package-name: amplify_api_example
working-directory: packages/api/amplify_api/example
needs-aws-config: true
needs-gen2-config: false
e2e_linux_test:
needs: [test]
uses: ./.github/workflows/e2e_linux.yaml
Expand All @@ -193,6 +197,7 @@ jobs:
package-name: amplify_api_example
working-directory: packages/api/amplify_api/example
needs-aws-config: true
needs-gen2-config: false
e2e_windows_test:
needs: [test]
uses: ./.github/workflows/e2e_windows.yaml
Expand All @@ -201,3 +206,4 @@ jobs:
package-name: amplify_api_example
working-directory: packages/api/amplify_api/example
needs-aws-config: true
needs-gen2-config: false
1 change: 1 addition & 0 deletions .github/workflows/amplify_auth_cognito.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amplify_auth_cognito_android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches:
- main
- stable
- next
pull_request:
paths:
- 'packages/auth/amplify_auth_cognito/**/*.yaml'
Expand All @@ -15,6 +14,7 @@ on:
- '.github/workflows/amplify_auth_cognito_android.yaml'
schedule:
- cron: "0 0 * * 0" # Every Sunday at 00:00
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/amplify_auth_cognito_dart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/amplify_auth_cognito_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down Expand Up @@ -177,6 +178,7 @@ jobs:
package-name: amplify_auth_cognito_example
working-directory: packages/auth/amplify_auth_cognito/example
needs-aws-config: true
needs-gen2-config: false
e2e_ios_test:
needs: [test]
uses: ./.github/workflows/e2e_ios.yaml
Expand All @@ -185,6 +187,7 @@ jobs:
package-name: amplify_auth_cognito_example
working-directory: packages/auth/amplify_auth_cognito/example
needs-aws-config: true
needs-gen2-config: false
e2e_web_test:
needs: [test]
uses: ./.github/workflows/e2e_web.yaml
Expand All @@ -193,6 +196,7 @@ jobs:
package-name: amplify_auth_cognito_example
working-directory: packages/auth/amplify_auth_cognito/example
needs-aws-config: true
needs-gen2-config: false
e2e_linux_test:
needs: [test]
uses: ./.github/workflows/e2e_linux.yaml
Expand All @@ -201,6 +205,7 @@ jobs:
package-name: amplify_auth_cognito_example
working-directory: packages/auth/amplify_auth_cognito/example
needs-aws-config: true
needs-gen2-config: false
e2e_windows_test:
needs: [test]
uses: ./.github/workflows/e2e_windows.yaml
Expand All @@ -209,3 +214,4 @@ jobs:
package-name: amplify_auth_cognito_example
working-directory: packages/auth/amplify_auth_cognito/example
needs-aws-config: true
needs-gen2-config: false
1 change: 1 addition & 0 deletions .github/workflows/amplify_auth_cognito_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/amplify_authenticator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/amplify_authenticator_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ on:
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down Expand Up @@ -169,6 +170,7 @@ jobs:
package-name: amplify_authenticator_example
working-directory: packages/authenticator/amplify_authenticator/example
needs-aws-config: true
needs-gen2-config: false
e2e_ios_test:
needs: [test]
uses: ./.github/workflows/e2e_ios.yaml
Expand All @@ -177,6 +179,7 @@ jobs:
package-name: amplify_authenticator_example
working-directory: packages/authenticator/amplify_authenticator/example
needs-aws-config: true
needs-gen2-config: false
e2e_web_test:
needs: [test]
uses: ./.github/workflows/e2e_web.yaml
Expand All @@ -185,6 +188,7 @@ jobs:
package-name: amplify_authenticator_example
working-directory: packages/authenticator/amplify_authenticator/example
needs-aws-config: true
needs-gen2-config: false
e2e_linux_test:
needs: [test]
uses: ./.github/workflows/e2e_linux.yaml
Expand All @@ -193,6 +197,7 @@ jobs:
package-name: amplify_authenticator_example
working-directory: packages/authenticator/amplify_authenticator/example
needs-aws-config: true
needs-gen2-config: false
e2e_windows_test:
needs: [test]
uses: ./.github/workflows/e2e_windows.yaml
Expand All @@ -201,3 +206,4 @@ jobs:
package-name: amplify_authenticator_example
working-directory: packages/authenticator/amplify_authenticator/example
needs-aws-config: true
needs-gen2-config: false
1 change: 1 addition & 0 deletions .github/workflows/amplify_core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ on:
- 'packages/aws_signature_v4/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
Expand Down
Loading
Loading