Skip to content

Commit af6714f

Browse files
update docusaurus from 3.0.1 to 3.4.0 (#1490)
* update docusaurus from 3.0.1 to 3.4.0 * fix some broken links * fixes incorrect links * adds text change to test link * changes anchor text * fixes culprit link breaking build --------- Co-authored-by: zachary painter <[email protected]>
1 parent d7b09d2 commit af6714f

File tree

7 files changed

+1532
-1406
lines changed

7 files changed

+1532
-1406
lines changed

content/docs/capabilities/routing.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Once a Route is created, the Metric Name field will populate. You can use this n
8484
- https://b.example.com
8585
```
8686
87-
A load balancing weight may be associated with a particular upstream by appending `,[weight]` to the URL. The exact behavior depends on your [`lb_policy`](/docs/reference/routes/load-balancing#load-balancing-policy) setting. See [Load Balancing](@site/content/docs/capabilities/load-balancing.md) for example [configurations](@site/content/docs/capabilities/load-balancing.md#load-balancing-weight).
87+
A load balancing weight may be associated with a particular upstream by appending `,[weight]` to the URL. The exact behavior depends on your [`lb_policy`](/docs/reference/routes/load-balancing#load-balancing-policy) setting. See [Load Balancing](/docs/capabilities/load-balancing) for example [configurations](/docs/capabilities/load-balancing#load-balancing-weight).
8888

8989
Must be `tcp` if `from` is `tcp+https`.
9090

content/docs/core/upgrading.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,10 @@ For Open Source, please use IdP Claims passed by your IdP.
271271
- [Okta](https://developer.okta.com/docs/guides/customize-tokens-groups-claim/main)
272272
- [Auth0](https://auth0.com/docs/customize/extensions/authorization-extension/configure-authorization-extension#add-authorization-information-to-the-token-issued)
273273
- [Azure](https://learn.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-fed-group-claims)
274-
- [Cognito](/docs/identity-providers/cognito.html#group-based-policies)
274+
- [Cognito](/docs/identity-providers/cognito##getting-groups)
275275
- You may need adjust requested scopes via `idp_scopes` config option.
276276
- visit your authenticate endpoint `/.pomerium` route to check the group claims are passed by your IdP.
277-
- use `claim/` [PPL criteria](/docs/capabilities/ppl.html#criteria)
277+
- use `claim/` [PPL criteria](/docs/capabilities/ppl#criteria)
278278

279279
```yaml
280280
routes:
@@ -447,7 +447,7 @@ With the v0.13 release, routes may contain [multiple `to` URLs](/docs/reference/
447447
- Configurable [load balancing policies](/docs/reference/routes/load-balancing#load-balancing-policy)
448448
- Configurable [load balancing weight](/docs/reference/routes/to)
449449

450-
See [Load Balancing](@site/content/docs/capabilities/load-balancing.md) for more information on using this feature set.
450+
See [Load Balancing](/docs/capabilities/load-balancing) for more information on using this feature set.
451451

452452
#### Dynamic certificate updates
453453

content/docs/courses/fundamentals/zero-advanced-routes.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Make sure you’ve completed the following guides:
1717

1818
- [**Build a Simple Route**](/docs/courses/fundamentals/zero-build-routes)
1919
- [**Build a Simple Policy**](/docs/courses/fundamentals/zero-build-policies)
20-
- [**Single Sign-on with JWTs**](/docs/courses/fundamentals/zero-single-sign-on)
20+
- [**Single Sign-on (SSO)**](/docs/courses/fundamentals/zero-single-sign-on)
2121
- [**Build Advanced Policies**](/docs/courses/fundamentals/zero-advanced-policies)
2222

2323
Each tutorial builds on the same configuration files. In this tutorial, you’ll build new routes with some of Pomerium’s route-level settings.
@@ -62,7 +62,7 @@ Save your route and apply your changeset.
6262

6363
### Pass identity headers (per route)
6464

65-
[Pass Identity Headers](/docs/reference/routes/pass-identity-headers-per-route) is a route-level setting that forwards the user's JWT to the upstream application in a signed HTTP header. The HTTP header must use the (case insensitive) `x-pomerium-jwt-assertion` format. You configured this setting in the [previous guide](docs/courses/fundamentals/zero-single-sign-on), but let's see how it looks as a request header.
65+
[Pass Identity Headers](/docs/reference/routes/pass-identity-headers-per-route) is a route-level setting that forwards the user's JWT to the upstream application in a signed HTTP header. The HTTP header must use the (case insensitive) `x-pomerium-jwt-assertion` format. You configured this setting in the [previous guide](/docs/courses/fundamentals/zero-single-sign-on), but let's see how it looks as a request header.
6666

6767
In the Zero Console:
6868

content/docs/internals/connection.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Different timeouts apply at various stages of the connection lifecycle:
7070

7171
- **Request timeout**: This timeout applies to the total time a request can take, which includes connection establishment, request forwarding, processing at the upstream service, and response forwarding. If a complete response is not received within the set timeout, Pomerium will return an error to the client. This timeout can be configured via the [`timeout_write`](/docs/reference/global-timeouts) parameter. It may need adjustment, for instance, when handling large uploads.
7272

73-
- **Upstream timeout**: This timeout applies to the time a request takes to travel from Pomerium to the upstream service and back. It can be configured per-route via the [`timeout`](/docs/reference/routes/timeouts#route-timeout) parameter and is considered part of the request timeout. By default, it aligns with the global [`default_upstream_timeout`](docs/reference/default-upstream-timeout) setting.
73+
- **Upstream timeout**: This timeout applies to the time a request takes to travel from Pomerium to the upstream service and back. It can be configured per-route via the [`timeout`](/docs/reference/routes/timeouts#route-timeout) parameter and is considered part of the request timeout. By default, it aligns with the global [`default_upstream_timeout`](/docs/reference/default-upstream-timeout) setting.
7474

7575
![Example of HTTP request lifecycle and timeout settings](./img/timeouts-http-request/timeouts-http-diagram.png)
7676

content/docs/reference/routes/to.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Multiple upstream resources can be targeted by using a list instead of a single
7171
7272
### Set load balancing weight
7373
74-
A load balancing weight may be associated with a particular upstream by appending `,[weight]` to the URL. The exact behavior depends on your [`lb_policy`](/docs/reference/routes/load-balancing#load-balancing-policy) setting. See [Load Balancing](@site/content/docs/capabilities/load-balancing.md) for example [configurations](@site/content/docs/capabilities/load-balancing.md#load-balancing-weight).
74+
A load balancing weight may be associated with a particular upstream by appending `,[weight]` to the URL. The exact behavior depends on your [`lb_policy`](/docs/reference/routes/load-balancing#load-balancing-policy) setting. See [Load Balancing](/docs/capabilities/load-balancing) for example [configurations](/docs/capabilities/load-balancing#load-balancing-weight).
7575

7676
```yaml
7777
- from: https://example.com

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"format-check": "prettier --check ."
1818
},
1919
"dependencies": {
20-
"@docusaurus/core": "^3.0.1",
21-
"@docusaurus/preset-classic": "^3.0.1",
22-
"@docusaurus/theme-common": "^3.0.1",
23-
"@docusaurus/theme-mermaid": "3.0.1",
24-
"@docusaurus/types": "^3.0.1",
20+
"@docusaurus/core": "^3.4.0",
21+
"@docusaurus/preset-classic": "^3.4.0",
22+
"@docusaurus/theme-common": "^3.4.0",
23+
"@docusaurus/theme-mermaid": "^3.4.0",
24+
"@docusaurus/types": "^3.4.0",
2525
"@emotion/react": "^11.11.3",
2626
"@emotion/styled": "^11.11.0",
2727
"@mdx-js/react": "^3.0.0",

0 commit comments

Comments
 (0)