Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(changesets): version packages #542

Merged
merged 1 commit into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/calm-lizards-leave.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/short-timers-exercise.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/weak-eagles-drop.md

This file was deleted.

18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change Log

## 1.7.0

### Minor Changes

- [#544](https://github.com/SmartThingsCommunity/smartthings-cli/pull/544) [`c32e1e1`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/c32e1e1a010d0458591aa20f44d067e1344076b1) Thanks [@rossiam](https://github.com/rossiam)! - added support for viewing edge driver usage and pruning unused drivers

### Patch Changes

- [#541](https://github.com/SmartThingsCommunity/smartthings-cli/pull/541) [`b865ad8`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/b865ad8c7752ed85aadcadd0c1c6da742f74f93f) Thanks [@rossiam](https://github.com/rossiam)! - Fixed cancel action on schema:create command when validation errors exist.

- Updated dependencies [[`c32e1e1`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/c32e1e1a010d0458591aa20f44d067e1344076b1), [`b865ad8`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/b865ad8c7752ed85aadcadd0c1c6da742f74f93f), [`bcb0af5`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/bcb0af5b011043903d265b40ac381f1dc0ebcff6)]:
- @smartthings/[email protected]
- @smartthings/[email protected]

## 1.6.0

### Minor Changes
Expand Down
256 changes: 128 additions & 128 deletions packages/cli/README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smartthings/cli",
"version": "1.6.0",
"version": "1.7.0",
"description": "Command Line Interface for the SmartThings APIs",
"author": "Samsung Electronics Co., LTD.",
"bin": {
Expand Down Expand Up @@ -76,9 +76,9 @@
"@oclif/plugin-help": "^5.1.12",
"@oclif/plugin-not-found": "^2.3.1",
"@oclif/plugin-plugins": "^2.1.0",
"@smartthings/cli-lib": "^2.2.0",
"@smartthings/cli-lib": "^2.2.1",
"@smartthings/core-sdk": "^7.1.1",
"@smartthings/plugin-cli-edge": "^3.2.1",
"@smartthings/plugin-cli-edge": "^3.3.0",
"inquirer": "^8.2.4",
"js-yaml": "^4.1.0",
"log4js": "^6.6.0",
Expand Down
13 changes: 13 additions & 0 deletions packages/edge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @smartthings/plugin-cli-edge

## 3.3.0

### Minor Changes

- [#544](https://github.com/SmartThingsCommunity/smartthings-cli/pull/544) [`c32e1e1`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/c32e1e1a010d0458591aa20f44d067e1344076b1) Thanks [@rossiam](https://github.com/rossiam)! - added support for viewing edge driver usage and pruning unused drivers

### Patch Changes

- [#545](https://github.com/SmartThingsCommunity/smartthings-cli/pull/545) [`bcb0af5`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/bcb0af5b011043903d265b40ac381f1dc0ebcff6) Thanks [@rossiam](https://github.com/rossiam)! - fixed issue where ctrl-c wouldn't work while connecting

- Updated dependencies [[`b865ad8`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/b865ad8c7752ed85aadcadd0c1c6da742f74f93f), [`bcb0af5`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/bcb0af5b011043903d265b40ac381f1dc0ebcff6)]:
- @smartthings/[email protected]

## 3.2.1

### Patch Changes
Expand Down
52 changes: 26 additions & 26 deletions packages/edge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ EXAMPLES
$ smartthings edge:channels --subscriber-type HUB --subscriber-id <hub-id>
```

_See code: [src/commands/edge/channels.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels.ts)_
_See code: [src/commands/edge/channels.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels.ts)_

## `smartthings edge:channels:assign [DRIVERID] [VERSION]`

Expand Down Expand Up @@ -129,7 +129,7 @@ DESCRIPTION
https://developer.smartthings.com/docs/api/public/#operation/createDriverChannel
```

_See code: [src/commands/edge/channels/assign.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/assign.ts)_
_See code: [src/commands/edge/channels/assign.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/assign.ts)_

## `smartthings edge:channels:create`

Expand Down Expand Up @@ -162,7 +162,7 @@ DESCRIPTION
https://developer.smartthings.com/docs/api/public/#operation/createChannel
```

_See code: [src/commands/edge/channels/create.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/create.ts)_
_See code: [src/commands/edge/channels/create.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/create.ts)_

## `smartthings edge:channels:delete [ID]`

Expand Down Expand Up @@ -192,7 +192,7 @@ DESCRIPTION
https://developer.smartthings.com/docs/api/public/#operation/deleteChannel
```

_See code: [src/commands/edge/channels/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/delete.ts)_
_See code: [src/commands/edge/channels/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/delete.ts)_

## `smartthings edge:channels:drivers [IDORINDEX]`

Expand Down Expand Up @@ -227,7 +227,7 @@ DESCRIPTION
https://developer.smartthings.com/docs/api/public/#operation/getDriverChannel
```

_See code: [src/commands/edge/channels/drivers.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/drivers.ts)_
_See code: [src/commands/edge/channels/drivers.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/drivers.ts)_

## `smartthings edge:channels:enroll [HUBID]`

Expand Down Expand Up @@ -255,7 +255,7 @@ DESCRIPTION
enroll a hub in a channel
```

_See code: [src/commands/edge/channels/enroll.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/enroll.ts)_
_See code: [src/commands/edge/channels/enroll.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/enroll.ts)_

## `smartthings edge:channels:enrollments [IDORINDEX]`

Expand Down Expand Up @@ -289,7 +289,7 @@ DESCRIPTION
https://developer.smartthings.com/docs/api/public/#operation/listDriverChannels
```

_See code: [src/commands/edge/channels/enrollments.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/enrollments.ts)_
_See code: [src/commands/edge/channels/enrollments.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/enrollments.ts)_

## `smartthings edge:channels:invites [IDORINDEX]`

Expand Down Expand Up @@ -329,7 +329,7 @@ EXAMPLES
$ smartthings edge:channels:invites <invite id> # list details about the invite with id <invite id>
```

_See code: [src/commands/edge/channels/invites.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/invites.ts)_
_See code: [src/commands/edge/channels/invites.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/invites.ts)_

## `smartthings edge:channels:invites:accept ID`

Expand All @@ -355,7 +355,7 @@ DESCRIPTION
accept a channel invitation
```

_See code: [src/commands/edge/channels/invites/accept.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/invites/accept.ts)_
_See code: [src/commands/edge/channels/invites/accept.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/invites/accept.ts)_

## `smartthings edge:channels:invites:create`

Expand Down Expand Up @@ -385,7 +385,7 @@ DESCRIPTION
create an invitation
```

_See code: [src/commands/edge/channels/invites/create.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/invites/create.ts)_
_See code: [src/commands/edge/channels/invites/create.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/invites/create.ts)_

## `smartthings edge:channels:invites:delete [ID]`

Expand Down Expand Up @@ -413,7 +413,7 @@ DESCRIPTION
delete a channel invitation
```

_See code: [src/commands/edge/channels/invites/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/invites/delete.ts)_
_See code: [src/commands/edge/channels/invites/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/invites/delete.ts)_

## `smartthings edge:channels:metainfo [IDORINDEX]`

Expand Down Expand Up @@ -457,7 +457,7 @@ EXAMPLES
699c7308-8c72-4363-9571-880d0f5cc725
```

_See code: [src/commands/edge/channels/metainfo.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/metainfo.ts)_
_See code: [src/commands/edge/channels/metainfo.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/metainfo.ts)_

## `smartthings edge:channels:unassign [DRIVERID]`

Expand Down Expand Up @@ -489,7 +489,7 @@ DESCRIPTION
https://developer.smartthings.com/docs/api/public/#operation/deleteDriverChannel
```

_See code: [src/commands/edge/channels/unassign.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/unassign.ts)_
_See code: [src/commands/edge/channels/unassign.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/unassign.ts)_

## `smartthings edge:channels:unenroll [HUBID]`

Expand Down Expand Up @@ -531,7 +531,7 @@ EXAMPLES
fcd6ca9c-2764-4dbb-9bbe-d40c900c960f
```

_See code: [src/commands/edge/channels/unenroll.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/unenroll.ts)_
_See code: [src/commands/edge/channels/unenroll.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/unenroll.ts)_

## `smartthings edge:channels:update [ID]`

Expand Down Expand Up @@ -567,7 +567,7 @@ DESCRIPTION
https://developer.smartthings.com/docs/api/public/#operation/updateChannel
```

_See code: [src/commands/edge/channels/update.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/channels/update.ts)_
_See code: [src/commands/edge/channels/update.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/channels/update.ts)_

## `smartthings edge:drivers [IDORINDEX]`

Expand Down Expand Up @@ -621,7 +621,7 @@ EXAMPLES
$ smartthings edge:drivers 699c7308-8c72-4363-9571-880d0f5cc725 --version 2021-10-25T00:48:23.295969
```

_See code: [src/commands/edge/drivers.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers.ts)_
_See code: [src/commands/edge/drivers.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers.ts)_

## `smartthings edge:drivers:default [IDORINDEX]`

Expand Down Expand Up @@ -664,7 +664,7 @@ EXAMPLES
$ smartthings edge:drivers:default 12
```

_See code: [src/commands/edge/drivers/default.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers/default.ts)_
_See code: [src/commands/edge/drivers/default.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers/default.ts)_

## `smartthings edge:drivers:delete [ID]`

Expand Down Expand Up @@ -694,7 +694,7 @@ DESCRIPTION
https://developer.smartthings.com/docs/api/public/#operation/deleteDriver
```

_See code: [src/commands/edge/drivers/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers/delete.ts)_
_See code: [src/commands/edge/drivers/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers/delete.ts)_

## `smartthings edge:drivers:devices [IDORINDEX]`

Expand Down Expand Up @@ -746,7 +746,7 @@ EXAMPLES
$ smartthings edge:drivers:devices --driver b67a134c-ace8-4b8d-9a0e-444ad78b4455
```

_See code: [src/commands/edge/drivers/devices.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers/devices.ts)_
_See code: [src/commands/edge/drivers/devices.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers/devices.ts)_

## `smartthings edge:drivers:install [DRIVERID]`

Expand Down Expand Up @@ -786,7 +786,7 @@ EXAMPLES
$ smartthings edge:drivers:install -H <hub-id> -C <channel-id> <driver-id> # install a driver from a channel on an enrolled hub
```

_See code: [src/commands/edge/drivers/install.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers/install.ts)_
_See code: [src/commands/edge/drivers/install.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers/install.ts)_

## `smartthings edge:drivers:installed [IDORINDEX]`

Expand Down Expand Up @@ -841,7 +841,7 @@ EXAMPLES
$ smartthings edge:drivers:installed <driver-id>
```

_See code: [src/commands/edge/drivers/installed.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers/installed.ts)_
_See code: [src/commands/edge/drivers/installed.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers/installed.ts)_

## `smartthings edge:drivers:logcat [DRIVERID]`

Expand Down Expand Up @@ -871,7 +871,7 @@ DESCRIPTION
stream logs from installed drivers
```

_See code: [src/commands/edge/drivers/logcat.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers/logcat.ts)_
_See code: [src/commands/edge/drivers/logcat.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers/logcat.ts)_

## `smartthings edge:drivers:package [PROJECTDIRECTORY]`

Expand Down Expand Up @@ -932,7 +932,7 @@ EXAMPLES
$ smartthings edge:drivers:package -u driver.zip
```

_See code: [src/commands/edge/drivers/package.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers/package.ts)_
_See code: [src/commands/edge/drivers/package.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers/package.ts)_

## `smartthings edge:drivers:prune [DRIVERID]`

Expand Down Expand Up @@ -964,7 +964,7 @@ DESCRIPTION
https://developer.smartthings.com/docs/api/public/#operation/uninstallDriver
```

_See code: [src/commands/edge/drivers/prune.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers/prune.ts)_
_See code: [src/commands/edge/drivers/prune.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers/prune.ts)_

## `smartthings edge:drivers:switch [DEVICEID]`

Expand Down Expand Up @@ -1009,7 +1009,7 @@ EXAMPLES
$ smartthings edge:drivers:switch --include-non-matching
```

_See code: [src/commands/edge/drivers/switch.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers/switch.ts)_
_See code: [src/commands/edge/drivers/switch.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers/switch.ts)_

## `smartthings edge:drivers:uninstall [DRIVERID]`

Expand Down Expand Up @@ -1041,7 +1041,7 @@ DESCRIPTION
https://developer.smartthings.com/docs/api/public/#operation/uninstallDriver
```

_See code: [src/commands/edge/drivers/uninstall.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.2.1/packages/edge/src/commands/edge/drivers/uninstall.ts)_
_See code: [src/commands/edge/drivers/uninstall.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/@smartthings/plugin-cli-edge@3.3.0/packages/edge/src/commands/edge/drivers/uninstall.ts)_
<!-- commandsstop -->

# Building
Expand Down
Loading