checkoff 0.250.0 → 0.251.0

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: c018484167b02bab41b2ae847816fa50636b1e07e9c1b16e0deba7c8845f5020
4
- data.tar.gz: 6f2ba0bf3a91c8c63f5fcaaf1c4a4d7bcc5997f54bf0052dc99f6205d31246f8
3
+ metadata.gz: e889ef0029e5bf6ef6707b7b29c82b0d2218c576a0ad98f48ba698e353fdb5f7
4
+ data.tar.gz: 59110e44c00573a919b7b700e2dcf0d8e016742b3cba753a650933f00b08b80d
5
5
  SHA512:
6
- metadata.gz: 8cca4f3e17af913a35b453886c78bbff6c478b8bbc756e119dedfb39cff9555444a4359eb7c833d2b365f48562e3f8d68d0f0c795da73ea4f0f6aff42108f249
7
- data.tar.gz: 5f6a327cbdc77ae70768413a1d62994a8564b28f3dc9e09a2f852d817df972838c0004a5f24a2d33a53047e9d4b14054f35c1317cec174dff71a280153f98a1d
6
+ metadata.gz: 0b063c23e67005e6dca77d0cddcdd18652f467b854365bf8f52ce2bb8a2b886b79aad582d1b76dc9069d3d876a3b78362c549c3506bb1756276795ed596ff1f1
7
+ data.tar.gz: e11dc349e0d88d76410d5e03865a06e310820f2797c45af75a19587e0d94a7c5c5f159a6dcbc47c4c7d95e7a2bb6f1a81e5394576ac672c0dc12ef909efd620f
@@ -225,7 +225,11 @@ module Checkoff
225
225
  parent_task_gid = parent_task_info.fetch('gid')
226
226
 
227
227
  parent_task = task_by_gid(parent_task_gid, only_uncompleted: false)
228
- T.must(parent_task).completed_at.nil?
228
+ # Embedded dependency GIDs can outlive the parent fetch (timing) or disagree
229
+ # with cache_method TTL/coherency; treat unfetchable as incomplete.
230
+ next true if parent_task.nil?
231
+
232
+ parent_task.completed_at.nil?
229
233
  end
230
234
  end
231
235
 
@@ -4,5 +4,5 @@
4
4
  # Command-line and gem client for Asana (unofficial)
5
5
  module Checkoff
6
6
  # Version of library
7
- VERSION = '0.250.0'
7
+ VERSION = '0.251.0'
8
8
  end
data/rbi/checkoff.rbi CHANGED
@@ -75,7 +75,7 @@ module Overcommit
75
75
  end
76
76
 
77
77
  module Checkoff
78
- VERSION = '0.250.0'
78
+ VERSION = '0.251.0'
79
79
 
80
80
  class Attachments
81
81
  include Logging
@@ -2442,7 +2442,7 @@ end
2442
2442
  # typed: ignore
2443
2443
  # Command-line and gem client for Asana (unofficial)
2444
2444
  module Checkoff
2445
- VERSION = T.let('0.250.0', T.untyped)
2445
+ VERSION = T.let('0.251.0', T.untyped)
2446
2446
 
2447
2447
  # Move tasks from one place to another
2448
2448
  class MvSubcommand
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: checkoff
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.250.0
4
+ version: 0.251.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vince Broz
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-06-08 00:00:00.000000000 Z
11
+ date: 2026-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport