roku-debug 0.21.29 → 0.21.30

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,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
 
8
8
 
9
+ ## [0.21.30](https://github.com/rokucommunity/roku-debug/compare/v0.21.29...v0.21.30) - 2025-04-09
10
+ ### Changed
11
+ - Explicitly set the version of the package glob ([#244](https://github.com/rokucommunity/roku-debug/pull/244))
12
+ - upgrade to [brighterscript@0.69.6](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#0696---2025-04-09). Notable changes since 0.69.4:
13
+ - Updated the type definition of the `InStr` global callable ([brighterscript#1456](https://github.com/rokucommunity/brighterscript/pull/1456))
14
+ - More safely wrap expressions for template string transpile ([brighterscript#1445](https://github.com/rokucommunity/brighterscript/pull/1445))
15
+
16
+
17
+
9
18
  ## [0.21.29](https://github.com/rokucommunity/roku-debug/compare/v0.21.28...v0.21.29) - 2025-04-03
10
19
  ### Changed
11
20
  - (chore) migrate to shared CI ([#242](https://github.com/rokucommunity/roku-debug/pull/242))
@@ -6,7 +6,6 @@ on:
6
6
  branch:
7
7
  type: string
8
8
  description: "The branch to create the release from"
9
- default: "master"
10
9
  required: true
11
10
  releaseType:
12
11
  type: string
@@ -16,7 +15,11 @@ on:
16
15
  type: string
17
16
  description: "Update dependencies"
18
17
  required: true
19
- default: 'true'
18
+ workflows-ref:
19
+ type: string
20
+ description: "The ref to run the workflow"
21
+ required: false
22
+ default: "master"
20
23
 
21
24
  jobs:
22
25
  initialize-release:
@@ -26,6 +29,7 @@ jobs:
26
29
  uses: actions/checkout@master
27
30
  with:
28
31
  repository: rokucommunity/workflows
32
+ ref: ${{ inputs.workflows-ref }}
29
33
 
30
34
  - name: Setup node
31
35
  uses: actions/setup-node@master
@@ -15,6 +15,11 @@ on:
15
15
  type: string
16
16
  description: "The glob patters to find the release artifacts"
17
17
  required: true
18
+ workflows-ref:
19
+ type: string
20
+ description: "The ref to run the workflow"
21
+ required: false
22
+ default: "master"
18
23
 
19
24
  jobs:
20
25
  create-release-artifacts:
@@ -30,6 +35,7 @@ jobs:
30
35
  with:
31
36
  repository: rokucommunity/workflows
32
37
  path: nested-ci
38
+ ref: ${{ inputs.workflows-ref }}
33
39
 
34
40
  - name: Setup node
35
41
  uses: actions/setup-node@master
@@ -11,6 +11,12 @@ on:
11
11
  type: string
12
12
  description: "The type of release. Can be 'npm` or 'vsce'"
13
13
  required: true
14
+ workflows-ref:
15
+ type: string
16
+ description: "The ref to run the workflow"
17
+ required: false
18
+ default: "master"
19
+
14
20
 
15
21
  jobs:
16
22
  publish-release:
@@ -20,6 +26,7 @@ jobs:
20
26
  uses: actions/checkout@master
21
27
  with:
22
28
  repository: rokucommunity/workflows
29
+ ref: ${{ inputs.workflows-ref }}
23
30
 
24
31
  - name: Setup node
25
32
  uses: actions/setup-node@master
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roku-debug",
3
- "version": "0.21.29",
3
+ "version": "0.21.30",
4
4
  "description": "Debug adapter for Roku application development using Node.js",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -101,7 +101,7 @@
101
101
  "@types/request": "^2.48.8",
102
102
  "@vscode/debugadapter": "^1.68.0",
103
103
  "@vscode/debugprotocol": "^1.68.0",
104
- "brighterscript": "^0.69.4",
104
+ "brighterscript": "^0.69.6",
105
105
  "dateformat": "^4.6.3",
106
106
  "debounce": "^1.2.1",
107
107
  "eol": "^0.9.1",
@@ -109,6 +109,7 @@
109
109
  "fast-glob": "^3.2.11",
110
110
  "find-in-files": "^0.5.0",
111
111
  "fs-extra": "^10.0.0",
112
+ "glob": "^7.2.0",
112
113
  "natural-orderby": "^2.0.3",
113
114
  "portfinder": "^1.0.32",
114
115
  "postman-request": "^2.88.1-postman.40",