From 2c8d2b3952466a592b8fe7b188110cb3216f0d9f Mon Sep 17 00:00:00 2001 From: yogasw Date: Mon, 10 Nov 2025 15:30:36 +0000 Subject: [PATCH 1/3] chore: update CHANGELOG.md for v2.6.0 --- .github/scripts/generate-docker-section.sh | 0 CHANGELOG.md | 71 ++++++++++++++++++++++ 2 files changed, 71 insertions(+) mode change 100644 => 100755 .github/scripts/generate-docker-section.sh diff --git a/.github/scripts/generate-docker-section.sh b/.github/scripts/generate-docker-section.sh old mode 100644 new mode 100755 diff --git a/CHANGELOG.md b/CHANGELOG.md index ded175f6..628b44ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,74 @@ +## v2.6.0 +_Released on 2025-11-10_ + +**New Features** + +1. Added a new action feature. +2. Implemented a JavaScript action. +3. Introduced an action for documentation. + +**Improvements** + +1. Refactored code by replacing the default logger with a custom logger and incorporating recovery middleware. +2. Enhanced logging by including request IDs. +3. Restructured the action folder organization. +4. Improved the listing action functionality. +5. Improved the header creation action. +6. Improved the header and list actions. +7. Improved overall code structure. +8. Revamped the action form. +9. Enhanced the replace text validation process. +10. Updated the priority action. + +**Bug Fixes** + +1. Fixed issues with pipelines. +### Docker Images +Use one of these commands to pull the Docker image: + +2.6.0: Pulling from yogasw/beo-echo +17a39c0ba978: Pulling fs layer +54ab7447443f: Pulling fs layer +ea8fa7f060e7: Pulling fs layer +b02b1452cdab: Pulling fs layer +1ffad2bb0cd2: Pulling fs layer +43f9a0fa7455: Pulling fs layer +6ab8feb2a549: Pulling fs layer +43f9a0fa7455: Waiting +6ab8feb2a549: Waiting +b02b1452cdab: Waiting +54ab7447443f: Verifying Checksum +54ab7447443f: Download complete +b02b1452cdab: Verifying Checksum +b02b1452cdab: Download complete +17a39c0ba978: Verifying Checksum +17a39c0ba978: Download complete +17a39c0ba978: Pull complete +54ab7447443f: Pull complete +ea8fa7f060e7: Verifying Checksum +ea8fa7f060e7: Download complete +43f9a0fa7455: Verifying Checksum +43f9a0fa7455: Download complete +6ab8feb2a549: Verifying Checksum +6ab8feb2a549: Download complete +ea8fa7f060e7: Pull complete +b02b1452cdab: Pull complete +1ffad2bb0cd2: Verifying Checksum +1ffad2bb0cd2: Download complete +1ffad2bb0cd2: Pull complete +43f9a0fa7455: Pull complete +6ab8feb2a549: Pull complete +Digest: sha256:8103207b013d4957cb0f06534914d9fe709c95b5f23cfeb6d0815cd7454be636 +Status: Downloaded newer image for ghcr.io/yogasw/beo-echo:2.6.0 +ghcr.io/yogasw/beo-echo:2.6.0 +latest: Pulling from yogasw/beo-echo +Digest: sha256:8103207b013d4957cb0f06534914d9fe709c95b5f23cfeb6d0815cd7454be636 +Status: Downloaded newer image for ghcr.io/yogasw/beo-echo:latest +ghcr.io/yogasw/beo-echo:latest + +--- +*This summary was automatically generated by Gemini AI* + ## v2.5.3 _Released on 2025-11-03_ From d950df8c4ee442ad867f63e4108d7c55838e61e2 Mon Sep 17 00:00:00 2001 From: Yoga Setiawan Date: Tue, 11 Nov 2025 07:41:24 +0700 Subject: [PATCH 2/3] docs: update security notice in JavaScriptAction.svelte to clarify sandbox limitations --- .../actions/modules/JavaScript/JavaScriptAction.svelte | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/lib/components/actions/modules/JavaScript/JavaScriptAction.svelte b/frontend/src/lib/components/actions/modules/JavaScript/JavaScriptAction.svelte index 95c5c048..0bca4d18 100644 --- a/frontend/src/lib/components/actions/modules/JavaScript/JavaScriptAction.svelte +++ b/frontend/src/lib/components/actions/modules/JavaScript/JavaScriptAction.svelte @@ -186,8 +186,10 @@ if (response) {
Sandboxed Environment
-
- JavaScript code runs in a secure sandbox. Network requests and file system access are disabled. Scripts timeout after 5 seconds. +
+
JavaScript code runs in a secure sandbox with ECMAScript 5.1 support.
+
Limitations: No async/await, arrow functions (=>), let/const, template literals, or other ES6+ features.
+
Network requests and file system access are disabled. Scripts timeout after 5 seconds.
From a5fb40aa85489492a62fac90845abafa2204ccf1 Mon Sep 17 00:00:00 2001 From: Yoga Setiawan Date: Tue, 11 Nov 2025 07:41:46 +0700 Subject: [PATCH 3/3] bump: update version to 2.6.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 914ec967..b8d12d73 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.6.0 \ No newline at end of file +2.6.1 \ No newline at end of file