Skip to content

Commit dbceb8a

Browse files
committed
[Docs Site] Migrate CF1 release notes to changelog
1 parent 3bd7c03 commit dbceb8a

File tree

73 files changed

+699
-65
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+699
-65
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
import { getChangelogs, type GetChangelogsOptions } from "~/util/changelog";
3+
import { reference } from "astro:content";
4+
import { z } from "astro:schema";
5+
import { getCollection } from "astro:content";
6+
7+
const props = z.object({
8+
products: z.array(reference("products")),
9+
}).or(z.object({
10+
area: z.string()
11+
}));
12+
13+
const input = await props.parseAsync(Astro.props);
14+
15+
let filter: GetChangelogsOptions["filter"];
16+
17+
if ("products" in input) {
18+
filter = (e) => {
19+
return e.data.products.some((x) => input.products.some((y) => x.id === y.id))
20+
}
21+
} else {
22+
const products = await getCollection("products", (e) => {
23+
return e.data.product.group === input.area;
24+
});
25+
26+
filter = (e) => {
27+
return e.data.products.some((x) => products.some((y) => x.id === y.id))
28+
}
29+
}
30+
31+
const changelogs = await getChangelogs({ filter });
32+
---
33+
34+
{
35+
changelogs.map((entry) => (
36+
<h3>{entry.data.date.toISOString().slice(0, 10)}</h3>
37+
<h4>{entry.data.description}</h4>
38+
<p>For more information, refer to the <a href={entry.data.link}>dedicated changelog post</a>.</p>
39+
))
40+
}

src/components/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ export { default as PagesBuildPresetsTable } from "./PagesBuildPresetsTable.astr
3838
export { default as PagesLanguageSupport } from "./PagesLanguageSupport.astro";
3939
export { default as Plan } from "./Plan.astro";
4040
export { default as PlanInfo } from "./PlanInfo.astro";
41-
export { default as ProductReleaseNotes } from "./ProductReleaseNotes.astro";
41+
export { default as ProductChangelog } from "./ProductChangelog.astro";
4242
export { default as ProductFeatures } from "./ProductFeatures.astro";
43+
export { default as ProductReleaseNotes } from "./ProductReleaseNotes.astro";
4344
export { default as ProductsByTag } from "./ProductsByTag.astro";
4445
export { default as PublicStats } from "./PublicStats.astro";
4546
export { default as RelatedProduct } from "./RelatedProduct.astro";
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Custom block pages for Access applications
3+
description: Custom block pages for Access applications
4+
date: 2023-06-23T00:00:00.000Z
5+
products:
6+
- access
7+
---
8+
9+
Allow Access admins to customize the block pages presented by Access to end users.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Azure AD authentication contexts
3+
description: Azure AD authentication contexts
4+
date: 2023-08-02T00:00:00.000Z
5+
products:
6+
- access
7+
---
8+
9+
Support Azure AD authentication contexts directly in Access policies.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Custom OIDC claims for named IdPs
3+
description: Custom OIDC claims for named IdPs
4+
date: 2023-09-08T00:00:00.000Z
5+
products:
6+
- access
7+
---
8+
9+
Access admins can now add custom claims to the existing named IdP providers. Previously this was locked to the generic OIDC provider.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: App launcher customization
3+
description: App launcher customization
4+
date: 2023-09-15T00:00:00.000Z
5+
products:
6+
- access
7+
---
8+
9+
Allow Access admins to configure the App Launcher page within Zero Trust.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: App launcher supports tags and filters
3+
description: App launcher supports tags and filters
4+
date: 2023-09-15T00:00:00.000Z
5+
products:
6+
- access
7+
---
8+
9+
Access admins can now tag applications and allow users to filter by those tags in the App Launcher.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: View active Access user identities in the dashboard and API
3+
description: View active Access user identities in the dashboard and API
4+
date: 2023-09-15T00:00:00.000Z
5+
products:
6+
- access
7+
---
8+
9+
Access admins can now view the full contents of a user's identity and device information for all active application sessions.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Default relay state support in Access for SaaS
3+
description: Default relay state support in Access for SaaS
4+
date: 2023-12-15T00:00:00.000Z
5+
products:
6+
- access
7+
---
8+
9+
Allows Access admins to set a default relay state on Access for SaaS apps.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Unique Entity IDs in Access for SaaS
3+
description: Unique Entity IDs in Access for SaaS
4+
date: 2023-12-20T00:00:00.000Z
5+
products:
6+
- access
7+
---
8+
9+
All new Access for SaaS applications have unique Entity IDs. This allows for multiple integrations with the same SaaS provider if required. The unique Entity ID has the application audience tag appended. Existing apps are unchanged.

0 commit comments

Comments
 (0)