legion-tty 0.4.33 → 0.4.35
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 +10 -0
- data/exe/legion-tty +10 -8
- data/lib/legion/tty/screens/chat.rb +1 -1
- data/lib/legion/tty/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 31b8e7a6dcba6b0327573f361400407394b176b79a115a9e3547c6e38c6523eb
|
|
4
|
+
data.tar.gz: 3f5bf51a8520ca9ab668067a03033467f344020f851b6b6545273b739889135c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b4606e9588d44d94142722851e0b16d2d31e39c3c3ce3054eca965eeac432cf36c79b9ffb2d50e6abf005a37076df1890548f29586a44656f4ce290faf7ef90
|
|
7
|
+
data.tar.gz: 8ac2d9587039192b05262e4ab285b7e1791d41f95c9d58990f04cadcc98113e576019a886fe1130e5ce2ef515f6e85d541c948ac2011f5eacc91ef55e5fd8343
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.35] - 2026-03-25
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Guard bootsnap behind `LEGION_BOOTSNAP=true` env var in `exe/legion-tty`, default to disabled
|
|
7
|
+
|
|
8
|
+
## [0.4.34] - 2026-03-24
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Remove `caller:` from `send_via_daemon` since `Legion::LLM.ask` has a fixed signature and does not accept keyword arguments
|
|
12
|
+
|
|
3
13
|
## [0.4.33] - 2026-03-23
|
|
4
14
|
|
|
5
15
|
### Changed
|
data/exe/legion-tty
CHANGED
|
@@ -3,14 +3,16 @@
|
|
|
3
3
|
|
|
4
4
|
RubyVM::YJIT.enable if defined?(RubyVM::YJIT)
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
6
|
+
if ENV['LEGION_BOOTSNAP'] == 'true' && Dir.exist?(File.expand_path('~/.legionio'))
|
|
7
|
+
require 'bootsnap'
|
|
8
|
+
Bootsnap.setup(
|
|
9
|
+
cache_dir: File.expand_path('~/.legionio/cache/bootsnap'),
|
|
10
|
+
development_mode: false,
|
|
11
|
+
load_path_cache: true,
|
|
12
|
+
compile_cache_iseq: true,
|
|
13
|
+
compile_cache_yaml: true
|
|
14
|
+
)
|
|
15
|
+
end
|
|
14
16
|
|
|
15
17
|
require 'legion/tty'
|
|
16
18
|
|
data/lib/legion/tty/version.rb
CHANGED