chronos-ruby 1.2.0 → 1.2.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 +8 -0
- data/README.md +5 -5
- data/docs/compatibility.md +1 -1
- data/lib/chronos/version.rb +1 -1
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aea42c14895a85f6100802deb079ade6158d5c2715d95764ef9f125b37237133
|
|
4
|
+
data.tar.gz: 2f3daaf3915cc84a3526d7cf2c019f51f177cb3276fb1b53c70e230d1743d213
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16e681d26a730832fc5ee78cb0613e518502c98000b17a8e349368efae50d12c96f7090c48d3da0beb88498e727f736a4b8f218f4b278cef12f3d882d348f11e
|
|
7
|
+
data.tar.gz: 8f6aa602f3de627309bf2f79140fe5df7d8dac3985a1650fd3a42f791fff7d3225e881633e4c116eb078c058dd98aa70133669859e7b967fe6e35b399adae3c1
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes are documented here. The project follows Semantic Versioning
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [1.2.1] - 2026-08-13
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- expanded the gem summary and description to clarify its exception, metrics, and telemetry monitoring purpose;
|
|
12
|
+
- highlighted the official Chronos Monitor endpoint at https://chronosmonitor.com.br so RubyGems users can identify the platform that receives and displays the collected observability data;
|
|
13
|
+
- updated stable-release references and installation examples to `1.2.1`.
|
|
14
|
+
|
|
7
15
|
## [1.2.0] - 2026-08-12
|
|
8
16
|
|
|
9
17
|
### Added
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Chronos Ruby
|
|
2
2
|
|
|
3
|
-
Chronos Ruby 1.2.
|
|
3
|
+
Chronos Ruby 1.2.1 é o agente para enviar exceções, métricas e telemetria limitada de aplicações Ruby e Rails ao Chronos. Esta é a linha estável atual para Ruby 2.7–3.4, compatível com o protocolo v1.
|
|
4
4
|
|
|
5
5
|
## O que a gem coleta
|
|
6
6
|
|
|
@@ -24,7 +24,7 @@ A gem não varre variáveis de ambiente, sistema de arquivos ou lockfiles e não
|
|
|
24
24
|
|
|
25
25
|
## Versões Ruby e Rails suportadas
|
|
26
26
|
|
|
27
|
-
A versão estável 1.2.
|
|
27
|
+
A versão estável 1.2.1 atende a linha transitional para Ruby 2.7–3.4, Rails 7.x e Sidekiq 7. Ela adiciona contexto por Fiber, Rails Error Reporter, Action Cable, Faraday, Trace Context W3C opcional, integração automática com Sidekiq em Rails e coexistência com um SDK OpenTelemetry já configurado. Combinações ainda classificadas como `Best effort` devem ser validadas pela aplicação antes da adoção em produção; as linhas legadas permanecem disponíveis em releases anteriores.
|
|
28
28
|
|
|
29
29
|
Rubies e frameworks antigos estão fora do suporte de segurança de seus mantenedores. A Chronos oferece compatibilidade técnica, não manutenção de segurança do runtime. Veja [Compatibilidade](docs/compatibility.md).
|
|
30
30
|
|
|
@@ -33,7 +33,7 @@ Rubies e frameworks antigos estão fora do suporte de segurança de seus mantene
|
|
|
33
33
|
Obrigatório: adicione a versão estável ao `Gemfile`.
|
|
34
34
|
|
|
35
35
|
```ruby
|
|
36
|
-
gem "chronos-ruby", "~> 1.2.
|
|
36
|
+
gem "chronos-ruby", "~> 1.2.1"
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
Use Bundler 2 em um runtime suportado:
|
|
@@ -46,7 +46,7 @@ bundle install
|
|
|
46
46
|
Sem Bundler:
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
gem install chronos-ruby -v 1.1
|
|
49
|
+
gem install chronos-ruby -v 1.2.1
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
## Instalação em Rails
|
|
@@ -54,7 +54,7 @@ gem install chronos-ruby -v 1.1.0
|
|
|
54
54
|
Obrigatório: carregue a integração Rails explicitamente para manter Rails/ActiveSupport fora de aplicações Ruby puras.
|
|
55
55
|
|
|
56
56
|
```ruby
|
|
57
|
-
gem "chronos-ruby", "~> 1.1
|
|
57
|
+
gem "chronos-ruby", "~> 1.2.1", :require => "chronos/rails"
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
Gere o initializer:
|
data/docs/compatibility.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Compatibility
|
|
2
2
|
|
|
3
|
-
Chronos Ruby 1.2.
|
|
3
|
+
Chronos Ruby 1.2.1 is the current stable release of the transitional line for modern Ruby, Rails, and Sidekiq applications. Individual combinations remain `Best effort` until their dedicated CI and real-application gates pass; a stable package version does not by itself promote an unverified combination to `Supported`. Technical compatibility does not make an end-of-life Ruby, Rails, Rack, or Sidekiq release secure. Versions 1.0 and 1.1 remain the frozen legacy line.
|
|
4
4
|
|
|
5
5
|
## Core and Rack
|
|
6
6
|
|
data/lib/chronos/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chronos-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Antonio Jefferson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -84,8 +84,11 @@ dependencies:
|
|
|
84
84
|
- - "~>"
|
|
85
85
|
- !ruby/object:Gem::Version
|
|
86
86
|
version: 1.57.0
|
|
87
|
-
description: Cliente Chronos para
|
|
88
|
-
Ruby e Rails.
|
|
87
|
+
description: Cliente oficial do Chronos para capturar e enviar exceções, métricas
|
|
88
|
+
e dados de telemetria de aplicações Ruby e Rails. A gem centraliza sinais de observabilidade
|
|
89
|
+
para facilitar o monitoramento, a análise de desempenho e o diagnóstico de falhas
|
|
90
|
+
no Chronos Monitor. Conheça a plataforma oficial de recebimento e visualização dos
|
|
91
|
+
dados em https://chronosmonitor.com.br.
|
|
89
92
|
email:
|
|
90
93
|
- antoniojeferson96@gmail.com
|
|
91
94
|
executables: []
|
|
@@ -275,5 +278,5 @@ requirements: []
|
|
|
275
278
|
rubygems_version: 3.4.22
|
|
276
279
|
signing_key:
|
|
277
280
|
specification_version: 4
|
|
278
|
-
summary:
|
|
281
|
+
summary: Monitoramento de exceções, métricas e telemetria para Ruby e Rails
|
|
279
282
|
test_files: []
|