raises 0.3.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 826d161b194d0bb9f3d3b1e00f3326dc986da4efb420e9ae1c8ff0dccf59708e
4
- data.tar.gz: b0b9b1dbe0e03571e0585c6982e59091495337e14118765a0ff1274427a1b956
3
+ metadata.gz: 6c55f829b779717ffd7acb8d34538c564f8edfb45a6506fb2f0abdcb39512c49
4
+ data.tar.gz: 604aef8f776d97fd86762853ad00bb4a2bf2956e98e98658f01eec2d621d5d03
5
5
  SHA512:
6
- metadata.gz: ee447f476885abbda2516cbe5b92600b824b879507954f23c8f276225adb718f78652f2cc53bf79e1bf55fe11a6203bad9519b4adffbbcb64e4eae20ca9b653a
7
- data.tar.gz: 15d056b1826db28175a104359215f1a3eebd7497358a8c260057b0811e5a3758bef330c9412372393f7de077a81ea7741bcd8a82a20a9e0f2a0e0898c14c6098
6
+ metadata.gz: '099150a8235d58214fe734b84f2a78d8f2acef2a0f4ca62d0db99c21efb936a2aa609a5d348258d484b8ffca4783adbae275edcb12d800057cd92d7a1764d394'
7
+ data.tar.gz: f2baf3137d3c43bf69f8561a0ad2cc32702236ac9db4e02cf3d48531cf2132e2d370c17b9857abef39f03f77cc34ad3c49797ffe85c39bd7d6e1c23c64569351
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.1
4
+
5
+ - Move source, changelog, and issue links to the standalone Rails client repository.
6
+
3
7
  ## 0.3.0
4
8
 
5
9
  - Add `Raises.notify` for informational, warning, and error-level events.
data/README.md CHANGED
@@ -26,3 +26,9 @@ Optional settings are `RAISES_URL`, `RAISES_ENV`, `RAISES_REVISION`, `RAISES_OPE
26
26
  Set `RAISES_SPOOL_DIR` to add restart-safe, disk-backed delivery retries. The directory must be on persistent storage if payloads should survive a deploy. Raises stores event or exception JSON there with private permissions, never stores the ingestion token, retries network errors, HTTP 408/429, and 5xx responses, and bounds the spool at 1,000 payloads or 100 MB. Leave it unset to preserve synchronous best-effort delivery.
27
27
 
28
28
  The reporter fails open: network or serialization failures never replace the application exception. Rails filtered parameters are included; headers, raw bodies, query strings, and the request object are not.
29
+
30
+ Agent and ingestion interfaces are documented in the [Raises server API](https://github.com/raisestracker/raises/blob/master/docs/api.md). Agent-readable setup is published at [raises.dev/llms.txt](https://raises.dev/llms.txt) and [raises.dev/skill.md](https://raises.dev/skill.md); the Honeybadger, Rollbar, and Sentry migration runbook is at [raises.dev/migration.md](https://raises.dev/migration.md).
31
+
32
+ ## Licensing
33
+
34
+ This gem is MIT-licensed; see [LICENSE.txt](LICENSE.txt). The Raises server and embedded web UI are separately AGPL-3.0-only.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Raises
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
5
5
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raises
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clayton Lengel-Zigich
8
+ autorequire:
8
9
  bindir: bin
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2026-08-19 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: railties
@@ -24,6 +25,7 @@ dependencies:
24
25
  - !ruby/object:Gem::Version
25
26
  version: '7.1'
26
27
  description: A Rails.error subscriber for the agent-operated Raises exception inbox.
28
+ email:
27
29
  executables: []
28
30
  extensions: []
29
31
  extra_rdoc_files: []
@@ -43,10 +45,11 @@ licenses:
43
45
  - MIT
44
46
  metadata:
45
47
  homepage_uri: https://raises.dev
46
- source_code_uri: https://github.com/clayton/raises
47
- changelog_uri: https://github.com/clayton/raises/blob/master/gem/CHANGELOG.md
48
- bug_tracker_uri: https://github.com/clayton/raises/issues
48
+ source_code_uri: https://github.com/raisestracker/raises-rails
49
+ changelog_uri: https://github.com/raisestracker/raises-rails/blob/master/CHANGELOG.md
50
+ bug_tracker_uri: https://github.com/raisestracker/raises-rails/issues
49
51
  rubygems_mfa_required: 'true'
52
+ post_install_message:
50
53
  rdoc_options: []
51
54
  require_paths:
52
55
  - lib
@@ -61,7 +64,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
64
  - !ruby/object:Gem::Version
62
65
  version: '0'
63
66
  requirements: []
64
- rubygems_version: 4.0.10
67
+ rubygems_version: 3.5.22
68
+ signing_key:
65
69
  specification_version: 4
66
70
  summary: Rails.error subscriber that reports exceptions to a raises inbox
67
71
  test_files: []