From 0e8316b0ce568a2562dc45cdd3f58915caa660cc Mon Sep 17 00:00:00 2001 From: "megha.joshi" Date: Thu, 9 Jul 2026 11:35:30 +0530 Subject: [PATCH 1/5] added release note for 1.0.0-BETA-RC5 --- .../release-version-1/version-1-0-x/1.0.0-beta.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx b/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx index 9174ad1..4fb8c21 100644 --- a/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx +++ b/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx @@ -65,7 +65,11 @@ For details about the technology stack upgrades, refer to [Technology Stack](/te - + + - ### Widget labels not refreshing on locale change + + Fixed widgets and navigation components not updating translated labels immediately when the locale is changed via `i18nService.setSelectedLocale(locale)`, requiring an application reload. + From f69eaee11f3346af5e6d85487a31fc77e5cbdd64 Mon Sep 17 00:00:00 2001 From: "@pavan.dussa" Date: Mon, 13 Jul 2026 10:49:57 +0530 Subject: [PATCH 2/5] Added RC6 release notes for AI chat updates --- .../version-1-0-x/1.0.0-beta.mdx | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx b/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx index 4fb8c21..8f0a82a 100644 --- a/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx +++ b/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx @@ -19,11 +19,23 @@ For details about the technology stack upgrades, refer to [Technology Stack](/te - + + - ### Restore conversation to a previous checkpoint in AI chat + + You can now restore an AI chat conversation to any previously saved checkpoint, permanently removing all messages, agent interactions, tool executions, and changes made after that point so you can continue from the selected state. + - + + - ### Enhanced AI chat experience with improved suggestions, icons, and notifications + + Improves the AI chat experience with hover-highlighted suggestions, quick-access side popovers, updated icons and copy feedback, Studio-aligned notifications, and support for custom chat events such as context compaction. + + - ### Improved subagent header with task descriptions in AI chat + + The AI chat subagent header now displays a descriptive task title alongside the agent name, making it easier to follow what each subagent is working on. + From 2f110a064834cec2f4154c17d71fe69604d3a2a3 Mon Sep 17 00:00:00 2001 From: mayankPrakashWavemaker Date: Tue, 14 Jul 2026 14:41:28 +0530 Subject: [PATCH 3/5] Add workflow to comment on PR when a check fails Amplify's preview check and other check runs don't otherwise notify the PR author on failure; commenting on the PR triggers their default GitHub notification since they're a participant on their own thread. --- .github/workflows/notify-failed-checks.yaml | 36 +++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/notify-failed-checks.yaml diff --git a/.github/workflows/notify-failed-checks.yaml b/.github/workflows/notify-failed-checks.yaml new file mode 100644 index 0000000..196857b --- /dev/null +++ b/.github/workflows/notify-failed-checks.yaml @@ -0,0 +1,36 @@ +name: Notify on failed check + +on: + check_run: + types: [completed] + +permissions: + pull-requests: write + +jobs: + notify: + name: notify-on-failed-check + if: github.event.check_run.conclusion == 'failure' && github.event.check_run.name != 'notify-on-failed-check' + runs-on: ubuntu-latest + steps: + - name: Comment on the PR author's check failure + uses: actions/github-script@v7 + with: + script: | + const checkRun = context.payload.check_run; + const pullRequests = checkRun.pull_requests || []; + + for (const pr of pullRequests) { + const { data: pullRequest } = await github.rest.pulls.get({ + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: pr.number, + }); + + await github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: pr.number, + body: `⚠️ @${pullRequest.user.login} the check **${checkRun.name}** failed. [View details](${checkRun.details_url})`, + }); + } From 0c6f12c28af3f22474456ade45b91230f2d4f9ca Mon Sep 17 00:00:00 2001 From: mayankPrakashWavemaker Date: Tue, 14 Jul 2026 15:43:35 +0530 Subject: [PATCH 4/5] Mention shahatWM on failed check notifications --- .github/workflows/notify-failed-checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify-failed-checks.yaml b/.github/workflows/notify-failed-checks.yaml index 196857b..3e4b1d3 100644 --- a/.github/workflows/notify-failed-checks.yaml +++ b/.github/workflows/notify-failed-checks.yaml @@ -31,6 +31,6 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, issue_number: pr.number, - body: `⚠️ @${pullRequest.user.login} the check **${checkRun.name}** failed. [View details](${checkRun.details_url})`, + body: `⚠️ @${pullRequest.user.login} deployment on ${checkRun.name} failed. [View details](${checkRun.details_url})\n\ncc @shahatWM — this PR preview failed, please check with the author.`, }); } From ea55cc6f6d14327f1e1ea1bfe8ab70153e5114c3 Mon Sep 17 00:00:00 2001 From: Karthik Ragula Date: Tue, 14 Jul 2026 10:39:30 +0530 Subject: [PATCH 5/5] Added enhancements to RC6 release notes covering i18n enhancements --- .../release-version-1/version-1-0-x/1.0.0-beta.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx b/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx index 8f0a82a..f960bf0 100644 --- a/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx +++ b/docs/release-notes/release-version-1/version-1-0-x/1.0.0-beta.mdx @@ -35,6 +35,12 @@ For details about the technology stack upgrades, refer to [Technology Stack](/te - ### Improved subagent header with task descriptions in AI chat The AI chat subagent header now displays a descriptive task title alongside the agent name, making it easier to follow what each subagent is working on. + + - ### Improved i18n performance when localizing pages and adding new languages + + - Adding a new label to a page no longer requires loading every message across all languages just to check for duplicates. The check is now quick and targeted, so localizing pages uses less context and completes faster, even in apps with thousands of messages. + + - Adding a new language to your app now avoids reloading existing content from scratch each time. It's loaded once and shared across every language you add, whether together or one after another, using far less context.