BREAKING CHANGE(network): Update reverse proxy configuration to support multiple destination IPs and ports

This commit is contained in:
Philipp Kunz 2025-03-11 12:07:33 +00:00
parent e6811c75fc
commit cd09a70232
3 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## 2025-03-11 - 5.0.0 - BREAKING CHANGE(network)
Update reverse proxy configuration to support multiple destination IPs and ports
- Replaced 'destinationIp' and 'destinationPort' with 'destinationIps' (array) and 'destinationPorts' (array) to enable multiple destinations
## 2025-03-10 - 4.4.4 - fix(business) ## 2025-03-10 - 4.4.4 - fix(business)
Fixes typo in ILetter interface Fixes typo in ILetter interface

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@tsclass/tsclass', name: '@tsclass/tsclass',
version: '4.4.4', version: '5.0.0',
description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.' description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
} }

View File

@ -1,6 +1,6 @@
export interface IReverseProxyConfig { export interface IReverseProxyConfig {
destinationIp: string; destinationIps: string[];
destinationPort: number; destinationPorts: number[];
hostName: string; hostName: string;
privateKey: string; privateKey: string;
publicKey: string; publicKey: string;