From 10329594e3fee8314dab876858d121191256e85b Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 10 Jul 2026 07:20:57 +0000 Subject: [PATCH] changelog: add Edge Scripting symlinks, timestamps, and permissions support Add changelog entries for the new Edge Scripting Node.js filesystem capabilities: symbolic link support, reliable file timestamps, and owner-level permission enforcement (PR #328). Co-Authored-By: Claude Opus 4.6 Claude-Session: https://claude.ai/code/session_01Lobn37xLzwjhsG5AvmDv36 --- changelog.mdx | 6 ++++++ scripting/changelog.mdx | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/changelog.mdx b/changelog.mdx index 4d163dd1..d866ea22 100644 --- a/changelog.mdx +++ b/changelog.mdx @@ -4,6 +4,12 @@ description: "Latest updates and improvements across bunny.net products." rss: true --- + + ## Symbolic links, timestamps, and permissions in Edge Scripting + + The Edge Scripting Node.js file system module now supports symbolic links (`symlink()`, `readlink()`, `lstat()`), returns correct file timestamps (`atime`, `mtime`, `ctime`, `birthtime`), and enforces owner-level file and directory permissions (`chmod()`, `access()`, `Stats.mode`). [Learn more](/scripting/node-fs) + + ## S3 API 'Public Preview' launched diff --git a/scripting/changelog.mdx b/scripting/changelog.mdx index e448a050..00d8c6c4 100644 --- a/scripting/changelog.mdx +++ b/scripting/changelog.mdx @@ -4,6 +4,12 @@ description: Latest updates and improvements to Edge Scripting. rss: true --- + + ## Symbolic links, timestamps, and permissions support + + The Node.js file system module now supports symbolic links (`symlink()`, `readlink()`, `lstat()`), returns correct file timestamps (`atime`, `mtime`, `ctime`, `birthtime`), and enforces owner-level file and directory permissions (`chmod()`, `access()`, `Stats.mode`). [Learn more](/scripting/node-fs) + + ## Node.js file system API