hephaestus 0.8.15.1 → 0.8.15.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/hephaestus/engine.rb +2 -0
- data/lib/hephaestus/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: 32294228f290d87a19a684f3fc2530fe412d34535b8e6e4718ffa60a8c615392
|
4
|
+
data.tar.gz: d20ef245b643dbf82df6cd29f32a27ba97ed87fcf39be7e9919f2fed29a60cd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb78fbf480da7df605cb7e2ba071a537ee242b82a9a3e6ad82bd42bd2515fe496000fa6a8c347ac2413c3761e84d9701cdb452e9f35d6a0cc765fa3d26aaeed5
|
7
|
+
data.tar.gz: 470a53668f0a208b27b75a44aea4c7c42bbe792dfe8bd3410b363797d68b596c7b2d87069cfb4c9ed631d260afacc38ab10435a5cd7cb9c93a07325fe118a9ed
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
# [v0.8.15.3] - 16-01-2025
|
2
|
+
**Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.15.2...v0.8.15.3
|
3
|
+
# [v0.8.15.2] - 16-01-2025
|
4
|
+
**Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.15.1...v0.8.15.2
|
1
5
|
# [v0.8.15.1] - 16-01-2025
|
2
6
|
## What's Changed
|
3
7
|
* Bugfixes by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/107
|
data/lib/hephaestus/engine.rb
CHANGED
@@ -78,6 +78,8 @@ module Hephaestus
|
|
78
78
|
end
|
79
79
|
|
80
80
|
def within_op_rate_limit?
|
81
|
+
return true if ENV.fetch("DOCKER", "0") == "1"
|
82
|
+
|
81
83
|
results = %x(#{include_sudo?}op service-account ratelimit --format=json).chomp.tap do |_result|
|
82
84
|
unless $CHILD_STATUS.success?
|
83
85
|
Rails.logger.error("Failed to retrieve rate limits")
|
data/lib/hephaestus/version.rb
CHANGED