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_ 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 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.