diff --git a/CHANGELOG.md b/CHANGELOG.md index 37869f9..251c0df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0](https://github.com/SuperFlyTV/xkeys/compare/v3.0.1...v3.1.0) (2024-01-11) + + +### Bug Fixes + + +* remove hack (possible HID.HID that exposed a devicePath) ([fca382d](https://github.com/SuperFlyTV/xkeys/commit/fca382dd5109a8447ed7ba51d485de255487bd6d)) +* remove support for HID.HID and HID.Async devices in setupXKeysPanel. ([1bc87ba](https://github.com/SuperFlyTV/xkeys/commit/1bc87ba26227831eb7f312e59eb15f9ed47497e1)) +* support providing HID.HIDAsync into setupXkeysPanel() ([190d4a1](https://github.com/SuperFlyTV/xkeys/commit/190d4a1c2dfa1232b250318c30131624cf67fb23)) +* typo ([095c064](https://github.com/SuperFlyTV/xkeys/commit/095c0640a52b920774965192cfb868badb82f012)) + + +### Features + +* expose Xkeys.filterDevice() static method, used to filter for compatible X-keys devices when manually handling HID devices ([ab542a8](https://github.com/SuperFlyTV/xkeys/commit/ab542a8630c749f79cd21c4589eb263c6017ea99)) +* use async node-hid ([429c5ea](https://github.com/SuperFlyTV/xkeys/commit/429c5ea6e83f5a8a025180d3c6a15943bddaf5d6)) + + + + + ## [3.0.1](https://github.com/SuperFlyTV/xkeys/compare/v3.0.0...v3.0.1) (2023-11-02) diff --git a/lerna.json b/lerna.json index 27e3054..ad25264 100644 --- a/lerna.json +++ b/lerna.json @@ -4,5 +4,5 @@ ], "npmClient": "yarn", "useWorkspaces": true, - "version": "3.0.1" + "version": "3.1.0" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 1265aee..edb00a1 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0](https://github.com/SuperFlyTV/xkeys/compare/v3.0.1...v3.1.0) (2024-01-11) + + +### Bug Fixes + +* expose Xkeys.filterDevice() static method, used to filter for compatible X-keys devices when manually handling HID devices ([ab542a8](https://github.com/SuperFlyTV/xkeys/commit/ab542a8630c749f79cd21c4589eb263c6017ea99)) + + + + + ## [3.0.1](https://github.com/SuperFlyTV/xkeys/compare/v3.0.0...v3.0.1) (2023-11-02) **Note:** Version bump only for package @xkeys-lib/core diff --git a/packages/core/package.json b/packages/core/package.json index 71b48cc..eb4f314 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@xkeys-lib/core", - "version": "3.0.1", + "version": "3.1.0", "description": "NPM package to interact with the X-keys panels", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/node-record-test/CHANGELOG.md b/packages/node-record-test/CHANGELOG.md index cc7d69d..096183f 100644 --- a/packages/node-record-test/CHANGELOG.md +++ b/packages/node-record-test/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0](https://github.com/SuperFlyTV/xkeys/compare/v3.0.1...v3.1.0) (2024-01-11) + +**Note:** Version bump only for package @xkeys-lib/record-test + + + + + ## [3.0.1](https://github.com/SuperFlyTV/xkeys/compare/v3.0.0...v3.0.1) (2023-11-02) **Note:** Version bump only for package @xkeys-lib/record-test diff --git a/packages/node-record-test/package.json b/packages/node-record-test/package.json index 8254267..9785fe3 100644 --- a/packages/node-record-test/package.json +++ b/packages/node-record-test/package.json @@ -1,6 +1,6 @@ { "name": "@xkeys-lib/record-test", - "version": "3.0.1", + "version": "3.1.0", "private": true, "description": "A script for recording tests", "main": "dist/index.js", @@ -51,10 +51,10 @@ "controller" ], "dependencies": { - "@xkeys-lib/core": "3.0.1", + "@xkeys-lib/core": "3.1.0", "readline": "^1.3.0", "tslib": "^2.4.0", - "xkeys": "3.1.0-0" + "xkeys": "3.1.0" }, "optionalDependencies": { "find": "^0.3.0", diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index 5e2481c..cd0a07e 100644 --- a/packages/node/CHANGELOG.md +++ b/packages/node/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0](https://github.com/SuperFlyTV/xkeys/compare/v3.0.1...v3.1.0) (2024-01-11) + + +### Bug Fixes + +* expose Xkeys.filterDevice() static method, used to filter for compatible X-keys devices when manually handling HID devices ([ab542a8](https://github.com/SuperFlyTV/xkeys/commit/ab542a8630c749f79cd21c4589eb263c6017ea99)) +* remove hack (possible HID.HID that exposed a devicePath) ([fca382d](https://github.com/SuperFlyTV/xkeys/commit/fca382dd5109a8447ed7ba51d485de255487bd6d)) +* remove support for HID.HID and HID.Async devices in setupXKeysPanel. ([1bc87ba](https://github.com/SuperFlyTV/xkeys/commit/1bc87ba26227831eb7f312e59eb15f9ed47497e1)) +* support providing HID.HIDAsync into setupXkeysPanel() ([190d4a1](https://github.com/SuperFlyTV/xkeys/commit/190d4a1c2dfa1232b250318c30131624cf67fb23)) +* typo ([095c064](https://github.com/SuperFlyTV/xkeys/commit/095c0640a52b920774965192cfb868badb82f012)) + + +### Features + +* use async node-hid ([429c5ea](https://github.com/SuperFlyTV/xkeys/commit/429c5ea6e83f5a8a025180d3c6a15943bddaf5d6)) + + + + + ## [3.0.1](https://github.com/SuperFlyTV/xkeys/compare/v3.0.0...v3.0.1) (2023-11-02) **Note:** Version bump only for package xkeys diff --git a/packages/node/package.json b/packages/node/package.json index 2aac537..d91ad89 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "xkeys", - "version": "3.1.0-0", + "version": "3.1.0", "description": "An npm module for interfacing with the X-keys panels in Node.js", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -54,7 +54,7 @@ "controller" ], "dependencies": { - "@xkeys-lib/core": "3.0.1", + "@xkeys-lib/core": "3.1.0", "node-hid": "^3.0.0", "tslib": "^2.4.0" }, diff --git a/packages/webhid-demo/CHANGELOG.md b/packages/webhid-demo/CHANGELOG.md index 84501ba..9ec2093 100644 --- a/packages/webhid-demo/CHANGELOG.md +++ b/packages/webhid-demo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0](https://github.com/SuperFlyTV/xkeys/compare/v3.0.1...v3.1.0) (2024-01-11) + +**Note:** Version bump only for package @xkeys-lib/webhid-demo + + + + + ## [3.0.1](https://github.com/SuperFlyTV/xkeys/compare/v3.0.0...v3.0.1) (2023-11-02) **Note:** Version bump only for package @xkeys-lib/webhid-demo diff --git a/packages/webhid-demo/package.json b/packages/webhid-demo/package.json index 7f0076b..e5d97f5 100644 --- a/packages/webhid-demo/package.json +++ b/packages/webhid-demo/package.json @@ -1,6 +1,6 @@ { "name": "@xkeys-lib/webhid-demo", - "version": "3.0.1", + "version": "3.1.0", "private": true, "license": "MIT", "homepage": "https://github.com/SuperFlyTV/xkeys#readme", @@ -22,7 +22,7 @@ }, "dependencies": { "buffer": "^6.0.3", - "xkeys-webhid": "3.0.1" + "xkeys-webhid": "3.1.0" }, "devDependencies": { "copy-webpack-plugin": "^7.0.0", diff --git a/packages/webhid/CHANGELOG.md b/packages/webhid/CHANGELOG.md index 29bb6dd..4d6ab8c 100644 --- a/packages/webhid/CHANGELOG.md +++ b/packages/webhid/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0](https://github.com/SuperFlyTV/xkeys/compare/v3.0.1...v3.1.0) (2024-01-11) + + +### Bug Fixes + +* expose Xkeys.filterDevice() static method, used to filter for compatible X-keys devices when manually handling HID devices ([ab542a8](https://github.com/SuperFlyTV/xkeys/commit/ab542a8630c749f79cd21c4589eb263c6017ea99)) + + + + + ## [3.0.1](https://github.com/SuperFlyTV/xkeys/compare/v3.0.0...v3.0.1) (2023-11-02) diff --git a/packages/webhid/package.json b/packages/webhid/package.json index ad89c79..42adec1 100644 --- a/packages/webhid/package.json +++ b/packages/webhid/package.json @@ -1,6 +1,6 @@ { "name": "xkeys-webhid", - "version": "3.0.1", + "version": "3.1.0", "description": "An npm module for interfacing with the X-keys panels in a browser", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -38,7 +38,7 @@ ], "dependencies": { "@types/w3c-web-hid": "^1.0.3", - "@xkeys-lib/core": "3.0.1", + "@xkeys-lib/core": "3.1.0", "buffer": "^6.0.3", "p-queue": "^6.6.2" },