chronos-ruby 1.1.2 → 1.1.3

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: 96db5e8fa31836510cfe450df09d41a235f7c70c05d085c80b76c61ca8afdc74
4
- data.tar.gz: 9837a7eab93a50edc9c2d170bab8b8a084a4749427b67615c0a4bb1805b79ee3
3
+ metadata.gz: 348e3ca2ba28d8d97f80281bf0ffb545b013dfac248d7f14527f5d955513d7a2
4
+ data.tar.gz: 44e7047ef9d47aac49f5a22e416447aa82efd3944a93eabd61eb36fa74d3fb2b
5
5
  SHA512:
6
- metadata.gz: 3992ca7200cb52336fc4da5a47302de867a41fb602ed82ec803f6624251cdf4f321e6c19e339f001911d4775baaa54389a6ecc44ab45e79256c1fe8194e67031
7
- data.tar.gz: fc0456b0c1ae67d67ab499812f3e2a9405c112e93105e2671e730cca3edd29085586fa3d1dab9a23543f224da011a291fe4a454d1af7be94c14e4ef8f7d98564
6
+ metadata.gz: 2b4b15808ff7363b470d0c4348fc0a338f4c2ea3eb4112db5b5d6e9c1437315ea57f7ac70f84e7618ea2f120e9210425c31041b328cdc9940c2ebc8593f4a2f3
7
+ data.tar.gz: 92a4bdf9041d68747c5c139061f9000f9526ac26ba9b1b913d73fb1413dd4492764bbb700067e7ffdec7610ebf4e16d671b49792c05e2e694664ca97b72b6e99
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.1.3] - 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 https://chronosmonitor.com.br as the official Chronos Monitor platform for receiving and visualizing observability data;
13
+ - synchronized stable legacy release references and installation examples with version `1.1.3`.
14
+
7
15
  ## [1.1.2] - 2026-08-13
8
16
 
9
17
  ### Changed
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Chronos Ruby
2
2
 
3
- Chronos Ruby 1.1.2 é o agente independente de framework para enviar exceções e telemetria limitada de aplicações Ruby ao Chronos. Esta é a linha estável legado, compatível com o protocolo v1 e voltada a Ruby 2.2.10–2.6.
3
+ Chronos Ruby 1.1.3 é o agente independente de framework para enviar exceções e telemetria limitada de aplicações Ruby ao Chronos. Esta é a linha estável legado, compatível com o protocolo v1 e voltada a Ruby 2.2.10–2.6.
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 1.1.2 suporta Ruby puro e Rack em Ruby 2.2.10, 2.3.8, 2.4.10, 2.5.9 e 2.6.10. As combinações Rails validadas são Rails 4.2 com Ruby 2.2.10/2.3.8 e Rails 5.2 com Ruby 2.5.9/2.6.10. Sidekiq 4.2.10 com Ruby 2.2.10 e Sidekiq 5.2.10 com Ruby 2.5.9 também possuem gates dedicados. Ruby 2.7/Rails 6 não é declarado nesta release porque ainda não possui aplicação e matriz completas.
27
+ A versão 1.1.3 suporta Ruby puro e Rack em Ruby 2.2.10, 2.3.8, 2.4.10, 2.5.9 e 2.6.10. As combinações Rails validadas são Rails 4.2 com Ruby 2.2.10/2.3.8 e Rails 5.2 com Ruby 2.5.9/2.6.10. Sidekiq 4.2.10 com Ruby 2.2.10 e Sidekiq 5.2.10 com Ruby 2.5.9 também possuem gates dedicados. Ruby 2.7/Rails 6 não é declarado nesta release porque ainda não possui aplicação e matriz completas.
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.1.2"
36
+ gem "chronos-ruby", "~> 1.1.3"
37
37
  ```
38
38
 
39
39
  Em runtimes antigos, use Bundler compatível:
@@ -46,7 +46,7 @@ bundle _1.17.3_ install
46
46
  Sem Bundler:
47
47
 
48
48
  ```bash
49
- gem install chronos-ruby -v 1.1.2
49
+ gem install chronos-ruby -v 1.1.3
50
50
  ```
51
51
 
52
52
  ## Instalação em Rails
@@ -54,7 +54,7 @@ gem install chronos-ruby -v 1.1.2
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.2", :require => "chronos/rails"
57
+ gem "chronos-ruby", "~> 1.1.3", :require => "chronos/rails"
58
58
  ```
59
59
 
60
60
  Gere o initializer:
@@ -204,11 +204,11 @@ Por padrão, SQL bruto e binds não são lidos pelo pipeline de análise. A insp
204
204
 
205
205
  ## Sidekiq e Active Job
206
206
 
207
- A versão `0.6.0.pre.1` introduziu middleware Sidekiq 4/5. Em Rails, a versão 1.1.2 detecta Sidekiq e instala automaticamente os middlewares de cliente e servidor:
207
+ A versão `0.6.0.pre.1` introduziu middleware Sidekiq 4/5. Em Rails, a versão 1.1.3 detecta Sidekiq e instala automaticamente os middlewares de cliente e servidor:
208
208
 
209
209
  ```ruby
210
210
  gem "sidekiq", "~> 5.0"
211
- gem "chronos-ruby", "~> 1.1.2", :require => "chronos/rails"
211
+ gem "chronos-ruby", "~> 1.1.3", :require => "chronos/rails"
212
212
  ```
213
213
 
214
214
  Aplicações Ruby sem Rails continuam usando `require "chronos/sidekiq"` explicitamente.
@@ -33,7 +33,7 @@ Chronos Ruby 1.1 is the current stable legacy line. Technical compatibility does
33
33
 
34
34
  Active Job uses the public `serialize`, `deserialize`, and `perform_now` extension points with a bounded namespaced field. Support follows the validated Rails pairs above. Adapters that bypass these hooks require their own evidence.
35
35
 
36
- The release workflow repeats every supported pair before publishing. Version 1.1.2 evidence is recorded in [Version 1.1.2 readiness](release-1.1.2-readiness.md); historical evidence remains in [Version 1.0 readiness](release-1.0-readiness.md) and [Version 1.1 readiness](release-1.1-readiness.md).
36
+ The release workflow repeats every supported pair before publishing. Version 1.1.3 evidence is recorded in [Version 1.1.3 readiness](release-1.1.3-readiness.md); historical evidence remains in [Version 1.1.2 readiness](release-1.1.2-readiness.md), [Version 1.0 readiness](release-1.0-readiness.md), and [Version 1.1 readiness](release-1.1-readiness.md).
37
37
 
38
38
  Status meanings:
39
39
 
@@ -1,10 +1,10 @@
1
1
  # Sidekiq 4/5 legacy integration
2
2
 
3
- Version `0.6.0.pre.1` starts the legacy jobs line with optional Sidekiq 4 and 5 client and server middleware. Version `1.1.2` installs it automatically when Sidekiq is available in a Rails application:
3
+ Version `0.6.0.pre.1` starts the legacy jobs line with optional Sidekiq 4 and 5 client and server middleware. Version `1.1.3` installs it automatically when Sidekiq is available in a Rails application:
4
4
 
5
5
  ```ruby
6
6
  gem "sidekiq", "~> 5.0"
7
- gem "chronos-ruby", "~> 1.1.2", :require => "chronos/rails"
7
+ gem "chronos-ruby", "~> 1.1.3", :require => "chronos/rails"
8
8
  ```
9
9
 
10
10
  Plain Ruby applications continue to use `require "chronos/sidekiq"` explicitly. Both entry points install middleware through the public `configure_client` and `configure_server` APIs. They do nothing when Sidekiq is unavailable, and the framework-independent core never requires Sidekiq. Installation adds no Chronos thread or Redis/database connection per job; delivery continues through the agent's existing fixed worker pool.
@@ -0,0 +1,22 @@
1
+ # Version 1.1.3 release evidence
2
+
3
+ Version `1.1.3` is a backward-compatible documentation and package-metadata maintenance release of the stable legacy line. It clarifies that the gem captures exceptions, metrics, and telemetry from Ruby and Rails applications and identifies https://chronosmonitor.com.br as the official Chronos Monitor platform for receiving and visualizing those observability signals.
4
+
5
+ The release preserves Ruby 2.2.10–2.6.10, Rails 4.2/5.2, Sidekiq 4.2.10/5.2.10, and protocol `schema_version: "1.0"`. It changes no runtime behavior, public API, collected field, framework dependency, or compatibility claim.
6
+
7
+ ## Required gates
8
+
9
+ - complete unit, integration, contract, privacy, concurrency, transport, and lint suite on Ruby 2.2.10–2.6.10;
10
+ - real Rails 4.2 applications on Ruby 2.2.10/2.3.8 and Rails 5.2 applications on Ruby 2.5.9/2.6.10;
11
+ - real Sidekiq 4.2.10 and 5.2.10 client/server middleware smoke tests;
12
+ - documentation and pull request description verification;
13
+ - dependency audit with the CI-pinned tooling;
14
+ - repeatable query-analysis and Rack benchmarks plus the bounded fake-endpoint privacy/load gate;
15
+ - gem build, package inspection, SHA-256 checksum, SPDX SBOM, and RubyGems Trusted Publishing.
16
+
17
+ The release tag must be exactly `v1.1.3` and match `Chronos::VERSION`. Do not publish manually. After the reviewed commit and all gates are green:
18
+
19
+ ```bash
20
+ git tag v1.1.3
21
+ git push origin v1.1.3
22
+ ```
@@ -56,7 +56,7 @@ Require `chronos/capistrano` after the Capistrano/Rake task DSL is loaded. The i
56
56
 
57
57
  ## Sidekiq telemetry is missing
58
58
 
59
- In Rails, require `chronos/rails` and configure Chronos before jobs run; version 1.1.2 detects Sidekiq and installs its public client/server middleware automatically. In plain Ruby, require `chronos/sidekiq` explicitly after Sidekiq is available. Sidekiq remains optional in both cases. A job already enqueued before client middleware installation may lack propagated trace context, but server timing and failure capture can still run.
59
+ In Rails, require `chronos/rails` and configure Chronos before jobs run; version 1.1.3 detects Sidekiq and installs its public client/server middleware automatically. In plain Ruby, require `chronos/sidekiq` explicitly after Sidekiq is available. Sidekiq remains optional in both cases. A job already enqueued before client middleware installation may lack propagated trace context, but server timing and failure capture can still run.
60
60
 
61
61
  ## A failed Sidekiq job appears twice
62
62
 
@@ -1,4 +1,4 @@
1
1
  module Chronos
2
2
  # Current version of the legacy Chronos Ruby agent.
3
- VERSION = "1.1.2".freeze
3
+ VERSION = "1.1.3".freeze
4
4
  end
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.1.2
4
+ version: 1.1.3
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-13 00:00:00.000000000 Z
11
+ date: 2026-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -86,8 +86,11 @@ dependencies:
86
86
  - - '='
87
87
  - !ruby/object:Gem::Version
88
88
  version: 1.19.2
89
- description: Base do cliente Chronos para excecoes, telemetria e observabilidade em
90
- aplicacoes Ruby legadas.
89
+ description: Cliente oficial do Chronos para capturar e enviar exceções, métricas
90
+ e dados de telemetria de aplicações Ruby e Rails. A gem centraliza sinais de observabilidade
91
+ para facilitar o monitoramento, a análise de desempenho e o diagnóstico de falhas
92
+ no Chronos Monitor. Conheça a plataforma oficial de recebimento e visualização dos
93
+ dados em https://chronosmonitor.com.br.
91
94
  email:
92
95
  - antoniojeferson96@gmail.com
93
96
  executables: []
@@ -167,6 +170,7 @@ files:
167
170
  - docs/release-1.0-readiness.md
168
171
  - docs/release-1.1-readiness.md
169
172
  - docs/release-1.1.2-readiness.md
173
+ - docs/release-1.1.3-readiness.md
170
174
  - docs/security-review.md
171
175
  - docs/semver.md
172
176
  - docs/troubleshooting.md
@@ -272,5 +276,5 @@ requirements: []
272
276
  rubygems_version: 3.4.22
273
277
  signing_key:
274
278
  specification_version: 4
275
- summary: Cliente Ruby para captura de eventos do Chronos
279
+ summary: Monitoramento de exceções, métricas e telemetria para Ruby e Rails
276
280
  test_files: []