BREAKING CHANGE(network): Update reverse proxy configuration to support multiple destination IPs and ports
This commit is contained in:
parent
e6811c75fc
commit
cd09a70232
@ -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
|
||||||
|
|
||||||
|
@ -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.'
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user