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
|
||||
|
||||
## 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)
|
||||
Fixes typo in ILetter interface
|
||||
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
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.'
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
export interface IReverseProxyConfig {
|
||||
destinationIp: string;
|
||||
destinationPort: number;
|
||||
destinationIps: string[];
|
||||
destinationPorts: number[];
|
||||
hostName: string;
|
||||
privateKey: string;
|
||||
publicKey: string;
|
||||
|
Loading…
x
Reference in New Issue
Block a user