lex-microsoft_teams 0.6.0 → 0.6.1

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: 01446eb9c4949be87da72534f700b4df999d654c479807e10afe77d2c8d5f584
4
- data.tar.gz: 6d749b6ee7d420fedfa517dbeb73ac321c2fef90333a6b4aaca65f1df6195aed
3
+ metadata.gz: 439919e984b3f173a68fbf3aff14bcd05929e8d98a72bc9b0788f3ca52df6299
4
+ data.tar.gz: e083fb48fa2085d2a62e3403e1e79fc4f1d50c594f098c2aefdedfb7fd1adca0
5
5
  SHA512:
6
- metadata.gz: 8ed0d0cf1be02569570bcf7d415f6bd490358466f88f2b908166f4a3756c116073ce24959c01d43608a3d9bb3783a1fd9002394410692b07b70e574ae34b9967
7
- data.tar.gz: 18ba3b8cbcdc980e871fae2824a5c24ce5752d6aa1b7c836c3c94351d68c05e94927ae9d995f3f0f3465e601b711f563fd243df743b1c15a1045332150725527
6
+ metadata.gz: c51c461988ebf5448d971c05f0e7adea2fe6b347b427d4ff39441461f440192dd1038292135a3acd570cbc6e539ac789e72d6b2d71fed140ce67e995bb644574
7
+ data.tar.gz: 04750f07309b23c63e1ff20722e5d3507f06acccfa111c034eec8811c2776a95f5071a5e8781a2ff29a23542a9adbf249fa7404a69f8e4b3af49528ec4cbf889
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.1] - 2026-03-21
4
+
5
+ ### Fixed
6
+ - Guard nil settings in IncrementalSync actor `args` and `delay` methods — `Legion::Settings[:microsoft_teams]` can return nil without raising
7
+
3
8
  ## [0.6.0] - 2026-03-20
4
9
 
5
10
  ### Added
data/CLAUDE.md CHANGED
@@ -65,7 +65,7 @@ Legion::Extensions::MicrosoftTeams
65
65
  ├── Hooks/
66
66
  │ └── Auth # OAuth callback hook (mount '/callback') → /api/hooks/lex/microsoft_teams/auth/callback
67
67
  ├── CLI/
68
- │ └── Auth # CLI module for `legion lex teams auth login/status`
68
+ │ └── Auth # CLI module for `legion lex exec teams auth login/status`
69
69
  └── Client # Standalone client (includes all runners)
70
70
  ```
71
71
 
@@ -115,7 +115,7 @@ Four-phase data ingestion that runs after delegated auth to build the agent's so
115
115
 
116
116
  ### CLI
117
117
 
118
- `CLI::Auth` provides `legion lex teams auth login` and `legion lex teams auth status` via the LEX CLI manifest system. Uses `cli_alias: 'teams'` for short-form dispatch.
118
+ `CLI::Auth` provides `legion lex exec teams auth login` and `legion lex exec teams auth status` via the LEX CLI manifest system. Uses `cli_alias: 'teams'` for short-form dispatch. The Thor command is `invoke_ext` with `exec` as an alias (`run` is a Thor reserved word).
119
119
 
120
120
  Design doc: `docs/plans/2026-03-20-teams-cognitive-pipeline-implementation.md`
121
121
 
@@ -14,7 +14,7 @@ module Legion
14
14
 
15
15
  def delay
16
16
  settings = begin
17
- Legion::Settings[:microsoft_teams]
17
+ Legion::Settings[:microsoft_teams] || {}
18
18
  rescue StandardError
19
19
  {}
20
20
  end
@@ -31,7 +31,7 @@ module Legion
31
31
  def args
32
32
  token = resolve_token
33
33
  settings = begin
34
- Legion::Settings[:microsoft_teams]
34
+ Legion::Settings[:microsoft_teams] || {}
35
35
  rescue StandardError
36
36
  {}
37
37
  end
@@ -3,7 +3,7 @@
3
3
  module Legion
4
4
  module Extensions
5
5
  module MicrosoftTeams
6
- VERSION = '0.6.0'
6
+ VERSION = '0.6.1'
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-microsoft_teams
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity