Skip to content

Commit c1939ce

Browse files
2.56.0 (#646)
2 parents ddc28de + 801e396 commit c1939ce

File tree

3 files changed

+59
-35
lines changed

3 files changed

+59
-35
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77

88

9+
## [2.56.0](https://github.com/rokucommunity/vscode-brightscript-language/compare/2.55.11...v2.56.0) - 2025-05-30
10+
### Added
11+
- Added support for Exporting and Importing automation scripts. ([#644](https://github.com/rokucommunity/vscode-brightscript-language/pull/644))
12+
### Changed
13+
- upgrade to [@rokucommunity/logger@0.3.11](https://github.com/rokucommunity/logger/blob/master/CHANGELOG.md#0311---2025-05-05). Notable changes since 0.3.10:
14+
- upgrade to [brighterscript@0.69.9](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#0699---2025-05-09). Notable changes since 0.69.6:
15+
- removed no-throw-literal lint rule ([#1489](https://github.com/rokucommunity/vscode-brightscript-language/pull/1489))
16+
- Prevent runtime crash for non-referencable funcs in ternary and null coalescing ([#1474](https://github.com/rokucommunity/vscode-brightscript-language/pull/1474))
17+
- Fix `removeParameterTypes` compile errors for return types ([#1414](https://github.com/rokucommunity/vscode-brightscript-language/pull/1414))
18+
- Flag incorrect return statements in functions and subs ([#1463](https://github.com/rokucommunity/vscode-brightscript-language/pull/1463))
19+
- upgrade to [brighterscript-formatter@1.7.14](https://github.com/rokucommunity/brighterscript-formatter/blob/master/CHANGELOG.md#1714---2025-05-12). Notable changes since 1.7.12:
20+
- upgrade to [roku-debug@0.21.35](https://github.com/rokucommunity/roku-debug/blob/master/CHANGELOG.md#02135---2025-05-30). Notable changes since 0.21.31:
21+
- Removed `isClockValid` virtual variable ([#262](https://github.com/rokucommunity/vscode-brightscript-language/pull/262))
22+
- Fix telnet-still-in-use issues ([#259](https://github.com/rokucommunity/vscode-brightscript-language/pull/259))
23+
- Force allowHalfOpen to false on all sockets ([#251](https://github.com/rokucommunity/vscode-brightscript-language/pull/251))
24+
- Added better telnet socket in use detection ([#250](https://github.com/rokucommunity/vscode-brightscript-language/pull/250))
25+
- upgrade to [roku-deploy@3.12.5](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#3125---2025-05-05). Notable changes since 3.12.4:
26+
### Fixed
27+
- Update JSON parsing in formatValues to not handle strings that look like numbers and booleans to avoid registry updates failing when sent to the device ([#645](https://github.com/rokucommunity/vscode-brightscript-language/pull/645))
28+
- Fix the release-type for the publish workflow ([#640](https://github.com/rokucommunity/vscode-brightscript-language/pull/640))
29+
30+
31+
932
## [2.55.11](https://github.com/rokucommunity/vscode-brightscript-language/compare/v2.55.10...v2.55.11) - 2025-04-10
1033
### Changed
1134
- (chore) Migration to Shared CI ([#638](https://github.com/rokucommunity/vscode-brightscript-language/pull/638))

package-lock.json

Lines changed: 30 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "brightscript",
33
"displayName": "BrightScript Language",
4-
"version": "2.55.11",
4+
"version": "2.56.0",
55
"publisher": "RokuCommunity",
66
"description": "Language support for Roku's BrightScript language.",
77
"author": {
@@ -53,13 +53,13 @@
5353
"sync-launch-settings": "ts-node scripts/sync-launch-settings.ts"
5454
},
5555
"dependencies": {
56-
"@rokucommunity/logger": "^0.3.10",
56+
"@rokucommunity/logger": "^0.3.11",
5757
"@types/request": "^2.48.12",
5858
"@vscode/extension-telemetry": "^0.4.7",
5959
"array-sort": "^1.0.0",
6060
"backoff": "^2.5.0",
61-
"brighterscript": "^0.69.6",
62-
"brighterscript-formatter": "^1.7.12",
61+
"brighterscript": "^0.69.9",
62+
"brighterscript-formatter": "^1.7.14",
6363
"clone-deep": "^4.0.1",
6464
"debounce": "^1.2.0",
6565
"dotenv": "^6.2.0",
@@ -80,8 +80,8 @@
8080
"postman-request": "^2.88.1-postman.32",
8181
"pretty-bytes": "^5.6.0",
8282
"resolve": "^1.22.8",
83-
"roku-debug": "^0.21.31",
84-
"roku-deploy": "^3.12.4",
83+
"roku-debug": "^0.21.35",
84+
"roku-deploy": "^3.12.5",
8585
"roku-test-automation": "^2.0.10",
8686
"semver": "^7.1.3",
8787
"source-map": "^0.7.3",

0 commit comments

Comments
 (0)