ez_logs_agent 0.1.7 → 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: e1155fac143bb0af7e99c95a8dde26764f1c3f2bfab758beec239adef8bfab06
4
- data.tar.gz: d87b5b4cc03d73117e0b1759b26c149a73e8bd2c1aa670a8b79f5c0b4a0fe7de
3
+ metadata.gz: d6be395fe0a765025430e03a92081b53d9ae1925df029543cd0785f334bd41b7
4
+ data.tar.gz: 6bcf0dc0e0a93731513463753031161adf6a96ba433d1647d20614162bf5a5ae
5
5
  SHA512:
6
- metadata.gz: 2b91f112497b1443ffe044215819e0fb9a26748026bd43859ed2b239eacb53920cb6ae27c455f34693b46e56cc62ff1775a6177b1e76805f603f2402737a5cf3
7
- data.tar.gz: dd0ae94996e329e795da19f2017a165cbf3e81e81aa8ee493e1a1d086abc02dd1f01bd61ac12fc5c8d08192863877bd83420903e113ada489788465e7f4fcac8
6
+ metadata.gz: 8addaf44c89ada3706be7711c763700338064a296c29d9011361d86ed087b87327662567ec803f8296d6df2fedbca626ee564bc8c8b2090dddb38cc0f6332b8e
7
+ data.tar.gz: e6226450a0391438452c6d9811b76470ec431a4ed5c9046588e6608643c0c29cabd6168ada7ffa7d07f2bf0d211d6994ee712a10858c9372a0ecd71b8bc7d11a
data/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
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
+
5
23
  ## [0.1.7] — 2026-05-28
6
24
 
7
25
  ### Changed
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EzLogsAgent
4
- VERSION = "0.1.7"
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.7
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