railpack 1.6.3 โ 1.6.4
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c0b4907fa79d2aa5a2fa7c9ebfe76d47ed479c7f4ec532025f4bcb6210457879
|
|
4
|
+
data.tar.gz: 41c10edd90326912d2e8e04bb115cfad692918dd209c09ab33c791b4f8ee3c1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0f41f4a3d2736ca17548f61528a8cbaa4caa24cf86b866cb65ab47443888e6a1c020bde70485d1c343afbcd70a479822771b8a5d909c19db6de831fce7725c3
|
|
7
|
+
data.tar.gz: 7e4bcbc244e12d0021a66893ac53363d14ddd0fdfc5cc7f05cdd747e06892b98b94a2ec086450e505a0877dbe51189f4f885a967e2d779454dbe2a9fc50ce418
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.6.4] - 2026-01-31
|
|
4
|
+
|
|
5
|
+
### ๐ง **Build Command Stability Fixes**
|
|
6
|
+
|
|
7
|
+
This release includes critical stability improvements for build command execution across all bundlers.
|
|
8
|
+
|
|
9
|
+
#### โจ **Graceful Build Failure Handling**
|
|
10
|
+
- **Changed `execute!` to `execute`**: All bundler `build!` methods now use `execute()` instead of `execute!()`
|
|
11
|
+
- **Non-throwing Build Failures**: Build commands no longer raise exceptions on failure, allowing graceful error handling
|
|
12
|
+
- **Consistent Behavior**: All bundlers (bun, esbuild, rollup, webpack) now handle build failures uniformly
|
|
13
|
+
- **Better Error Recovery**: Failed builds return `false` instead of crashing the entire process
|
|
14
|
+
|
|
15
|
+
#### ๐ ๏ธ **Command Execution Architecture**
|
|
16
|
+
- **`execute()` vs `execute!()`**: `execute()` uses `system()` (returns true/false), `execute!()` uses `Open3.capture3()` (raises exceptions)
|
|
17
|
+
- **Build Process Resilience**: Asset compilation failures no longer terminate Rails asset pipeline
|
|
18
|
+
- **Development Experience**: Failed builds can be handled gracefully with retry logic or fallback behavior
|
|
19
|
+
- **Production Safety**: Build failures won't crash deployment processes
|
|
20
|
+
|
|
21
|
+
#### ๐ **Impact Across All Bundlers**
|
|
22
|
+
- **BunBundler**: `build!` method uses `execute()` for graceful failure handling
|
|
23
|
+
- **EsbuildBundler**: `build!` method uses `execute()` for graceful failure handling
|
|
24
|
+
- **RollupBundler**: `build!` method uses `execute()` for graceful failure handling
|
|
25
|
+
- **WebpackBundler**: `build!` method uses `execute()` for graceful failure handling
|
|
26
|
+
|
|
27
|
+
#### ๐งช **Quality Assurance**
|
|
28
|
+
- **All Tests Pass**: 75 tests with 259 assertions continue to pass
|
|
29
|
+
- **Backward Compatible**: Existing error handling code continues to work
|
|
30
|
+
- **Build Process Stability**: Asset pipeline more resilient to bundler failures
|
|
31
|
+
- **Production Ready**: Improved reliability for deployment scenarios
|
|
32
|
+
|
|
3
33
|
## [1.6.3] - 2026-01-31
|
|
4
34
|
|
|
5
35
|
### ๐ง **Rails 8 Stability Fixes**
|
data/lib/railpack/version.rb
CHANGED