1dddb3dfaf 
					 
					
						
						
							
							web: bump @lit/localize-tools from 0.6.9 to 0.6.10 in /web ( #6869 )  
						
						... 
						
						
						
						Bumps [@lit/localize-tools](https://github.com/lit/lit/tree/HEAD/packages/localize-tools ) from 0.6.9 to 0.6.10.
- [Release notes](https://github.com/lit/lit/releases )
- [Changelog](https://github.com/lit/lit/blob/main/packages/localize-tools/CHANGELOG.md )
- [Commits](https://github.com/lit/lit/commits/@lit/localize-tools@0.6.10/packages/localize-tools )
---
updated-dependencies:
- dependency-name: "@lit/localize-tools"
  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> 
						
						
					 
					
						2023-09-13 14:14:19 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						49cb7adc43 
					 
					
						
						
							
							web: bump pyright from 1.1.326 to 1.1.327 in /web ( #6870 )  
						
						... 
						
						
						
						Bumps [pyright](https://github.com/Microsoft/pyright/tree/HEAD/packages/pyright ) from 1.1.326 to 1.1.327.
- [Release notes](https://github.com/Microsoft/pyright/releases )
- [Commits](https://github.com/Microsoft/pyright/commits/1.1.327/packages/pyright )
---
updated-dependencies:
- dependency-name: pyright
  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> 
						
						
					 
					
						2023-09-13 14:14:09 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						9ccbe28209 
					 
					
						
						
							
							web: bump @lit-labs/context from 0.4.0 to 0.4.1 in /web ( #6871 )  
						
						... 
						
						
						
						Bumps [@lit-labs/context](https://github.com/lit/lit/tree/HEAD/packages/labs/context ) from 0.4.0 to 0.4.1.
- [Release notes](https://github.com/lit/lit/releases )
- [Changelog](https://github.com/lit/lit/blob/main/packages/labs/context/CHANGELOG.md )
- [Commits](https://github.com/lit/lit/commits/@lit-labs/context@0.4.1/packages/labs/context )
---
updated-dependencies:
- dependency-name: "@lit-labs/context"
  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> 
						
						
					 
					
						2023-09-13 14:13:59 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						4713010034 
					 
					
						
						
							
							web: bump the eslint group in /web with 1 update ( #6846 )  
						
						
						
						
					 
					
						2023-09-11 23:13:11 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						b0242cca2b 
					 
					
						
						
							
							web: bump @typescript-eslint/parser from 6.6.0 to 6.7.0 in /web ( #6847 )  
						
						
						
						
					 
					
						2023-09-11 22:43:17 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						f5222ef321 
					 
					
						
						
							
							web: bump API Client version ( #6850 )  
						
						... 
						
						
						
						Signed-off-by: GitHub <noreply@github.com >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-09-11 20:20:50 +00:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						5b6fb4a05a 
					 
					
						
						
							
							Merge branch 'version-2023.8'  
						
						... 
						
						
						
						Signed-off-by: Jens Langhammer <jens@goauthentik.io >
# Conflicts:
#	Dockerfile
#	poetry.lock
#	proxy.Dockerfile
#	web/src/admin/AdminInterface.ts
#	web/xliff/zh-Hans.xlf 
						
						
					 
					
						2023-09-11 22:04:23 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						6eb33f4f6c 
					 
					
						
						
							
							web/admin: simplify sidebar renderer ( #6797 )  
						
						... 
						
						
						
						* Added a 'Hard-Core' lint mode to pre-commit; this will not automagically
fix all your problems, but it will show you where some deeper issues arise.
* web: streamline sidebar renderer
The sidebar renderer had a lot of repetitive code that could easily be templatized,
so I extracted the content from it and turned it into a table.
* web: complexity of the Sidebar now below 10.
This commit incorporates SonarJS into the pre-commit (and *only*
the pre-commit) linting pass; SonarJS is much more comprehensive
in its complaints, and it's helpful in breaking long functions down
to their simplest forms.
In this case, the `renderSidebarItems()` function was considered
"unreadable," and I've managed to boil it down to its three special
cases (new version, impersonation, and enterprise notification) and
its routine case (the rest of the sidebar).
Going forward, I'd like all our commits to correspond to the
SonarJS settings I've established in .eslint.precommit.json, but
I'm not gonna hate on others if they don't quite hit it.  :-)
* web: modernization continues.
Three of our four Babel plug-ins have moved from 'proposed' to 'accepted'; I have
updated package.json and the .babelrc file to accept those.
Node's ability to set its max_old_space_size via the environment variable was
enable in 2019; using it here makes it easier to move this code toward a
multi-package monorepo in the future.
* Adding 'cross-env' so that the uses of the NODE_OPTIONS environment will work (theoretically) on Windows. 
						
						
					 
					
						2023-09-11 12:58:55 -07:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						f885f8c039 
					 
					
						
						
							
							release: 2023.8.3  
						
						
						
						
					 
					
						2023-09-11 18:55:08 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						67bd622aa4 
					 
					
						
						
							
							web/admin: fix flow-search not being able to unset ( #6838 )  
						
						... 
						
						
						
						similar to https://github.com/goauthentik/authentik/pull/6767 
Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-11 14:16:52 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						5ac30c4901 
					 
					
						
						
							
							web/admin: fix flow-search not being able to unset ( #6838 )  
						
						... 
						
						
						
						similar to https://github.com/goauthentik/authentik/pull/6767 
Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-11 14:14:52 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						53e60641ba 
					 
					
						
						
							
							web: bump the babel group in /web with 1 update ( #6826 )  
						
						... 
						
						
						
						Bumps the babel group in /web with 1 update: [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ).
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.17/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: babel
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-09-11 12:40:46 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						797792dec8 
					 
					
						
						
							
							translate: Updates for file web/xliff/en.xlf in nl on branch main ( #6821 )  
						
						... 
						
						
						
						Translate web/xliff/en.xlf in nl
100% translated source file: 'web/xliff/en.xlf'
on 'nl'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-09-11 12:38:58 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						6f37ab2c17 
					 
					
						
						
							
							web: bump vite-tsconfig-paths from 4.2.0 to 4.2.1 in /web ( #6829 )  
						
						... 
						
						
						
						Bumps [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths ) from 4.2.0 to 4.2.1.
- [Release notes](https://github.com/aleclarson/vite-tsconfig-paths/releases )
- [Commits](https://github.com/aleclarson/vite-tsconfig-paths/compare/v4.2.0...v4.2.1 )
---
updated-dependencies:
- dependency-name: vite-tsconfig-paths
  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> 
						
						
					 
					
						2023-09-11 12:29:47 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						04befe38bc 
					 
					
						
						
							
							web: bump @formatjs/intl-listformat from 7.4.1 to 7.4.2 in /web ( #6830 )  
						
						... 
						
						
						
						Bumps [@formatjs/intl-listformat](https://github.com/formatjs/formatjs ) from 7.4.1 to 7.4.2.
- [Release notes](https://github.com/formatjs/formatjs/releases )
- [Commits](https://github.com/formatjs/formatjs/compare/@formatjs/intl-listformat@7.4.1...@formatjs/intl-listformat@7.4.2 )
---
updated-dependencies:
- dependency-name: "@formatjs/intl-listformat"
  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> 
						
						
					 
					
						2023-09-11 12:28:42 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						4f23dc0485 
					 
					
						
						
							
							web: bump the eslint group in /web with 1 update ( #6827 )  
						
						... 
						
						
						
						Bumps the eslint group in /web with 1 update: [eslint](https://github.com/eslint/eslint ).
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.48.0...v8.49.0 )
---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-09-11 12:27:37 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						8507e1929c 
					 
					
						
						
							
							web: bump rollup from 3.29.0 to 3.29.1 in /web  
						
						... 
						
						
						
						Bumps [rollup](https://github.com/rollup/rollup ) from 3.29.0 to 3.29.1.
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v3.29.0...v3.29.1 )
---
updated-dependencies:
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com > 
						
						
					 
					
						2023-09-11 10:56:32 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						279150541d 
					 
					
						
						
							
							web: bump @formatjs/intl-listformat from 7.4.0 to 7.4.1 in /web ( #6801 )  
						
						... 
						
						
						
						Bumps [@formatjs/intl-listformat](https://github.com/formatjs/formatjs ) from 7.4.0 to 7.4.1.
- [Release notes](https://github.com/formatjs/formatjs/releases )
- [Commits](https://github.com/formatjs/formatjs/compare/@formatjs/intl-listformat@7.4.0...@formatjs/intl-listformat@7.4.1 )
---
updated-dependencies:
- dependency-name: "@formatjs/intl-listformat"
  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> 
						
						
					 
					
						2023-09-08 10:15:36 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						ad052564dd 
					 
					
						
						
							
							web: bump core-js from 3.32.1 to 3.32.2 in /web ( #6800 )  
						
						... 
						
						
						
						Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js ) from 3.32.1 to 3.32.2.
- [Release notes](https://github.com/zloirock/core-js/releases )
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md )
- [Commits](https://github.com/zloirock/core-js/commits/v3.32.2/packages/core-js )
---
updated-dependencies:
- dependency-name: core-js
  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> 
						
						
					 
					
						2023-09-08 10:14:51 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						507255524a 
					 
					
						
						
							
							web: bump the sentry group in /web with 2 updates ( #6787 )  
						
						... 
						
						
						
						Bumps the sentry group in /web with 2 updates: [@sentry/browser](https://github.com/getsentry/sentry-javascript ) and [@sentry/tracing](https://github.com/getsentry/sentry-javascript ).
Updates `@sentry/browser` from 7.67.0 to 7.68.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/7.67.0...7.68.0 )
Updates `@sentry/tracing` from 7.67.0 to 7.68.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/7.67.0...7.68.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sentry
- dependency-name: "@sentry/tracing"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-09-07 12:00:00 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						febbbca728 
					 
					
						
						
							
							translate: Updates for file web/xliff/en.xlf in zh_CN on branch main ( #6788 )  
						
						... 
						
						
						
						Translate web/xliff/en.xlf in zh_CN
100% translated source file: 'web/xliff/en.xlf'
on 'zh_CN'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-09-07 11:58:00 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						b8f9fdf10a 
					 
					
						
						
							
							translate: Updates for file web/xliff/en.xlf in zh-Hans on branch main ( #6791 )  
						
						... 
						
						
						
						Translate web/xliff/en.xlf in zh-Hans
100% translated source file: 'web/xliff/en.xlf'
on 'zh-Hans'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-09-07 11:57:46 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						25ac04f4e5 
					 
					
						
						
							
							web/admin: fix not being able to unset certificates ( #6767 )  
						
						... 
						
						
						
						* web: fix 6742: empty web certificate request needs to return null, not undefined
This replaces the `undefined` setting of the certificate search wrapper to
`null` when the admin requests no certificate.
* only set singleton if we don't have an instance
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-06 14:00:32 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						ae91689fd8 
					 
					
						
						
							
							policies/reputation: require either check to be enabled ( #6764 )  
						
						... 
						
						
						
						Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-06 14:00:29 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						7e9e2ec53d 
					 
					
						
						
							
							web: don't import entire SourceViewPage in flow and user interface ( #6761 )  
						
						... 
						
						
						
						Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-06 14:00:16 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						9c448d74f7 
					 
					
						
						
							
							web/admin: fix application icon size ( #6738 )  
						
						... 
						
						
						
						Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-06 13:59:19 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						05a4649282 
					 
					
						
						
							
							web: replace ampersand ( #6737 )  
						
						... 
						
						
						
						Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-06 13:59:02 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						d79ed5a152 
					 
					
						
						
							
							web: bump rollup from 3.28.1 to 3.29.0 in /web ( #6775 )  
						
						... 
						
						
						
						Bumps [rollup](https://github.com/rollup/rollup ) from 3.28.1 to 3.29.0.
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v3.28.1...v3.29.0 )
---
updated-dependencies:
- dependency-name: rollup
  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> 
						
						
					 
					
						2023-09-06 12:22:41 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						d9bdf79f0e 
					 
					
						
						
							
							web: bump the sentry group in /web with 2 updates ( #6773 )  
						
						... 
						
						
						
						Bumps the sentry group in /web with 2 updates: [@sentry/browser](https://github.com/getsentry/sentry-javascript ) and [@sentry/tracing](https://github.com/getsentry/sentry-javascript ).
Updates `@sentry/browser` from 7.66.0 to 7.67.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/7.66.0...7.67.0 )
Updates `@sentry/tracing` from 7.66.0 to 7.67.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/7.66.0...7.67.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sentry
- dependency-name: "@sentry/tracing"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-09-06 11:45:11 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						44e106878b 
					 
					
						
						
							
							web: bump pyright from 1.1.325 to 1.1.326 in /web ( #6774 )  
						
						... 
						
						
						
						Bumps [pyright](https://github.com/Microsoft/pyright/tree/HEAD/packages/pyright ) from 1.1.325 to 1.1.326.
- [Release notes](https://github.com/Microsoft/pyright/releases )
- [Commits](https://github.com/Microsoft/pyright/commits/1.1.326/packages/pyright )
---
updated-dependencies:
- dependency-name: pyright
  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> 
						
						
					 
					
						2023-09-06 11:44:20 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						0a9880547c 
					 
					
						
						
							
							web/admin: fix not being able to unset certificates ( #6767 )  
						
						... 
						
						
						
						* web: fix 6742: empty web certificate request needs to return null, not undefined
This replaces the `undefined` setting of the certificate search wrapper to
`null` when the admin requests no certificate.
* only set singleton if we don't have an instance
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-05 22:37:49 +00:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						8c3f578187 
					 
					
						
						
							
							policies/reputation: require either check to be enabled ( #6764 )  
						
						... 
						
						
						
						Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-05 22:15:14 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						15ac26edb8 
					 
					
						
						
							
							web: don't import entire SourceViewPage in flow and user interface ( #6761 )  
						
						... 
						
						
						
						Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-05 21:34:34 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						d437927ee5 
					 
					
						
						
							
							web: bump the babel group in /web with 5 updates ( #6753 )  
						
						... 
						
						
						
						Bumps the babel group in /web with 5 updates:
| Package | From | To |
| --- | --- | --- |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) | `7.22.11` | `7.22.15` |
| [@babel/plugin-proposal-decorators](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-proposal-decorators ) | `7.22.10` | `7.22.15` |
| [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) | `7.22.10` | `7.22.15` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) | `7.22.14` | `7.22.15` |
| [@babel/preset-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript ) | `7.22.11` | `7.22.15` |
Updates `@babel/core` from 7.22.11 to 7.22.15
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.15/packages/babel-core )
Updates `@babel/plugin-proposal-decorators` from 7.22.10 to 7.22.15
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.15/packages/babel-plugin-proposal-decorators )
Updates `@babel/plugin-transform-runtime` from 7.22.10 to 7.22.15
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.15/packages/babel-plugin-transform-runtime )
Updates `@babel/preset-env` from 7.22.14 to 7.22.15
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.15/packages/babel-preset-env )
Updates `@babel/preset-typescript` from 7.22.11 to 7.22.15
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.15/packages/babel-preset-typescript )
---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: babel
- dependency-name: "@babel/plugin-proposal-decorators"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: babel
- dependency-name: "@babel/plugin-transform-runtime"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: babel
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: babel
- dependency-name: "@babel/preset-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: babel
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-09-05 12:03:01 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						6a9ca493ed 
					 
					
						
						
							
							web: bump @types/chart.js from 2.9.37 to 2.9.38 in /web ( #6756 )  
						
						... 
						
						
						
						Bumps [@types/chart.js](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chart.js ) from 2.9.37 to 2.9.38.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chart.js )
---
updated-dependencies:
- dependency-name: "@types/chart.js"
  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> 
						
						
					 
					
						2023-09-05 12:02:52 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						1a2ab34586 
					 
					
						
						
							
							web: bump the eslint group in /web with 1 update ( #6755 )  
						
						... 
						
						
						
						Bumps the eslint group in /web with 1 update: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ).
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.6.0/packages/eslint-plugin )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-09-05 12:02:37 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						12779ffb5f 
					 
					
						
						
							
							web: bump @typescript-eslint/parser from 6.5.0 to 6.6.0 in /web ( #6757 )  
						
						... 
						
						
						
						Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) from 6.5.0 to 6.6.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.6.0/packages/parser )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  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> 
						
						
					 
					
						2023-09-05 11:23:57 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						5f8e33667f 
					 
					
						
						
							
							web: bump @types/codemirror from 5.60.9 to 5.60.10 in /web ( #6758 )  
						
						... 
						
						
						
						Bumps [@types/codemirror](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/codemirror ) from 5.60.9 to 5.60.10.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/codemirror )
---
updated-dependencies:
- dependency-name: "@types/codemirror"
  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> 
						
						
					 
					
						2023-09-05 11:23:49 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						6aeef42e5b 
					 
					
						
						
							
							web: bump API Client version ( #6748 )  
						
						
						
						
					 
					
						2023-09-04 11:52:20 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						6612f729ec 
					 
					
						
						
							
							stages/authenticator: vendor otp ( #6741 )  
						
						... 
						
						
						
						* initial import
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update imports
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove email and hotp for now
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove things we don't need and clean up
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* initial merge static
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* initial merge totp
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more fixes
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix migrations
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update webui
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add system migration
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more cleanup, add doctests to test_runner
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more cleanup
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fixup more lint
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* cleanup last tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update docstrings
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* implement SerializerModel
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix web format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-04 11:45:14 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						7030176183 
					 
					
						
						
							
							web: bump rollup-plugin-copy from 3.4.0 to 3.5.0 in /web ( #6743 )  
						
						... 
						
						
						
						Bumps [rollup-plugin-copy](https://github.com/vladshcherbin/rollup-plugin-copy ) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/vladshcherbin/rollup-plugin-copy/releases )
- [Commits](https://github.com/vladshcherbin/rollup-plugin-copy/compare/3.4.0...3.5.0 )
---
updated-dependencies:
- dependency-name: rollup-plugin-copy
  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> 
						
						
					 
					
						2023-09-03 22:32:38 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						2b9dc4ccd8 
					 
					
						
						
							
							web/admin: fix circular dependency ( #6740 )  
						
						... 
						
						
						
						Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-03 03:12:20 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						db61d6200a 
					 
					
						
						
							
							web/admin: fix application icon size ( #6738 )  
						
						... 
						
						
						
						Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-02 18:59:27 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						7f9e8f469d 
					 
					
						
						
							
							web: replace ampersand ( #6737 )  
						
						... 
						
						
						
						Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-09-02 18:59:17 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						c04e83c86c 
					 
					
						
						
							
							web: bump API Client version ( #6734 )  
						
						
						
						
					 
					
						2023-09-01 19:30:15 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						97e4c8d5e2 
					 
					
						
						
							
							release: 2023.8.2  
						
						
						
						
					 
					
						2023-09-01 17:27:16 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						caad5a888a 
					 
					
						
						
							
							web: bump API Client version ( #6730 )  
						
						
						
						
					 
					
						2023-09-01 13:06:20 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						e2af75e8fa 
					 
					
						
						
							
							translate: Updates for file web/xliff/en.xlf in nl on branch main ( #6716 )  
						
						... 
						
						
						
						* Translate web/xliff/en.xlf in nl
100% translated source file: 'web/xliff/en.xlf'
on 'nl'.
* also auto enable squash merge after approval
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-08-31 15:18:15 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						a8cd70cb63 
					 
					
						
						
							
							web: bump API Client version ( #6715 )  
						
						... 
						
						
						
						Signed-off-by: GitHub <noreply@github.com >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-08-31 12:04:26 +00:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						f57b3efcaa 
					 
					
						
						
							
							policies/reputation: fix reputation not expiring ( #6714 )  
						
						... 
						
						
						
						* policies/reputation: fix reputation not expiring
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix some verbose names for models
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io > 
						
						
					 
					
						2023-08-31 13:46:00 +02:00