aethel 0.2.4 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.5 (2026-04-05)
4
+
5
+ - Fix Node.js v25 Proxy invariant violation in withDriveRetry
6
+
3
7
  ## 0.2.4 (2026-04-05)
4
8
 
5
9
  - Fix npm publish authentication in CI workflow
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aethel",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Git-style Google Drive sync CLI with interactive TUI",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -71,11 +71,8 @@ export function withDriveRetry(drive) {
71
71
  return (...args) => withRetry(() => value.apply(target, args));
72
72
  },
73
73
  });
74
- return new Proxy(drive, {
75
- get(target, prop, receiver) {
76
- if (prop === "files") return filesProxy;
77
- return Reflect.get(target, prop, receiver);
78
- },
74
+ return Object.create(drive, {
75
+ files: { value: filesProxy, configurable: true, enumerable: true },
79
76
  });
80
77
  }
81
78