bundler 4.0.4 → 4.0.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/definition.rb +1 -1
- data/lib/bundler/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 52862172905cfd08239e83453f143d7dfae83a465e83cdef7206c78bf9480a4a
|
|
4
|
+
data.tar.gz: d1d308a70d8140622b33924ff272abe0400d6f7f53557f0806e1da69e3cbcfd7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8e6c576ac1dd40f5b419ae67951b32a7031c6b8c95f3c24f1ef6560eed003b776367028cfbb8899ba1fae09b9d951b96b77d9c8cfe8c2391ff1c4439e2b85a6
|
|
7
|
+
data.tar.gz: b66816af7f759593af6d0e6dea83bda8307244522b97b5c22f6e0504043e682ba4a015820b261c12deb9852b914d793c154bfd6e072e9286086e154016777373
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.0.5 (2026-01-29)
|
|
4
|
+
|
|
5
|
+
### Enhancements:
|
|
6
|
+
|
|
7
|
+
- Fix Bundler that re-exec $0 when a `version` is present in the config: [#9249](https://github.com/ruby/rubygems/pull/9249)
|
|
8
|
+
|
|
9
|
+
### Bug fixes:
|
|
10
|
+
|
|
11
|
+
- Only use parent source with Git and Path sources [#9269](https://github.com/ruby/rubygems/pull/9269)
|
|
12
|
+
|
|
3
13
|
## 4.0.4 (2026-01-15)
|
|
4
14
|
|
|
5
15
|
### Enhancements:
|
|
@@ -4,8 +4,8 @@ module Bundler
|
|
|
4
4
|
# Represents metadata from when the Bundler gem was built.
|
|
5
5
|
module BuildMetadata
|
|
6
6
|
# begin ivars
|
|
7
|
-
@built_at = "2026-01-
|
|
8
|
-
@git_commit_sha = "
|
|
7
|
+
@built_at = "2026-01-29".freeze
|
|
8
|
+
@git_commit_sha = "6d11c1f49d".freeze
|
|
9
9
|
# end ivars
|
|
10
10
|
|
|
11
11
|
# A hash representation of the build metadata.
|
data/lib/bundler/definition.rb
CHANGED
data/lib/bundler/version.rb
CHANGED