Merge branch 'main' into limits-classes

This commit is contained in:
Michael Quigley 2024-06-04 10:38:57 -04:00
commit bb63921e42
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@
FEATURE: New "limits classes" limits implementation (https://github.com/openziti/zrok/issues/606)
FIX: Correct the syntax for the Docker and Linux zrok-share "frontdoor" service that broke OAuth email address pattern matching
## v0.4.30
FIX: Fix to the Node.js release process to properly support releasing on a tag.

View File

@ -133,7 +133,7 @@ if [[ -n "${ZROK_OAUTH_PROVIDER:-}" ]]; then
ZROK_CMD+=" --oauth-provider ${ZROK_OAUTH_PROVIDER}"
if [[ -n "${ZROK_OAUTH_EMAILS:-}" ]]; then
for EMAIL in ${ZROK_OAUTH_EMAILS}; do
ZROK_CMD+=" --oauth-email-address-patterns '${EMAIL}'"
ZROK_CMD+=" --oauth-email-address-patterns ${EMAIL}"
done
fi
elif [[ -n "${ZROK_BASIC_AUTH:-}" ]]; then