payload-plugin-newsletter 0.20.2 → 0.20.3

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,3 +1,30 @@
1
+ ## [0.20.3] - 2025-07-31
2
+
3
+ ### Fixed
4
+ - **CRITICAL: Admin Bundle Server Dependencies** - Eliminated all Node.js server dependencies from admin bundle
5
+ - Reorganized source code into strict server/, client/, admin/, shared/ separation
6
+ - Created pure React admin components that don't depend on Node.js built-ins
7
+ - Updated build system with strict external dependencies for admin bundle
8
+ - Added bundle validation script to prevent server dependencies in browser bundles
9
+ - Fixed Next.js App Router compatibility issues with worker_threads, node:assert, and pino dependencies
10
+
11
+ ### Breaking Changes (None)
12
+ - Import paths remain unchanged - full backward compatibility maintained
13
+ - All existing functionality preserved with improved bundle separation
14
+
15
+ ### Technical Changes
16
+ - Reorganized source structure: server/, client/, admin/, shared/ directories
17
+ - Created browser-only admin components without server dependencies
18
+ - Updated tsup config to strictly external Node.js modules in admin bundle
19
+ - Added automated bundle validation in build process
20
+ - Reduced admin bundle size by eliminating server code
21
+
22
+ ### Validation
23
+ - ✅ Admin bundle contains no worker_threads, node:assert, pino dependencies
24
+ - ✅ Client bundle contains no server-side modules
25
+ - ✅ Server bundle maintains full server functionality
26
+ - ✅ All existing APIs and components work unchanged
27
+
1
28
  ## [0.20.2] - 2025-07-31
2
29
 
3
30
  ### Fixed