fix(ts/index.ts): Fix export order in ts/index.ts by moving the port proxy export back and adding interfaces export for proper module exposure
This commit is contained in:
parent
11b65bf684
commit
9cb6e397b9
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-03-18 - 4.2.4 - fix(ts/index.ts)
|
||||||
|
Fix export order in ts/index.ts by moving the port proxy export back and adding interfaces export for proper module exposure
|
||||||
|
|
||||||
|
- Reorder exports to place './classes.pp.portproxy.js' in the correct position
|
||||||
|
- Add export for './classes.pp.interfaces.js' to expose internal interfaces
|
||||||
|
|
||||||
## 2025-03-18 - 4.2.3 - fix(connectionhandler)
|
## 2025-03-18 - 4.2.3 - fix(connectionhandler)
|
||||||
Remove unnecessary delay in TLS session ticket handling for connections without SNI
|
Remove unnecessary delay in TLS session ticket handling for connections without SNI
|
||||||
|
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartproxy',
|
name: '@push.rocks/smartproxy',
|
||||||
version: '4.2.3',
|
version: '4.2.4',
|
||||||
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.'
|
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.'
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
export * from './classes.iptablesproxy.js';
|
export * from './classes.iptablesproxy.js';
|
||||||
export * from './classes.networkproxy.js';
|
export * from './classes.networkproxy.js';
|
||||||
export * from './classes.pp.portproxy.js';
|
|
||||||
export * from './classes.port80handler.js';
|
export * from './classes.port80handler.js';
|
||||||
export * from './classes.sslredirect.js';
|
export * from './classes.sslredirect.js';
|
||||||
|
export * from './classes.pp.portproxy.js';
|
||||||
export * from './classes.pp.snihandler.js';
|
export * from './classes.pp.snihandler.js';
|
||||||
|
export * from './classes.pp.interfaces.js';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user