31b62f6b3b
website: bump typescript from 5.5.2 to 5.5.3 in /website ( #10326 )
...
Bumps [typescript](https://github.com/Microsoft/TypeScript ) from 5.5.2 to 5.5.3.
- [Release notes](https://github.com/Microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml )
- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.5.2...v5.5.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-02 12:14:03 +02:00
dca3391554
website: bump postcss from 8.4.38 to 8.4.39 in /website ( #10310 )
...
Bumps [postcss](https://github.com/postcss/postcss ) from 8.4.38 to 8.4.39.
- [Release notes](https://github.com/postcss/postcss/releases )
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/postcss/postcss/compare/8.4.38...8.4.39 )
---
updated-dependencies:
- dependency-name: postcss
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-01 11:13:34 +02:00
97a8d8ba60
root: allow extra sentry settings ( #10269 )
2024-06-28 12:29:29 +02:00
361765cd8d
core: adjust styling to meet our standards ( #10277 )
...
* core: adjust styling to meet our standards
* Fix version correspondence bug in website (#10278 )
web: update lockfile to correspond to package.json, enabling npm-ci
Looks like someone updated `package.json` to have the latest version
of Typescript, but failed to update `package-lock.json` to get that
version into the cache. `npm ci` won't work if the versions in the
two files don't correspond, as that means, well, exactly that: no
one has checked that the versioning is correct.
The actual diff to `package-lock.json` is small enough it can be
verified by eye, and it's fine.
2024-06-27 15:19:43 -07:00
cb4bc5bd87
web: lint package-lock.json file ( #10157 )
...
* web: fix esbuild issue with style sheets
Getting ESBuild, Lit, and Storybook to all agree on how to read and parse stylesheets is a serious
pain. This fix better identifies the value types (instances) being passed from various sources in
the repo to the three *different* kinds of style processors we're using (the native one, the
polyfill one, and whatever the heck Storybook does internally).
Falling back to using older CSS instantiating techniques one era at a time seems to do the trick.
It's ugly, but in the face of the aggressive styling we use to avoid Flashes of Unstyled Content
(FLoUC), it's the logic with which we're left.
In standard mode, the following warning appears on the console when running a Flow:
```
Autofocus processing was blocked because a document already has a focused element.
```
In compatibility mode, the following **error** appears on the console when running a Flow:
```
crawler-inject.js:1106 Uncaught TypeError: Failed to execute 'observe' on 'MutationObserver': parameter 1 is not of type 'Node'.
at initDomMutationObservers (crawler-inject.js:1106:18)
at crawler-inject.js:1114:24
at Array.forEach (<anonymous>)
at initDomMutationObservers (crawler-inject.js:1114:10)
at crawler-inject.js:1549:1
initDomMutationObservers @ crawler-inject.js:1106
(anonymous) @ crawler-inject.js:1114
initDomMutationObservers @ crawler-inject.js:1114
(anonymous) @ crawler-inject.js:1549
```
Despite this error, nothing seems to be broken and flows work as anticipated.
* web: replace ad-hoc test for package-lock.json file with a tool
Testing to see if a package-lock entry has a `resolved` field hasn't
been a reliable test of that entry's validity for several years
now. The best options we have now are to ensure that every download
occurs over https, and that every download only happens from fully
vetted sources such as NPM and Github. [Liran Tal's Lockfile-Lint
tool](https://snyk.io/blog/why-npm-lockfiles-can-be-a-security-blindspot-for-injecting-malicious-modules/ )
does this for package-lock.json files made with NPM or Yarn.
* web: update CI workflows to use `lockfile-lint` for validity checking
* Still getting familiar with the workflows thing.
* ci: refactor ci-web linting
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* ci fix
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* try again
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* and again
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* rework ci-website
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2024-06-27 10:42:59 -07:00
861992f576
web: provide a test framework ( #9681 )
...
* web: fix esbuild issue with style sheets
Getting ESBuild, Lit, and Storybook to all agree on how to read and parse stylesheets is a serious
pain. This fix better identifies the value types (instances) being passed from various sources in
the repo to the three *different* kinds of style processors we're using (the native one, the
polyfill one, and whatever the heck Storybook does internally).
Falling back to using older CSS instantiating techniques one era at a time seems to do the trick.
It's ugly, but in the face of the aggressive styling we use to avoid Flashes of Unstyled Content
(FLoUC), it's the logic with which we're left.
In standard mode, the following warning appears on the console when running a Flow:
```
Autofocus processing was blocked because a document already has a focused element.
```
In compatibility mode, the following **error** appears on the console when running a Flow:
```
crawler-inject.js:1106 Uncaught TypeError: Failed to execute 'observe' on 'MutationObserver': parameter 1 is not of type 'Node'.
at initDomMutationObservers (crawler-inject.js:1106:18)
at crawler-inject.js:1114:24
at Array.forEach (<anonymous>)
at initDomMutationObservers (crawler-inject.js:1114:10)
at crawler-inject.js:1549:1
initDomMutationObservers @ crawler-inject.js:1106
(anonymous) @ crawler-inject.js:1114
initDomMutationObservers @ crawler-inject.js:1114
(anonymous) @ crawler-inject.js:1549
```
Despite this error, nothing seems to be broken and flows work as anticipated.
* web: provide a test framework
As is typical of a system where a new build engine is involved, this thing is sadly fragile. Use the
wrong import style in wdio.conf.js and it breaks; there are several notes in tsconfig.test.conf and
wdio.conf.ts to tell eslint or tsc not to complain, it's just a different build with different
criteria, the native criteria don't apply.
On the other hand, writing tests is easy and predictable. We can test behaviors at the unit and
component scale in a straightforward manner, and validate our expectations that things work the way
we believe they should.
* Rolling back a reversion.
* Adjusting paths to work with tests.
* add ci to test
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* web: patch spotlight on the fly to fix syntax issue that blocked storybook build
This should be a temporary hack. I have an [open
issue](https://github.com/getsentry/spotlight/issues/419 ) and [pull
request](https://github.com/getsentry/spotlight/pull/420 ) with the
Spotlight people already to fix the issue.
* Somehow missed these in the merge.
* Merge missed something.
* Fixed an issue where npm install and npm ci had different shell script behaviors.
* Removed debugging messages.
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2024-06-27 10:17:06 -07:00
059f81735e
website/docs: update geoip and asn documentation following field changes ( #10265 )
...
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2024-06-27 15:09:23 +02:00
843431cfed
website/docs: update the Welcome page ( #10222 )
...
* update to mention Enterprise
* moved sections
* tweaks
---------
Co-authored-by: Tana M Berry <tana@goauthentik.com >
2024-06-26 07:55:07 -05:00
7cadcbfa06
website/docs: update geoip and asn example to use the proper syntax ( #10249 )
2024-06-26 08:40:41 -04:00
db5168480c
website/docs: remove RC disclaimer from 2024.6 release notes ( #10245 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2024-06-26 13:23:25 +02:00
3086d15f08
website/docs: update 2024.4 release notes with latest changes ( #10231 )
2024-06-26 10:55:43 +00:00
a1153d3393
website/docs: update 2024.2 release notes with security fixes ( #10232 )
2024-06-26 10:40:01 +00:00
f40feaf95f
website/docs: update 2024.6 release notes with latest changes ( #10228 )
2024-06-26 10:38:25 +00:00
cc18f352aa
security: fix CVE-2024-37905 ( #10230 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2024-06-26 12:07:44 +02:00
422eb0890c
security: fix CVE-2024-38371 ( #10229 )
2024-06-26 11:24:05 +02:00
8626d7a7aa
website/integrations: fix typo in documentation for OIDC setup with Paperless-ngx ( #10218 )
...
Update index.md
Missing " cost me more time than I'd like to admit. Paying it forward.
Signed-off-by: Russ Harvey <53157589+rwh85@users.noreply.github.com >
2024-06-26 07:27:15 +00:00
53a44435f8
website/docs: fix #9552 openssl rand base64 line wrap ( #10211 )
2024-06-24 21:19:47 +00:00
f9cd3b9b34
website: bump typescript from 5.4.5 to 5.5.2 in /website ( #10190 )
...
Bumps [typescript](https://github.com/Microsoft/TypeScript ) from 5.4.5 to 5.5.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml )
- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.4.5...v5.5.2 )
---
updated-dependencies:
- dependency-name: typescript
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-21 15:54:11 +09:00
b3340507a2
website/docs: Fix nginx proxy_pass directive documentation ( #10181 )
2024-06-20 09:36:04 +02:00
94482daa97
website/docs: Remove hyphen in read replica in Release Notes ( #10178 )
...
Co-authored-by: Tana M Berry <tana@goauthentik.com >
2024-06-20 09:34:48 +02:00
e6fd7cc1fc
website/docs: update template reference ( #10166 )
...
docs: update template reference
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com >
2024-06-19 16:52:15 -05:00
c7c7e28cef
website/docs: update 2024.6 release notes with latest changes ( #10174 )
2024-06-19 15:31:44 +00:00
a448107feb
website/docs: 2024.6 release notes: add note about group names ( #10170 )
...
* website/docs: 2024.6 release notes: add note about group names
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* Update website/docs/releases/2024/v2024.6.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2024-06-19 14:00:08 +00:00
1eb103994d
website/docs: update 2024.6 release notes with latest changes ( #10167 )
2024-06-19 14:54:08 +02:00
7f17c5f212
website/integrations: jellyfin: add OIDC configuration ( #9538 )
...
* Jellyfin OIDC Configuration Added
* Formating
* Added code review suggestions
* Forgot some review changes
* More Changes
* Updated documentation
* updated config order
2024-06-18 14:10:55 -05:00
2bd7b80579
website/docs: Describe where to apply the auto setup env vars ( #9863 )
...
Update automated-install.md
Took me a good half an hour to find out why my env setup vars are not working: Set the on the server, not the worker container!
Signed-off-by: m1212e <14091540+m1212e@users.noreply.github.com >
2024-06-18 13:24:35 -05:00
340c3241e6
website/integrations: gitlab: better service description ( #9923 )
...
Signed-off-by: 4d62 <ext@4d62.me >
2024-06-18 13:05:52 -05:00
bdde6775bc
website/integations/services: Slack integration docs ( #9933 )
...
* draft and sidebar
* added rest of config steps
* formatting
* typo
* tweaks
* contributors edit
* fixed support badge
* fix formatting
* marc edit
* 4d62 edit
* tech edits
* fix prettier error
* add link from Jens
---------
Co-authored-by: Tana M Berry <tana@goauthentik.com >
2024-06-17 15:20:46 -05:00
4df1b50542
website: bump react-tooltip from 5.26.4 to 5.27.0 in /website ( #10129 )
...
Bumps [react-tooltip](https://github.com/ReactTooltip/react-tooltip ) from 5.26.4 to 5.27.0.
- [Release notes](https://github.com/ReactTooltip/react-tooltip/releases )
- [Changelog](https://github.com/ReactTooltip/react-tooltip/blob/master/CHANGELOG.md )
- [Commits](https://github.com/ReactTooltip/react-tooltip/compare/v5.26.4...v5.27.0 )
---
updated-dependencies:
- dependency-name: react-tooltip
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-17 19:41:19 +09:00
6a79b3a4af
website/docs: add more info about multiple replicas ( #10117 )
...
* add info
* tweak
* removed same as
---------
Co-authored-by: Tana M Berry <tana@goauthentik.com >
2024-06-14 15:03:27 -05:00
ea76295976
website/docs: update 2024.6 release notes with latest changes ( #10109 )
2024-06-14 09:08:43 -07:00
45bc16286c
website/docs: Specify Synology DSM Account type to use ( #10111 )
2024-06-14 15:27:19 +00:00
0c604ceba4
website/docs: release notes for 2024.6 ( #9812 )
...
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2024-06-14 15:38:21 +02:00
8f82dac84e
website/developer-docs: add a baby Style Guide ( #9900 )
...
* draft style guide
* broken links
* rename partial file
* added content to style guide, more links
* sidebar and link
* polish
* typo
* forgot to save
* kens formatting trick
* typo
* Jens' edits
* tweak
* simplify formatting for variables
* edits from 4d62
* fixed link
* more edits
* tweak re formatting command
* tweak re formatting command
---------
Co-authored-by: Tana M Berry <tana@goauthentik.com >
2024-06-13 09:10:59 -05:00
89c08f2588
website/integrations: gitlab: update certificate key pair location and specify sha ( #9925 )
...
* website/integrations: gitlab: update certificate key pair location and specify sha
Signed-off-by: 4d62 <ext@4d62.me >
* i prefer the previous wording
Signed-off-by: 4d62 <ext@4d62.me >
* suggest
Co-authored-by: Jens L. <jens@beryju.org >
Signed-off-by: 4d62 <ext@4d62.me >
* Update website/integrations/services/gitlab/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* p
---------
Signed-off-by: 4d62 <ext@4d62.me >
Co-authored-by: Jens L. <jens@beryju.org >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2024-06-12 16:37:45 -05:00
05cfbca5f2
website: bump prettier from 3.3.1 to 3.3.2 in /website ( #10082 )
...
Bumps [prettier](https://github.com/prettier/prettier ) from 3.3.1 to 3.3.2.
- [Release notes](https://github.com/prettier/prettier/releases )
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/prettier/compare/3.3.1...3.3.2 )
---
updated-dependencies:
- dependency-name: prettier
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-12 15:40:28 +09:00
12b16b17a2
website: bump braces from 3.0.2 to 3.0.3 in /website ( #10076 )
...
Bumps [braces](https://github.com/micromatch/braces ) from 3.0.2 to 3.0.3.
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3 )
---
updated-dependencies:
- dependency-name: braces
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-12 13:29:46 +09:00
8f755785ea
website/integrations: aws: fix about service link ( #10062 )
...
Signed-off-by: 4d62 <ext@4d62.me >
2024-06-11 14:33:57 +09:00
31b891428e
website/integrations: gitea: fix helm values ( #10043 )
2024-06-10 09:29:17 +00:00
f8bfd12e31
docs/troubleshooting: upgrade docker: erroneous command ( #10044 )
2024-06-10 11:06:41 +02:00
78d07cc355
website: bump prettier from 3.3.0 to 3.3.1 in /website ( #10005 )
...
Bumps [prettier](https://github.com/prettier/prettier ) from 3.3.0 to 3.3.1.
- [Release notes](https://github.com/prettier/prettier/releases )
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/prettier/compare/3.3.0...3.3.1 )
---
updated-dependencies:
- dependency-name: prettier
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-06 14:17:22 +09:00
6cf418a37e
stages/captcha: rework ( #9959 )
...
* stages/captcha: rework
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update form with continue option
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update docs, add notes for scores
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* also only raise error from success if needed
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* return full data
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2024-06-04 18:25:38 +09:00
254761e930
website/docs: fixed broken links to helm repo ( #9960 )
...
fixed broken links to helm repo
the links to the helm repos were broken, the changes in b93bc6bb8e
changed the name of the files.
Signed-off-by: Kenneth Foster <42386206+kefoster951@users.noreply.github.com >
2024-06-04 18:04:15 +09:00
5fedd616d9
website: bump prettier from 3.2.5 to 3.3.0 in /website ( #9951 )
...
* website: bump prettier from 3.2.5 to 3.3.0 in /website
Bumps [prettier](https://github.com/prettier/prettier ) from 3.2.5 to 3.3.0.
- [Release notes](https://github.com/prettier/prettier/releases )
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/prettier/compare/3.2.5...3.3.0 )
---
updated-dependencies:
- dependency-name: prettier
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2024-06-03 23:35:07 +09:00
96eabe269c
website: bump the docusaurus group in /website with 9 updates ( #9950 )
...
Bumps the docusaurus group in /website with 9 updates:
| Package | From | To |
| --- | --- | --- |
| [@docusaurus/core](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus ) | `3.3.2` | `3.4.0` |
| [@docusaurus/plugin-client-redirects](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-plugin-client-redirects ) | `3.3.2` | `3.4.0` |
| [@docusaurus/plugin-content-docs](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-plugin-content-docs ) | `3.3.2` | `3.4.0` |
| [@docusaurus/preset-classic](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic ) | `3.3.2` | `3.4.0` |
| [@docusaurus/theme-common](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-theme-common ) | `3.3.2` | `3.4.0` |
| [@docusaurus/theme-mermaid](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-theme-mermaid ) | `3.3.2` | `3.4.0` |
| [@docusaurus/module-type-aliases](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases ) | `3.3.2` | `3.4.0` |
| [@docusaurus/tsconfig](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-tsconfig ) | `3.3.2` | `3.4.0` |
| [@docusaurus/types](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-types ) | `3.3.2` | `3.4.0` |
Updates `@docusaurus/core` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/facebook/docusaurus/releases )
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/docusaurus/commits/v3.4.0/packages/docusaurus )
Updates `@docusaurus/plugin-client-redirects` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/facebook/docusaurus/releases )
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/docusaurus/commits/v3.4.0/packages/docusaurus-plugin-client-redirects )
Updates `@docusaurus/plugin-content-docs` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/facebook/docusaurus/releases )
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/docusaurus/commits/v3.4.0/packages/docusaurus-plugin-content-docs )
Updates `@docusaurus/preset-classic` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/facebook/docusaurus/releases )
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/docusaurus/commits/v3.4.0/packages/docusaurus-preset-classic )
Updates `@docusaurus/theme-common` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/facebook/docusaurus/releases )
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/docusaurus/commits/v3.4.0/packages/docusaurus-theme-common )
Updates `@docusaurus/theme-mermaid` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/facebook/docusaurus/releases )
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/docusaurus/commits/v3.4.0/packages/docusaurus-theme-mermaid )
Updates `@docusaurus/module-type-aliases` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/facebook/docusaurus/releases )
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/docusaurus/commits/v3.4.0/packages/docusaurus-module-type-aliases )
Updates `@docusaurus/tsconfig` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/facebook/docusaurus/releases )
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/docusaurus/commits/v3.4.0/packages/docusaurus-tsconfig )
Updates `@docusaurus/types` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/facebook/docusaurus/releases )
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/docusaurus/commits/v3.4.0/packages/docusaurus-types )
---
updated-dependencies:
- dependency-name: "@docusaurus/core"
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: docusaurus
- dependency-name: "@docusaurus/plugin-client-redirects"
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: docusaurus
- dependency-name: "@docusaurus/plugin-content-docs"
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: docusaurus
- dependency-name: "@docusaurus/preset-classic"
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: docusaurus
- dependency-name: "@docusaurus/theme-common"
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: docusaurus
- dependency-name: "@docusaurus/theme-mermaid"
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: docusaurus
- dependency-name: "@docusaurus/module-type-aliases"
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: docusaurus
- dependency-name: "@docusaurus/tsconfig"
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: docusaurus
- dependency-name: "@docusaurus/types"
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: docusaurus
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-03 23:12:25 +09:00
97f11f7aa8
website/integrations: firezone: remove question mark typo and remove promotional sentence ( #9927 )
...
Signed-off-by: 4d62 <ext@4d62.me >
2024-05-31 18:32:06 +09:00
040dcaa9d6
website/docs: Update ArgoCD integration docs. ( #9684 )
...
Co-authored-by: Dylan Kauling <dkauling@armstrongfluidtechnology.com >
2024-05-30 22:34:05 +02:00
66a16752e4
website/integrations: add cloudflare access ( #9713 )
...
* init
* rough draft
* main docs
* upd placeholder
* Rebase pull request
rough draft
main docs
upd placeholder
* add to sidebar
* lint
* oops
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* apply suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <ext@4d62.me >
* upd
Signed-off-by: 4d62 <ext@4d62.me >
---------
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
Signed-off-by: 4d62 <ext@4d62.me >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2024-05-30 11:45:10 -05:00
f388cac07c
website/docs: next release notes: add upgrade instructions for postgres to 16 ( #9727 )
...
* init
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
* start
* db pass upd
* more
* oops
* simplify setting up v16 service
* cut off pg
* finish
* release breaking changes
* 2024.next
* i need to be less distracted
* rework upgrade instructions
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* ci: remove postgres 12 tests
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* spelling
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* try?
* fix release notes
* iirc theres a danger thing
* typo
* suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
* suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
* suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
* suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
* suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
* suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
* suggestion
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
* Update website/docs/troubleshooting/postgres/upgrade_docker.md
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* prettier
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* add to sidebar
Signed-off-by: 4d62 <ext@4d62.me >
* 🙊
Signed-off-by: 4d62 <ext@4d62.me >
* make website
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: 4d62 <157558804+4d62ext@users.noreply.github.com >
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Signed-off-by: 4d62 <ext@4d62.me >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2024-05-29 15:31:21 +02:00
72442b37e5
website/integrations: capitalize P in WordPress ( #9897 )
2024-05-29 10:47:07 +00:00