linear-cli 0.7.2 → 0.7.3
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b1055ff8955a4c85769720272e75deed3518b1cb9a8f495cbd980f1d40e249d
|
|
4
|
+
data.tar.gz: 2b5cc596a13c4572e7d7c5a92d5558b5201e48a07a672b16a35ce4998b2f6c5e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf61382e36a9d9df861e268036e806e37d80ef8219218b56c8b4499f9d8a19e1c4af29002990c565df9c19643de244cb988119752dced8229e53d82c3d681daf
|
|
7
|
+
data.tar.gz: 162c3b2c48ce572ab8428479ed1b4540f5535a836a4fa41795f01e582e9e2d6c512e0de047c28479913cb3f2d2711c94393e08bba01b23ecc4a6b550d23f516a
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.7.3] - 2024-02-04
|
|
6
|
+
### Fixed
|
|
7
|
+
- Fixed problem with issue relationship to user (@bougyman)
|
|
8
|
+
|
|
5
9
|
## [0.7.2] - 2024-02-04
|
|
6
10
|
### Fixed
|
|
7
11
|
- Fixed problem when trying to develop an unassigned issue (@bougyman)
|
|
@@ -37,8 +41,9 @@
|
|
|
37
41
|
### Added
|
|
38
42
|
- Added new changelog management system (changelog-rb) (@bougyman)
|
|
39
43
|
|
|
40
|
-
[Unreleased]: https://github.com/rubyists/linear-cli/compare/0.7.
|
|
41
|
-
[0.7.
|
|
44
|
+
[Unreleased]: https://github.com/rubyists/linear-cli/compare/0.7.3...HEAD
|
|
45
|
+
[0.7.3]: https://github.com/rubyists/linear-cli/compare/v0.7.2...0.7.3
|
|
46
|
+
[0.7.2]: https://github.com/rubyists/linear-cli/compare/v0.7.1...v0.7.2
|
|
42
47
|
[0.7.1]: https://github.com/rubyists/linear-cli/compare/v0.7.0...v0.7.1
|
|
43
48
|
[0.7.0]: https://github.com/rubyists/linear-cli/compare/v0.6.1...v0.7.0
|
|
44
49
|
[0.6.1]: https://github.com/rubyists/linear-cli/compare/v0.6.0...v0.6.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
date: 2024-02-04
|
data/lib/linear/cli/version.rb
CHANGED
data/lib/linear/models/user.rb
CHANGED
|
@@ -18,17 +18,17 @@ module Rubyists
|
|
|
18
18
|
email
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
-
def self.
|
|
21
|
+
def self.base_fragment
|
|
22
22
|
@with_teams = fragment('UserWithTeams', 'User') do
|
|
23
23
|
___ Base
|
|
24
24
|
teams do
|
|
25
|
-
nodes { ___ Team
|
|
25
|
+
nodes { ___ Team.base_fragment }
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
def self.me(
|
|
31
|
-
fragment =
|
|
30
|
+
def self.me(**)
|
|
31
|
+
fragment = base_fragment
|
|
32
32
|
q = query do
|
|
33
33
|
viewer do
|
|
34
34
|
___ fragment
|
|
@@ -48,7 +48,7 @@ module Rubyists
|
|
|
48
48
|
query do
|
|
49
49
|
user(id:) do
|
|
50
50
|
assignedIssues(first:, filter: { completedAt: { null: true } }) do
|
|
51
|
-
nodes { ___ Issue
|
|
51
|
+
nodes { ___ Issue.base_fragment }
|
|
52
52
|
end
|
|
53
53
|
end
|
|
54
54
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: linear-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tj (bougyman) Vanderpoel
|
|
@@ -215,6 +215,8 @@ files:
|
|
|
215
215
|
- changelog/0.7.1/tag.yml
|
|
216
216
|
- changelog/0.7.2/fixed_problem_when_trying_to_develop_an_unassigned_issue.yml
|
|
217
217
|
- changelog/0.7.2/tag.yml
|
|
218
|
+
- changelog/0.7.3/fixed_problem_with_issue_relationship_to_user.yml
|
|
219
|
+
- changelog/0.7.3/tag.yml
|
|
218
220
|
- changelog/unreleased/.gitkeep
|
|
219
221
|
- exe/lc
|
|
220
222
|
- exe/lc.sh
|