File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ "sha1" : "36054wkb4p9k54dt7rvn3qd3sxnteuh" ,
3+ "insertion" : {
4+ "when" : "2026-04-16T14:44:08.633Z" ,
5+ "url" : "https://github.com/plantuml/plantuml/pull/2661" ,
6+ "user" : "plantuml@gmail.com"
7+ }
8+ }
9+ @startuml
10+ <style >
11+ arrow {
12+ fontcolor red
13+ MaximumWidth 150
14+ }
15+ </style >
16+
17+ component "API Gateway" as gw
18+ component "Auth Service" as auth
19+ component "Order Service" as orders
20+ component "Notification Service" as notify
21+
22+ gw -> auth : validates JWT tokens and checks role-based access control permissions
23+ gw -> orders : routes order creation requests with validated user identity
24+ orders -> notify : triggers email and push notifications after order state changes
25+ @enduml
Original file line number Diff line number Diff line change 1+ {
2+ "sha1" : "8fcwqw3acd6kqzxkp83vvu6d49qu6rc" ,
3+ "insertion" : {
4+ "when" : "2026-04-16T14:44:08.603Z" ,
5+ "url" : "https://github.com/plantuml/plantuml/pull/2661" ,
6+ "user" : "plantuml@gmail.com"
7+ }
8+ }
9+ @startuml
10+ <style >
11+ arrow {
12+ fontcolor red
13+ MaximumWidth 150
14+ }
15+ </style >
16+
17+ Alice -> Bob : sends a request with authentication credentials and session context
18+ Bob -> Charlie : forwards the validated request to the downstream processing service
19+ Charlie -> Alice : returns the aggregated response with pagination metadata
20+ Alice -> Alice : logs the complete request-response cycle for audit trail
21+ @enduml
Original file line number Diff line number Diff line change 1+ {
2+ "sha1" : "922u71rdemb4l17duqmfdjz539eaicj" ,
3+ "insertion" : {
4+ "when" : "2026-04-16T14:44:08.636Z" ,
5+ "user" : "plantuml@gmail.com"
6+ }
7+ }
8+ @startwbs
9+ <style >
10+ wbsDiagram {
11+ node {
12+ AutoWidth true
13+ }
14+ }
15+ </style >
16+ * Project
17+ ** Planning
18+ *** Define scope
19+ *** Set milestones
20+ *** Allocate resources
21+ ** Implementation
22+ *** Code
23+ *** Test
24+ *** Deploy to production environment
25+ ** Review
26+ @endwbs
Original file line number Diff line number Diff line change 1+ {
2+ "sha1" : "kw1mhdqi1b70ico577qbyz1keaf9lvm" ,
3+ "insertion" : {
4+ "when" : "2026-04-16T14:44:08.636Z" ,
5+ "url" : "https://github.com/plantuml/plantuml/pull/2661" ,
6+ "user" : "plantuml@gmail.com"
7+ }
8+ }
9+ @startuml
10+ <style >
11+ arrow {
12+ fontcolor red
13+ MaximumWidth 150
14+ }
15+ </style >
16+
17+ [*] -> Pending : user submits order through checkout flow with payment details
18+ Pending -> Processing : payment gateway confirms successful charge authorization
19+ Processing -> Shipped : warehouse marks package as dispatched with tracking number
20+ Shipped -> Delivered : carrier confirms delivery at destination address
21+ Delivered -> [*]
22+ @enduml
Original file line number Diff line number Diff line change 1+ {
2+ "sha1" : "q70xfezb4a9ruk7qiqf6wb27ssnm1ug" ,
3+ "insertion" : {
4+ "when" : "2026-04-16T14:44:08.632Z" ,
5+ "url" : "https://github.com/plantuml/plantuml/pull/2661" ,
6+ "user" : "plantuml@gmail.com"
7+ }
8+ }
9+ @startuml
10+ <style >
11+ arrow {
12+ fontcolor red
13+ MaximumWidth 150
14+ }
15+ </style >
16+
17+ node "Web Server" as web
18+ node "App Server" as app
19+ database "PostgreSQL" as db
20+
21+ web -> app : forwards authenticated requests with session tokens and user context
22+ app -> db : executes parameterized queries against the primary read-write replica
23+ db -> app : returns result sets with pagination metadata and cache headers
24+ @enduml
Original file line number Diff line number Diff line change 1+ {
2+ "sha1" : "qoaof1h7tdi4t4p3jxq342r4xg11n3c" ,
3+ "insertion" : {
4+ "when" : "2026-04-16T14:44:08.634Z" ,
5+ "url" : "https://github.com/plantuml/plantuml/pull/2661" ,
6+ "user" : "plantuml@gmail.com"
7+ }
8+ }
9+ @startuml
10+ <style >
11+ arrow {
12+ fontcolor red
13+ MaximumWidth 150
14+ }
15+ </style >
16+
17+ class OrderService
18+ class PaymentGateway
19+ class InventoryManager
20+
21+ OrderService -> PaymentGateway : processes payment through external gateway service with validation
22+ PaymentGateway -> InventoryManager : updates stock levels after successful payment confirmation
23+ InventoryManager -> OrderService : returns availability status and reservation confirmation
24+ @enduml
Original file line number Diff line number Diff line change 11@ echo off
22
33REM Define versions in variables
4- set " version_old = 1.2025.10"
5- set " version_new = 1.2025.11beta5"
4+ set " version_old = 1.2026.2beta4"
5+ set " version_old = 1.2026.1"
6+ set " version_new = 1.2026.2beta5"
7+
8+ set " version_old = 1.2026.2"
9+ set " version_new = 1.2026.3beta1"
10+
11+ set " version_old = 1.2026.3beta1"
12+ set " version_new = 1.2026.3beta50"
13+
14+ set " version_old = 1.2026.3beta51"
15+ set " version_new = 1.2026.3beta52"
16+
17+ set " version_old = 1.2026.3beta6"
18+ set " version_new = 1.2026.3beta7"
19+
620
721REM Display versions for verification
822echo Old version: %version_old%
@@ -11,7 +25,7 @@ echo New version: %version_new%
1125REM Change directory and run Gradle to build the JAR
1226cd ../plantuml
1327echo Running Gradle task to build the JAR...
14- call ./gradlew jar
28+ call ./gradlew clean jar
1529
1630REM Check if the Gradle command succeeded
1731IF %ERRORLEVEL% NEQ 0 (
You can’t perform that action at this time.
0 commit comments