vert-core 1.0.2 → 1.0.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/vert/configuration.rb +2 -2
- data/lib/vert/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fce240bc615d242277468b33cee528f84fc235e9ac3bd632dd38658fa374367d
|
|
4
|
+
data.tar.gz: c5614d11fd21e3b7de8a878faa8f86ae2ddd36e6ca5190e6b49693fce86792a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e4761b6da59eac8a8ae5061365e3ba922c2315e8dd13d5a637343b380b012a466e15b08c4b618f3bb249aa5715071119b4bfe73938eb942233fb19ad6b5f08e
|
|
7
|
+
data.tar.gz: 87acee9055cec38e75cbe915725dcfc454ca280ee3ba0ed1df887a1467c68bd3323f73c2d0b24dddb04ac1f17fd4acb981c9c514374f4c1524bc685792516b5f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.3] - 2026-03-21
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- `Configuration`: default `rabbitmq_url` corrigido de `amqp://guest:guest@localhost` para `amqp://vfarma:vfarma123@localhost:5672/`.
|
|
8
|
+
- `Configuration`: default `exchange_name` corrigido de `"vert.events"` para `"verticalerp.events"` (alinhado ao exchange canônico do projeto).
|
|
9
|
+
|
|
3
10
|
## [1.0.0] - 2025-03-14
|
|
4
11
|
|
|
5
12
|
### Added
|
data/lib/vert/configuration.rb
CHANGED
|
@@ -52,8 +52,8 @@ module Vert
|
|
|
52
52
|
|
|
53
53
|
# Production: set RABBITMQ_URL, DOCUMENT_SERVICE_URL, REDIS_URL via ENV; do not rely on defaults.
|
|
54
54
|
@rls_user = ENV.fetch("RLS_USER", "app_user")
|
|
55
|
-
@rabbitmq_url = ENV.fetch("RABBITMQ_URL", "amqp://
|
|
56
|
-
@exchange_name = ENV.fetch("RABBITMQ_EXCHANGE", "
|
|
55
|
+
@rabbitmq_url = ENV.fetch("RABBITMQ_URL", "amqp://vfarma:vfarma123@localhost:5672/")
|
|
56
|
+
@exchange_name = ENV.fetch("RABBITMQ_EXCHANGE", "verticalerp.events")
|
|
57
57
|
@document_service_url = ENV.fetch("DOCUMENT_SERVICE_URL", "http://localhost:3020")
|
|
58
58
|
@health_check_path = "/health"
|
|
59
59
|
@auto_mount_health_routes = false
|
data/lib/vert/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vert-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vert Team
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 2026-03-21 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: activesupport
|
|
@@ -237,7 +237,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
237
237
|
- !ruby/object:Gem::Version
|
|
238
238
|
version: '0'
|
|
239
239
|
requirements: []
|
|
240
|
-
rubygems_version: 3.6.
|
|
240
|
+
rubygems_version: 3.6.2
|
|
241
241
|
specification_version: 4
|
|
242
242
|
summary: Generic core library for Rails microservices
|
|
243
243
|
test_files: []
|