lex-tasker 0.3.9 → 0.3.10

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: 18c35b8859f19c3fcde85135428682b14d33b7a8ee14f75500ba49a52934f593
4
- data.tar.gz: 2f0ab7cd5f1348f71ea9148f8eec7aa21d95253f6ffa92ecf84cf6c9ee1e3614
3
+ metadata.gz: a404c2e3837104c5a4b3e2c68d7728ebf98e78d947963aab649758bb40393c3b
4
+ data.tar.gz: ed96507e66df83cd025797454e640ccbd9abd4e55ac35f4317ac8a3146c78232
5
5
  SHA512:
6
- metadata.gz: 0e0c883322095656e755d2d2b2a33531e5aeb37a39dc4e5bf46056d78d635d742cb3c7e77feb5b13059ddde5a941c4809eefcdea1203aa3df21fef332ef83789
7
- data.tar.gz: 5b31a940e4abd093a0c9f351294b693320daf4f5514a8b556d68e0dbc0ceea988c8886fb4d48431dbe51639dfbb22c0bcc34d46f8ec708f4fb96fdafddf882d6
6
+ metadata.gz: b6a5fffefcc28eb6fe9438fc43d10a06944dd8737866c2cf7ad6398ecab0fb94c5e8a44e2de2a6b4c9cdfb9936d28135873293f71838b9be935d90affe67fab7
7
+ data.tar.gz: 2c77a5705052db769e0c986f6ca71ecfa2636a56580280e64e63fc38070ed2e955b34f5d40b0ab6b8ac778460323cc2e725827bd301333fc72e2c5fb2256479f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.10] - 2026-04-13
4
+
5
+ ### Added
6
+ - Select `engine` column from `relationships` in `TaskFinder#subtask_query` — propagates engine selection through `build_task_hash` to SubTask dispatch
7
+
8
+ ## [0.3.9] - 2026-03-31
9
+
10
+ ### Fixed
11
+ - Version bump from previous branch (fleet/ws-00h runner fixes)
12
+
3
13
  ## [0.3.8] - 2026-03-31
4
14
 
5
15
  ### Fixed
@@ -16,7 +16,7 @@ module Legion
16
16
  def cache_set(key, value, ttl: 60)
17
17
  return unless defined?(Legion::Cache) && Legion::Cache.respond_to?(:connected?) && cache_connected?
18
18
 
19
- Legion::Cache.set("tasker:#{key}", value, ttl) # rubocop:disable Legion/HelperMigration/DirectCache
19
+ Legion::Cache.set("tasker:#{key}", value, ttl: ttl) # rubocop:disable Legion/HelperMigration/DirectCache
20
20
  rescue StandardError => _e
21
21
  nil
22
22
  end
@@ -104,6 +104,7 @@ module Legion
104
104
  Sequel[:relationships][:action_id],
105
105
  Sequel[:relationships][:conditions],
106
106
  Sequel[:relationships][:transformation],
107
+ Sequel[:relationships][:engine],
107
108
  Sequel[:runners][:namespace],
108
109
  Sequel[:runners][:id].as(:runner_id),
109
110
  Sequel[:runners][:queue],
@@ -3,7 +3,7 @@
3
3
  module Legion
4
4
  module Extensions
5
5
  module Tasker
6
- VERSION = '0.3.9'
6
+ VERSION = '0.3.10'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lex-tasker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.9
4
+ version: 0.3.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity