ez_logs_agent 0.1.6 → 0.1.8

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: 452e5fb397336daeaccc2f5738be03545e5bd318243f30755d5e5205d1c9d2f6
4
- data.tar.gz: 22b04cd9a432fef3006ffb33c4322c188e0d9bb4914fb07487f1a135ada3877c
3
+ metadata.gz: d6be395fe0a765025430e03a92081b53d9ae1925df029543cd0785f334bd41b7
4
+ data.tar.gz: 6bcf0dc0e0a93731513463753031161adf6a96ba433d1647d20614162bf5a5ae
5
5
  SHA512:
6
- metadata.gz: 345f3c6929cf6b88bb6d909c6ada301907ccb2aee852957f8da0b278852033978d5116f6ecd67358b33c50921c4fd82e0c65d2cfa1ebb7304d4b9387f8138617
7
- data.tar.gz: b412f7a99fbc624541062f0fc8ab148576f48350fc0c72636938360d7cc6c17974382b6bcb47800224e315666bd91f992fdb6b4d4218f54efb16c06b2140f08a
6
+ metadata.gz: 8addaf44c89ada3706be7711c763700338064a296c29d9011361d86ed087b87327662567ec803f8296d6df2fedbca626ee564bc8c8b2090dddb38cc0f6332b8e
7
+ data.tar.gz: e6226450a0391438452c6d9811b76470ec431a4ed5c9046588e6608643c0c29cabd6168ada7ffa7d07f2bf0d211d6994ee712a10858c9372a0ecd71b8bc7d11a
data/CHANGELOG.md CHANGED
@@ -2,6 +2,32 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.1.8] — 2026-05-29
6
+
7
+ ### Changed
8
+ - Install template (`rails generate ez_logs_agent:install`) now
9
+ pre-fills `config.server_url` with the real SaaS endpoint
10
+ (`https://app.ezlogs.io`) and `config.project_token` with
11
+ `ENV["EZLOGS_API_KEY"]`, uncommented. Self-hosters override via
12
+ `ENV["EZLOGS_SERVER_URL"]`. New customers only need to set one
13
+ env var (the API key); they no longer have to know to uncomment
14
+ the URL line or guess the right value.
15
+ - Documentation (`QUICKSTART.md`, `CONFIGURATION.md`, `FAQ.md`) uses
16
+ the real product URLs (`app.ezlogs.io`, `ezlogs.io/pricing`)
17
+ instead of `your-ezlogs-server.com` placeholders.
18
+
19
+ No wire-format or runtime-behavior changes. Existing customers'
20
+ already-generated initializer files are untouched — the generator
21
+ doesn't rewrite them. Only fresh installs see the new defaults.
22
+
23
+ ## [0.1.7] — 2026-05-28
24
+
25
+ ### Changed
26
+ - Gem `homepage` now points at the product site (`https://ezlogs.io/`)
27
+ instead of the GitHub mirror, so the RubyGems "Homepage" link sends
28
+ installers to the product. `source_code_uri` still points at the
29
+ mirror. Metadata-only release; no code or wire change.
30
+
5
31
  ## [0.1.6] — 2026-05-24
6
32
 
7
33
  ### Added
data/README.md CHANGED
@@ -1,10 +1,12 @@
1
1
  # EZLogs Agent
2
2
 
3
+ [Website](https://ezlogs.io/) · [Documentation](https://ezlogs.io/rails/) · [Next.js sister agent](https://github.com/dezsirazvan/ez_logs_agent_nextjs)
4
+
3
5
  **Drop-in activity logging for Rails applications.**
4
6
 
5
7
  EZLogs Agent captures what happens in your Rails app — HTTP requests, background jobs, database changes — and sends them to the EZLogs server, where they're transformed into human-readable stories that anyone on your team can understand.
6
8
 
7
- Wire-format identical to the [Next.js sister agent](https://github.com/dezsirazvan/ez_logs/tree/master/ez_logs_agent_nextjs) (`@ezlogs/nextjs`). Same server ingests both. Use Rails on the back end and Next.js on the front end? You see one unified Action timeline.
9
+ Wire-format identical to the [Next.js sister agent](https://github.com/dezsirazvan/ez_logs_agent_nextjs) (`ezlogs-nextjs` on npm). Same server ingests both. Use Rails on the back end and Next.js on the front end? You see one unified Action timeline.
8
10
 
9
11
  ---
10
12
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EzLogsAgent
4
- VERSION = "0.1.6"
4
+ VERSION = "0.1.8"
5
5
  end
@@ -10,14 +10,13 @@ EzLogsAgent.configure do |config|
10
10
  # REQUIRED SETTINGS
11
11
  # =============================================================================
12
12
 
13
- # URL of the EzLogs server (required)
14
- # Default: nil (must be set for events to be sent)
15
- # config.server_url = "https://your-ezlogs-server.com"
16
-
17
- # API key for authentication (required)
18
- # Get this from your EzLogs dashboard: Settings API Keys
19
- # Default: nil
20
- # config.project_token = "your-api-key-here"
13
+ # URL of the EzLogs server. Defaults to the EzLogs SaaS endpoint, which is
14
+ # the same URL for every customer tenants are identified by API key, not
15
+ # by URL. Override only if you self-host.
16
+ config.server_url = ENV.fetch("EZLOGS_SERVER_URL", "https://app.ezlogs.io")
17
+
18
+ # API key for your tenant. Get one at https://app.ezlogs.io/settings/api-keys.
19
+ config.project_token = ENV["EZLOGS_API_KEY"]
21
20
 
22
21
  # =============================================================================
23
22
  # CAPTURE SETTINGS
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ez_logs_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - dezsirazvan
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2026-05-28 00:00:00.000000000 Z
10
+ date: 2026-05-29 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: request_store
@@ -143,11 +143,11 @@ files:
143
143
  - lib/generators/ez_logs_agent/install/install_generator.rb
144
144
  - lib/generators/ez_logs_agent/install/templates/ez_logs_agent.rb.tt
145
145
  - lib/tasks/ez_logs_agent.rake
146
- homepage: https://github.com/dezsirazvan/ez_logs_agent
146
+ homepage: https://ezlogs.io/
147
147
  licenses:
148
148
  - MIT
149
149
  metadata:
150
- homepage_uri: https://github.com/dezsirazvan/ez_logs_agent
150
+ homepage_uri: https://ezlogs.io/
151
151
  source_code_uri: https://github.com/dezsirazvan/ez_logs_agent
152
152
  changelog_uri: https://github.com/dezsirazvan/ez_logs_agent/blob/master/CHANGELOG.md
153
153
  bug_tracker_uri: https://github.com/dezsirazvan/ez_logs_agent/issues