lex-agentic-social 0.1.17 → 0.1.18
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: c669852940dd9abfa0890d908ed6520df5ba9aa89dad4fc58fadd28a8ecd8529
|
|
4
|
+
data.tar.gz: 65832a10c828873e86131c0e1c7adbc23708a70f607ace40f73e1b4aa457dd33
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 821f62c6dd7086ab97cc23958319080e4b6fcd8eddb2f59929bc6c9c9fa24291ef3c2d32eedf08767f67a5cbbad312a9ea9e12703429060a9d3aa3a4d2327284
|
|
7
|
+
data.tar.gz: 83751ac84ae50a28275479b1ef216f40ec43de7d75f45116e7e383ca649f73763da16b00ca9737ab76d67a23bcf9f3352841c8c49f806dc745874e3f334ab136
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.18] - 2026-05-29
|
|
4
|
+
### Added
|
|
5
|
+
- Database index on `trust_entries.domain` column for faster filtered domain lookups
|
|
6
|
+
|
|
3
7
|
## [0.1.17] - 2026-05-15
|
|
4
8
|
### Fixed
|
|
5
9
|
- Social LLM enhancers now send explicit system and user messages to native `Legion::LLM.chat` dispatch instead of opening legacy nil-input chat sessions.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
Sequel.migration do
|
|
4
|
+
up do
|
|
5
|
+
alter_table(:trust_entries) do
|
|
6
|
+
add_index :domain, name: :idx_trust_entries_domain
|
|
7
|
+
end
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
down do
|
|
11
|
+
alter_table(:trust_entries) do
|
|
12
|
+
drop_index :domain, name: :idx_trust_entries_domain
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lex-agentic-social
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Esity
|
|
@@ -321,6 +321,7 @@ files:
|
|
|
321
321
|
- lib/legion/extensions/agentic/social/trust/helpers/trust_map.rb
|
|
322
322
|
- lib/legion/extensions/agentic/social/trust/helpers/trust_model.rb
|
|
323
323
|
- lib/legion/extensions/agentic/social/trust/local_migrations/20260316000020_create_trust_entries.rb
|
|
324
|
+
- lib/legion/extensions/agentic/social/trust/local_migrations/20260528000001_add_trust_entries_domain_index.rb
|
|
324
325
|
- lib/legion/extensions/agentic/social/trust/runners/trust.rb
|
|
325
326
|
- lib/legion/extensions/agentic/social/trust/version.rb
|
|
326
327
|
- lib/legion/extensions/agentic/social/version.rb
|