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: 2fc82cf70d0df9c909097bbed4d53fc58e64e2ca8904a49c6d7abf030fc3b2c6
4
- data.tar.gz: 41e0f3966d50d002ccd5cf3a96d488b7bb1d2208cc4f36b931a5fd311786c80a
3
+ metadata.gz: c669852940dd9abfa0890d908ed6520df5ba9aa89dad4fc58fadd28a8ecd8529
4
+ data.tar.gz: 65832a10c828873e86131c0e1c7adbc23708a70f607ace40f73e1b4aa457dd33
5
5
  SHA512:
6
- metadata.gz: e013c357c5281df840b02a4ec06d16fee47d63af742b97ae1a6fe132612b66f6c8464b0316b1d564e6cc3927da03b8b21629500fc52685206af0ef28649865f6
7
- data.tar.gz: 01a2eb7ebda54716bfb68542f22622aedf96525b98809a84d758f1fd2c8fc44d7eb6e5a02cfbf1354da466cbfebe786b99fed33212d537df1bb9cc1963bb7eb2
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
@@ -4,7 +4,7 @@ module Legion
4
4
  module Extensions
5
5
  module Agentic
6
6
  module Social
7
- VERSION = '0.1.17'
7
+ VERSION = '0.1.18'
8
8
  end
9
9
  end
10
10
  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.17
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