fix: jwt-aud config not failing when set to invalid URI (#4140)

The `jwt-aud` config was not validated when containing ':'
character according to RFC 3986. This fix validates it and
fails at startup if it is invalid.
This commit is contained in:
Taimoor Zaeem
2025-06-16 15:40:47 -05:00
committed by GitHub
parent a2892ab1dd
commit c318d46469
4 changed files with 34 additions and 8 deletions
+1
View File
@@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Fix `max-affected` preference not failing with RPC when `handling=strict` by @taimoorzaeem in #4100
- Fix `jwt-aud` config not failing when set to an invalid URI by @taimoorzaeem in #4132
- Fix a property definition's type in OpenAPI not showing the correct base type of a recursive domain by @laurenceisla in #4136
- Fix regression that makes full-text search not work on domain types based on `tsvector` by @laurenceisla in #4135