Skip to content

Commit

Permalink
docs: packaging for 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ztalbot2000 committed Mar 5, 2023
1 parent 38cdf41 commit 42776d3
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 33 deletions.
63 changes: 31 additions & 32 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,37 @@
# Homebridges-cmd4 - CMD4 Plugin for Homebridge - Supports ~All Accessory Types and now all Characteristics too!!
### 6.3.0 (2022-04-12)
#### 7.0.0 (2023-03-05)

##### Bug Fixes
* The reason for the major version numbering update was to for deprecation warnings to throw an error.
These warnings were there for many major versions and are finally removed.

"queueInterval" - Never put into production and will now throw an error.
"queueMsg" - Never put into production and will now throw an error.
"queueStatMsgInterval" - Never put into production and will now throw an error.
"cmd4_Mode" - Obsolete for many versions and will now throw an error.
"storage" - Obsolete outside of fakegato definition.
"storagePath" - Obsolete outside of fakegato definition.
"folder" - Obsolete outside of fakegato definition.
"keyPath" - Obsolete outside of fakegato definition.
"queueTypes" - Obsolete inside accessory definition.

* Bug [#130](https://github.com/ztalbot2000/homebridge-cmd4/pull/130), linked accessories not accesible after restart ([aeab5a40](https://github.com/ztalbot2000/homebridge-cmd4/commit/aeab5a40340631910ae6ac19f9af8453f46faa55))

##### New Features
* Add new characteristics and device types ([c3560130](https://github.com/ztalbot2000/homebridge-cmd4/commit/c3560130e7092b698d0d750924c548a99c4e20f4))
Characteristics
---------------
AssetUpdateReadiness
SupportedAssetTypes
ConfigurationState
NFCAccessControlPoint
NFCAccessSupportedConfiguration
SiriEndpointSessionStatus
ThreadControlPoint
ThreadNodeCapabilities
ThreadStatus
ThreadOpenThreadVersion

Device Types
------------
AccessoryMetrics
AssetUpdate
Assistant
AudioStreamManagement
Battery
CameraRecordingManagement
CloudRelay
DataStreamTransportManagement
NFCAccess
SiriEndpoint
ThreadTransport

Note: While these are now available to use. Some may not be suitable for Cmd4 depending on their complexity.

* add retries. Also formatting issues ([b8ddf9ce](https://github.com/ztalbot2000/homebridge-cmd4/commit/b8ddf9ceda8ace3a6e820bfad0c4a03c656cf419))

##### Bug Fixes

* retry logging starts from zero, but for user count starts from 1 ([38cdf417](https://github.com/ztalbot2000/homebridge-cmd4/commit/38cdf417feebeef2b75dcfec247e6bdfd4739604))
* By nature retryCount should start from zero ([b8e82ffe](https://github.com/ztalbot2000/homebridge-cmd4/commit/b8e82ffe262c092a301636993544be828a7a34a4))
* log message in wrong quotes ([6fc555b0](https://github.com/ztalbot2000/homebridge-cmd4/commit/6fc555b0d7bdc20bfc3a38310e3d4f66b968d55d))
* retries for WoRm should be zero. Can be overriden ([11351633](https://github.com/ztalbot2000/homebridge-cmd4/commit/1135163319c8d16e3886dbf0a0443ba5ed6c4b99))
* Accessory needs to go unresponsive via updateValue with error object ([cdfee1b2](https://github.com/ztalbot2000/homebridge-cmd4/commit/cdfee1b22ea21dc56edc320768ec6ebea1156cb8))

##### Tests

* put back skipped tests ([0b0781fa](https://github.com/ztalbot2000/homebridge-cmd4/commit/0b0781faec7f94e43d67068e15e9505cc7c96414))
* Remove excess debug messages for commit with verify to work ([ea108470](https://github.com/ztalbot2000/homebridge-cmd4/commit/ea108470631f4abe3377f6d582c962dab141be0f))
* Don't know why HomeKit does not cause Cmd4 to generate a log that it is trying to reconnect after unavailable ([d45d7c09](https://github.com/ztalbot2000/homebridge-cmd4/commit/d45d7c095d0989c05b88c161a418402711e26677))
* Add unit testing to prove fix of bug[#130](https://github.com/ztalbot2000/homebridge-cmd4/pull/130) ([e9a902fc](https://github.com/ztalbot2000/homebridge-cmd4/commit/e9a902fcb01fb2ee7c7cb9f2b60e036d0fd5c0d6))


38 changes: 38 additions & 0 deletions RUNNING_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Homebridge UI User. Do not click on any inline links. Homebridge UI does not supprt them. Bug#1098

## ChangeLog
* <a href="#Whats-new-in-6-3-1">**Whats new in 7.0.0**</a>
* <a href="#Whats-new-in-6-3-0">**Whats new in 6.3.0**</a>
* <a href="#Whats-new-in-6-2-0">**Whats new in 6.2.0**</a>
* <a href="#Whats-new-in-6-1-2">**Whats new in 6.1.2**</a>
Expand Down Expand Up @@ -84,6 +85,43 @@
* <a href="#Whats-new-in-2-1">**Whats new in 2.1**</a>
* <a href="#Whats-new-in-2-0">**Whats new in 2.0**</a>

<a name="Whats-new-in-6-3-1">## Whats new in 6.3.1</a>
#### 7.0.0 (2023-03-05)

* The reason for the major version numbering update was to for deprecation warnings to throw an error.
These warnings were there for many major versions and are finally removed.

"queueInterval" - Never put into production and will now throw an error.
"queueMsg" - Never put into production and will now throw an error.
"queueStatMsgInterval" - Never put into production and will now throw an error.
"cmd4_Mode" - Obsolete for many versions and will now throw an error.
"storage" - Obsolete outside of fakegato definition.
"storagePath" - Obsolete outside of fakegato definition.
"folder" - Obsolete outside of fakegato definition.
"keyPath" - Obsolete outside of fakegato definition.
"queueTypes" - Obsolete inside accessory definition.


##### New Features

* add retries. Also formatting issues ([b8ddf9ce](https://github.com/ztalbot2000/homebridge-cmd4/commit/b8ddf9ceda8ace3a6e820bfad0c4a03c656cf419))

##### Bug Fixes

* retry logging starts from zero, but for user count starts from 1 ([38cdf417](https://github.com/ztalbot2000/homebridge-cmd4/commit/38cdf417feebeef2b75dcfec247e6bdfd4739604))
* By nature retryCount should start from zero ([b8e82ffe](https://github.com/ztalbot2000/homebridge-cmd4/commit/b8e82ffe262c092a301636993544be828a7a34a4))
* log message in wrong quotes ([6fc555b0](https://github.com/ztalbot2000/homebridge-cmd4/commit/6fc555b0d7bdc20bfc3a38310e3d4f66b968d55d))
* retries for WoRm should be zero. Can be overriden ([11351633](https://github.com/ztalbot2000/homebridge-cmd4/commit/1135163319c8d16e3886dbf0a0443ba5ed6c4b99))
* Accessory needs to go unresponsive via updateValue with error object ([cdfee1b2](https://github.com/ztalbot2000/homebridge-cmd4/commit/cdfee1b22ea21dc56edc320768ec6ebea1156cb8))

##### Tests

* put back skipped tests ([0b0781fa](https://github.com/ztalbot2000/homebridge-cmd4/commit/0b0781faec7f94e43d67068e15e9505cc7c96414))
* Remove excess debug messages for commit with verify to work ([ea108470](https://github.com/ztalbot2000/homebridge-cmd4/commit/ea108470631f4abe3377f6d582c962dab141be0f))
* Don't know why HomeKit does not cause Cmd4 to generate a log that it is trying to reconnect after unavailable ([d45d7c09](https://github.com/ztalbot2000/homebridge-cmd4/commit/d45d7c095d0989c05b88c161a418402711e26677))
* Add unit testing to prove fix of bug[#130](https://github.com/ztalbot2000/homebridge-cmd4/pull/130) ([e9a902fc](https://github.com/ztalbot2000/homebridge-cmd4/commit/e9a902fcb01fb2ee7c7cb9f2b60e036d0fd5c0d6))


<a name="Whats-new-in-6-3-0">## Whats new in 6.3.0</a>
### 6.3.0 (2022-04-12)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "homebridge-cmd4",
"description": "Exec Plugin for Homebridge supporting all accessorys and characteristics",
"version": "6.3.0",
"version": "7.0.0",
"license": "MIT",
"author": {
"name": "John Talbot"
Expand Down

0 comments on commit 42776d3

Please sign in to comment.