hephaestus 0.8.17 → 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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/hephaestus/middleware/openapi_validation.rb +1 -1
- data/lib/hephaestus/version.rb +1 -1
- 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: 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,9 @@
|
|
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
|
1
7
|
# [v0.8.17] - 17-02-2025
|
2
8
|
## What's Changed
|
3
9
|
* Silence errors about being unable to log metrics by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/116
|
@@ -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
|