minato-observability-rails 0.0.4 → 0.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 +28 -0
- data/lib/minato/observability/rails.rb +3 -0
- data/lib/minato/observability/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a80e248dd6bea1de86d6d3297ae71802b0a13bf213cf37d3b52bb5ad37bd8aa
|
|
4
|
+
data.tar.gz: 7ac508ae1c93a6a4d4930f42985ff6fa869bb84c8aee7b6e1f2a1fc2b4ef4fdf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4fd5e86bb436a89537a94e1d00b5adf21736dd6a964a08ce415765184a2ba30c37e5520fb4f79c57f84d5bbc9d7c24f69daa67b8406cada1c8f1b1a97345bdb
|
|
7
|
+
data.tar.gz: 47a3412c6c4ca6d95b1b913b08d3e3a3a82837f4c1bf8fae22fa48c8d9c995890b6679958e83ec5476c62a3a3db695e11e80c34ffd6f805a379223ae49046c0d
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,34 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.0.5] - 2026-05-26
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Adicionado `lib/minato/observability/rails.rb` como ponto de entrada para auto-require do Bundler,
|
|
13
|
+
seguindo a convenção de gems com hífen no nome (`minato-observability-rails` → `minato/observability/rails`).
|
|
14
|
+
Garante que `MinatoLogger` e `Minato::Trace` estejam disponíveis antes dos arquivos
|
|
15
|
+
`config/environments/*.rb` serem carregados pelo Rails.
|
|
16
|
+
|
|
17
|
+
## [0.0.4] - 2026-04-22
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Atualizada dependência `minato-trace` para `~> 1.0.5`.
|
|
22
|
+
|
|
23
|
+
## [0.0.3] - 2026-04-17
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- Atualizada dependência `minato_logger` para `~> 0.5`.
|
|
28
|
+
|
|
29
|
+
## [0.0.2] - 2026-04-10
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- Atualizada dependência `minato_logger` para `~> 0.3`, que adiciona enriquecimento de entradas de log
|
|
34
|
+
com `session_id`, `page_url` e `user_id` via `RequestContextEnricher` middleware.
|
|
35
|
+
|
|
8
36
|
## [0.0.1] - 2026-04-07
|
|
9
37
|
|
|
10
38
|
### Added
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minato-observability-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ferreri
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-05-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: minato_logger
|
|
@@ -50,6 +50,7 @@ files:
|
|
|
50
50
|
- CHANGELOG.md
|
|
51
51
|
- README.md
|
|
52
52
|
- lib/minato/observability.rb
|
|
53
|
+
- lib/minato/observability/rails.rb
|
|
53
54
|
- lib/minato/observability/version.rb
|
|
54
55
|
homepage: https://gitlab.com/ferreri/minato/minato-observability-rails
|
|
55
56
|
licenses:
|