@kyaukyuai/linear-cli 2.0.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.
package/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ /node_modules
2
+
package/CHANGELOG.md ADDED
@@ -0,0 +1,477 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## [2.0.0] - 2026-03-13
6
+
7
+ > First fork release of `kyaukyuai/linear-cli`.
8
+
9
+ ### Added (fork-specific features)
10
+
11
+ - expanded Linear coverage with cycle, milestone, document, initiative, project update/delete, issue relation, issue attachment, issue comment delete, and raw GraphQL/schema commands
12
+ - added workflow commands for `issue search`, `issue assign`, `issue move`, `issue priority`, `issue estimate`, and `issue label add/remove`
13
+ - added workspace-aware authentication and credential management, including `auth login/logout/list/default/token/whoami/migrate`, system keyring support, and `--workspace`
14
+ - added scriptable output modes across forked commands, including JSON output for project, document, issue, and cycle workflows
15
+ - added agent-oriented assets and distribution channels, including the Claude Code skill plugin, generated skill docs, npm publishing, and the `kyaukyuai/homebrew-tap` release target
16
+
17
+ ### Changed
18
+
19
+ - rebranded the fork to `kyaukyuai/linear-cli`, including package scope `@kyaukyuai/linear-cli`, release infrastructure, install instructions, and marketplace references
20
+ - standardized release and maintainer workflows around git-based automation while preserving runtime support for both git and jj in the CLI itself
21
+ - updated configuration and install flows to better support multi-workspace use, project/global config merging, and package-manager based execution
22
+
23
+ ### Improved
24
+
25
+ - improved CLI reliability with structured validation errors, better auth/config guidance, safer non-TTY spinner handling, and stronger error-path test coverage
26
+ - improved terminal UX with pager support, richer issue/project/document rendering, relative-time fixes, local image and attachment handling, and more JSON-first scripting paths
27
+ - improved internal maintainability with shared helpers such as `withSpinner()`, `resolveIssueInternalId()`, label setup deduplication, deterministic snapshots, and synchronized generated docs/workflows
28
+
29
+ ## [1.11.1] - 2026-03-06
30
+
31
+ ### Added
32
+
33
+ - publish to npm as @schpet/linear-cli, enabling installation via npm/bun as a dev dependency
34
+
35
+ ## [1.11.0] - 2026-03-05
36
+
37
+ ### Added
38
+
39
+ - project update and delete commands, plus --json flag for project commands ([#148](https://github.com/schpet/linear-cli/pull/148); thanks @chronosis)
40
+ - cycle list and view commands, plus --cycle filter for issue list ([#162](https://github.com/schpet/linear-cli/pull/162); thanks @regaw-leinad)
41
+ - issue comment delete command ([#161](https://github.com/schpet/linear-cli/pull/161); thanks @jholm117)
42
+ - cycle support for issue create and update commands ([#150](https://github.com/schpet/linear-cli/pull/150); thanks @jholm117)
43
+ - milestone support for issue create and update commands ([#149](https://github.com/schpet/linear-cli/pull/149); thanks @jholm117)
44
+
45
+ ### Fixed
46
+
47
+ - project update date validation now works correctly when combined with other flags
48
+ - issue view no longer sends auth headers to non-Linear image domains ([#154](https://github.com/schpet/linear-cli/pull/154); thanks @hmnd)
49
+ - project lookup now falls back to slug ID when name match fails ([#158](https://github.com/schpet/linear-cli/pull/158); thanks @mipearson)
50
+ - success message order corrected for 'blocked-by' issue relations
51
+ - git command errors now report more helpful messages
52
+
53
+ ## [1.10.0] - 2026-02-17
54
+
55
+ ### Fixed
56
+
57
+ - issue start command no longer creates extra commit after describing
58
+ - spinners now properly disabled in non-TTY environments
59
+ - correct API key creation URL in auth login ([#146](https://github.com/schpet/linear-cli/pull/146); thanks @srgfrancisco)
60
+
61
+ ### Changed
62
+
63
+ - increased sub-issues display limit from 50 to 250 in issue view ([#124](https://github.com/schpet/linear-cli/pull/124); thanks @paymog)
64
+ - attachment view now shows sourceType (e.g., Slack, GitHub) ([#111](https://github.com/schpet/linear-cli/pull/111); thanks @paymog)
65
+
66
+ ### Added
67
+
68
+ - raw GraphQL API access via new `api` subcommand ([#121](https://github.com/schpet/linear-cli/pull/121); thanks @bendrucker)
69
+ - issue relation command for managing dependencies between issues ([#115](https://github.com/schpet/linear-cli/pull/115); thanks @ztrayner)
70
+ - `--sort-order` flag to milestone update command ([#120](https://github.com/schpet/linear-cli/pull/120); thanks @bendrucker)
71
+ - user-friendly error handling with LINEAR_DEBUG environment variable for troubleshooting
72
+
73
+ ## [1.9.1] - 2026-01-29
74
+
75
+ ### Fixed
76
+
77
+ - switched to --allow-all for Deno permissions since --allow-run was already unrestricted (making granular permissions ineffective) and the permission flags frequently caused issues when downloading images from arbitrary domains in Linear comments
78
+
79
+ ## [1.9.0] - 2026-01-29
80
+
81
+ ### Fixed
82
+
83
+ - Fix `--assignee self` to correctly resolve to current user ([#104](https://github.com/schpet/linear-cli/pull/104); thanks @JustTrott)
84
+ - add pagination to `project list` command ([#109](https://github.com/schpet/linear-cli/pull/109); thanks @andrew-kline)
85
+ - add pagination to `team list` command ([#107](https://github.com/schpet/linear-cli/pull/107); thanks @andrew-kline)
86
+ - error when `--workspace` flag specifies unknown workspace
87
+ - `--sort` flag now works correctly after interactive prompts ([#96](https://github.com/schpet/linear-cli/pull/96); thanks @paymog)
88
+
89
+ ### Added
90
+
91
+ - built-in credential storage at `~/.config/linear/credentials.toml` for managing multiple Linear workspaces
92
+ - `linear auth login` to add workspace credentials (auto-detects workspace from API key)
93
+ - `linear auth logout` to remove workspace credentials
94
+ - `linear auth list` to show configured workspaces with org/user info
95
+ - `linear auth default` to set the default workspace
96
+ - global `-w, --workspace` flag to target a specific workspace by slug
97
+ - `--project` filter for `issue list` command ([#94](https://github.com/schpet/linear-cli/pull/94); thanks @paymog)
98
+
99
+ ## [1.8.1] - 2026-01-23
100
+
101
+ ### Fixed
102
+
103
+ - sync deno permissions to compiled binaries ensuring uploads, public downloads, and config paths work correctly
104
+
105
+ ## [1.8.0] - 2026-01-22
106
+
107
+ ### Fixed
108
+
109
+ - add TTY checks before interactive prompts to prevent hanging in non-interactive mode
110
+
111
+ ### Added
112
+
113
+ - global user config is now merged with project config (`~/.config/linear/linear.toml` on Unix, `%APPDATA%\linear\linear.toml` on Windows); project values override global, env vars override both ([#89](https://github.com/schpet/linear-cli/pull/89); thanks @kfrance)
114
+ - requests now include a User-Agent header (schpet-linear-cli/VERSION)
115
+ - initiative management commands (list, view, create, archive, unarchive, update, delete, add-project, remove-project) ([#95](https://github.com/schpet/linear-cli/pull/95); thanks @skgbafa)
116
+ - label management commands (list, create, delete) ([#95](https://github.com/schpet/linear-cli/pull/95); thanks @skgbafa)
117
+ - project create command with team, lead, dates, status, and initiative linking ([#95](https://github.com/schpet/linear-cli/pull/95); thanks @skgbafa)
118
+ - team delete command ([#95](https://github.com/schpet/linear-cli/pull/95); thanks @skgbafa)
119
+ - bulk operations support for issue delete (--bulk flag) ([#95](https://github.com/schpet/linear-cli/pull/95); thanks @skgbafa)
120
+ - document management commands (list, view, create, update, delete) ([#95](https://github.com/schpet/linear-cli/pull/95); thanks @skgbafa)
121
+ - auto-generate skill documentation from cli help output with deno task generate-skill-docs
122
+ - file attachment support for issues and comments via `issue attach` command and `--attach` flag on `issue comment add`
123
+ - attachments section in `issue view` output with automatic download to local cache
124
+ - `attachment_dir` and `auto_download_attachments` config options
125
+
126
+ ## [1.7.0] - 2026-01-09
127
+
128
+ ### Added
129
+
130
+ - milestone management commands (list, create, update, delete, view) for Linear projects ([#92](https://github.com/schpet/linear-cli/pull/92); thanks @jholm117)
131
+
132
+ ### Fixed
133
+
134
+ - environment variables now correctly take precedence over config file values
135
+
136
+ ## [1.6.0] - 2026-01-05
137
+
138
+ ### Added
139
+
140
+ - add parent and sub-issues to issue view output ([#86](https://github.com/schpet/linear-cli/pull/86); thanks [@paymog](https://github.com/paymog))
141
+
142
+ ### Changed
143
+
144
+ - prefix issue title with identifier in issue view output
145
+
146
+ ## [1.5.0] - 2025-12-16
147
+
148
+ ### Fixed
149
+
150
+ - bring back x86_64-apple-darwin binaries
151
+
152
+ ### Added
153
+
154
+ - add issue commits command to print previous commits associated with an issue (jj-vcs only)
155
+
156
+ ## [1.4.0] - 2025-12-08
157
+
158
+ ### Added
159
+
160
+ - issue view now downloads images locally instead of showing authenticated uploads.linear.app urls (disable with --no-download flag, LINEAR_DOWNLOAD_IMAGES=false env var, or download_images = false in config)
161
+ - optional OSC-8 hyperlinks for images in issue view (configure with hyperlink_format option or LINEAR_HYPERLINK_FORMAT env var)
162
+ - claude code skill plugin for linear-cli
163
+ - schema command to print GraphQL schema (SDL or JSON)
164
+ - auth command with whoami and token subcommands
165
+ - ISC license
166
+
167
+ ## [1.3.1] - 2025-12-02
168
+
169
+ ### Fixed
170
+
171
+ - correctly use arm binaries for aarch64-apple-darwin
172
+ - apply manual sort within priority groups when sorting by priority
173
+
174
+ ### Removed
175
+
176
+ - remove compiled binaries for intel macs - x86_64-apple-darwin
177
+
178
+ ## [1.3.0] - 2025-12-01
179
+
180
+ ### Changed
181
+
182
+ - change the jj description format to include a linear magic word for [commit linking](https://linear.app/changelog/2022-02-03-github-commit-linking)
183
+ - change jj behaviour in issue start to create a new empty commit to support [the squash workflow](https://steveklabnik.github.io/jujutsu-tutorial/real-world-workflows/the-squash-workflow.html)
184
+
185
+ ### Added
186
+
187
+ - issue comment commands: add, update, list ([#67](https://github.com/schpet/linear-cli/pull/67); thanks [@tallesborges](https://github.com/tallesborges))
188
+ - add `--branch` option to issue start command ([#70](https://github.com/schpet/linear-cli/pull/70); thanks [@tallesborges](https://github.com/tallesborges))
189
+
190
+ ## [1.2.1] - 2025-11-10
191
+
192
+ ### Fixed
193
+
194
+ - fix jj empty change detection to properly identify changes without descriptions
195
+
196
+ ## [1.2.0] - 2025-10-21
197
+
198
+ ### Added
199
+
200
+ - support jj-vcs
201
+
202
+ ### Changed
203
+
204
+ - removed uneccessary double prompt around adding labels
205
+
206
+ ## [1.1.1] - 2025-09-02
207
+
208
+ ### Fixed
209
+
210
+ - fixed tests breaking release
211
+
212
+ ## [1.1.0] - 2025-09-02
213
+
214
+ ### Added
215
+
216
+ - add from-ref option to issue start command to start an issue from a different git branch or ref ([#54](https://github.com/schpet/linear-cli/pull/54); thanks [@pianohacker](https://github.com/pianohacker))
217
+
218
+ ### Fixed
219
+
220
+ - omit empty comments section in markdown output instead of showing 'no comments found'
221
+
222
+ ## [1.0.1] - 2025-08-26
223
+
224
+ ### Fixed
225
+
226
+ - pager leaves content visible after quitting
227
+ - make issue label matching case-insensitive
228
+
229
+ ### Changed
230
+
231
+ - issue start command now has searchable prompt with type-ahead filtering
232
+ - improve choices for assignment on issue create
233
+
234
+ ## [1.0.0] - 2025-08-20
235
+
236
+ ### Fixed
237
+
238
+ - state column is now dynamically sized with max 20 chars and auto-truncation
239
+ - correctly align issue list columns
240
+
241
+ ### Removed
242
+
243
+ - linear issue <id> is removed, must use linear issue view <id>. linear issue now prints help text
244
+ - remove support for deriving team ids from directory name
245
+ - deprecated 'linear issue open' and 'linear issue print' commands - use 'linear issue view --app' and 'linear issue view' instead
246
+ - removed team open command (use linear issue list -a)
247
+
248
+ ### Changed
249
+
250
+ - more consistent rendering of priority
251
+ - labels column width now dynamically sized based on actual label content
252
+ - state flag on issue list can now be repeated to filter by multiple states
253
+ - team members command now shows initials, timezone, and other details with --verbose flag
254
+ - organized code into multiple files so it's less of a nightmare to work on
255
+ - linear issue list now sorts by workflow state first
256
+ - issue pr create no longer opens browser by default, added --web flag
257
+ - removed 'about' prefix from relative timestamps
258
+
259
+ ### Added
260
+
261
+ - `issue delete` command to delete issues by id
262
+ - `team members` command to list team members
263
+ - add --assignee flag on `issue list` allowing you to list issues assigned to a user
264
+ - add -U, --unassigned flag to list only unassigned issues
265
+ - add -A, --all-assignees flag to list issues for all assignees
266
+ - allow specifying a --parent on linear issue create
267
+ - add -A and -U flags to issue start command for filtering assignees
268
+ - add --all-states flag to issue list command to show issues from all states
269
+ - add --confirm flag to issue delete command to skip confirmation prompt
270
+ - support --team flag in issue list command
271
+ - show comments by default in linear issue view, use --no-comments to disable
272
+ - project list command to display projects in a table format
273
+ - project view command to show detailed project information
274
+ - team list command to display teams in a table format
275
+ - automatic paging for issue view command with --no-pager flag and pager
276
+ - pager support for issue list command with --no-pager option
277
+ - allow integer-only issue ids when team is configured
278
+ - sub-issues now inherit parent project automatically
279
+ - team create command with flags and interactive mode
280
+
281
+ ## [0.6.4] - 2025-08-12
282
+
283
+ ### Removed
284
+
285
+ - remove unused label lookup functions replaced by team-aware versions
286
+
287
+ ## [0.6.3] - 2025-08-12
288
+
289
+ ### Changed
290
+
291
+ - remove delay before title prompt in interactive create mode
292
+
293
+ ## [0.6.2] - 2025-08-12
294
+
295
+ ### Changed
296
+
297
+ - ask for team selection before issue title in interactive create mode
298
+
299
+ ### Fixed
300
+
301
+ - filter issue labels by team to prevent 'label not associated with team' errors
302
+
303
+ ## [0.6.1] - 2025-08-12
304
+
305
+ ### Changed
306
+
307
+ - improved UX around selecting a team
308
+
309
+ ## [0.6.0] - 2025-08-12
310
+
311
+ ### Security
312
+
313
+ - made deno permissions more specific
314
+
315
+ ### Added
316
+
317
+ - test for JSON and HTML error response formatting
318
+ - added `linear issue create` for creating issues with flags ([#30](https://github.com/schpet/linear-cli/pull/30); thanks [@maparent](https://github.com/maparent))
319
+ - added `linear issue create` interactive issue creation
320
+
321
+ ### Changed
322
+
323
+ - improve error messages when the graphql response has an error
324
+
325
+ ### Fixed
326
+
327
+ - allow longer team ids
328
+
329
+ ## [0.5.7] - 2025-05-22
330
+
331
+ ### Fixed
332
+
333
+ - use older version of cargo dist (v0.28.3)
334
+
335
+ ## [0.5.6] - 2025-05-22
336
+
337
+ ### Fixed
338
+
339
+ - use older version of cargo dist (v0.28.3)
340
+
341
+ ## [0.5.5] - 2025-05-21
342
+
343
+ ### Fixed
344
+
345
+ - use astro-sh fork of cargo-dist
346
+
347
+ ## [0.5.3] - 2025-05-20
348
+
349
+ ### Fixed
350
+
351
+ - use a supported ubuntu version for builds
352
+
353
+ ## [0.5.2] - 2025-05-20
354
+
355
+ ### Fixed
356
+
357
+ - better errors are printed when the api is down
358
+ - support team ids with numbers in them
359
+
360
+ ## [0.5.1] - 2025-02-19
361
+
362
+ ### Fixed
363
+
364
+ - Update terminal width calculation to include spacing for Estimate column
365
+
366
+ ## [0.5.0] - 2025-02-19
367
+
368
+ ### Changed
369
+
370
+ - Include an estimate column on the table output
371
+
372
+ ### Added
373
+
374
+ - running `linear issue start` without any id parameters will list out unstarted issues and let you select one
375
+
376
+ ## [0.4.1]
377
+
378
+ ### Changed
379
+
380
+ - fixed api key links
381
+ - config includes a comment pointing at the repo
382
+
383
+ ## [0.4.0]
384
+
385
+ ### Added
386
+
387
+ - linear issue view to print the issue, with --web and --app flags to open them instead, similar to gh's view commands
388
+
389
+ ### changed
390
+
391
+ - improved output of linear issue start to use the actual workflow name
392
+ - deprecated commands (all will be removed in a future version):
393
+ - `linear team` (replaced by `linear issue list --app`)
394
+ - `linear issue open` (replaced by `linear issue view --app`)
395
+ - `linear issue print` (replaced by `linear issue view`)
396
+
397
+ ## [0.3.2]
398
+
399
+ ### Fixed
400
+
401
+ - use first 'started' state when starting an issue
402
+
403
+ ## [0.3.1]
404
+
405
+ ### fixed
406
+
407
+ - added necessary file for jsr publish
408
+
409
+ ## [0.3.0]
410
+
411
+ ### Added
412
+
413
+ - support for .env files
414
+ - support for a toml based configuration file
415
+ - `linear config` command to generate a config file
416
+ - `linear issue start` command to start an issue
417
+
418
+ ## [0.2.1]
419
+
420
+ ### Fixed
421
+
422
+ - renamed directories to fix the release builds
423
+
424
+ ## [0.2.0]
425
+
426
+ ### Added
427
+
428
+ - `linear issue list` command
429
+
430
+ ## [0.1.0]
431
+
432
+ ### added
433
+
434
+ - adds a -t, --title flag to the `issue pr` command, allowing you to provide a PR title that is different than linear's issue title
435
+ - allows linear issue identifiers to be passed in as arguments to the issue commands as an alternative to parsing the branch name, e.g. `linear issue show ABC-123`
436
+
437
+ [Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.0...HEAD
438
+ [2.0.0]: https://github.com/kyaukyuai/linear-cli/compare/v1.11.1...v2.0.0
439
+ [1.11.1]: https://github.com/schpet/linear-cli/compare/v1.11.0...v1.11.1
440
+ [1.11.0]: https://github.com/schpet/linear-cli/compare/v1.10.0...v1.11.0
441
+ [1.10.0]: https://github.com/schpet/linear-cli/compare/v1.9.1...v1.10.0
442
+ [1.9.1]: https://github.com/schpet/linear-cli/compare/v1.9.0...v1.9.1
443
+ [1.9.0]: https://github.com/schpet/linear-cli/compare/v1.8.1...v1.9.0
444
+ [1.8.1]: https://github.com/schpet/linear-cli/compare/v1.8.0...v1.8.1
445
+ [1.8.0]: https://github.com/schpet/linear-cli/compare/v1.7.0...v1.8.0
446
+ [1.7.0]: https://github.com/schpet/linear-cli/compare/v1.6.0...v1.7.0
447
+ [1.6.0]: https://github.com/schpet/linear-cli/compare/v1.5.0...v1.6.0
448
+ [1.5.0]: https://github.com/schpet/linear-cli/compare/v1.4.0...v1.5.0
449
+ [1.4.0]: https://github.com/schpet/linear-cli/compare/v1.3.1...v1.4.0
450
+ [1.3.1]: https://github.com/schpet/linear-cli/compare/v1.3.0...v1.3.1
451
+ [1.3.0]: https://github.com/schpet/linear-cli/compare/v1.2.1...v1.3.0
452
+ [1.2.1]: https://github.com/schpet/linear-cli/compare/v1.2.0...v1.2.1
453
+ [1.2.0]: https://github.com/schpet/linear-cli/compare/v1.1.1...v1.2.0
454
+ [1.1.1]: https://github.com/schpet/linear-cli/compare/v1.1.0...v1.1.1
455
+ [1.1.0]: https://github.com/schpet/linear-cli/compare/v1.0.1...v1.1.0
456
+ [1.0.1]: https://github.com/schpet/linear-cli/compare/v1.0.0...v1.0.1
457
+ [1.0.0]: https://github.com/schpet/linear-cli/compare/v0.6.4...v1.0.0
458
+ [0.6.4]: https://github.com/schpet/linear-cli/compare/v0.6.3...v0.6.4
459
+ [0.6.3]: https://github.com/schpet/linear-cli/compare/v0.6.2...v0.6.3
460
+ [0.6.2]: https://github.com/schpet/linear-cli/compare/v0.6.1...v0.6.2
461
+ [0.6.1]: https://github.com/schpet/linear-cli/compare/v0.6.0...v0.6.1
462
+ [0.6.0]: https://github.com/schpet/linear-cli/compare/v0.5.7...v0.6.0
463
+ [0.5.7]: https://github.com/schpet/linear-cli/compare/v0.5.6...v0.5.7
464
+ [0.5.6]: https://github.com/schpet/linear-cli/compare/v0.5.5...v0.5.6
465
+ [0.5.5]: https://github.com/schpet/linear-cli/compare/v0.5.3...v0.5.5
466
+ [0.5.3]: https://github.com/schpet/linear-cli/compare/v0.5.2...v0.5.3
467
+ [0.5.2]: https://github.com/schpet/linear-cli/compare/v0.5.1...v0.5.2
468
+ [0.5.1]: https://github.com/schpet/linear-cli/compare/v0.5.0...v0.5.1
469
+ [0.5.0]: https://github.com/schpet/linear-cli/compare/v0.4.1...v0.5.0
470
+ [0.4.1]: https://github.com/schpet/linear-cli/compare/v0.4.0...v0.4.1
471
+ [0.4.0]: https://github.com/schpet/linear-cli/compare/v0.3.2...v0.4.0
472
+ [0.3.2]: https://github.com/schpet/linear-cli/compare/v0.3.1...v0.3.2
473
+ [0.3.1]: https://github.com/schpet/linear-cli/compare/v0.3.0...v0.3.1
474
+ [0.3.0]: https://github.com/schpet/linear-cli/compare/v0.2.1...v0.3.0
475
+ [0.2.1]: https://github.com/schpet/linear-cli/compare/v0.2.0...v0.2.1
476
+ [0.2.0]: https://github.com/schpet/linear-cli/compare/v0.1.0...v0.2.0
477
+ [0.1.0]: https://github.com/schpet/linear-cli/releases/tag/v0.1.0
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ ISC License
2
+
3
+ Copyright (c) Peter Schilling and contributors
4
+
5
+ Permission to use, copy, modify, and/or distribute this software for any
6
+ purpose with or without fee is hereby granted, provided that the above
7
+ copyright notice and this permission notice appear in all copies.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
10
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
12
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
14
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15
+ PERFORMANCE OF THIS SOFTWARE.