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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6be395fe0a765025430e03a92081b53d9ae1925df029543cd0785f334bd41b7
|
|
4
|
+
data.tar.gz: 6bcf0dc0e0a93731513463753031161adf6a96ba433d1647d20614162bf5a5ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
@@ -10,14 +10,13 @@ EzLogsAgent.configure do |config|
|
|
|
10
10
|
# REQUIRED SETTINGS
|
|
11
11
|
# =============================================================================
|
|
12
12
|
|
|
13
|
-
# URL of the EzLogs server
|
|
14
|
-
#
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
#
|
|
19
|
-
|
|
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.
|
|
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-
|
|
10
|
+
date: 2026-05-29 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: request_store
|