diff --git a/changelog.md b/changelog.md index 175582c..0f563bd 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-05-03 - 10.0.1 - fix(docs) +Improve mermaid diagram formatting in readme.md using HTML
tags for line breaks + +- Replaced newline characters with
in the SmartProxy Components diagram nodes for better HTML rendering +- Improved visual clarity of the architectural diagrams in the readme + ## 2025-05-03 - 10.0.0 - BREAKING CHANGE(smartproxy) Update documentation and refactor core proxy components; remove legacy performRenewals method from SmartProxy; update router type imports and adjust test suites for improved coverage diff --git a/readme.md b/readme.md index b651362..ee8e291 100644 --- a/readme.md +++ b/readme.md @@ -180,12 +180,12 @@ flowchart TB subgraph "SmartProxy Components" direction TB - HTTP80[HTTP Port 80\nRedirect / SslRedirect] - HTTPS443[HTTPS Port 443\nNetworkProxy] - SmartProxy[SmartProxy\n(TCP/SNI Proxy)] + HTTP80["HTTP Port 80
Redirect / SslRedirect"] + HTTPS443["HTTPS Port 443
NetworkProxy"] + SmartProxy["SmartProxy
(TCP/SNI Proxy)"] NfTables[NfTablesProxy] Router[ProxyRouter] - ACME[Port80Handler\n(ACME HTTP-01)] + ACME["Port80Handler
(ACME HTTP-01)"] Certs[(SSL Certificates)] end diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index cd2afe9..9ccf083 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartproxy', - version: '10.0.0', + version: '10.0.1', 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.' }