Skip to content

Commit 285809f

Browse files
aws-amplify-opsHuiSFtiffanynwyeungJay2113dependabot[bot]
authored
chore: amplify-js api references update (#8316)
* chore: add decode cookie value strings note to SSR example (#8300) * chore: fix broken maplibre links (#8301) * chore: update secrets path ref (#8298) * chore: add callout about committing amplify config files for expo eas build (#8274) * chore: add callout about committing amplify config files for expo eas build * chore: expand the callout for not push amplify_outputs to remote repo * chore(deps): bump actions/upload-artifact from 4.6.0 to 4.6.2 (#8307) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.0 to 4.6.2. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@65c4c4a...ea165f8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump actions/setup-node from 4.2.0 to 4.3.0 (#8306) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4.2.0 to 4.3.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@1d0ff46...cdca736) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * feat: add retry strategy for api-rest category (#8295) * fix: Remove reference to using default with enum (#8311) * fix(storage): update instructions for adding external S3 buckets to Amplify (#8289) * fix(storage): update instructions for adding/integrating with external S3 buckets * rewrite examples, add user identity ID config, add examples for configuring storage without Amplify backend * address feedback, align some wording * reorder guest and auth'd user examples, update backend code examples to use CDK bucket construct * address feedback * update callout for adding existing bucket and amplify storage together, revert callout on owners example section * adjust headings, add heading before examples for better linking * chore: bump next version (#8313) * chore(deps): bump aws-actions/configure-aws-credentials (#8276) Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) from 4.0.3 to 4.1.0. - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](aws-actions/configure-aws-credentials@4fc4975...ececac1) --- updated-dependencies: - dependency-name: aws-actions/configure-aws-credentials dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump aws-actions/aws-secretsmanager-get-secrets (#8278) Bumps [aws-actions/aws-secretsmanager-get-secrets](https://github.com/aws-actions/aws-secretsmanager-get-secrets) from 2.0.7 to 2.0.8. - [Release notes](https://github.com/aws-actions/aws-secretsmanager-get-secrets/releases) - [Commits](aws-actions/aws-secretsmanager-get-secrets@1d6311a...fbd65ea) --- updated-dependencies: - dependency-name: aws-actions/aws-secretsmanager-get-secrets dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * docs: update custom message with admincreateuser specifics (#8314) * chore: Update amplify-js API references * commit to trigger workflow * add pre-prod/main to workflows --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Hui Zhao <[email protected]> Co-authored-by: Tiffany Yeung <[email protected]> Co-authored-by: Jay Raval <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: aadimch <[email protected]> Co-authored-by: Aaron S. <[email protected]> Co-authored-by: James Jarvis <[email protected]> Co-authored-by: aws-amplify-bot <[email protected]> Co-authored-by: ashika112 <[email protected]>
1 parent 7dfaa68 commit 285809f

File tree

32 files changed

+109688
-109106
lines changed

32 files changed

+109688
-109106
lines changed

.github/workflows/accessibility_scan.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Accessibility Scan
22
on:
33
pull_request:
4-
branches: [main]
4+
branches: [main, pre-prod/main]
55
types: [opened, synchronize]
66
env:
77
BUILD_DIR: 'client/www/next-build'
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout branch
1414
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
1515
- name: Setup Node.js 20
16-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
16+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
1717
with:
1818
node-version: 20.x
1919
- name: Install dependencies

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Test
22
on:
33
pull_request:
4-
branches: [main, next-release/main]
4+
branches: [main, next-release/main, pre-prod/main]
55
types: [opened, synchronize]
66
env:
77
BUILD_DIR: 'client/www/next-build'
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout Repo
1414
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1515
- name: Setup Node.js 20.x
16-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
16+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
1717
with:
1818
node-version: 20.x
1919
- name: Install Dependencies

.github/workflows/check_bundle_size.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
ref: main
1616
- name: Setup Node.js 20
17-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
17+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
1818
with:
1919
node-version: 20.x
2020
- name: Install dependencies
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
ref: ${{ github.head_ref }}
4040
- name: Setup Node.js 20
41-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
41+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
4242
with:
4343
node-version: 20.x
4444
- name: Install dependencies

.github/workflows/check_for_broken_links.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout repository
1414
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1515
- name: Setup Node.js 20
16-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
16+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
1717
with:
1818
node-version: 20.x
1919
- name: Install Dependencies
@@ -27,12 +27,12 @@ jobs:
2727
const { checkProdLinks } = require('./tasks/link-checker.js');
2828
return await checkProdLinks();
2929
- name: Configure AWS Credentials
30-
uses: aws-actions/configure-aws-credentials@4fc4975a852c8cd99761e2de1f4ba73402e44dd9 # v4.0.3
30+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
3131
with:
3232
role-to-assume: arn:aws:iam::464149486631:role/github_action_read_slack_webhook_url
3333
aws-region: us-west-2
3434
- name: Read secrets from AWS Secrets Manager into environment variables
35-
uses: aws-actions/aws-secretsmanager-get-secrets@1d6311ab61b4856de027ff508aac818ddc1e141b # v2.0.7
35+
uses: aws-actions/aws-secretsmanager-get-secrets@fbd65ea98e018858715f591f03b251f02b2316cb # v2.0.8
3636
with:
3737
secret-ids: |
3838
SLACK_WEBHOOK_URL

.github/workflows/check_for_console_errors.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout repository
1515
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1616
- name: Setup Node.js 20.x
17-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
17+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
1818
with:
1919
node-version: 20.x
2020
- name: Install Dependencies

.github/workflows/check_for_deleted_assets.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
echo ${{ env.PR_NUMBER }} >> $artifactName
3333
echo ${{ steps.set-deleted-files-count.outputs.result }} >> $artifactName
3434
- name: Upload the deleted assets file to artifacts
35-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
35+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
3636
with:
3737
name: ${{ env.ARTIFACT_NAME }}
3838
path: '${{ env.ARTIFACT_NAME }}.txt'

.github/workflows/check_for_new_fragments.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Block PRs with New Fragments
22
on:
33
pull_request:
4-
branches: [main]
4+
branches: [main, pre-prod/main]
55
jobs:
66
checkForNewFragments:
77
name: Check for new fragments

.github/workflows/check_for_redirects.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
echo ${{ env.PR_NUMBER }} >> $artifactName
3333
echo ${{ steps.set-deleted-files-count.outputs.result }} >> $artifactName
3434
- name: Upload the redirects file to artifacts
35-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
35+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
3636
with:
3737
name: ${{ env.ARTIFACT_NAME }}
3838
path: '${{ env.ARTIFACT_NAME }}.txt'

.github/workflows/check_pr_for_broken_links.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: CheckPRLinks
22
on:
33
pull_request:
4-
branches: [main]
4+
branches: [main, pre-prod/main]
55
types: [opened, synchronize]
66
env:
77
BUILD_DIR: 'client/www/next-build'
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout repository
1313
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1414
- name: Setup Node.js 20
15-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
15+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
1616
with:
1717
node-version: 20.x
1818
- name: Install Dependencies

.github/workflows/spellcheck.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Checkout repository
1212
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1313
- name: Setup Node.js 20
14-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
14+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
1515
with:
1616
node-version: 20.x
1717
- name: Install Dependencies

.github/workflows/validate_redirects.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout repository
1515
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1616
- name: Setup Node.js 20.x
17-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
17+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
1818
with:
1919
node-version: 20.x
2020
- name: Install Dependencies

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@docsearch/react": "3",
1616
"ajv": "^8.16.0",
1717
"aws-amplify": "^6.0.9",
18-
"next": "^14.2.18",
18+
"next": "^14.2.25",
1919
"next-image-export-optimizer": "^1.8.3",
2020
"next-transpile-modules": "^9.0.0",
2121
"parse-imports": "^1.1.0",

0 commit comments

Comments
 (0)