hephaestus 0.8.16.1 → 0.8.18
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: ffedeecbefff19cb5a280d95430ff9248ba14256b6fa3189b6b9cfef5a0d88cb
|
4
|
+
data.tar.gz: aa348ded26343abe7cb12911821d3d589e6760829f5cf4c97d441c0396fef7c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31a6fa2a2a39de35377f0356304b0cbbc24715e4ab50dc59f0b6d7fe9f4ddcd0450acba680c87a49b162700315ca9ad3fab8abb9e24e67555c5fd3a42eebb74b
|
7
|
+
data.tar.gz: 445442bdc86c11c68abfd4085587a80f831a1a10e9b62283b03720516c53119a090de6ef16f5681dfd9cb382c9815713fe215e9af35652a75a9674bdb3ff80a7
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
# [v0.8.18] - 24-03-2025
|
2
|
+
## What's Changed
|
3
|
+
* Silence 404 API routes by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/118
|
4
|
+
|
5
|
+
|
6
|
+
**Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.17...v0.8.18
|
7
|
+
# [v0.8.17] - 17-02-2025
|
8
|
+
## What's Changed
|
9
|
+
* Silence errors about being unable to log metrics by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/116
|
10
|
+
|
11
|
+
|
12
|
+
**Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.16.1...v0.8.17
|
1
13
|
# [v0.8.16.1] - 28-01-2025
|
2
14
|
## What's Changed
|
3
15
|
* correct API URL in test by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/114
|
@@ -20,4 +20,6 @@ SlackWebhookLogger.setup do |config|
|
|
20
20
|
|
21
21
|
config.ignore_patterns = [/Can't verify CSRF token authenticity/, /is not a valid MIME type/]
|
22
22
|
config.ignore_patterns << "Fail claimed jobs" # random Solid Queue warning
|
23
|
+
|
24
|
+
config.ignore_patterns << /OpenTelemetry error/ # no need for opentelemetry errors
|
23
25
|
end
|
@@ -41,7 +41,7 @@ module Hephaestus
|
|
41
41
|
else
|
42
42
|
case validated_request.error.type
|
43
43
|
when :not_found
|
44
|
-
Rails.logger.error("Request path not found. Is it defined in
|
44
|
+
Rails.logger.error("Request path not found. Is it defined in openapi.json? ") if Rails.env.development?
|
45
45
|
[Hephaestus::HTTP::NOT_FOUND_I, { "Content-Type" => "application/json" }, [format_str("Not Found")]]
|
46
46
|
else
|
47
47
|
error_message = if validated_request.error.errors.present?
|
data/lib/hephaestus/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hephaestus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Garen Torikian
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bootsnap
|