fix(config): correct VPN mandatory flag default handling in route config manager

This commit is contained in:
2026-03-31 11:51:45 +00:00
parent ece9e46be9
commit 0d9e6a4925
4 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 2026-03-31 - 11.23.5 - fix(config)
correct VPN mandatory flag default handling in route config manager
- Changes the VPN mandatory check so it only applies when explicitly set to true, matching the updated default behavior of false.
- Prevents routes from being treated as VPN-mandatory when the setting is omitted.
## 2026-03-31 - 11.23.4 - fix(deps)
bump @push.rocks/smartvpn to 1.17.1

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/dcrouter',
version: '11.23.4',
version: '11.23.5',
description: 'A multifaceted routing service handling mail and SMS delivery functions.'
}

View File

@@ -261,7 +261,7 @@ export class RouteConfigManager {
const dcRoute = route as IDcRouterRouteConfig;
if (!dcRoute.vpn?.enabled) return route;
const allowList = vpnAllowList(dcRoute.vpn.allowedServerDefinedClientTags);
const mandatory = dcRoute.vpn.mandatory !== false; // defaults to true
const mandatory = dcRoute.vpn.mandatory === true; // defaults to false
return {
...route,
security: {

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/dcrouter',
version: '11.23.4',
version: '11.23.5',
description: 'A multifaceted routing service handling mail and SMS delivery functions.'
}