Skip to content

Commit

Permalink
Release notes for 1.53.2 (FusionAuth#3269)
Browse files Browse the repository at this point in the history
* Release notes for 1.53.2

* Feedback from PR

* Feedback from PR
  • Loading branch information
robotdan authored Sep 13, 2024
1 parent 596e3ca commit 3821451
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
export interface Props {
resolvedIn: string;
viaIssue: string;
}
const { resolvedIn, viaIssue } = Astro.props as Props;
---
<Fragment>
<slot></slot>
<ul>
<li>
Resolved in version <code>{resolvedIn}</code> via <a target="_" href={`https://github.com/FusionAuth/fusionauth-issues/issues/${viaIssue}`}>GitHub Issue #{viaIssue}</a>
</li>
</ul>
</Fragment>
15 changes: 15 additions & 0 deletions astro/src/components/docs/release-notes/ReleaseNotesIssue.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
export interface Props {
issue: string;
}
const { issue } = Astro.props as Props;
---
<Fragment>
<slot></slot>
<ul>
<li>
Resolves <a target="_" href={`https://github.com/FusionAuth/fusionauth-issues/issues/${issue}`}>GitHub Issue #{issue}</a>
</li>
</ul>
</Fragment>
22 changes: 18 additions & 4 deletions astro/src/content/docs/release-notes/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import InlineUIElement from 'src/components/InlineUIElement.astro';
import ReleaseNotesSelector from 'src/components/docs/release-notes/ReleaseNotesSelector.astro';
import ReleaseNoteHeading from 'src/components/docs/release-notes/ReleaseNoteHeading.astro';
import InlineField from 'src/components/InlineField.astro';
import Issue from 'src/components/docs/release-notes/ReleaseNotesIssue.astro';
import IssueResolvedVia from 'src/components/docs/release-notes/ReleaseNoteIssueResolvedVia.astro';

<ReleaseNotesSelector />

Expand All @@ -35,19 +37,31 @@ import InlineField from 'src/components/InlineField.astro';

Looking for release notes older than 1.23.0? Look in the [release notes archive](/docs/release-notes/archive). Looking to be [notified of new releases?](/docs/operate/roadmap/releases#release-notifications) <span class="not-prose no-underline"><a class="ml-2" href="/docs/releases.xml"><i class="fas fa-xs fa-rss text-orange-700 text-2xl" width="50px" /></a></span>

<ReleaseNoteHeading version='1.53.2' releaseDate='September 12, 2024'/>

### Security
* <Issue issue="2868">Improvements to better defend against XSS (Cross-Site Scripting) attacks.</Issue>

### Fixed
* <Issue issue="2863">The `kickstart.success` event may not fire correctly after Kickstart completes due to a timing issue when creating the webhook in your Kickstart definition.</Issue>
* <Issue issue="2865">Navigating to the <Breadcrumb>System -> About</Breadcrumb> page in the FusionAuth admin UI may fail to render if you start up without an internet connection.</Issue>
* <Issue issue="2871">
Navigating to the <Breadcrumb>System -> Webhook Log</Breadcrumb> in the FusionAuth admin UI may display a general error and fail to return search results if there are any events of type `user.login.failed` displayed.

You may work around this issue by selecting a specific event type, or narrowing the scope of the results by using any of the additional search criteria found in the Advanced search controls.
</Issue>

<ReleaseNoteHeading version='1.53.1' releaseDate='September 6, 2024'/>

### Fixed
* A user may fail to enroll a new Passkey (WebAuthn credential) used for reauthentication during a login workflow. Previously configured Passkeys should continue to work as expected. This bug was introduced in version `1.53.0`.
* Resolves [GitHub Issue #2861](https://github.com/FusionAuth/fusionauth-issues/issues/2861)
* <Issue issue="2861">A user may fail to enroll a new Passkey (WebAuthn credential) used for reauthentication during a login workflow. Previously configured Passkeys should continue to work as expected. This bug was introduced in version `1.53.0`.</Issue>

<ReleaseNoteHeading version='1.53.0' releaseDate='September 5, 2024' name='Lambda Llama'/>

<DatabaseMigrationWarning />

### Known Issues
* A user may fail to enroll a new Passkey (WebAuthn credential) used for reauthentication during a login workflow. Previously configured Passkeys should continue to work as expected.
* Resolved in version `1.53.1` via [GitHub Issue #2861](https://github.com/FusionAuth/fusionauth-issues/issues/2861)
* <IssueResolvedVia resolvedIn="1.53.1" viaIssue="2861">A user may fail to enroll a new Passkey (WebAuthn credential) used for reauthentication during a login workflow. Previously configured Passkeys should continue to work as expected.</IssueResolvedVia>

### Changed
* The Docker image for the `linux/arm/v7` architecture is not being published for this release.
Expand Down

0 comments on commit 3821451

Please sign in to comment.