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