-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Webhook Event Log (#3197) * add webhookEventLogConfiguration to system config * document webhook_event_log_viewer role * doc for retrieving webhook event log APIs * document webhook event log admin UI * Document new login intent TTL (#3129) * add doc for new loginIntent TTL * add doc for fusionauth.li cookie * add release notes for SSO Zone changes * adjust known issue comment * java 21 note (#3250) * java 21 note * wording * oops * Added additional release notes. * correct since version for loginIntentTimeToLiveInSeconds * Added login lambda doc * 1. Fix Known Issues to follow the existing format. 2. Add missing Docker image removal. 3. Move new lambda function from Changed to New. 4. Move new action buttons from Changed to Enhancements. Changed should be reserved for things that will potentially affect integrations. 5. Normalize "Update dependencies." and "Update 3rd party dependencies." 6. Expand upon the potential impact to the connection pool changes. 7. Correct formatting in release notes for 1.50.0. 8. Use the correct form of BreadCrumbs. * 1. We don't serialize `null` values in a JSON response, so we should not document `null`, instead we should indicate when a field will be omitted from the response. 2. Be more consistent with the definition of the Id. 3. Delete dead imports (EventTypes and InlineField) in _webhook-attempt-log-response-body-base.mdx. * 1. Remove duplicate assignment copy. 2. Don't mention the LoginLambdaValidationContext, this is an internal object. 3. context is read only. 4. Mention when identityProvider is found in the context. 5. Fix broken link to error doc. 6. Don't use fully qualified URLS to docs, use relative links. 7. Remove trailing comma on JSON example 7. Discuss localization. * Remove SCIM, this was actually updated last release. #3248 * Various copy and formatting edits. * - Add tenant.lambdaConfiguration.loginValidationId to Tenant API - Rename LambdaTypeApi -> LambdaTypeAPI - Describe the behavior differences in optional messages for themes in 1.53.0. * Add new lambda field to the tenants overview. * document since version for webhook_event_log_viewer role * Update astro/src/content/docs/extend/code/lambdas/login-validation.mdx Co-authored-by: Dan Moore <[email protected]> * Fix formatting for DeprecatedSince to work in APIField and inline usages. * Small wording changes. * - Fix formatting with RemovedSince, AvailableSince, BeforeVersion and DeprecatedSince - Remove old system config reference - Remove dead imports * Add Known Issues. * Added 1.53.1 release notes. * Shrink images --------- Co-authored-by: Spencer Witt <[email protected]> Co-authored-by: Lyle Schemmerling <[email protected]> Co-authored-by: Lyle Schemmerling <[email protected]> Co-authored-by: Andy Pai <[email protected]> Co-authored-by: Daniel DeGroff <[email protected]> Co-authored-by: Dan Moore <[email protected]> Co-authored-by: andrewpai <[email protected]>
- Loading branch information
1 parent
cf81807
commit 5ab93a1
Showing
75 changed files
with
994 additions
and
1,821 deletions.
There are no files selected for viewing
Binary file added
BIN
+162 KB
astro/public/img/docs/extend/events-and-webhooks/manage-webhook-event-source.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+83 KB
astro/public/img/docs/extend/events-and-webhooks/manage-webhook-event.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+90.8 KB
astro/public/img/docs/extend/events-and-webhooks/webhook-event-log-list.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+118 KB
astro/public/img/docs/extend/events-and-webhooks/webhook-event-log-settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+3.34 KB
(100%)
...lic/img/docs/get-started/core-concepts/tenant-configuration-extId-durations.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
--- | ||
interface Props { | ||
since: string; | ||
inline: boolean, | ||
since: string | ||
} | ||
const { since }: Props = Astro.props; | ||
const { inline, since }: Props = Astro.props; | ||
if (!since) { | ||
throw new Error("No since field"); | ||
} | ||
let classList = 'text-green-500 text-sm italic'; | ||
if (inline) { | ||
classList = 'pl-3 ' + classList; | ||
} | ||
--- | ||
<span class="px-3 text-green-500 text-sm italic">Available since {since}</span> | ||
<span class={classList}>Available since {since}</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
interface Props { | ||
version: string; | ||
} | ||
const { version }: Props = Astro.props; | ||
if (!version) { | ||
throw new Error("No version field"); | ||
} | ||
const hasContent = Astro.slots.has("default"); | ||
--- | ||
{ version && <span class="text-green-500 text-sm italic">Before version {version}</span> | ||
<> | ||
{hasContent && | ||
<div class="prose-p:mt-1"><slot></slot></div> | ||
} | ||
</> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,20 @@ | ||
--- | ||
interface Props { | ||
since: string; | ||
inline: boolean, | ||
since: string | ||
} | ||
const { since }: Props = Astro.props; | ||
const { inline, since }: Props = Astro.props; | ||
const hasContent = Astro.slots.has("default"); | ||
let classList = 'text-red-700 italic'; | ||
if (inline) { | ||
classList = 'pl-3 ' + classList; | ||
} | ||
--- | ||
{ since && <span class="pl-3 text-red-700 italic">Deprecated since {since}</span> } | ||
{ since && <span class={classList}>Deprecated since {since}</span> | ||
<> | ||
{hasContent && | ||
<div class="prose-p:mt-1"><slot></slot></div> | ||
} | ||
</> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,20 @@ | ||
--- | ||
interface Props { | ||
since: string; | ||
inline: boolean, | ||
since: string | ||
} | ||
const { since }: Props = Astro.props; | ||
const { inline, since }: Props = Astro.props; | ||
const hasContent = Astro.slots.has("default"); | ||
let classList = 'text-red-700 italic'; | ||
if (inline) { | ||
classList = 'pl-3 ' + classList; | ||
} | ||
--- | ||
{ since && <span class="pl-3 text-red-700 italic">Removed in {since}</span> } | ||
{ since && <span class={classList}>Removed in {since}</span> | ||
<> | ||
{hasContent && | ||
<div class="prose-p:mt-1"><slot></slot></div> | ||
} | ||
</> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.