legionio 1.4.185 → 1.4.186

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: f9621be53d738c0999c6bc8258cbea49d64bb52d0b3ff5ec004ab60b460d0db9
4
- data.tar.gz: 4fbe9c2e3dbc4d33ef6ae6eb0631172020ce869faa75aebcae40f5606b22a5dc
3
+ metadata.gz: fe7c5039053d23c8a5870b63ca0059a3c30c1112bdad029206baafa574037fa8
4
+ data.tar.gz: 9e4a119425469614f68c2a4ad4d966656248ae3601850ba0841e7d31144de583
5
5
  SHA512:
6
- metadata.gz: 98bf4e665d4f95bfd4061340e33fd45320f3ccb967677e7bb6086df0c64b7f8fe308506765b6d0798cc504347fd1370eadb3d661c9b06c522b008b0540750da2
7
- data.tar.gz: e73ee8599eaadd40dfb4c11b91034d24d76caa8c68b719d55bc21aa75346d7fef7fb9943acd8d24a638ff7fb6e264a726ff6ca4891f602f9a89c69774646887b
6
+ metadata.gz: 4647975c2d46807169d45b66b7dc3a45f533c7964d17113945e4ee605904efcca32d3efbe1acf061cffcbfb34fb4125c67d14522a1976d1c0824e55c7a9d9d1e
7
+ data.tar.gz: 73fe8aac0e9a7e64dbf3564b7fa8c0e8427cb507649096664e40c79632aef16ed93b19684fdfcba86ce84129c44ca69077490002aa1eb226ad591a250a991f51
data/.github/CODEOWNERS CHANGED
@@ -3,8 +3,7 @@
3
3
  #
4
4
  # To apply: scripts/apply-codeowners.sh LegionIO
5
5
 
6
- * @LegionIO/maintainers
7
- * @LegionIO/core
6
+ * @LegionIO/maintainers @LegionIO/core
8
7
 
9
8
  # Path-specific reviewers
10
9
  lib/legion/cli/chat/ @LegionIO/ai
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Legion Changelog
2
2
 
3
+ ## [1.4.186] - 2026-03-23
4
+
5
+ ### Fixed
6
+ - `CLI::Connection#resolve_config_dir` expands tilde in user-provided `config_dir` before existence check (#25)
7
+ - `.github/CODEOWNERS` combined duplicate `*` patterns so both teams are applied (#25)
8
+
9
+ ### Added
10
+ - `Service#setup_settings` spec coverage for canonical directory filtering (#25)
11
+ - `CLI::Connection` spec for tilde expansion in `config_dir` (#25)
12
+
3
13
  ## [1.4.185] - 2026-03-23
4
14
 
5
15
  ### Fixed
data/CLAUDE.md CHANGED
@@ -9,7 +9,7 @@ The primary gem for the LegionIO framework. An extensible async job engine for s
9
9
 
10
10
  **GitHub**: https://github.com/LegionIO/LegionIO
11
11
  **Gem**: `legionio`
12
- **Version**: 1.4.185
12
+ **Version**: 1.4.186
13
13
  **License**: Apache-2.0
14
14
  **Docker**: `legionio/legion`
15
15
  **Ruby**: >= 3.4
@@ -128,7 +128,13 @@ module Legion
128
128
  private
129
129
 
130
130
  def resolve_config_dir
131
- return @config_dir if @config_dir && Dir.exist?(@config_dir)
131
+ if @config_dir.is_a?(String)
132
+ stripped = @config_dir.strip
133
+ unless stripped.empty?
134
+ expanded = File.expand_path(stripped)
135
+ return expanded if Dir.exist?(expanded)
136
+ end
137
+ end
132
138
 
133
139
  require 'legion/settings/loader' unless defined?(Legion::Settings::Loader)
134
140
  Legion::Settings::Loader.default_directories.each do |path|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Legion
4
- VERSION = '1.4.185'
4
+ VERSION = '1.4.186'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legionio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.185
4
+ version: 1.4.186
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity