roku-debug 0.18.3 → 0.18.5

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 CHANGED
@@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
 
8
8
 
9
+ ## [0.18.5](https://github.com/rokucommunity/roku-debug/compare/v0.18.4...v0.18.5) - 2023-04-14
10
+ ### Changed
11
+ - upgrade to [brighterscript@0.64.1](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#0641---2023-04-14). Notable changes since 0.62.0:
12
+ - Bump xml2js from 0.4.23 to 0.5.0 ([brighterscript#790](https://github.com/rokucommunity/brighterscript/pull/790))
13
+ - upgrade to [roku-deploy@3.10.1](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#3101---2023-04-14). Notable changes since 3.10.0:
14
+ - Bump xml2js from 0.4.23 to 0.5.0 ([roku-deploy#112](https://github.com/rokucommunity/roku-deploy/pull/112))
15
+
16
+
17
+
18
+ ## [0.18.4](https://github.com/rokucommunity/roku-debug/compare/v0.18.3...v0.18.4) - 2023-03-17
19
+ ### Changed
20
+ - 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:
21
+ - Fix crash when func has no block ([brighterscript#774](https://github.com/rokucommunity/brighterscript/pull/774))
22
+ - Move not-referenced check into ProgramValidator ([brighterscript#773](https://github.com/rokucommunity/brighterscript/pull/773))
23
+ - 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:
24
+ - Fix crash when encountering bigint ([@rokucommunity/logger#3](https://github.com/rokucommunity/logger/pull/3))
25
+ - 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:
26
+ - Use micromatch instead of picomatch ([roku-deploy#109](https://github.com/rokucommunity/roku-deploy/pull/109))
27
+
28
+
29
+
9
30
  ## [0.18.3](https://github.com/rokucommunity/roku-debug/compare/v0.18.2...v0.18.3) - 2023-01-31
10
31
  ### Fixed
11
32
  - 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
- [![build status](https://img.shields.io/github/workflow/status/rokucommunity/roku-debug/build.svg?logo=github)](https://github.com/rokucommunity/roku-debug/actions?query=workflow%3Abuild)
4
+ [![build status](https://img.shields.io/github/actions/workflow/status/rokucommunity/roku-debug/build.yml?branch=master)](https://github.com/rokucommunity/roku-debug/actions?query=branch%3Amaster+workflow%3Abuild)
5
5
  [![coverage status](https://img.shields.io/coveralls/github/rokucommunity/roku-debug?logo=coveralls)](https://coveralls.io/github/rokucommunity/roku-debug?branch=master)
6
6
  [![monthly downloads](https://img.shields.io/npm/dm/roku-debug.svg?sanitize=true&logo=npm&logoColor=)](https://npmcharts.com/compare/roku-debug?minimal=true)
7
7
  [![npm version](https://img.shields.io/npm/v/roku-debug.svg?logo=npm)](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",
3
+ "version": "0.18.5",
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.1",
88
- "brighterscript": "^0.61.3",
87
+ "@rokucommunity/logger": "^0.3.2",
88
+ "brighterscript": "^0.64.1",
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.9.3",
97
+ "roku-deploy": "^3.10.1",
98
98
  "semver": "^7.3.5",
99
99
  "serialize-error": "^8.1.0",
100
100
  "smart-buffer": "^4.2.0",
index 49b3e47..bf5f815 100644
Binary file