roku-debug 0.18.3 → 0.18.4
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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/package.json +4 -4
- package/{roku-debug-0.18.3.tgz → roku-debug-0.18.4.tgz} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## [0.18.4](https://github.com/rokucommunity/roku-debug/compare/v0.18.3...v0.18.4) - 2023-03-17
|
|
10
|
+
### Changed
|
|
11
|
+
- upgrade to [brighterscript@0.62.0](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#0620---2023-03-17). Notable changes since 0.61.3:
|
|
12
|
+
- Fix crash when func has no block ([brighterscript#774](https://github.com/rokucommunity/brighterscript/pull/774))
|
|
13
|
+
- Move not-referenced check into ProgramValidator ([brighterscript#773](https://github.com/rokucommunity/brighterscript/pull/773))
|
|
14
|
+
- upgrade to [@rokucommunity/logger@0.3.2](https://github.com/rokucommunity/logger/blob/master/CHANGELOG.md#032---2023-03-16). Notable changes since 0.3.1:
|
|
15
|
+
- Fix crash when encountering bigint ([@rokucommunity/logger#3](https://github.com/rokucommunity/logger/pull/3))
|
|
16
|
+
- upgrade to [roku-deploy@3.10.0](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#3100---2023-03-16). Notable changes since 3.9.3:
|
|
17
|
+
- Use micromatch instead of picomatch ([roku-deploy#109](https://github.com/rokucommunity/roku-deploy/pull/109))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
9
21
|
## [0.18.3](https://github.com/rokucommunity/roku-debug/compare/v0.18.2...v0.18.3) - 2023-01-31
|
|
10
22
|
### Fixed
|
|
11
23
|
- Increase the timeout for debug protocol control to prevent timeout with large projects ([#134](https://github.com/rokucommunity/roku-debug/pull/134))
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# roku-debug
|
|
2
2
|
A [Debug Adapter Protocol](https://microsoft.github.io/debug-adapter-protocol/) server (for editors like VSCode) and a socket adapter for Roku's [BrightScript Debug Protocol](https://developer.roku.com/en-ca/docs/developer-program/debugging/socket-based-debugger.md)
|
|
3
3
|
|
|
4
|
-
[](https://github.com/rokucommunity/roku-debug/actions?query=branch%3Amaster+workflow%3Abuild)
|
|
5
5
|
[](https://coveralls.io/github/rokucommunity/roku-debug?branch=master)
|
|
6
6
|
[](https://npmcharts.com/compare/roku-debug?minimal=true)
|
|
7
7
|
[](https://www.npmjs.com/package/roku-debug)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "roku-debug",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.4",
|
|
4
4
|
"description": "Debug adapter for Roku application development using Node.js",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"typescript": "^4.4.4"
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"@rokucommunity/logger": "^0.3.
|
|
88
|
-
"brighterscript": "^0.
|
|
87
|
+
"@rokucommunity/logger": "^0.3.2",
|
|
88
|
+
"brighterscript": "^0.62.0",
|
|
89
89
|
"dateformat": "^4.6.3",
|
|
90
90
|
"eol": "^0.9.1",
|
|
91
91
|
"eventemitter3": "^4.0.7",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"natural-orderby": "^2.0.3",
|
|
95
95
|
"replace-in-file": "^6.3.2",
|
|
96
96
|
"replace-last": "^1.2.6",
|
|
97
|
-
"roku-deploy": "^3.
|
|
97
|
+
"roku-deploy": "^3.10.0",
|
|
98
98
|
"semver": "^7.3.5",
|
|
99
99
|
"serialize-error": "^8.1.0",
|
|
100
100
|
"smart-buffer": "^4.2.0",
|
|
index 49b3e47..e062382 100644
|
|
|
Binary file
|