mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-24 21:48:23 +02:00
accidentally deleted ':'s after category tags
This commit is contained in:
parent
11569d550c
commit
be1097a3c9
1 changed files with 53 additions and 53 deletions
|
@ -1,65 +1,65 @@
|
|||
## What's Changed
|
||||
|
||||
### Breaking
|
||||
* **proxy** deprecate the /.pomerium/jwt endpoint by @kenjenkins in https://github.com/pomerium/pomerium/pull/5254
|
||||
* **zero/k8s** use Deployment instead of StatefulSet by @wasaga in https://github.com/pomerium/pomerium/pull/5248
|
||||
* **proxy**: deprecate the /.pomerium/jwt endpoint by @kenjenkins in https://github.com/pomerium/pomerium/pull/5254
|
||||
* **zero/k8s**: use Deployment instead of StatefulSet by @wasaga in https://github.com/pomerium/pomerium/pull/5248
|
||||
|
||||
### New
|
||||
* **authorize** use uuid for jti, current time for iat and exp by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5147
|
||||
* **config** add `databroker_storage_connection_string_file` by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5242
|
||||
* **config** add mTLS UserPrincipalName SAN match by @kenjenkins in https://github.com/pomerium/pomerium/pull/5177
|
||||
* **config** add runtime flag to allow disabling config hot-reload (#5079) by @kralicky in https://github.com/pomerium/pomerium/pull/5112
|
||||
* **config** allow overriding port numbers using environment variables by @kralicky in https://github.com/pomerium/pomerium/pull/5194
|
||||
* **envoy** allow TLS 1.3 for upstream connections by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5263
|
||||
* **envoy** log TLS connection failures in the mTLS `reject_connection` mode by @kralicky in https://github.com/pomerium/pomerium/pull/5210
|
||||
* **envoy** resource monitoring & overload manager configuration by @kralicky in https://github.com/pomerium/pomerium/pull/5106
|
||||
* **envoy** support http2 prior knowledge for insecure upstream targets (h2c://) by @kralicky in https://github.com/pomerium/pomerium/pull/5205
|
||||
* **ui** add "Policy ID" label to error details page by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5127
|
||||
* **ui** add request id to upstream error page by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5166
|
||||
* **ui** add user info link to error page by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5158
|
||||
* **ui** user info dashboard improvements by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5128
|
||||
* **zero/connect** add re-run health checks command by @wasaga in https://github.com/pomerium/pomerium/pull/5219
|
||||
* **zero/k8s** write bootstrap configuration to a secret by @kralicky in https://github.com/pomerium/pomerium/pull/5114
|
||||
* **authorize**: use uuid for jti, current time for iat and exp by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5147
|
||||
* **config**: add `databroker_storage_connection_string_file` by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5242
|
||||
* **config**: add mTLS UserPrincipalName SAN match by @kenjenkins in https://github.com/pomerium/pomerium/pull/5177
|
||||
* **config**: add runtime flag to allow disabling config hot-reload (#5079) by @kralicky in https://github.com/pomerium/pomerium/pull/5112
|
||||
* **config**: allow overriding port numbers using environment variables by @kralicky in https://github.com/pomerium/pomerium/pull/5194
|
||||
* **envoy**: allow TLS 1.3 for upstream connections by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5263
|
||||
* **envoy**: log TLS connection failures in the mTLS `reject_connection` mode by @kralicky in https://github.com/pomerium/pomerium/pull/5210
|
||||
* **envoy**: resource monitoring & overload manager configuration by @kralicky in https://github.com/pomerium/pomerium/pull/5106
|
||||
* **envoy**: support http2 prior knowledge for insecure upstream targets (h2c://) by @kralicky in https://github.com/pomerium/pomerium/pull/5205
|
||||
* **ui**: add "Policy ID" label to error details page by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5127
|
||||
* **ui**: add request id to upstream error page by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5166
|
||||
* **ui**: add user info link to error page by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5158
|
||||
* **ui**: user info dashboard improvements by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5128
|
||||
* **zero/connect**: add re-run health checks command by @wasaga in https://github.com/pomerium/pomerium/pull/5219
|
||||
* **zero/k8s**: write bootstrap configuration to a secret by @kralicky in https://github.com/pomerium/pomerium/pull/5114
|
||||
|
||||
### Fixes
|
||||
* **authorize** require new login when authenticate url changes by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5165
|
||||
* **controlplane** avoid calling Close on nil listener by @kenjenkins in https://github.com/pomerium/pomerium/pull/5156
|
||||
* **databroker/leaser** set timeout on ReleaseLease by @wasaga in https://github.com/pomerium/pomerium/pull/5208
|
||||
* **logging** add support for using the standard grpc env vars to control log severity and verbosity by @kralicky in https://github.com/pomerium/pomerium/pull/5120
|
||||
* **session** do not invalidate based on ID token by @kenjenkins in https://github.com/pomerium/pomerium/pull/5182
|
||||
* **ui** fix cycle in profile data by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5168
|
||||
* **ui** set Cache-Control: no-cache, tweak sign-out cancel button behavior by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5264
|
||||
* **zero/connect** ignore unknown message types by @wasaga in https://github.com/pomerium/pomerium/pull/5223
|
||||
* **zero/health-checks** fix early checks sometimes missing by @wasaga in https://github.com/pomerium/pomerium/pull/5229
|
||||
* **zero/health-checks** zero route availability improvements by @wasaga in https://github.com/pomerium/pomerium/pull/5111
|
||||
* **authorize**: require new login when authenticate url changes by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5165
|
||||
* **controlplane**: avoid calling Close on nil listener by @kenjenkins in https://github.com/pomerium/pomerium/pull/5156
|
||||
* **databroker/leaser**: set timeout on ReleaseLease by @wasaga in https://github.com/pomerium/pomerium/pull/5208
|
||||
* **logging**: add support for using the standard grpc env vars to control log severity and verbosity by @kralicky in https://github.com/pomerium/pomerium/pull/5120
|
||||
* **session**: do not invalidate based on ID token by @kenjenkins in https://github.com/pomerium/pomerium/pull/5182
|
||||
* **ui**: fix cycle in profile data by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5168
|
||||
* **ui**: set Cache-Control: no-cache, tweak sign-out cancel button behavior by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5264
|
||||
* **zero/connect**: ignore unknown message types by @wasaga in https://github.com/pomerium/pomerium/pull/5223
|
||||
* **zero/health-checks**: fix early checks sometimes missing by @wasaga in https://github.com/pomerium/pomerium/pull/5229
|
||||
* **zero/health-checks**: zero route availability improvements by @wasaga in https://github.com/pomerium/pomerium/pull/5111
|
||||
|
||||
### Changed
|
||||
* **authenticate** rework session ID token handling by @kenjenkins in https://github.com/pomerium/pomerium/pull/5178
|
||||
* **authorize** add request-id to error messages by @wasaga in https://github.com/pomerium/pomerium/pull/5267
|
||||
* **ci** do not include timestamp into buildmeta by @wasaga in https://github.com/pomerium/pomerium/pull/5215
|
||||
* **config** optimize policy iterators by @kralicky in https://github.com/pomerium/pomerium/pull/5184
|
||||
* **config** sort runtime flags, name consistency by @kenjenkins in https://github.com/pomerium/pomerium/pull/5255
|
||||
* **envoy** upgrade to v1.31.0 by @kenjenkins in https://github.com/pomerium/pomerium/pull/5183
|
||||
* **github** update README.md by @cmo-pomerium in https://github.com/pomerium/pomerium/pull/5163
|
||||
* **github** update README.md by @nikhil-pomerium in https://github.com/pomerium/pomerium/pull/5253
|
||||
* **go** update to Go 1.23 by @kralicky in https://github.com/pomerium/pomerium/pull/5216
|
||||
* **logging** change log.Error function by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5251
|
||||
* **logging** convert warnings to info or error by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5235
|
||||
* **proto** update protoc dependencies by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5218
|
||||
* **ui** update logo by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5249
|
||||
* **zero** refactor controller by @wasaga in https://github.com/pomerium/pomerium/pull/5134
|
||||
* **zero/api** generate error methods for response types by @kralicky in https://github.com/pomerium/pomerium/pull/5252
|
||||
* **zero/api** reset token and url cache if 401 is received by @wasaga in https://github.com/pomerium/pomerium/pull/5256
|
||||
* **zero/api** switch to github.com/oapi-codegen/oapi-codegen by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5226
|
||||
* **zero/bundle-download** update metadata by @wasaga in https://github.com/pomerium/pomerium/pull/5212
|
||||
* **zero/cmd** make it more evident what caused shutdown by @wasaga in https://github.com/pomerium/pomerium/pull/5209
|
||||
* **zero/connect** add telemetry request command by @wasaga in https://github.com/pomerium/pomerium/pull/5131
|
||||
* **zero/k8s** set externalTrafficPolicy: Local by @wasaga in https://github.com/pomerium/pomerium/pull/5266
|
||||
* **zero/telemetry** add hostname and version by @wasaga in https://github.com/pomerium/pomerium/pull/5146
|
||||
* **zero/telemetry** add prometheus streaming converter to OTLP by @wasaga in https://github.com/pomerium/pomerium/pull/5132
|
||||
* **zero/telemetry** collect limited core metrics by @wasaga in https://github.com/pomerium/pomerium/pull/5142
|
||||
* **zero/telemetry** internal envoy stats scraper and metrics producer by @wasaga in https://github.com/pomerium/pomerium/pull/5136
|
||||
* **zero/telemetry** refactor telemetry and controller by @wasaga in https://github.com/pomerium/pomerium/pull/5135
|
||||
* **authenticate**: rework session ID token handling by @kenjenkins in https://github.com/pomerium/pomerium/pull/5178
|
||||
* **authorize**: add request-id to error messages by @wasaga in https://github.com/pomerium/pomerium/pull/5267
|
||||
* **ci**: do not include timestamp into buildmeta by @wasaga in https://github.com/pomerium/pomerium/pull/5215
|
||||
* **config**: optimize policy iterators by @kralicky in https://github.com/pomerium/pomerium/pull/5184
|
||||
* **config**: sort runtime flags, name consistency by @kenjenkins in https://github.com/pomerium/pomerium/pull/5255
|
||||
* **envoy**: upgrade to v1.31.0 by @kenjenkins in https://github.com/pomerium/pomerium/pull/5183
|
||||
* **github**: update README.md by @cmo-pomerium in https://github.com/pomerium/pomerium/pull/5163
|
||||
* **github**: update README.md by @nikhil-pomerium in https://github.com/pomerium/pomerium/pull/5253
|
||||
* **go**: update to Go 1.23 by @kralicky in https://github.com/pomerium/pomerium/pull/5216
|
||||
* **logging**: change log.Error function by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5251
|
||||
* **logging**: convert warnings to info or error by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5235
|
||||
* **proto**: update protoc dependencies by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5218
|
||||
* **ui**: update logo by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5249
|
||||
* **zero**: refactor controller by @wasaga in https://github.com/pomerium/pomerium/pull/5134
|
||||
* **zero/api**: generate error methods for response types by @kralicky in https://github.com/pomerium/pomerium/pull/5252
|
||||
* **zero/api**: reset token and url cache if 401 is received by @wasaga in https://github.com/pomerium/pomerium/pull/5256
|
||||
* **zero/api**: switch to github.com/oapi-codegen/oapi-codegen by @calebdoxsey in https://github.com/pomerium/pomerium/pull/5226
|
||||
* **zero/bundle-download**: update metadata by @wasaga in https://github.com/pomerium/pomerium/pull/5212
|
||||
* **zero/cmd**: make it more evident what caused shutdown by @wasaga in https://github.com/pomerium/pomerium/pull/5209
|
||||
* **zero/connect**: add telemetry request command by @wasaga in https://github.com/pomerium/pomerium/pull/5131
|
||||
* **zero/k8s**: set externalTrafficPolicy: Local by @wasaga in https://github.com/pomerium/pomerium/pull/5266
|
||||
* **zero/telemetry**: add hostname and version by @wasaga in https://github.com/pomerium/pomerium/pull/5146
|
||||
* **zero/telemetry**: add prometheus streaming converter to OTLP by @wasaga in https://github.com/pomerium/pomerium/pull/5132
|
||||
* **zero/telemetry**: collect limited core metrics by @wasaga in https://github.com/pomerium/pomerium/pull/5142
|
||||
* **zero/telemetry**: internal envoy stats scraper and metrics producer by @wasaga in https://github.com/pomerium/pomerium/pull/5136
|
||||
* **zero/telemetry**: refactor telemetry and controller by @wasaga in https://github.com/pomerium/pomerium/pull/5135
|
||||
|
||||
### Dependency Updates
|
||||
* bump the docker group in /.github with 3 updates by @dependabot in https://github.com/pomerium/pomerium/pull/5124
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue