linear-cli 0.7.2 → 0.7.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c38ce0d4479af4333da0e0a1e509fe29e9b3e317405362d3d11fda4bdfa0e5bd
4
- data.tar.gz: f0c2933ac355c454bceaba5060727ebf403278b70a3b995d6f5051ca8ee13656
3
+ metadata.gz: 4b1055ff8955a4c85769720272e75deed3518b1cb9a8f495cbd980f1d40e249d
4
+ data.tar.gz: 2b5cc596a13c4572e7d7c5a92d5558b5201e48a07a672b16a35ce4998b2f6c5e
5
5
  SHA512:
6
- metadata.gz: 726602148e3a8456f6b7dbdf90f39d3511bb1349ccb2701ff52449dfc9258df2843360e4d5643d67cca9b99a991671a92b76a8d93920c0976fe699a29e3bdfdc
7
- data.tar.gz: 06a4a410223951ab0b65ce304b9433fc6400fe9d592f3c76d52cce611cf87b00c7020588cdd42c84d05adce01760f8a4a06d8b22f5765fbe5e4d0b16a468f1fa
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.2...HEAD
41
- [0.7.2]: https://github.com/rubyists/linear-cli/compare/v0.7.1...0.7.2
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,4 @@
1
+ type: Fixed
2
+ title: >
3
+ Fixed problem with issue relationship to user
4
+ author: bougyman
@@ -0,0 +1 @@
1
+ date: 2024-02-04
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubyists
4
4
  module Linear
5
- VERSION = '0.7.2'
5
+ VERSION = '0.7.3'
6
6
  end
7
7
  end
@@ -18,17 +18,17 @@ module Rubyists
18
18
  email
19
19
  end
20
20
 
21
- def self.with_teams
21
+ def self.base_fragment
22
22
  @with_teams = fragment('UserWithTeams', 'User') do
23
23
  ___ Base
24
24
  teams do
25
- nodes { ___ Team::Base }
25
+ nodes { ___ Team.base_fragment }
26
26
  end
27
27
  end
28
28
  end
29
29
 
30
- def self.me(teams: false)
31
- fragment = teams ? with_teams : Base
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::Base }
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.2
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