active_utils 3.6.0 → 3.6.1
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 +4 -0
- data/Gemfile.lock +1 -1
- data/Rakefile +1 -1
- data/lib/active_utils/version.rb +1 -1
- data/lib/certs/cacert.pem +1096 -1320
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27d52b66e36ca1f6ac0f16624c6e18e8e82e4814c7a8a07bc202c25d75bbbe3f
|
|
4
|
+
data.tar.gz: a57f00fd6db1933f2d1b19810f835cdd58e9064be3bad3a9724ddcfed48f5119
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c33684e4a81e27e22f647694c3fd2c5c423e099fb2315e2d869f1a127eba909ad5fe4814ff183bb138d78822534c5776b5ff93672107566b66bd3bd9c8533ec6
|
|
7
|
+
data.tar.gz: 3c5796076c883d1fa90d305f45599974916d9a4d7e44bf27f1fd6bd98eb361ab6c277d2bb8eedcd116ade25825b56bb2023d059aefd8fce4354b2724963c635b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# ActiveUtils changelog
|
|
2
2
|
|
|
3
|
+
### Version 3.6.1 (September 02, 2026)
|
|
4
|
+
|
|
5
|
+
- Update the curl domain in the `update_cert_file` rake task and update the vendored CA certificate
|
|
6
|
+
|
|
3
7
|
### Version 3.6.0 (September 15, 2025)
|
|
4
8
|
|
|
5
9
|
- Catch and raise `Errno::ENETUNREACH` syscall errors as `ActiveUtils::ConnectionError`
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
|
@@ -13,7 +13,7 @@ desc "Update the built-in CA root certificate file"
|
|
|
13
13
|
task :update_cert_file do
|
|
14
14
|
require 'net/http'
|
|
15
15
|
require 'uri'
|
|
16
|
-
cert_uri = URI('
|
|
16
|
+
cert_uri = URI('https://curl.se/ca/cacert.pem')
|
|
17
17
|
response = Net::HTTP.get_response(cert_uri)
|
|
18
18
|
if response.code == '200'
|
|
19
19
|
cert_path = File.expand_path('../lib/certs/cacert.pem', __FILE__)
|
data/lib/active_utils/version.rb
CHANGED