brighterscript 1.0.0-alpha.11 → 1.0.0-alpha.15
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 +253 -268
- package/README.md +2 -2
- package/dist/Cache.d.ts +3 -8
- package/dist/Cache.js +9 -14
- package/dist/Cache.js.map +1 -1
- package/dist/CommentFlagProcessor.js +5 -3
- package/dist/CommentFlagProcessor.js.map +1 -1
- package/dist/DiagnosticMessages.d.ts +21 -1
- package/dist/DiagnosticMessages.js +21 -1
- package/dist/DiagnosticMessages.js.map +1 -1
- package/dist/LanguageServer.d.ts +1 -6
- package/dist/LanguageServer.js +0 -9
- package/dist/LanguageServer.js.map +1 -1
- package/dist/PluginInterface.d.ts +3 -3
- package/dist/PluginInterface.js +3 -0
- package/dist/PluginInterface.js.map +1 -1
- package/dist/Program.d.ts +30 -16
- package/dist/Program.js +110 -45
- package/dist/Program.js.map +1 -1
- package/dist/ProgramBuilder.js +3 -3
- package/dist/ProgramBuilder.js.map +1 -1
- package/dist/Scope.d.ts +31 -17
- package/dist/Scope.js +86 -48
- package/dist/Scope.js.map +1 -1
- package/dist/SymbolTable.d.ts +1 -1
- package/dist/XmlScope.d.ts +3 -3
- package/dist/astUtils/AstEditor.d.ts +33 -0
- package/dist/astUtils/AstEditor.js +107 -0
- package/dist/astUtils/AstEditor.js.map +1 -0
- package/dist/{bscPlugin/semanticTokens/SemanticTokensProcessor.spec.d.ts → astUtils/AstEditor.spec.d.ts} +0 -0
- package/dist/astUtils/AstEditor.spec.js +170 -0
- package/dist/astUtils/AstEditor.spec.js.map +1 -0
- package/dist/astUtils/reflection.d.ts +3 -1
- package/dist/astUtils/reflection.js +10 -2
- package/dist/astUtils/reflection.js.map +1 -1
- package/dist/astUtils/reflection.spec.js +6 -6
- package/dist/astUtils/reflection.spec.js.map +1 -1
- package/dist/astUtils/visitors.d.ts +3 -1
- package/dist/astUtils/visitors.js.map +1 -1
- package/dist/astUtils/visitors.spec.js +8 -8
- package/dist/astUtils/visitors.spec.js.map +1 -1
- package/dist/astUtils/xml.d.ts +1 -0
- package/dist/astUtils/xml.js +6 -1
- package/dist/astUtils/xml.js.map +1 -1
- package/dist/bscPlugin/BscPlugin.d.ts +4 -1
- package/dist/bscPlugin/BscPlugin.js +21 -2
- package/dist/bscPlugin/BscPlugin.js.map +1 -1
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.js +3 -3
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.js.map +1 -1
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.spec.js.map +1 -1
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.d.ts +9 -0
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.js +97 -0
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.js.map +1 -0
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.d.ts +1 -0
- package/dist/bscPlugin/semanticTokens/{SemanticTokensProcessor.spec.js → BrsFileSemanticTokensProcessor.spec.js} +30 -2
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.js.map +1 -0
- package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.d.ts +8 -0
- package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.js +36 -0
- package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.js.map +1 -0
- package/dist/bscPlugin/validation/BrsFileValidator.d.ts +9 -0
- package/dist/bscPlugin/validation/BrsFileValidator.js +66 -0
- package/dist/bscPlugin/validation/BrsFileValidator.js.map +1 -0
- package/dist/bscPlugin/validation/ScopeValidator.d.ts +11 -0
- package/dist/bscPlugin/validation/ScopeValidator.js +94 -0
- package/dist/bscPlugin/validation/ScopeValidator.js.map +1 -0
- package/dist/files/BrsFile.Class.spec.js +404 -230
- package/dist/files/BrsFile.Class.spec.js.map +1 -1
- package/dist/files/BrsFile.d.ts +26 -12
- package/dist/files/BrsFile.js +265 -127
- package/dist/files/BrsFile.js.map +1 -1
- package/dist/files/BrsFile.spec.js +586 -169
- package/dist/files/BrsFile.spec.js.map +1 -1
- package/dist/files/XmlFile.d.ts +11 -10
- package/dist/files/XmlFile.js +13 -8
- package/dist/files/XmlFile.js.map +1 -1
- package/dist/files/XmlFile.spec.js +106 -59
- package/dist/files/XmlFile.spec.js.map +1 -1
- package/dist/files/tests/imports.spec.js +8 -6
- package/dist/files/tests/imports.spec.js.map +1 -1
- package/dist/globalCallables.d.ts +3 -1
- package/dist/globalCallables.js +198 -99
- package/dist/globalCallables.js.map +1 -1
- package/dist/index.d.ts +12 -3
- package/dist/index.js +21 -4
- package/dist/index.js.map +1 -1
- package/dist/interfaces.d.ts +68 -15
- package/dist/lexer/Lexer.js +1 -2
- package/dist/lexer/Lexer.js.map +1 -1
- package/dist/lexer/Lexer.spec.js +470 -462
- package/dist/lexer/Lexer.spec.js.map +1 -1
- package/dist/lexer/TokenKind.d.ts +2 -0
- package/dist/lexer/TokenKind.js +5 -0
- package/dist/lexer/TokenKind.js.map +1 -1
- package/dist/parser/Expression.d.ts +1 -1
- package/dist/parser/Expression.js +10 -10
- package/dist/parser/Expression.js.map +1 -1
- package/dist/parser/Parser.Class.spec.js +33 -32
- package/dist/parser/Parser.Class.spec.js.map +1 -1
- package/dist/parser/Parser.d.ts +28 -7
- package/dist/parser/Parser.js +494 -290
- package/dist/parser/Parser.js.map +1 -1
- package/dist/parser/Parser.spec.js +157 -35
- package/dist/parser/Parser.spec.js.map +1 -1
- package/dist/parser/SGParser.js +1 -1
- package/dist/parser/SGParser.js.map +1 -1
- package/dist/parser/SGTypes.d.ts +3 -0
- package/dist/parser/SGTypes.js +8 -3
- package/dist/parser/SGTypes.js.map +1 -1
- package/dist/parser/SGTypes.spec.js +9 -9
- package/dist/parser/SGTypes.spec.js.map +1 -1
- package/dist/parser/Statement.d.ts +55 -3
- package/dist/parser/Statement.js +162 -9
- package/dist/parser/Statement.js.map +1 -1
- package/dist/parser/tests/Parser.spec.d.ts +3 -3
- package/dist/parser/tests/Parser.spec.js +4 -4
- package/dist/parser/tests/Parser.spec.js.map +1 -1
- package/dist/parser/tests/controlFlow/For.spec.js +40 -40
- package/dist/parser/tests/controlFlow/For.spec.js.map +1 -1
- package/dist/parser/tests/controlFlow/ForEach.spec.js +22 -21
- package/dist/parser/tests/controlFlow/ForEach.spec.js.map +1 -1
- package/dist/parser/tests/controlFlow/If.spec.js +100 -99
- package/dist/parser/tests/controlFlow/If.spec.js.map +1 -1
- package/dist/parser/tests/controlFlow/While.spec.js +25 -25
- package/dist/parser/tests/controlFlow/While.spec.js.map +1 -1
- package/dist/parser/tests/expression/Additive.spec.js +21 -21
- package/dist/parser/tests/expression/Additive.spec.js.map +1 -1
- package/dist/parser/tests/expression/ArrayLiterals.spec.js +91 -91
- package/dist/parser/tests/expression/ArrayLiterals.spec.js.map +1 -1
- package/dist/parser/tests/expression/AssociativeArrayLiterals.spec.js +102 -102
- package/dist/parser/tests/expression/AssociativeArrayLiterals.spec.js.map +1 -1
- package/dist/parser/tests/expression/Boolean.spec.js +15 -15
- package/dist/parser/tests/expression/Boolean.spec.js.map +1 -1
- package/dist/parser/tests/expression/Call.spec.js +22 -21
- package/dist/parser/tests/expression/Call.spec.js.map +1 -1
- package/dist/parser/tests/expression/Exponential.spec.js +11 -11
- package/dist/parser/tests/expression/Exponential.spec.js.map +1 -1
- package/dist/parser/tests/expression/Function.spec.js +171 -171
- package/dist/parser/tests/expression/Function.spec.js.map +1 -1
- package/dist/parser/tests/expression/Indexing.spec.js +50 -50
- package/dist/parser/tests/expression/Indexing.spec.js.map +1 -1
- package/dist/parser/tests/expression/Multiplicative.spec.js +25 -25
- package/dist/parser/tests/expression/Multiplicative.spec.js.map +1 -1
- package/dist/parser/tests/expression/NullCoalescenceExpression.spec.js +30 -18
- package/dist/parser/tests/expression/NullCoalescenceExpression.spec.js.map +1 -1
- package/dist/parser/tests/expression/PrefixUnary.spec.js +26 -26
- package/dist/parser/tests/expression/PrefixUnary.spec.js.map +1 -1
- package/dist/parser/tests/expression/Primary.spec.js +27 -27
- package/dist/parser/tests/expression/Primary.spec.js.map +1 -1
- package/dist/parser/tests/expression/RegexLiteralExpression.spec.js +3 -2
- package/dist/parser/tests/expression/RegexLiteralExpression.spec.js.map +1 -1
- package/dist/parser/tests/expression/Relational.spec.js +25 -25
- package/dist/parser/tests/expression/Relational.spec.js.map +1 -1
- package/dist/parser/tests/expression/TemplateStringExpression.spec.js +7 -7
- package/dist/parser/tests/expression/TemplateStringExpression.spec.js.map +1 -1
- package/dist/parser/tests/expression/TernaryExpression.spec.js +6 -6
- package/dist/parser/tests/expression/TernaryExpression.spec.js.map +1 -1
- package/dist/parser/tests/statement/AssignmentOperators.spec.js +15 -15
- package/dist/parser/tests/statement/AssignmentOperators.spec.js.map +1 -1
- package/dist/parser/tests/statement/Declaration.spec.js +20 -20
- package/dist/parser/tests/statement/Declaration.spec.js.map +1 -1
- package/dist/parser/tests/statement/Enum.spec.d.ts +1 -0
- package/dist/parser/tests/statement/Enum.spec.js +774 -0
- package/dist/parser/tests/statement/Enum.spec.js.map +1 -0
- package/dist/parser/tests/statement/Function.spec.js +121 -120
- package/dist/parser/tests/statement/Function.spec.js.map +1 -1
- package/dist/parser/tests/statement/Goto.spec.js +9 -8
- package/dist/parser/tests/statement/Goto.spec.js.map +1 -1
- package/dist/parser/tests/statement/Increment.spec.js +22 -22
- package/dist/parser/tests/statement/Increment.spec.js.map +1 -1
- package/dist/parser/tests/statement/InterfaceStatement.spec.js +12 -0
- package/dist/parser/tests/statement/InterfaceStatement.spec.js.map +1 -1
- package/dist/parser/tests/statement/LibraryStatement.spec.js +7 -7
- package/dist/parser/tests/statement/LibraryStatement.spec.js.map +1 -1
- package/dist/parser/tests/statement/Misc.spec.js +71 -70
- package/dist/parser/tests/statement/Misc.spec.js.map +1 -1
- package/dist/parser/tests/statement/PrintStatement.spec.js +17 -17
- package/dist/parser/tests/statement/PrintStatement.spec.js.map +1 -1
- package/dist/parser/tests/statement/ReturnStatement.spec.js +33 -33
- package/dist/parser/tests/statement/ReturnStatement.spec.js.map +1 -1
- package/dist/parser/tests/statement/Set.spec.js +53 -53
- package/dist/parser/tests/statement/Set.spec.js.map +1 -1
- package/dist/parser/tests/statement/Stop.spec.js +7 -6
- package/dist/parser/tests/statement/Stop.spec.js.map +1 -1
- package/dist/preprocessor/Chunk.d.ts +1 -1
- package/dist/preprocessor/Preprocessor.d.ts +1 -1
- package/dist/preprocessor/Preprocessor.js +7 -7
- package/dist/preprocessor/Preprocessor.js.map +1 -1
- package/dist/types/ArrayType.d.ts +8 -5
- package/dist/types/ArrayType.js +45 -9
- package/dist/types/ArrayType.js.map +1 -1
- package/dist/types/ArrayType.spec.js +62 -3
- package/dist/types/ArrayType.spec.js.map +1 -1
- package/dist/types/BscType.d.ts +1 -1
- package/dist/types/CustomType.d.ts +1 -1
- package/dist/types/CustomType.js +4 -2
- package/dist/types/CustomType.js.map +1 -1
- package/dist/types/FunctionType.d.ts +5 -5
- package/dist/types/FunctionType.js +11 -11
- package/dist/types/FunctionType.js.map +1 -1
- package/dist/types/FunctionType.spec.js +1 -1
- package/dist/types/FunctionType.spec.js.map +1 -1
- package/dist/types/LazyType.d.ts +1 -2
- package/dist/types/LazyType.js +1 -5
- package/dist/types/LazyType.js.map +1 -1
- package/dist/types/helpers.js +1 -1
- package/dist/types/helpers.js.map +1 -1
- package/dist/util.d.ts +25 -9
- package/dist/util.js +139 -55
- package/dist/util.js.map +1 -1
- package/dist/validators/ClassValidator.js +27 -27
- package/dist/validators/ClassValidator.js.map +1 -1
- package/package.json +4 -3
- package/dist/astUtils/index.d.ts +0 -7
- package/dist/astUtils/index.js +0 -26
- package/dist/astUtils/index.js.map +0 -1
- package/dist/bscPlugin/semanticTokens/SemanticTokensProcessor.d.ts +0 -7
- package/dist/bscPlugin/semanticTokens/SemanticTokensProcessor.js +0 -63
- package/dist/bscPlugin/semanticTokens/SemanticTokensProcessor.js.map +0 -1
- package/dist/bscPlugin/semanticTokens/SemanticTokensProcessor.spec.js.map +0 -1
- package/dist/lexer/index.d.ts +0 -3
- package/dist/lexer/index.js +0 -18
- package/dist/lexer/index.js.map +0 -1
- package/dist/parser/index.d.ts +0 -3
- package/dist/parser/index.js +0 -16
- package/dist/parser/index.js.map +0 -1
- package/dist/preprocessor/index.d.ts +0 -3
- package/dist/preprocessor/index.js +0 -16
- package/dist/preprocessor/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,120 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
## [
|
|
9
|
+
## [1.0.0-alpha.15](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) - 2022-02-14
|
|
10
|
+
### Added
|
|
11
|
+
- all changes from [v0.45.0](#0450---2022-02-11)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [0.45.0](https://github.com/rokucommunity/brighterscript/compare/v0.44.0...v0.45.0) - 2022-02-11
|
|
16
|
+
### Added
|
|
17
|
+
- `enum` language feature ([#484](https://github.com/rokucommunity/brighterscript/pull/484))
|
|
18
|
+
- transpile override for plugins when providing AST edits. ([#511](https://github.com/rokucommunity/brighterscript/pull/511))
|
|
19
|
+
- `setFile` method to align with v1. ([#510](https://github.com/rokucommunity/brighterscript/pull/510))
|
|
20
|
+
### Changed
|
|
21
|
+
- deprecated `addOrReplaceFile` method to align with v1. ([#510](https://github.com/rokucommunity/brighterscript/pull/510))
|
|
22
|
+
- internal `Cache` method now extends `Map` instead of keeping an internal map. ([#509](https://github.com/rokucommunity/brighterscript/pull/509))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [1.0.0-alpha.14](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) - 2022-02-08
|
|
27
|
+
### Added
|
|
28
|
+
- array type support for parameters and return types ([#499](https://github.com/rokucommunity/brighterscript/pull/499))
|
|
29
|
+
- all changes from 0.43.0, 0.43.1, 0.44.0
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [0.44.0](https://github.com/rokucommunity/brighterscript/compare/v0.43.1...v0.44.0) - 2022-02-08
|
|
34
|
+
### Added
|
|
35
|
+
- `onScopeValidate` plugin event useful when plugins want to contribute scope validations ([#505](https://github.com/rokucommunity/brighterscript/pull/505))
|
|
36
|
+
### Changed
|
|
37
|
+
- show plugin transpile modifications in the `getTranspiledFile` callback (used for "show preview" functionality in vscode) ([#502](https://github.com/rokucommunity/brighterscript/pull/502))
|
|
38
|
+
- make `Program.getFile` more flexible, and deprecate `Program.getFileByPkgPath`, `Program.getFileByPathAbsolute` ([#506](https://github.com/rokucommunity/brighterscript/pull/506))
|
|
39
|
+
- add `Program.getFiles` and deprecate `Program.getFilesByPkgPath` ([#506](https://github.com/rokucommunity/brighterscript/pull/506))
|
|
40
|
+
- move file validation plugin event emitting into `Program.validate()` which means you can't trigger those events by calling `File.validate()` anymore. ([#504](https://github.com/rokucommunity/brighterscript/pull/504))
|
|
41
|
+
- support generics for `Cache` class ([#503](https://github.com/rokucommunity/brighterscript/pull/503))
|
|
42
|
+
### Fixed
|
|
43
|
+
- bug in hover showing required params as optional and optional params as required ([#501](https://github.com/rokucommunity/brighterscript/pull/501))
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
## [0.43.1](https://github.com/rokucommunity/brighterscript/compare/v0.43.0...v0.43.1) - 2022-01-28
|
|
48
|
+
### Fixed
|
|
49
|
+
- crash when hovering over global functions ([#497](https://github.com/rokucommunity/brighterscript/pull/497))
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
## [0.43.0](https://github.com/rokucommunity/brighterscript/compare/v0.42.0...v0.43.0) - 2022-01-28
|
|
54
|
+
### Added
|
|
55
|
+
- show function documentation when hovering over functions. ([#495](https://github.com/rokucommunity/brighterscript/pull/495))
|
|
56
|
+
- for plugin authors:
|
|
57
|
+
- added `beforeFileValidate` and `onFileValidate` plugin hooks ([#490](https://github.com/rokucommunity/brighterscript/pull/490))
|
|
58
|
+
- added `expressions` collection to `BrsFile.parser.references` which includes all the full expressions, which can be used instead of AST walking in many cases. ([#487](https://github.com/rokucommunity/brighterscript/pull/487))
|
|
59
|
+
### Changed
|
|
60
|
+
- For plugin authors:
|
|
61
|
+
- move parse and validate events to `Program` class and out of `XmlFile` and `BrsFile`. This only impacts plugins that depend on the `afterFileParse`, `onFileValidate` and `afterFileValidate` events while also constructing those files with their constructors directly. ([#494](https://github.com/rokucommunity/brighterscript/pull/494))
|
|
62
|
+
- removed internal [barrels](https://github.com/basarat/typescript-book/blob/master/docs/tips/barrel.md). This means plugins can no longer do things like: `import { something} from 'brighterscript/some-path'`. All necessary exports can be done from the top-level brighterscript package directly. ([#492](https://github.com/rokucommunity/brighterscript/pull/492))
|
|
63
|
+
- use `Map` for `ClassValidator` class lookup instead of an object. ([#481](https://github.com/rokucommunity/brighterscript/pull/481))
|
|
64
|
+
### Fixed
|
|
65
|
+
- bug preventing code to come after an interface statement. ([#493](https://github.com/rokucommunity/brighterscript/pull/493))
|
|
66
|
+
- don't crash on null options in `printDiagnostics`. ([3147202](https://github.com/rokucommunity/brighterscript/commit/3147202b948d08be198255c068f082857c9de1f0))
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
## [1.0.0-alpha.13](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) - 2022-01-10
|
|
71
|
+
### Added
|
|
72
|
+
- all changes from [v0.42.0](#0420---2022-01-10)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
## [0.42.0](https://github.com/rokucommunity/brighterscript/compare/v0.41.6...v0.42.0) - 2022-01-10
|
|
77
|
+
### Added
|
|
78
|
+
- AST editing utility for transformations during between the begin and end transpile lifecycle events. See [the documentation](https://github.com/rokucommunity/brighterscript/blob/master/docs/plugins.md#modifying-code) for more info. ([#478](https://github.com/rokucommunity/brighterscript/pull/478))
|
|
79
|
+
### Fixed
|
|
80
|
+
- bug in global function parameter checking that was not properly enforcing optional/required status for parameters. ([#479](https://github.com/rokucommunity/brighterscript/pull/479))
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
## [0.41.6](https://github.com/rokucommunity/brighterscript/compare/v0.41.5...v0.41.6) - 2022-01-05
|
|
85
|
+
### Fixed
|
|
86
|
+
- issue in the transpiled output of the null coalescing operator where plain variable references are not properly passed into the function. ([#474](https://github.com/rokucommunity/brighterscript/pull/474))
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
## [0.41.5](https://github.com/rokucommunity/brighterscript/compare/v0.41.4...v0.41.5) - 2021-11-23
|
|
91
|
+
### Fixed
|
|
92
|
+
- critical crash whenever a local variable had the same name as a javascript object function on the prototype (stuch as `constructor`). ([#469](https://github.com/rokucommunity/brighterscript/pull/469))
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
## [0.41.4](https://github.com/rokucommunity/brighterscript/compare/v0.41.3...v0.41.4) - 2021-10-28
|
|
97
|
+
### Fixed
|
|
98
|
+
- bug transpiling instant resume xml elements ([#465](https://github.com/rokucommunity/brighterscript/pull/465))
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
## [0.41.3](https://github.com/rokucommunity/brighterscript/compare/v0.41.2...v0.41.3) - 2021-10-27
|
|
103
|
+
### Changed
|
|
104
|
+
- upgrade to [roku-deploy@3.5.0](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#350---2021-10-27) which adds the ability to use negated non-rootDir top-level patterns in the files array ([#78](https://github.com/rokucommunity/roku-deploy/pull/78))
|
|
105
|
+
### Fixed
|
|
106
|
+
- Allow diagnostic non-numeric disable code comments ([#463](https://github.com/rokucommunity/brighterscript/pull/463)).
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
## [1.0.0-alpha.12](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) - 2021-10-17
|
|
111
|
+
### Added
|
|
112
|
+
- all changes from [v0.41.2](#0411---2021-10-17)
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
## [0.41.2](https://github.com/rokucommunity/brighterscript/compare/v0.41.1...v0.41.2) - 2021-10-17
|
|
117
|
+
### Fixed
|
|
118
|
+
- crash when subclass field has same name as ancestor method ([#460](https://github.com/rokucommunity/brighterscript/pull/460)).
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
## [v1.0.0-alpha.11](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) - 2021-10-12
|
|
10
123
|
### Added
|
|
11
124
|
- all changes from [v0.41.1](#0411---2021-10-07)
|
|
12
125
|
|
|
@@ -55,8 +168,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
55
168
|
|
|
56
169
|
|
|
57
170
|
|
|
58
|
-
## [0.40.0] - 2021-08-02
|
|
59
|
-
[0.40.0]: https://github.com/rokucommunity/brighterscript/compare/v0.39.4...v0.40.0
|
|
171
|
+
## [0.40.0](https://github.com/rokucommunity/brighterscript/compare/v0.39.4...v0.40.0) - 2021-08-02
|
|
60
172
|
### Added
|
|
61
173
|
- language support for Interface statements ([#426](https://github.com/rokucommunity/brighterscript/pull/426))
|
|
62
174
|
### Changed
|
|
@@ -64,8 +176,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
64
176
|
|
|
65
177
|
|
|
66
178
|
|
|
67
|
-
## [0.39.4] - 2021-06-27
|
|
68
|
-
[0.39.4]: https://github.com/rokucommunity/brighterscript/compare/v0.39.3...v0.39.4
|
|
179
|
+
## [0.39.4](https://github.com/rokucommunity/brighterscript/compare/v0.39.3...v0.39.4) - 2021-06-27
|
|
69
180
|
### Fixed
|
|
70
181
|
- incorrect block range for inline if/then branch ([#424](https://github.com/rokucommunity/brighterscript/pull/424))
|
|
71
182
|
- extract associative array comma when parsing ([#427](https://github.com/rokucommunity/brighterscript/pull/424))
|
|
@@ -74,15 +185,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
74
185
|
|
|
75
186
|
|
|
76
187
|
|
|
77
|
-
## [0.39.3] - 2021-06-01
|
|
78
|
-
[0.39.3]: https://github.com/rokucommunity/brighterscript/compare/v0.39.2...v0.39.3
|
|
188
|
+
## [0.39.3](https://github.com/rokucommunity/brighterscript/compare/v0.39.2...v0.39.3) - 2021-06-01
|
|
79
189
|
### Changed
|
|
80
190
|
- upgraded to [roku-deploy@3.4.1](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#341---2021-06-01) which fixes bugs introduced in roku-deploy@3.4.0
|
|
81
191
|
|
|
82
192
|
|
|
83
193
|
|
|
84
|
-
## [0.39.2] - 2021-05-28
|
|
85
|
-
[0.39.2]: https://github.com/rokucommunity/brighterscript/compare/v0.39.1...v0.39.2
|
|
194
|
+
## [0.39.2](https://github.com/rokucommunity/brighterscript/compare/v0.39.1...v0.39.2) - 2021-05-28
|
|
86
195
|
### Changed
|
|
87
196
|
- upgraded to [roku-deploy@3.4.0](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#340---2021-05-28) which brings significant zip speed improvements
|
|
88
197
|
|
|
@@ -102,8 +211,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
102
211
|
|
|
103
212
|
|
|
104
213
|
|
|
105
|
-
## [0.39.1] - 2021-05-24
|
|
106
|
-
[0.39.1]: https://github.com/rokucommunity/brighterscript/compare/v0.39.0...v0.39.1
|
|
214
|
+
## [0.39.1](https://github.com/rokucommunity/brighterscript/compare/v0.39.0...v0.39.1) - 2021-05-24
|
|
107
215
|
### Changed
|
|
108
216
|
- re-export `CodeActionKind` so plugins don't need to import from vscode-brightscript-language directly.
|
|
109
217
|
### Fixed
|
|
@@ -124,8 +232,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
124
232
|
|
|
125
233
|
|
|
126
234
|
|
|
127
|
-
## [0.39.0] - 2021-05-18
|
|
128
|
-
[0.39.0]: https://github.com/rokucommunity/brighterscript/compare/v0.38.2...v0.39.0
|
|
235
|
+
## [0.39.0](https://github.com/rokucommunity/brighterscript/compare/v0.38.2...v0.39.0) - 2021-05-18
|
|
129
236
|
### Added
|
|
130
237
|
- semantic token support for plugins
|
|
131
238
|
- basic semantic tokens for `new` statements and namespace usage
|
|
@@ -139,8 +246,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
139
246
|
|
|
140
247
|
|
|
141
248
|
|
|
142
|
-
## [0.38.2] - 2021-05-17
|
|
143
|
-
[0.38.2]: https://github.com/rokucommunity/brighterscript/compare/v0.38.1...v0.38.2
|
|
249
|
+
## [0.38.2](https://github.com/rokucommunity/brighterscript/compare/v0.38.1...v0.38.2) - 2021-05-17
|
|
144
250
|
### Fixed
|
|
145
251
|
- language server crash when namespaced function or class didn't have a name ([#419](https://github.com/rokucommunity/brighterscript/pull/419))
|
|
146
252
|
|
|
@@ -158,8 +264,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
158
264
|
|
|
159
265
|
|
|
160
266
|
|
|
161
|
-
## [0.38.1] - 2021-05-14
|
|
162
|
-
[0.38.1]: https://github.com/rokucommunity/brighterscript/compare/v0.38.0...v0.38.1
|
|
267
|
+
## [0.38.1](https://github.com/rokucommunity/brighterscript/compare/v0.38.0...v0.38.1) - 2021-05-14
|
|
163
268
|
### Changed
|
|
164
269
|
- SOURCE_FILE_PATH and SOURCE_LOCATION source literals are now string concatenations in order to avoid triggering Roku's static analysis rule against `file:/` protocol strings ([#415](https://github.com/rokucommunity/brighterscript/pull/415))
|
|
165
270
|
### Fixed
|
|
@@ -182,7 +287,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
182
287
|
|
|
183
288
|
|
|
184
289
|
|
|
185
|
-
## [0.38.0] - 2021-05-04
|
|
290
|
+
## [0.38.0](https://github.com/rokucommunity/brighterscript/compare/v0.37.4...v0.38.0) - 2021-05-04
|
|
186
291
|
### Added
|
|
187
292
|
- warning for mismatched class method accessibility ([#402](https://github.com/rokucommunity/brighterscript/pull/402))
|
|
188
293
|
- allow class field overrides in child classes as long as they are the same type ([#394](https://github.com/rokucommunity/brighterscript/pull/394))
|
|
@@ -206,39 +311,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
206
311
|
|
|
207
312
|
|
|
208
313
|
|
|
209
|
-
## [0.37.4] - 2021-04-20
|
|
314
|
+
## [0.37.4](https://github.com/rokucommunity/brighterscript/compare/v0.37.3...v0.37.4) - 2021-04-20
|
|
210
315
|
### Fixed
|
|
211
316
|
- bug validating namespace function calls ([#390](https://github.com/rokucommunity/brighterscript/pull/390))
|
|
212
317
|
|
|
213
318
|
|
|
214
319
|
|
|
215
|
-
## [0.37.3] - 2021-04-12
|
|
320
|
+
## [0.37.3](https://github.com/rokucommunity/brighterscript/compare/v0.37.2...v0.37.3) - 2021-04-12
|
|
216
321
|
### Fixed
|
|
217
322
|
- bug where having multiple components with the same name would cause issues in the program, normally requiring a language server or watcher restart. ([#353](https://github.com/rokucommunity/brighterscript/pull/353))
|
|
218
323
|
- bug in xml file ignoring `needsTranspiled` flag when set by plugins ([#384](https://github.com/rokucommunity/brighterscript/pull/384))
|
|
219
324
|
|
|
220
325
|
|
|
221
326
|
|
|
222
|
-
## [0.37.2] - 2021-04-08
|
|
327
|
+
## [0.37.2](https://github.com/rokucommunity/brighterscript/compare/v0.37.1...v0.37.2) - 2021-04-08
|
|
223
328
|
### Fixed
|
|
224
329
|
- erraneous syntax issue when concatenating a template string and a regular string. ([#383](https://github.com/rokucommunity/brighterscript/pull/383))
|
|
225
330
|
- prevent circular import causing stack overflow crash. ([#381](https://github.com/rokucommunity/brighterscript/pull/381))
|
|
226
331
|
|
|
227
332
|
|
|
228
333
|
|
|
229
|
-
## [0.37.1] - 2021-03-30
|
|
334
|
+
## [0.37.1](https://github.com/rokucommunity/brighterscript/compare/v0.37.0...v0.37.1) - 2021-03-30
|
|
230
335
|
### Fixed
|
|
231
336
|
- bug when transpiling print statements that wouldn't retain the existing separators (semicolon, comma, no separator) which all have unique uses ([#373](https://github.com/rokucommunity/brighterscript/pull/373))
|
|
232
337
|
|
|
233
338
|
|
|
234
339
|
|
|
235
|
-
## [0.37.0] - 2021-03-18
|
|
340
|
+
## [0.37.0](https://github.com/rokucommunity/brighterscript/compare/v0.36.0...v0.37.0) - 2021-03-18
|
|
236
341
|
### Added
|
|
237
342
|
- support for `bs:disable` comments in xml files ([#363](https://github.com/rokucommunity/brighterscript/pull/363))
|
|
238
343
|
|
|
239
344
|
|
|
240
345
|
|
|
241
|
-
## [0.36.0] - 2021-03-15
|
|
346
|
+
## [0.36.0](https://github.com/rokucommunity/brighterscript/compare/v0.35.0...v0.36.0) - 2021-03-15
|
|
242
347
|
### Added
|
|
243
348
|
- class import code actions ([#365](https://github.com/rokucommunity/brighterscript/pull/365))
|
|
244
349
|
### Changed
|
|
@@ -251,7 +356,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
251
356
|
|
|
252
357
|
|
|
253
358
|
|
|
254
|
-
## [0.35.0] - 2021-03-09
|
|
359
|
+
## [0.35.0](https://github.com/rokucommunity/brighterscript/compare/v0.34.3...v0.35.0) - 2021-03-09
|
|
255
360
|
### Added
|
|
256
361
|
- code actions for suggesting import statements in brighterscript files ([#347](https://github.com/rokucommunity/brighterscript/pull/347))
|
|
257
362
|
### Fixed
|
|
@@ -259,13 +364,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
259
364
|
|
|
260
365
|
|
|
261
366
|
|
|
262
|
-
## [0.34.3] -2021-03-05
|
|
367
|
+
## [0.34.3](https://github.com/rokucommunity/brighterscript/compare/v0.34.2...v0.34.3) -2021-03-05
|
|
263
368
|
### Fixed
|
|
264
369
|
- bug when transpiling bsc with custom function and parameter return types
|
|
265
370
|
|
|
266
371
|
|
|
267
372
|
|
|
268
|
-
## [0.34.2] - 2021-03-04
|
|
373
|
+
## [0.34.2](https://github.com/rokucommunity/brighterscript/compare/v0.34.1...v0.34.2) - 2021-03-04
|
|
269
374
|
### Added
|
|
270
375
|
- support for loading bslib without alias (i.e. `@rokucommunity/bslib`).
|
|
271
376
|
### Fixed
|
|
@@ -275,19 +380,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
275
380
|
|
|
276
381
|
|
|
277
382
|
|
|
278
|
-
## [0.34.1] - 2021-03-02
|
|
383
|
+
## [0.34.1](https://github.com/rokucommunity/brighterscript/compare/v0.34.0...v0.34.1) - 2021-03-02
|
|
279
384
|
### Fixed
|
|
280
385
|
- syntax parsing bugs within single-line if statements
|
|
281
386
|
|
|
282
387
|
|
|
283
388
|
|
|
284
|
-
## [0.34.0] - 2021-02-28
|
|
389
|
+
## [0.34.0](https://github.com/rokucommunity/brighterscript/compare/v0.33.0...v0.34.0) - 2021-02-28
|
|
285
390
|
### Added
|
|
286
391
|
- language server file path completions inside strings that start with `pkg:` or `libpkg:`
|
|
287
392
|
|
|
288
393
|
|
|
289
394
|
|
|
290
|
-
## [0.33.0] - 2021-02-27
|
|
395
|
+
## [0.33.0](https://github.com/rokucommunity/brighterscript/compare/v0.32.3...v0.33.0) - 2021-02-27
|
|
291
396
|
### Added
|
|
292
397
|
- support for ropm version of bslib.([#334](https://github.com/rokucommunity/brighterscript/pull/334))
|
|
293
398
|
### Fixed
|
|
@@ -297,7 +402,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
297
402
|
|
|
298
403
|
|
|
299
404
|
|
|
300
|
-
## [0.32.3] - 2021-02-25
|
|
405
|
+
## [0.32.3](https://github.com/rokucommunity/brighterscript/compare/v0.32.2...v0.32.3) - 2021-02-25
|
|
301
406
|
### Fixed
|
|
302
407
|
- fix significant performance bug in diagnostic filtering
|
|
303
408
|
- tweaks to the logging system to make `logLevel=verbose` less chatty
|
|
@@ -306,25 +411,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
306
411
|
|
|
307
412
|
|
|
308
413
|
|
|
309
|
-
## [0.
|
|
414
|
+
## [0.31.2](https://github.com/rokucommunity/brighterscript/compare/v0.31.1...v0.31.2) - 2021-02-20
|
|
310
415
|
### Fixed
|
|
311
416
|
- transpile bug when a template string starts with an expression ([#327](https://github.com/rokucommunity/brighterscript/pull/327))
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
## [0.31.2] - 2021-02-18
|
|
316
417
|
### Changed
|
|
317
|
-
-
|
|
418
|
+
- when generating type definition files, include the namespace for every extends statement ([#324](https://github.com/rokucommunity/brighterscript/pull/324))
|
|
318
419
|
|
|
319
420
|
|
|
320
421
|
|
|
321
|
-
## [0.31.1] - 2021-02-18
|
|
422
|
+
## [0.31.1](https://github.com/rokucommunity/brighterscript/compare/v0.31.0...v0.31.1) - 2021-02-18
|
|
322
423
|
### Fixed
|
|
323
424
|
- prevent exception in codeAction functionality when file cannot be found in a `Program`
|
|
324
425
|
|
|
325
426
|
|
|
326
427
|
|
|
327
|
-
## [0.31.0] - 2021-02-17
|
|
428
|
+
## [0.31.0](https://github.com/rokucommunity/brighterscript/compare/v0.30.9...v0.31.0) - 2021-02-17
|
|
328
429
|
### Added
|
|
329
430
|
- plugin and language server support for [codeActions](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_codeAction)
|
|
330
431
|
- codeAction to add missing `extends` attribute in components
|
|
@@ -334,7 +435,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
334
435
|
|
|
335
436
|
|
|
336
437
|
|
|
337
|
-
## [0.30.9] - 2021-02-15
|
|
438
|
+
## [0.30.9](https://github.com/rokucommunity/brighterscript/compare/v0.30.8...v0.30.9) - 2021-02-15
|
|
338
439
|
### Fixed
|
|
339
440
|
- prevent excess validations when non-workspace files are changed ([#315](https://github.com/rokucommunity/brighterscript/pull/315))
|
|
340
441
|
- catch errors when getting signatures ([#285](https://github.com/rokucommunity/brighterscript/pull/285))
|
|
@@ -342,7 +443,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
342
443
|
|
|
343
444
|
|
|
344
445
|
|
|
345
|
-
## [0.30.8] - 2021-02-12
|
|
446
|
+
## [0.30.8](https://github.com/rokucommunity/brighterscript/compare/v0.30.7...v0.30.8) - 2021-02-12
|
|
346
447
|
### Changed
|
|
347
448
|
- add additional logging in `Program.removeFile`
|
|
348
449
|
### Fixed
|
|
@@ -351,20 +452,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
351
452
|
|
|
352
453
|
|
|
353
454
|
|
|
354
|
-
## [0.30.7] - 2021-02-11
|
|
455
|
+
## [0.30.7](https://github.com/rokucommunity/brighterscript/compare/v0.30.6...v0.30.7) - 2021-02-11
|
|
355
456
|
### Fixed
|
|
356
457
|
- bug in `getSignatureHelp` that wouldn't work for function calls with no leading whitespace. ([#307](https://github.com/rokucommunity/brighterscript/issues/307))
|
|
357
458
|
|
|
358
459
|
|
|
359
460
|
|
|
360
|
-
## [0.30.6] - 2021-02-07
|
|
461
|
+
## [0.30.6](https://github.com/rokucommunity/brighterscript/compare/v0.30.5...v0.30.6) - 2021-02-07
|
|
361
462
|
### Fixed
|
|
362
463
|
- bad transpile for nested class method super calls
|
|
363
464
|
- SceneGraph node attributes being wrongly removed when modifying attributes
|
|
364
465
|
|
|
365
466
|
|
|
366
467
|
|
|
367
|
-
## [0.30.5] - 2021-02-03
|
|
468
|
+
## [0.30.5](https://github.com/rokucommunity/brighterscript/compare/v0.30.4...v0.30.5) - 2021-02-03
|
|
368
469
|
### Added
|
|
369
470
|
- syntax support for dim statements
|
|
370
471
|
- completion and code navigation for labels
|
|
@@ -373,33 +474,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
373
474
|
|
|
374
475
|
|
|
375
476
|
|
|
376
|
-
## [0.30.4] - 2021-02-02
|
|
477
|
+
## [0.30.4](https://github.com/rokucommunity/brighterscript/compare/v0.30.3...v0.30.4) - 2021-02-02
|
|
377
478
|
### Fixed
|
|
378
479
|
- fixed crash during validation caused by a missing function body when parsing malformed code
|
|
379
480
|
|
|
380
481
|
|
|
381
482
|
|
|
382
|
-
## [0.30.3] - 2021-02-01
|
|
483
|
+
## [0.30.3](https://github.com/rokucommunity/brighterscript/compare/v0.30.2...v0.30.3) - 2021-02-01
|
|
383
484
|
### Fixed
|
|
384
485
|
- performance issue when transpiling larger projects, even when no brighterscript code was used
|
|
385
486
|
|
|
386
487
|
|
|
387
488
|
|
|
388
|
-
## [0.30.2] - 2021-01-31
|
|
489
|
+
## [0.30.2](https://github.com/rokucommunity/brighterscript/compare/v0.30.1...v0.30.2) - 2021-01-31
|
|
389
490
|
### Fixed
|
|
390
491
|
- xml parse error crashing validation ((#294)[https://github.com/rokucommunity/brighterscript/pull/294])
|
|
391
492
|
- better handling for `createStringLiteral` ((#292)[https://github.com/rokucommunity/brighterscript/pull/292])
|
|
392
493
|
|
|
393
494
|
|
|
394
495
|
|
|
395
|
-
## [0.30.1] - 2021-01-29
|
|
496
|
+
## [0.30.1](https://github.com/rokucommunity/brighterscript/compare/v0.30.0...v0.30.1) - 2021-01-29
|
|
396
497
|
### Fixed
|
|
397
498
|
- bug that would crash while transpiling if a script tag didn't have a `type` attribute
|
|
398
499
|
- XML transpile now honors the `sourceMap` option
|
|
399
500
|
|
|
400
501
|
|
|
401
502
|
|
|
402
|
-
## [0.30.0] - 2021-01-26
|
|
503
|
+
## [0.30.0](https://github.com/rokucommunity/brighterscript/compare/v0.27.0...v0.28.0) - 2021-01-26
|
|
403
504
|
### Added
|
|
404
505
|
- null coalescing operator (see [the docs](https://github.com/rokucommunity/brighterscript/blob/master/docs/null-coalescing-operator.md) for more information)
|
|
405
506
|
### Fixed
|
|
@@ -407,13 +508,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
407
508
|
|
|
408
509
|
|
|
409
510
|
|
|
410
|
-
## [0.29.0] - 2021-01-25
|
|
511
|
+
## [0.29.0](https://github.com/rokucommunity/brighterscript/compare/v0.26.0...v0.27.0) - 2021-01-25
|
|
411
512
|
### Added
|
|
412
513
|
- ternary operator (see [the docs](https://github.com/rokucommunity/brighterscript/blob/master/docs/ternary-operator.md) for more information)
|
|
413
514
|
|
|
414
515
|
|
|
415
516
|
|
|
416
|
-
## [0.28.2] - 2021-01-22
|
|
517
|
+
## [0.28.2](https://github.com/rokucommunity/brighterscript/compare/v0.25.0...v0.26.0) - 2021-01-22
|
|
417
518
|
### Changed
|
|
418
519
|
- config loading functions from `util.ts` are now run synchronously
|
|
419
520
|
### Fixed
|
|
@@ -422,7 +523,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
422
523
|
|
|
423
524
|
|
|
424
525
|
|
|
425
|
-
## [0.28.1] - 2021-01-19
|
|
526
|
+
## [0.28.1](https://github.com/rokucommunity/brighterscript/compare/v0.24.2...v0.25.0) - 2021-01-19
|
|
426
527
|
### Changed
|
|
427
528
|
- (For plugin authors) refactored many async methods into sync methods to simplify file creation/management. ([#278](https://github.com/rokucommunity/brighterscript/pull/278))
|
|
428
529
|
### Fixed
|
|
@@ -431,7 +532,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
431
532
|
|
|
432
533
|
|
|
433
534
|
|
|
434
|
-
## [0.28.0] - 2021-01-16
|
|
535
|
+
## [0.28.0](https://github.com/rokucommunity/brighterscript/compare/v0.27.0...v0.28.0) - 2021-01-16
|
|
435
536
|
### Added
|
|
436
537
|
- annotation support for classes and class methods ([#270](https://github.com/rokucommunity/brighterscript/pull/270))
|
|
437
538
|
### fixed
|
|
@@ -439,13 +540,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
439
540
|
|
|
440
541
|
|
|
441
542
|
|
|
442
|
-
## [0.27.0] - 2021-01-15
|
|
543
|
+
## [0.27.0](https://github.com/rokucommunity/brighterscript/compare/v0.26.0...v0.27.0) - 2021-01-15
|
|
443
544
|
### Changed
|
|
444
545
|
- plugin system changed to require a factory function instead of a singleton object ([#272](https://github.com/rokucommunity/brighterscript/pull/272))
|
|
445
546
|
|
|
446
547
|
|
|
447
548
|
|
|
448
|
-
## [0.26.0] - 2021-01-14
|
|
549
|
+
## [0.26.0](https://github.com/rokucommunity/brighterscript/compare/v0.25.0...v0.26.0) - 2021-01-14
|
|
449
550
|
### Added
|
|
450
551
|
- proper XML AST support
|
|
451
552
|
- component interface validation
|
|
@@ -453,25 +554,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
453
554
|
|
|
454
555
|
|
|
455
556
|
|
|
456
|
-
## [0.25.0] - 2021-01-12
|
|
557
|
+
## [0.25.0](https://github.com/rokucommunity/brighterscript/compare/v0.24.2...v0.25.0) - 2021-01-12
|
|
457
558
|
### Added
|
|
458
559
|
- support for passing custom types as function parameters and return types ([#262](https://github.com/rokucommunity/brighterscript/issues/262))
|
|
459
560
|
|
|
460
561
|
|
|
461
562
|
|
|
462
|
-
## [0.24.2] - 2021-01-11
|
|
563
|
+
## [0.24.2](https://github.com/rokucommunity/brighterscript/compare/v0.24.1...v0.24.2) - 2021-01-11
|
|
463
564
|
### Fixed
|
|
464
565
|
- bug with transpiled child classes causing on-device stack overflows ([#267](https://github.com/rokucommunity/brighterscript/issues/267))
|
|
465
566
|
|
|
466
567
|
|
|
467
568
|
|
|
468
|
-
## [0.24.1] - 2021-01-09
|
|
569
|
+
## [0.24.1](https://github.com/rokucommunity/brighterscript/compare/v0.24.0...v0.24.1) - 2021-01-09
|
|
469
570
|
### Changed
|
|
470
571
|
- upgraded to [roku-deploy@3.2.4](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#324---2021-01-08)
|
|
471
572
|
|
|
472
573
|
|
|
473
574
|
|
|
474
|
-
## [0.24.0] - 2021-01-08
|
|
575
|
+
## [0.24.0](https://github.com/rokucommunity/brighterscript/compare/v0.23.2...v0.24.0) - 2021-01-08
|
|
475
576
|
### Added
|
|
476
577
|
- `sourceMap` option to enable/disable generating sourcemaps
|
|
477
578
|
### Changed
|
|
@@ -479,14 +580,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
479
580
|
|
|
480
581
|
|
|
481
582
|
|
|
482
|
-
## [0.23.2] - 2020-01-06
|
|
583
|
+
## [0.23.2](https://github.com/rokucommunity/brighterscript/compare/v0.23.1...v0.23.2) - 2020-01-06
|
|
483
584
|
### Fixed
|
|
484
585
|
- `isLiteralInvalid` was causing infinite recursion.
|
|
485
586
|
- lock `vscode-languageserver-protocol` package version to prevent issues with vscode not following semantic versioning.
|
|
486
587
|
|
|
487
588
|
|
|
488
589
|
|
|
489
|
-
## [0.23.1] - 2020-12-22
|
|
590
|
+
## [0.23.1](https://github.com/rokucommunity/brighterscript/compare/v0.23.0...v0.23.1) - 2020-12-22
|
|
490
591
|
### Changed
|
|
491
592
|
- renamed `Scope.getFiles()` to `Scope.getAllFiles()` and added a new function called `Scope.getOwnFiles()`
|
|
492
593
|
### Fixed
|
|
@@ -494,7 +595,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
494
595
|
|
|
495
596
|
|
|
496
597
|
|
|
497
|
-
## [0.23.0] - 2020-12-18
|
|
598
|
+
## [0.23.0](https://github.com/rokucommunity/brighterscript/compare/v0.22.1...v0.23.0) - 2020-12-18
|
|
498
599
|
### Changed
|
|
499
600
|
- AST parser refactoring ([#244](https://github.com/rokucommunity/brighterscript/pull/244))
|
|
500
601
|
- Make `ElseIf` into an `ElseIfStatement`
|
|
@@ -509,19 +610,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
509
610
|
|
|
510
611
|
|
|
511
612
|
|
|
512
|
-
## [0.22.1] - 2020-12-14
|
|
613
|
+
## [0.22.1](https://github.com/rokucommunity/brighterscript/compare/v0.22.0...v0.22.1) - 2020-12-14
|
|
513
614
|
### Fixed
|
|
514
615
|
- small bug introduced by vscode-languageserver causing crashes anytime negative range values are provided.
|
|
515
616
|
|
|
516
617
|
|
|
517
618
|
|
|
518
|
-
## [0.22.0] - 2020-11-23
|
|
619
|
+
## [0.22.0](https://github.com/rokucommunity/brighterscript/compare/v0.21.0...v0.22.0) - 2020-11-23
|
|
519
620
|
### Added
|
|
520
621
|
- `try/catch` and `throw` syntax support [#218](https://github.com/rokucommunity/brighterscript/issues/218)
|
|
521
622
|
|
|
522
623
|
|
|
523
624
|
|
|
524
|
-
## [0.21.0] - 2020-11-19
|
|
625
|
+
## [0.21.0](https://github.com/rokucommunity/brighterscript/compare/v0.20.1...v0.21.0) - 2020-11-19
|
|
525
626
|
### Added
|
|
526
627
|
- Catch when local variables and scope functions have the same name as a class. ([#246](https://github.com/rokucommunity/brighterscript/pull/246))
|
|
527
628
|
- Catch when functions use keyword names ([#247](https://github.com/rokucommunity/brighterscript/pull/247))
|
|
@@ -537,20 +638,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
537
638
|
- remove eliminated `BrsType` items from `reflection.ts`.
|
|
538
639
|
|
|
539
640
|
|
|
540
|
-
## [0.20.1] - 2020-11-16
|
|
641
|
+
## [0.20.1](https://github.com/rokucommunity/brighterscript/compare/v0.20.0...v0.20.1) - 2020-11-16
|
|
541
642
|
### Changed
|
|
542
643
|
- load plugins relatively to the project ([#242](https://github.com/rokucommunity/brighterscript/pull/242))
|
|
543
644
|
- modified reflection utilities so they are compatible with TS strict null checks ([#243](https://github.com/rokucommunity/brighterscript/pull/243))
|
|
544
645
|
|
|
545
646
|
|
|
546
647
|
|
|
547
|
-
## [0.20.0] - 2020-11-13
|
|
648
|
+
## [0.20.0](https://github.com/rokucommunity/brighterscript/compare/v0.19.0...v0.20.0) - 2020-11-13
|
|
548
649
|
### Added
|
|
549
650
|
- more language server features: onWorkspaceSymbol, onSignatureHelp, onDocumentSymbol, onReferences, improve onDefinition ([#191](https://github.com/rokucommunity/brighterscript/pull/191))
|
|
550
651
|
|
|
551
652
|
|
|
552
653
|
|
|
553
|
-
## [0.19.0] - 2020-11-04
|
|
654
|
+
## [0.19.0](https://github.com/rokucommunity/brighterscript/compare/v0.18.2...v0.19.0) - 2020-11-04
|
|
554
655
|
### Changed
|
|
555
656
|
- `emitDefinitions` now defaults to `false` (it previously defaulted to `true`)
|
|
556
657
|
### Fixed
|
|
@@ -558,13 +659,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
558
659
|
|
|
559
660
|
|
|
560
661
|
|
|
561
|
-
## [0.18.2] - 2020-11-2
|
|
662
|
+
## [0.18.2](https://github.com/rokucommunity/brighterscript/compare/v0.18.1...v0.18.2) - 2020-11-2
|
|
562
663
|
### Fixed
|
|
563
664
|
- support on-demand parse for typedef-shadowed files ([#237](https://github.com/rokucommunity/brighterscript/pull/237))
|
|
564
665
|
|
|
565
666
|
|
|
566
667
|
|
|
567
|
-
## [0.18.1] - 2020-10-30
|
|
668
|
+
## [0.18.1](https://github.com/rokucommunity/brighterscript/compare/v0.18.0...v0.18.1) - 2020-10-30
|
|
568
669
|
### Fixed
|
|
569
670
|
- exclude bs1100 for typedef files (`Missing "super()" call in class constructor method.`)
|
|
570
671
|
- fix some invalid class field types in typedef files
|
|
@@ -572,25 +673,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
572
673
|
|
|
573
674
|
|
|
574
675
|
|
|
575
|
-
## [0.18.0] - 2020-10-30
|
|
676
|
+
## [0.18.0](https://github.com/rokucommunity/brighterscript/compare/v0.17.0...v0.18.0) - 2020-10-30
|
|
576
677
|
### Added
|
|
577
678
|
- support for consuming and producing type definitions. ([188](https://github.com/rokucommunity/brighterscript/pull/188))
|
|
578
679
|
|
|
579
680
|
|
|
580
681
|
|
|
581
|
-
## [0.17.0] - 2020-10-27
|
|
682
|
+
## [0.17.0](https://github.com/rokucommunity/brighterscript/compare/v0.16.12...v0.17.0) - 2020-10-27
|
|
582
683
|
### Added
|
|
583
684
|
- Annotation syntax and AST support ([#234](https://github.com/rokucommunity/brighterscript/pull/234))
|
|
584
685
|
|
|
585
686
|
|
|
586
687
|
|
|
587
|
-
## [0.16.12] - 2020-10-21
|
|
688
|
+
## [0.16.12](https://github.com/rokucommunity/brighterscript/compare/v0.16.11...v0.16.12) - 2020-10-21
|
|
588
689
|
### Fixed
|
|
589
690
|
- parser bug when there was a trailing colon after `for` or `while` loop statements ([#230](https://github.com/rokucommunity/brighterscript/pull/230))
|
|
590
691
|
|
|
591
692
|
|
|
592
693
|
|
|
593
|
-
## [0.16.11] - 2020-10-20
|
|
694
|
+
## [0.16.11](https://github.com/rokucommunity/brighterscript/compare/v0.16.10...v0.16.11 - 2020-10-20
|
|
594
695
|
### Fixed
|
|
595
696
|
- bug when using single quotes in an xml script tag
|
|
596
697
|
### Changed
|
|
@@ -598,14 +699,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
598
699
|
|
|
599
700
|
|
|
600
701
|
|
|
601
|
-
## [0.16.10] - 2020-10-20
|
|
702
|
+
## [0.16.10](https://github.com/rokucommunity/brighterscript/compare/v0.16.9...v0.16.10) - 2020-10-20
|
|
602
703
|
### Fixed
|
|
603
704
|
- prevent crash when a callable has the same name as a javascript reserved name ([#226](https://github.com/rokucommunity/brighterscript/pull/226))
|
|
604
705
|
- prevent crash when `import` statement is malformed ([#224](https://github.com/rokucommunity/brighterscript/pull/224))
|
|
605
706
|
|
|
606
707
|
|
|
607
708
|
|
|
608
|
-
## [0.16.9] - 2020-10-18
|
|
709
|
+
## [0.16.9](https://github.com/rokucommunity/brighterscript/compare/v0.16.8...v0.16.9) - 2020-10-18
|
|
609
710
|
### Fixed
|
|
610
711
|
- reduce language server throttle for validation and parsing now that those have improved performance.
|
|
611
712
|
- massively improve validation performance by refactoring `getFileByPkgPath`
|
|
@@ -614,33 +715,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
614
715
|
|
|
615
716
|
|
|
616
717
|
|
|
617
|
-
## [0.16.8] - 2020-10-15
|
|
718
|
+
## [0.16.8](https://github.com/rokucommunity/brighterscript/compare/v0.16.7...v0.16.8) - 2020-10-15
|
|
618
719
|
### Fixed
|
|
619
720
|
- bug when printing diagnostics that would crash if the contents were missing (like for in-memory-only files injected by plugins) ([#217](https://github.com/rokucommunity/brighterscript/pull/217))
|
|
620
721
|
- Drop expensive AST walking for collecting property names and instead collect them as part of parsing
|
|
621
722
|
|
|
622
723
|
|
|
623
724
|
|
|
624
|
-
## [0.16.7] - 2020-10-13
|
|
725
|
+
## [0.16.7](https://github.com/rokucommunity/brighterscript/compare/v0.16.6...v0.16.7) - 2020-10-13
|
|
625
726
|
### Fixed
|
|
626
727
|
- bug when finding `bsconfig.json` that would use the wrong cwd in multi-workspace language server situations.
|
|
627
728
|
- bug when transpiling in-memory-only files. ([#212](https://github.com/rokucommunity/brighterscript/pull/212))
|
|
628
729
|
|
|
629
730
|
|
|
630
731
|
|
|
631
|
-
## [0.16.6] - 2020-10-13
|
|
732
|
+
## [0.16.6](https://github.com/rokucommunity/brighterscript/compare/v0.16.5...v0.16.6) - 2020-10-13
|
|
632
733
|
### Fixed
|
|
633
734
|
- quirk in the GitHub actions workflow that didn't publish the correct code.
|
|
634
735
|
|
|
635
736
|
|
|
636
737
|
|
|
637
|
-
## [0.16.5] - 2020-10-13
|
|
738
|
+
## [0.16.5](https://github.com/rokucommunity/brighterscript/compare/v0.16.4...v0.16.5) - 2020-10-13
|
|
638
739
|
### Fixed
|
|
639
740
|
- performance issue during the parse phase. We now defer certain collections until needed. ([#210](https://github.com/rokucommunity/brighterscript/pull/210))
|
|
640
741
|
|
|
641
742
|
|
|
642
743
|
|
|
643
|
-
## [0.16.4] - 2020-10-12
|
|
744
|
+
## [0.16.4](https://github.com/rokucommunity/brighterscript/compare/v0.16.3...v0.16.4) - 2020-10-12
|
|
644
745
|
### Changed
|
|
645
746
|
- LanguageServer now sends a _diff_ of diagnostics for files, instead of the entire project's diagnostics every time. ([#204](https://github.com/rokucommunity/brighterscript/pull/204))
|
|
646
747
|
### Fixed
|
|
@@ -649,7 +750,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
649
750
|
|
|
650
751
|
|
|
651
752
|
|
|
652
|
-
## [0.16.3] - 2020-10-11
|
|
753
|
+
## [0.16.3](https://github.com/rokucommunity/brighterscript/compare/v0.16.2...v0.16.3) - 2020-10-11
|
|
653
754
|
### Changed
|
|
654
755
|
- Add generic type parameter for `Program` add functions.
|
|
655
756
|
- Export `BscType` type to simplify `BrsFile | XmlFile` usage everywhere.
|
|
@@ -658,13 +759,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
658
759
|
|
|
659
760
|
|
|
660
761
|
|
|
661
|
-
## [0.16.2] - 2020-10-09
|
|
762
|
+
## [0.16.2](https://github.com/rokucommunity/brighterscript/compare/v0.16.1...v0.16.2) - 2020-10-09
|
|
662
763
|
### Fixed
|
|
663
764
|
- critical bug in diagnostic printing that would crash the program if a diagnostic was missing a valid range.
|
|
664
765
|
|
|
665
766
|
|
|
666
767
|
|
|
667
|
-
## [0.16.1] - 2020-10-03
|
|
768
|
+
## [0.16.1](https://github.com/rokucommunity/brighterscript/compare/v0.16.0...v0.16.1) - 2020-10-03
|
|
668
769
|
### Changed
|
|
669
770
|
- rename `isEscapedCharCodeLiteral` to `isEscapedCharCodeLiteralExpression` to match other expression class names
|
|
670
771
|
- rename `FunctionParameter` to `FunctionParameterExpression` to match other expression class names
|
|
@@ -675,7 +776,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
675
776
|
|
|
676
777
|
|
|
677
778
|
|
|
678
|
-
## [0.16.0] - 2020-10-02
|
|
779
|
+
## [0.16.0](https://github.com/rokucommunity/brighterscript/compare/v0.15.2...v0.16.0) - 2020-10-02
|
|
679
780
|
### Added
|
|
680
781
|
- `Expression.walk` and `Statement.walk` functions which provide shallow or deep walking of the AST
|
|
681
782
|
- Many `ast` reflection methods to be used instead of `instanceof`.
|
|
@@ -688,38 +789,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
688
789
|
|
|
689
790
|
|
|
690
791
|
|
|
691
|
-
## [0.15.2] - 2020-10-01
|
|
792
|
+
## [0.15.2](https://github.com/rokucommunity/brighterscript/compare/v0.15.1...v0.15.2) - 2020-10-01
|
|
692
793
|
### Fixed
|
|
693
794
|
- Bug in component validation that would throw errors if component name was undefined (generally due to an XML parse error). ([#194](https://github.com/rokucommunity/brighterscript/pull/194))
|
|
694
795
|
|
|
695
796
|
|
|
696
797
|
|
|
697
|
-
## [0.15.1] - 2020-09-30
|
|
798
|
+
## [0.15.1](https://github.com/rokucommunity/brighterscript/compare/v0.15.0...v0.15.1) - 2020-09-30
|
|
698
799
|
### Fixed
|
|
699
800
|
- improved performance in the lexer and parser
|
|
700
801
|
- potential for accidentally changing `cwd` during bsconfig resolving
|
|
701
802
|
|
|
702
803
|
|
|
703
804
|
|
|
704
|
-
## [0.15.0] - 2020-09-18
|
|
805
|
+
## [0.15.0](https://github.com/rokucommunity/brighterscript/compare/v0.14.0...v0.15.0) - 2020-09-18
|
|
705
806
|
### Added
|
|
706
807
|
- plugin API to allow visibility into the various compiler phases. This is currently in alpha. ([#170](https://github.com/rokucommunity/brighterscript/pull/170))
|
|
707
808
|
|
|
708
809
|
|
|
709
810
|
|
|
710
|
-
## [0.14.0] - 2020-09-04
|
|
811
|
+
## [0.14.0](https://github.com/rokucommunity/brighterscript/compare/v0.13.2...v0.14.0) - 2020-09-04
|
|
711
812
|
### Changed
|
|
712
813
|
- Add error diagnostic BS1115 which flags duplicate component names [#186](https://github.com/rokucommunity/brighterscript/pull/186)
|
|
713
814
|
|
|
714
815
|
|
|
715
816
|
|
|
716
|
-
## [0.13.2] - 2020-08-31
|
|
817
|
+
## [0.13.2](https://github.com/rokucommunity/brighterscript/compare/v0.13.1...v0.13.2) - 2020-08-31
|
|
717
818
|
### Changed
|
|
718
819
|
- Upgraded BS1104 to error (previously a warning) and refined the messaging.
|
|
719
820
|
|
|
720
821
|
|
|
721
822
|
|
|
722
|
-
## [0.13.1] - 2020-08-14
|
|
823
|
+
## [0.13.1](https://github.com/rokucommunity/brighterscript/compare/v0.13.0...v0.13.1) - 2020-08-14
|
|
723
824
|
### Changed
|
|
724
825
|
- upgraded to [roku-deploy@3.2.3](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#323---2020-08-14)
|
|
725
826
|
- throw exception when copying to staging folder and `rootDir` does not exist in the file system
|
|
@@ -727,26 +828,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
727
828
|
|
|
728
829
|
|
|
729
830
|
|
|
730
|
-
## [0.13.0] - 2020-08-10
|
|
831
|
+
## [0.13.0](https://github.com/rokucommunity/brighterscript/compare/v0.12.4...v0.13.0) - 2020-08-10
|
|
731
832
|
### Added
|
|
732
833
|
- ability to mark the `extends` and `project` options in `bsconfig.json`, API and CLI as optional.
|
|
733
834
|
|
|
734
835
|
|
|
735
836
|
|
|
736
|
-
## [0.12.4] - 2020-08-06
|
|
837
|
+
## [0.12.4](https://github.com/rokucommunity/brighterscript/compare/v0.12.3...v0.12.4) - 2020-08-06
|
|
737
838
|
### Fixed
|
|
738
839
|
- bug in cli that wouldn't properly read bsconfig values. [#167](https://github.com/rokucommunity/brighterscript/issues/167)
|
|
739
840
|
- bug in cli that doesn't use `retain-staging-folder` argument properly. [#168](https://github.com/rokucommunity/brighterscript/issues/168)
|
|
740
841
|
|
|
741
842
|
|
|
742
843
|
|
|
743
|
-
## [0.12.3] - 2020-08-03
|
|
844
|
+
## [0.12.3](https://github.com/rokucommunity/brighterscript/compare/v0.12.2...v0.12.3) - 2020-08-03
|
|
744
845
|
### Fixed
|
|
745
846
|
- bug in the language server that would provide stale completions due to the file throttling introduced in v0.11.2. Now the language server will wait for the throttled parsing to complete before serving completion results.
|
|
746
847
|
|
|
747
848
|
|
|
748
849
|
|
|
749
|
-
## [0.12.2] - 2020-07-16
|
|
850
|
+
## [0.12.2](https://github.com/rokucommunity/brighterscript/compare/v0.12.1...v0.12.2) - 2020-07-16
|
|
750
851
|
### Added
|
|
751
852
|
- Expose `ProgramBuilder.transpile()` method to make it easier for tools to transpile programmatically. [#154](https://github.com/rokucommunity/brighterscript/issues/154)
|
|
752
853
|
### Fixed
|
|
@@ -754,7 +855,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
754
855
|
|
|
755
856
|
|
|
756
857
|
|
|
757
|
-
## [0.12.1] - 2020-07-15
|
|
858
|
+
## [0.12.1](https://github.com/rokucommunity/brighterscript/compare/v0.12.0...v0.12.1) - 2020-07-15
|
|
758
859
|
### Changed
|
|
759
860
|
- upgraded to [roku-deploy@3.2.2](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#322---2020-07-14)
|
|
760
861
|
### Fixed
|
|
@@ -762,7 +863,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
762
863
|
|
|
763
864
|
|
|
764
865
|
|
|
765
|
-
## [0.12.0] - 2020-07-09
|
|
866
|
+
## [0.12.0](https://github.com/rokucommunity/brighterscript/compare/v0.11.2...v0.12.0) - 2020-07-09
|
|
766
867
|
### Added
|
|
767
868
|
- `diagnosticLevel` option to limit/control the noise in the console diagnostics
|
|
768
869
|
### Changed
|
|
@@ -774,7 +875,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
774
875
|
|
|
775
876
|
|
|
776
877
|
|
|
777
|
-
## [0.11.2] - 2020-07-09
|
|
878
|
+
## [0.11.2](https://github.com/rokucommunity/brighterscript/compare/v0.11.1...v0.11.2) - 2020-07-09
|
|
778
879
|
### Changed
|
|
779
880
|
- add 350ms debounce in LanguageServer `onDidChangeWatchedFiles` to increase performance by reducing the number of times a file is parsed and validated.
|
|
780
881
|
### Fixed
|
|
@@ -784,7 +885,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
784
885
|
|
|
785
886
|
|
|
786
887
|
|
|
787
|
-
## [0.11.1] - 2020-07-07
|
|
888
|
+
## [0.11.1](https://github.com/rokucommunity/brighterscript/compare/v0.11.0...v0.11.1) - 2020-07-07
|
|
788
889
|
### Added
|
|
789
890
|
- diagnostic for unknown file reference in import statements ([#139](https://github.com/rokucommunity/brighterscript/pull/139))
|
|
790
891
|
### Changed
|
|
@@ -797,7 +898,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
797
898
|
|
|
798
899
|
|
|
799
900
|
|
|
800
|
-
## [0.11.0] - 2020-07-06
|
|
901
|
+
## [0.11.0](https://github.com/rokucommunity/brighterscript/compare/v0.10.10...v0.11.0) - 2020-07-06
|
|
801
902
|
### Added
|
|
802
903
|
- [Source literals feature](https://github.com/rokucommunity/brighterscript/blob/master/docs/source-literals.md) which adds new literals such as `SOURCE_FILE_PATH`, `SOURCE_LINE_NUM`, `FUNCTION_NAME`, and more. ([#13](https://github.com/rokucommunity/brighterscript/issues/13))
|
|
803
904
|
- `sourceRoot` config option to fix sourcemap paths for projects that use a temporary staging folder before calling the BrighterScript compiler. ([#134](https://github.com/rokucommunity/brighterscript/commit/e5b73ca37016d5015a389257fb259573c4721e7a))
|
|
@@ -807,18 +908,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
807
908
|
|
|
808
909
|
|
|
809
910
|
|
|
810
|
-
## [0.10.11] - 2020-07-05
|
|
911
|
+
## [0.10.11](https://github.com/rokucommunity/brighterscript/compare/v0.10.10...v0.10.11) - 2020-07-05
|
|
811
912
|
- Fix bug that would fail to copy files to staging without explicitly specifying `stagingFolderpath`. [#129](https://github.com/rokucommunity/brighterscript/issues/129)
|
|
812
913
|
|
|
813
914
|
|
|
814
915
|
|
|
815
|
-
## [0.10.10] - 2020-06-12
|
|
916
|
+
## [0.10.10](https://github.com/rokucommunity/brighterscript/compare/v0.10.9...v0.10.10) - 2020-06-12
|
|
816
917
|
### Fixed
|
|
817
918
|
- include the missing `bslib.brs` file in the npm package which was causing errors during transpile.
|
|
818
919
|
|
|
819
920
|
|
|
820
921
|
|
|
821
|
-
## [0.10.9] 2020-06-12
|
|
922
|
+
## [0.10.9](https://github.com/rokucommunity/brighterscript/compare/v0.10.8...v0.10.9) 2020-06-12
|
|
822
923
|
### Added
|
|
823
924
|
- bslib.brs gets copied to `pkg:/source` and added as an import to every component on transpile.
|
|
824
925
|
- several timing logs under the `"info"` log level.
|
|
@@ -830,32 +931,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
830
931
|
|
|
831
932
|
|
|
832
933
|
|
|
833
|
-
## [0.10.8] - 2020-06-09
|
|
934
|
+
## [0.10.8](https://github.com/rokucommunity/brighterscript/compare/v0.10.7...v0.10.8) - 2020-06-09
|
|
834
935
|
### Fixed
|
|
835
936
|
- Allow leading spcaes for `bs:disable-line` and `bs:disable-next-line` comments ([#108](https://github.com/rokucommunity/brighterscript/pull/108))
|
|
836
937
|
|
|
837
938
|
|
|
838
939
|
|
|
839
|
-
## [0.10.7] - 2020-06-08
|
|
940
|
+
## [0.10.7](https://github.com/rokucommunity/brighterscript/compare/v0.10.6...v0.10.7) - 2020-06-08
|
|
840
941
|
### Fixed
|
|
841
942
|
- bug in cli that was always returning a nonzero error code
|
|
842
943
|
|
|
843
944
|
|
|
844
945
|
|
|
845
|
-
## [0.10.6] - 2020-06-05
|
|
946
|
+
## [0.10.6](https://github.com/rokucommunity/brighterscript/compare/v0.10.5...v0.10.6) - 2020-06-05
|
|
846
947
|
### Fixed
|
|
847
948
|
- incorrect definition for global `Left()` function. ([#100](https://github.com/rokucommunity/brighterscript/issues/100))
|
|
848
949
|
- missing definition for global `Tab()` and `Pos()` functions ([#101](https://github.com/rokucommunity/brighterscript/issues/101))
|
|
849
950
|
|
|
850
951
|
|
|
851
952
|
|
|
852
|
-
## [0.10.5] - 2020-06-04
|
|
953
|
+
## [0.10.5](https://github.com/rokucommunity/brighterscript/compare/v0.10.4...v0.10.5) - 2020-06-04
|
|
853
954
|
### Changed
|
|
854
955
|
- added better logging for certain critical language server crashes
|
|
855
956
|
|
|
856
957
|
|
|
857
958
|
|
|
858
|
-
## [0.10.4] - 2020-05-28
|
|
959
|
+
## [0.10.4](https://github.com/rokucommunity/brighterscript/compare/v0.10.3...v0.10.4) - 2020-05-28
|
|
859
960
|
### Fixed
|
|
860
961
|
- bug where assigning a namespaced function to a variable wasn't properly transpiling the dots to underscores (fixes [#91](https://github.com/rokucommunity/brighterscript/issues/91))
|
|
861
962
|
- flag parameter with same name as namespace
|
|
@@ -864,14 +965,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
864
965
|
|
|
865
966
|
|
|
866
967
|
|
|
867
|
-
## [0.10.3] - 2020-05-27
|
|
968
|
+
## [0.10.3](https://github.com/rokucommunity/brighterscript/compare/v0.10.2...v0.10.3) - 2020-05-27
|
|
868
969
|
### Changed
|
|
869
970
|
- tokenizing a string with no closing quote will now include all of the text until the end of the line.
|
|
870
971
|
- language server `TranspileFile` command now waits until the program is finished building before trying to transpile.
|
|
871
972
|
|
|
872
973
|
|
|
873
974
|
|
|
874
|
-
## [0.10.2] - 2020-05-23
|
|
975
|
+
## [0.10.2](https://github.com/rokucommunity/brighterscript/compare/v0.10.1...v0.10.2) - 2020-05-23
|
|
875
976
|
### Added
|
|
876
977
|
- language server command `TranspileFile` which will return the transpiled contents of the requested file.
|
|
877
978
|
### Fixed
|
|
@@ -880,7 +981,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
880
981
|
|
|
881
982
|
|
|
882
983
|
|
|
883
|
-
## [0.10.1] - 2020-05-22
|
|
984
|
+
## [0.10.1](https://github.com/rokucommunity/brighterscript/compare/v0.10.0...v0.10.1) - 2020-05-22
|
|
884
985
|
### Fixed
|
|
885
986
|
- transpile bug for compound assignment statements (such as `+=`, `-=`) ([#87](https://github.com/rokucommunity/brighterscript/issues/87))
|
|
886
987
|
- transpile bug that was inserting function parameter types before default values ([#88](https://github.com/rokucommunity/brighterscript/issues/88))
|
|
@@ -888,13 +989,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
888
989
|
|
|
889
990
|
|
|
890
991
|
|
|
891
|
-
## [0.10.0] - 2020-05-19
|
|
992
|
+
## [0.10.0](https://github.com/rokucommunity/brighterscript/compare/v0.9.8...v0.10.0) - 2020-05-19
|
|
892
993
|
### Added
|
|
893
994
|
- new callfunc operator.
|
|
894
995
|
|
|
895
996
|
|
|
896
997
|
|
|
897
|
-
## [0.9.8] - 2020-05-16
|
|
998
|
+
## [0.9.8](https://github.com/rokucommunity/brighterscript/compare/v0.9.7...v0.9.8) - 2020-05-16
|
|
898
999
|
### Changed
|
|
899
1000
|
- the inner event system handling file changes. This should fix several race conditions causing false negatives during CLI runs.
|
|
900
1001
|
### Fixed
|
|
@@ -902,7 +1003,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
902
1003
|
|
|
903
1004
|
|
|
904
1005
|
|
|
905
|
-
## [0.9.7] - 2020-05-14
|
|
1006
|
+
## [0.9.7](https://github.com/rokucommunity/brighterscript/compare/v0.9.6...v0.9.7) - 2020-05-14
|
|
906
1007
|
### Changed
|
|
907
1008
|
- TypeScript target to "ES2017" which provides a significant performance boost in lexer (~30%) and parser (~175%)
|
|
908
1009
|
### Fixed
|
|
@@ -912,7 +1013,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
912
1013
|
|
|
913
1014
|
|
|
914
1015
|
|
|
915
|
-
## [0.9.6] - 2020-05-11
|
|
1016
|
+
## [0.9.6](https://github.com/rokucommunity/brighterscript/compare/v0.9.5...v0.9.6) - 2020-05-11
|
|
916
1017
|
### Added
|
|
917
1018
|
- `logLevel` option from the bsconfig.json and command prompt that allows specifying how much detain the logging should contain.
|
|
918
1019
|
- additional messages during cli run
|
|
@@ -924,7 +1025,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
924
1025
|
|
|
925
1026
|
|
|
926
1027
|
|
|
927
|
-
## [0.9.5] - 2020-05-06
|
|
1028
|
+
## [0.9.5](https://github.com/rokucommunity/brighterscript/compare/v0.9.4...v0.9.5) - 2020-05-06
|
|
928
1029
|
### Added
|
|
929
1030
|
- new config option called `showDiagnosticsInConsole` which disables printing diagnostics to the console
|
|
930
1031
|
### Fixed
|
|
@@ -934,7 +1035,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
934
1035
|
|
|
935
1036
|
|
|
936
1037
|
|
|
937
|
-
## [0.9.4] - 2020-05-05
|
|
1038
|
+
## [0.9.4](https://github.com/rokucommunity/brighterscript/compare/v0.9.3...v0.9.4) - 2020-05-05
|
|
938
1039
|
### Added
|
|
939
1040
|
- diagnostic for detecting unnecessary script imports when `autoImportComponentScript` is enabled
|
|
940
1041
|
### Changed
|
|
@@ -947,7 +1048,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
947
1048
|
|
|
948
1049
|
|
|
949
1050
|
|
|
950
|
-
## [0.9.3] - 2020-05-04
|
|
1051
|
+
## [0.9.3](https://github.com/rokucommunity/brighterscript/compare/v0.9.2...v0.9.3) - 2020-05-04
|
|
951
1052
|
### Changed
|
|
952
1053
|
- do not show BRS1013 for standalone files ([#72](https://github.com/rokucommunity/brighterscript/issues/72))
|
|
953
1054
|
- BS1011 (same name as global function) is no longer shown for local variables that are not of type `function` ([#70](https://github.com/rokucommunity/brighterscript/issues/70))
|
|
@@ -956,7 +1057,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
956
1057
|
|
|
957
1058
|
|
|
958
1059
|
|
|
959
|
-
## [0.9.2] - 2020-05-02
|
|
1060
|
+
## [0.9.2](https://github.com/rokucommunity/brighterscript/compare/v0.9.1...v0.9.2) - 2020-05-02
|
|
960
1061
|
### Changed
|
|
961
1062
|
- intellisense anywhere other than next to a dot now includes keywords (#67)
|
|
962
1063
|
|
|
@@ -967,19 +1068,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
967
1068
|
|
|
968
1069
|
|
|
969
1070
|
|
|
970
|
-
## [0.9.1] - 2020-05-01
|
|
1071
|
+
## [0.9.1](https://github.com/rokucommunity/brighterscript/compare/v0.9.0...v0.9.1) - 2020-05-01
|
|
971
1072
|
### Fixed
|
|
972
1073
|
- bug with upper-case two-word conditional compile tokens (`#ELSE IF` and `#END IF`) (#63)
|
|
973
1074
|
|
|
974
1075
|
|
|
975
1076
|
|
|
976
|
-
## [0.9.0] - 2020-05-01
|
|
1077
|
+
## [0.9.0](https://github.com/rokucommunity/brighterscript/compare/v0.8.2...v0.9.0) - 2020-05-01
|
|
977
1078
|
### Added
|
|
978
1079
|
- new compile flag `autoImportComponentScript` which will automatically import a script for a component with the same name if it exists.
|
|
979
1080
|
|
|
980
1081
|
|
|
981
1082
|
|
|
982
|
-
## [0.8.2] - 2020-04-29
|
|
1083
|
+
## [0.8.2](https://github.com/rokucommunity/brighterscript/compare/v0.8.1...v0.8.2) - 2020-04-29
|
|
983
1084
|
### Fixed
|
|
984
1085
|
- bugs in namespace transpilation
|
|
985
1086
|
- bugs in class transpilation
|
|
@@ -988,14 +1089,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
988
1089
|
|
|
989
1090
|
|
|
990
1091
|
|
|
991
|
-
## [0.8.1] - 2020-04-27
|
|
1092
|
+
## [0.8.1](https://github.com/rokucommunity/brighterscript/compare/v0.8.0...v0.8.1) - 2020-04-27
|
|
992
1093
|
### Fixed
|
|
993
1094
|
- Bug where class property initializers would cause parse error
|
|
994
1095
|
- better parse recovery for incomplete class members
|
|
995
1096
|
|
|
996
1097
|
|
|
997
1098
|
|
|
998
|
-
## [0.8.0] - 2020-04-26
|
|
1099
|
+
## [0.8.0](https://github.com/rokucommunity/brighterscript/compare/v0.7.2...v0.8.0) - 2020-04-26
|
|
999
1100
|
### Added
|
|
1000
1101
|
- new `import` syntax for BrighterScript projects.
|
|
1001
1102
|
- experimental transpile support for xml files (converts `.bs` extensions to `.brs`, auto-appends the `import` statments to each xml component)
|
|
@@ -1003,19 +1104,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1003
1104
|
- upgraded to vscode-languageserver@6.1.1
|
|
1004
1105
|
|
|
1005
1106
|
|
|
1006
|
-
## [0.7.2] - 2020-04-24
|
|
1107
|
+
## [0.7.2](https://github.com/rokucommunity/brighterscript/compare/v0.7.1...v0.7.2) - 2020-04-24
|
|
1007
1108
|
### Fixed
|
|
1008
1109
|
- runtime bug in the language server when validating incomplete class statements
|
|
1009
1110
|
|
|
1010
1111
|
|
|
1011
1112
|
|
|
1012
|
-
## [0.7.1] - 2020-04-23
|
|
1113
|
+
## [0.7.1](https://github.com/rokucommunity/brighterscript/compare/v0.7.0...v0.7.1) - 2020-04-23
|
|
1013
1114
|
### Fixed
|
|
1014
1115
|
- dependency issue: `glob` is required but was not listed as a dependency
|
|
1015
1116
|
|
|
1016
1117
|
|
|
1017
1118
|
|
|
1018
|
-
## [0.7.0] - 2020-04-23
|
|
1119
|
+
## [0.7.0](https://github.com/rokucommunity/brighterscript/compare/v0.6.0...v0.7.0) - 2020-04-23
|
|
1019
1120
|
### Added
|
|
1020
1121
|
- basic support for namespaces
|
|
1021
1122
|
- experimental parser support for import statements (no transpile yet)
|
|
@@ -1024,7 +1125,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1024
1125
|
|
|
1025
1126
|
|
|
1026
1127
|
|
|
1027
|
-
## [0.6.0] 2020-04-15
|
|
1128
|
+
## [0.6.0](https://github.com/rokucommunity/brighterscript/compare/v0.5.4...v0.6.0) 2020-04-15
|
|
1028
1129
|
### Added
|
|
1029
1130
|
- ability to filter out diagnostics by using the `diagnosticFilters` option in bsconfig
|
|
1030
1131
|
### Changed
|
|
@@ -1034,14 +1135,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1034
1135
|
|
|
1035
1136
|
|
|
1036
1137
|
|
|
1037
|
-
## [0.5.4] 2020-04-13
|
|
1138
|
+
## [0.5.4](https://github.com/rokucommunity/brighterscript/compare/v0.5.3...v0.5.4) 2020-04-13
|
|
1038
1139
|
### Fixed
|
|
1039
1140
|
- Syntax bug that wasn't allowing period before indexed get expression (example: `prop.["key"]`) (#58)
|
|
1040
1141
|
- Syntax bug preventing comments from being used in various locations within a class
|
|
1041
1142
|
|
|
1042
1143
|
|
|
1043
1144
|
|
|
1044
|
-
## [0.5.3] - 2020-04-12
|
|
1145
|
+
## [0.5.3](https://github.com/rokucommunity/brighterscript/compare/v0.5.2...v0.5.3) - 2020-04-12
|
|
1045
1146
|
### Added
|
|
1046
1147
|
- syntax support for the xml attribute operator (`node@someAttr`) (#34)
|
|
1047
1148
|
- syntax support for bitshift operators (`<<` and `>>`) (#50)
|
|
@@ -1051,7 +1152,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1051
1152
|
|
|
1052
1153
|
|
|
1053
1154
|
|
|
1054
|
-
## [0.5.2] - 2020-04-11
|
|
1155
|
+
## [0.5.2](https://github.com/rokucommunity/brighterscript/compare/v0.5.1...v0.5.2) - 2020-04-11
|
|
1055
1156
|
### Changed
|
|
1056
1157
|
- downgrade diagnostic issue 1007 from an error to a warning, and updated the message to "Component is mising "extends" attribute and will automatically extend "Group" by default" (#53)
|
|
1057
1158
|
### Fixed
|
|
@@ -1060,13 +1161,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1060
1161
|
|
|
1061
1162
|
|
|
1062
1163
|
|
|
1063
|
-
## [0.5.1] - 2020-04-10
|
|
1164
|
+
## [0.5.1](https://github.com/rokucommunity/brighterscript/compare/v0.5.0...v0.5.1) - 2020-04-10
|
|
1064
1165
|
### Changed
|
|
1065
1166
|
- upgraded to [roku-deploy@3.0.2](https://www.npmjs.com/package/roku-debug/v/0.3.4) which fixed a file copy bug in subdirectories of symlinked folders (fixes #41)
|
|
1066
1167
|
|
|
1067
1168
|
|
|
1068
1169
|
|
|
1069
|
-
## [0.5.0] - 2020-04-10
|
|
1170
|
+
## [0.5.0](https://github.com/rokucommunity/brighterscript/compare/v0.4.4...v0.5.0) - 2020-04-10
|
|
1070
1171
|
### Added
|
|
1071
1172
|
- several new diagnostics for conditional compiles. Some of them allow the parser to recover and continue.
|
|
1072
1173
|
- experimental class transpile support. There is still no intellisense for classes yet though.
|
|
@@ -1079,31 +1180,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1079
1180
|
|
|
1080
1181
|
|
|
1081
1182
|
|
|
1082
|
-
## [0.4.4] - 2020-04-04
|
|
1183
|
+
## [0.4.4](https://github.com/rokucommunity/brighterscript/compare/v0.4.3...v0.4.4) - 2020-04-04
|
|
1083
1184
|
### Fixed
|
|
1084
1185
|
- bug in the ProgramBuilder that would terminate the program on first run if an error diagnostic was found, even when in watch mode.
|
|
1085
1186
|
|
|
1086
1187
|
|
|
1087
1188
|
|
|
1088
|
-
## [0.4.3] - 2020-04-03
|
|
1189
|
+
## [0.4.3](https://github.com/rokucommunity/brighterscript/compare/v0.4.2...v0.4.3) - 2020-04-03
|
|
1089
1190
|
### Changed
|
|
1090
1191
|
- the `bsc` cli now emits a nonzero return code whenever parse errors are encountered, which allows tools to detect compile-time errors. (#43)
|
|
1091
1192
|
|
|
1092
1193
|
|
|
1093
1194
|
|
|
1094
|
-
## [0.4.2] - 2020-04-01
|
|
1195
|
+
## [0.4.2](https://github.com/rokucommunity/brighterscript/compare/v0.4.1...v0.4.2) - 2020-04-01
|
|
1095
1196
|
### Changed
|
|
1096
1197
|
- upgraded to [roku-deploy@3.0.0](https://www.npmjs.com/package/roku-deploy/v/3.0.0)
|
|
1097
1198
|
|
|
1098
1199
|
|
|
1099
1200
|
|
|
1100
|
-
## [0.4.1] - 2020-01-11
|
|
1201
|
+
## [0.4.1](https://github.com/rokucommunity/brighterscript/compare/v0.4.0...v0.4.1) - 2020-01-11
|
|
1101
1202
|
### Changed
|
|
1102
1203
|
- upgraded to [roku-deploy@3.0.0-beta.7](https://www.npmjs.com/package/roku-deploy/v/3.0.0-beta.7) which fixed a critical bug during pkg creation.
|
|
1103
1204
|
|
|
1104
1205
|
|
|
1105
1206
|
|
|
1106
|
-
## [0.4.0] - 2020-01-07
|
|
1207
|
+
## [0.4.0](https://github.com/rokucommunity/brighterscript/compare/v0.3.1...v0.4.0) - 2020-01-07
|
|
1107
1208
|
### Added
|
|
1108
1209
|
- ability to specify the pkgPath of a file when adding to the project.
|
|
1109
1210
|
### Changed
|
|
@@ -1116,14 +1217,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1116
1217
|
|
|
1117
1218
|
|
|
1118
1219
|
|
|
1119
|
-
## [0.3.1] - 2019-11-08
|
|
1220
|
+
## [0.3.1](https://github.com/rokucommunity/brighterscript/compare/v0.3.0...v0.3.1) - 2019-11-08
|
|
1120
1221
|
### Fixed
|
|
1121
1222
|
- language server bug that was showing error messages in certain startup race conditions.
|
|
1122
1223
|
- error during hover caused by race condition during file re-parse.
|
|
1123
1224
|
|
|
1124
1225
|
|
|
1125
1226
|
|
|
1126
|
-
## [0.3.0] - 2019-10-03
|
|
1227
|
+
## [0.3.0](https://github.com/rokucommunity/brighterscript/compare/v0.2.2...v0.3.0) - 2019-10-03
|
|
1127
1228
|
### Added
|
|
1128
1229
|
- support for parsing opened files not included in any project.
|
|
1129
1230
|
### Fixed
|
|
@@ -1131,13 +1232,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1131
1232
|
|
|
1132
1233
|
|
|
1133
1234
|
|
|
1134
|
-
## [0.2.2] - 2019-09-27
|
|
1235
|
+
## [0.2.2](https://github.com/rokucommunity/brighterscript/compare/v0.2.1...v0.2.2) - 2019-09-27
|
|
1135
1236
|
### Fixed
|
|
1136
1237
|
- bug in language server where the server would crash when sending a diagnostic too early. Now the server waits for the program to load before sending diagnostics.
|
|
1137
1238
|
|
|
1138
1239
|
|
|
1139
1240
|
|
|
1140
|
-
## [0.2.1] - 2019-09-24
|
|
1241
|
+
## [0.2.1](https://github.com/rokucommunity/brighterscript/compare/v0.2.0...v0.2.1) - 2019-09-24
|
|
1141
1242
|
### Changed
|
|
1142
1243
|
- the text for diagnostic 1010 to say "override" instead of "shadows"
|
|
1143
1244
|
### Fixed
|
|
@@ -1148,7 +1249,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1148
1249
|
|
|
1149
1250
|
|
|
1150
1251
|
|
|
1151
|
-
## [0.2.0] - 2019-09-20
|
|
1252
|
+
## [0.2.0](https://github.com/rokucommunity/brighterscript/compare/v0.1.0...v0.2.0) - 2019-09-20
|
|
1152
1253
|
### Added
|
|
1153
1254
|
- bsconfig.json validation
|
|
1154
1255
|
- slightly smarter intellisense that knows when you're trying to complete an object property.
|
|
@@ -1163,132 +1264,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1163
1264
|
- Bug during file creation that wouldn't recognize the file
|
|
1164
1265
|
|
|
1165
1266
|
|
|
1166
|
-
## [0.1.0] - 2019-08-10
|
|
1267
|
+
## [0.1.0](https://github.com/rokucommunity/brighterscript/compare/v0.1.0...v0.1.0) - 2019-08-10
|
|
1167
1268
|
### Changed
|
|
1168
1269
|
- Cloned from [brightscript-language](https://github.com/rokucommunity/brightscript-language)
|
|
1169
1270
|
|
|
1170
1271
|
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
[0.4.2]: https://github.com/rokucommunity/brighterscript/compare/v0.4.1...v0.4.2
|
|
1180
|
-
[0.4.3]: https://github.com/rokucommunity/brighterscript/compare/v0.4.2...v0.4.3
|
|
1181
|
-
[0.4.4]: https://github.com/rokucommunity/brighterscript/compare/v0.4.3...v0.4.4
|
|
1182
|
-
[0.5.0]: https://github.com/rokucommunity/brighterscript/compare/v0.4.4...v0.5.0
|
|
1183
|
-
[0.5.1]: https://github.com/rokucommunity/brighterscript/compare/v0.5.0...v0.5.1
|
|
1184
|
-
[0.5.2]: https://github.com/rokucommunity/brighterscript/compare/v0.5.1...v0.5.2
|
|
1185
|
-
[0.5.3]: https://github.com/rokucommunity/brighterscript/compare/v0.5.2...v0.5.3
|
|
1186
|
-
[0.5.4]: https://github.com/rokucommunity/brighterscript/compare/v0.5.3...v0.5.4
|
|
1187
|
-
[0.6.0]: https://github.com/rokucommunity/brighterscript/compare/v0.5.4...v0.6.0
|
|
1188
|
-
[0.7.0]: https://github.com/rokucommunity/brighterscript/compare/v0.6.0...v0.7.0
|
|
1189
|
-
[0.7.1]: https://github.com/rokucommunity/brighterscript/compare/v0.7.0...v0.7.1
|
|
1190
|
-
[0.7.2]: https://github.com/rokucommunity/brighterscript/compare/v0.7.1...v0.7.2
|
|
1191
|
-
[0.8.0]: https://github.com/rokucommunity/brighterscript/compare/v0.7.2...v0.8.0
|
|
1192
|
-
[0.8.1]: https://github.com/rokucommunity/brighterscript/compare/v0.8.0...v0.8.1
|
|
1193
|
-
[0.8.2]: https://github.com/rokucommunity/brighterscript/compare/v0.8.1...v0.8.2
|
|
1194
|
-
[0.9.0]: https://github.com/rokucommunity/brighterscript/compare/v0.8.2...v0.9.0
|
|
1195
|
-
[0.9.1]: https://github.com/rokucommunity/brighterscript/compare/v0.9.0...v0.9.1
|
|
1196
|
-
[0.9.2]: https://github.com/rokucommunity/brighterscript/compare/v0.9.1...v0.9.2
|
|
1197
|
-
[0.9.3]: https://github.com/rokucommunity/brighterscript/compare/v0.9.2...v0.9.3
|
|
1198
|
-
[0.9.4]: https://github.com/rokucommunity/brighterscript/compare/v0.9.3...v0.9.4
|
|
1199
|
-
[0.9.5]: https://github.com/rokucommunity/brighterscript/compare/v0.9.4...v0.9.5
|
|
1200
|
-
[0.9.6]: https://github.com/rokucommunity/brighterscript/compare/v0.9.5...v0.9.6
|
|
1201
|
-
[0.9.7]: https://github.com/rokucommunity/brighterscript/compare/v0.9.6...v0.9.7
|
|
1202
|
-
[0.9.8]: https://github.com/rokucommunity/brighterscript/compare/v0.9.7...v0.9.8
|
|
1203
|
-
[0.10.0]: https://github.com/rokucommunity/brighterscript/compare/v0.9.8...v0.10.0
|
|
1204
|
-
[0.10.1]: https://github.com/rokucommunity/brighterscript/compare/v0.10.0...v0.10.1
|
|
1205
|
-
[0.10.2]: https://github.com/rokucommunity/brighterscript/compare/v0.10.1...v0.10.2
|
|
1206
|
-
[0.10.3]: https://github.com/rokucommunity/brighterscript/compare/v0.10.2...v0.10.3
|
|
1207
|
-
[0.10.4]: https://github.com/rokucommunity/brighterscript/compare/v0.10.3...v0.10.4
|
|
1208
|
-
[0.10.5]: https://github.com/rokucommunity/brighterscript/compare/v0.10.4...v0.10.5
|
|
1209
|
-
[0.10.6]: https://github.com/rokucommunity/brighterscript/compare/v0.10.5...v0.10.6
|
|
1210
|
-
[0.10.7]: https://github.com/rokucommunity/brighterscript/compare/v0.10.6...v0.10.7
|
|
1211
|
-
[0.10.8]: https://github.com/rokucommunity/brighterscript/compare/v0.10.7...v0.10.8
|
|
1212
|
-
[0.10.9]: https://github.com/rokucommunity/brighterscript/compare/v0.10.8...v0.10.9
|
|
1213
|
-
[0.10.10]: https://github.com/rokucommunity/brighterscript/compare/v0.10.9...v0.10.10
|
|
1214
|
-
[0.11.0]: https://github.com/rokucommunity/brighterscript/compare/v0.10.10...v0.11.0
|
|
1215
|
-
[0.11.1]: https://github.com/rokucommunity/brighterscript/compare/v0.11.0...v0.11.1
|
|
1216
|
-
[0.11.2]: https://github.com/rokucommunity/brighterscript/compare/v0.11.1...v0.11.2
|
|
1217
|
-
[0.11.3]: https://github.com/rokucommunity/brighterscript/compare/v0.11.2...v0.11.3
|
|
1218
|
-
[0.12.0]: https://github.com/rokucommunity/brighterscript/compare/v0.11.3...v0.12.0
|
|
1219
|
-
[0.12.1]: https://github.com/rokucommunity/brighterscript/compare/v0.12.0...v0.12.1
|
|
1220
|
-
[0.12.2]: https://github.com/rokucommunity/brighterscript/compare/v0.12.1...v0.12.2
|
|
1221
|
-
[0.12.3]: https://github.com/rokucommunity/brighterscript/compare/v0.12.2...v0.12.3
|
|
1222
|
-
[0.12.4]: https://github.com/rokucommunity/brighterscript/compare/v0.12.3...v0.12.4
|
|
1223
|
-
[0.13.0]: https://github.com/rokucommunity/brighterscript/compare/v0.12.4...v0.13.0
|
|
1224
|
-
[0.13.1]: https://github.com/rokucommunity/brighterscript/compare/v0.13.0...v0.13.1
|
|
1225
|
-
[0.13.2]: https://github.com/rokucommunity/brighterscript/compare/v0.13.1...v0.13.2
|
|
1226
|
-
[0.14.0]: https://github.com/rokucommunity/brighterscript/compare/v0.13.2...v0.14.0
|
|
1227
|
-
[0.15.0]: https://github.com/rokucommunity/brighterscript/compare/v0.14.0...v0.15.0
|
|
1228
|
-
[0.15.1]: https://github.com/rokucommunity/brighterscript/compare/v0.15.0...v0.15.1
|
|
1229
|
-
[0.15.2]: https://github.com/rokucommunity/brighterscript/compare/v0.15.1...v0.15.2
|
|
1230
|
-
[0.16.0]: https://github.com/rokucommunity/brighterscript/compare/v0.15.2...v0.16.0
|
|
1231
|
-
[0.16.1]: https://github.com/rokucommunity/brighterscript/compare/v0.16.0...v0.16.1
|
|
1232
|
-
[0.16.2]: https://github.com/rokucommunity/brighterscript/compare/v0.16.1...v0.16.2
|
|
1233
|
-
[0.16.3]: https://github.com/rokucommunity/brighterscript/compare/v0.16.2...v0.16.3
|
|
1234
|
-
[0.16.4]: https://github.com/rokucommunity/brighterscript/compare/v0.16.3...v0.16.4
|
|
1235
|
-
[0.16.5]: https://github.com/rokucommunity/brighterscript/compare/v0.16.4...v0.16.5
|
|
1236
|
-
[0.16.6]: https://github.com/rokucommunity/brighterscript/compare/v0.16.5...v0.16.6
|
|
1237
|
-
[0.16.7]: https://github.com/rokucommunity/brighterscript/compare/v0.16.6...v0.16.7
|
|
1238
|
-
[0.16.8]: https://github.com/rokucommunity/brighterscript/compare/v0.16.7...v0.16.8
|
|
1239
|
-
[0.16.9]: https://github.com/rokucommunity/brighterscript/compare/v0.16.8...v0.16.9
|
|
1240
|
-
[0.16.10]: https://github.com/rokucommunity/brighterscript/compare/v0.16.9...v0.16.10
|
|
1241
|
-
[0.16.11]: https://github.com/rokucommunity/brighterscript/compare/v0.16.10...v0.16.11
|
|
1242
|
-
[0.16.12]: https://github.com/rokucommunity/brighterscript/compare/v0.16.11...v0.16.12
|
|
1243
|
-
[0.17.0]: https://github.com/rokucommunity/brighterscript/compare/v0.16.12...v0.17.0
|
|
1244
|
-
[0.18.0]: https://github.com/rokucommunity/brighterscript/compare/v0.17.0...v0.18.0
|
|
1245
|
-
[0.18.1]: https://github.com/rokucommunity/brighterscript/compare/v0.18.0...v0.18.1
|
|
1246
|
-
[0.18.2]: https://github.com/rokucommunity/brighterscript/compare/v0.18.1...v0.18.2
|
|
1247
|
-
[0.19.0]: https://github.com/rokucommunity/brighterscript/compare/v0.18.2...v0.19.0
|
|
1248
|
-
[0.20.0]: https://github.com/rokucommunity/brighterscript/compare/v0.19.0...v0.20.0
|
|
1249
|
-
[0.20.1]: https://github.com/rokucommunity/brighterscript/compare/v0.20.0...v0.20.1
|
|
1250
|
-
[0.21.0]: https://github.com/rokucommunity/brighterscript/compare/v0.20.1...v0.21.0
|
|
1251
|
-
[0.22.0]: https://github.com/rokucommunity/brighterscript/compare/v0.21.0...v0.22.0
|
|
1252
|
-
[0.22.1]: https://github.com/rokucommunity/brighterscript/compare/v0.22.0...v0.22.1
|
|
1253
|
-
[0.22.1]: https://github.com/rokucommunity/brighterscript/compare/v0.22.0...v0.22.1
|
|
1254
|
-
[0.23.0]: https://github.com/rokucommunity/brighterscript/compare/v0.22.1...v0.23.0
|
|
1255
|
-
[0.23.1]: https://github.com/rokucommunity/brighterscript/compare/v0.23.0...v0.23.1
|
|
1256
|
-
[0.23.2]: https://github.com/rokucommunity/brighterscript/compare/v0.23.1...v0.23.2
|
|
1257
|
-
[0.24.0]: https://github.com/rokucommunity/brighterscript/compare/v0.23.2...v0.24.0
|
|
1258
|
-
[0.24.1]: https://github.com/rokucommunity/brighterscript/compare/v0.24.0...v0.24.1
|
|
1259
|
-
[0.24.2]: https://github.com/rokucommunity/brighterscript/compare/v0.24.1...v0.24.2
|
|
1260
|
-
[0.25.0]: https://github.com/rokucommunity/brighterscript/compare/v0.24.2...v0.25.0
|
|
1261
|
-
[0.26.0]: https://github.com/rokucommunity/brighterscript/compare/v0.25.0...v0.26.0
|
|
1262
|
-
[0.27.0]: https://github.com/rokucommunity/brighterscript/compare/v0.26.0...v0.27.0
|
|
1263
|
-
[0.28.0]: https://github.com/rokucommunity/brighterscript/compare/v0.27.0...v0.28.0
|
|
1264
|
-
[0.28.1]: https://github.com/rokucommunity/brighterscript/compare/v0.28.0...v0.28.1
|
|
1265
|
-
[0.28.2]: https://github.com/rokucommunity/brighterscript/compare/v0.28.1...v0.28.2
|
|
1266
|
-
[0.29.0]: https://github.com/rokucommunity/brighterscript/compare/v0.28.2...v0.29.0
|
|
1267
|
-
[0.30.0]: https://github.com/rokucommunity/brighterscript/compare/v0.29.0...v0.30.0
|
|
1268
|
-
[0.30.1]: https://github.com/rokucommunity/brighterscript/compare/v0.30.0...v0.30.1
|
|
1269
|
-
[0.30.2]: https://github.com/rokucommunity/brighterscript/compare/v0.30.1...v0.30.2
|
|
1270
|
-
[0.30.3]: https://github.com/rokucommunity/brighterscript/compare/v0.30.2...v0.30.3
|
|
1271
|
-
[0.30.4]: https://github.com/rokucommunity/brighterscript/compare/v0.30.3...v0.30.4
|
|
1272
|
-
[0.30.5]: https://github.com/rokucommunity/brighterscript/compare/v0.30.4...v0.30.5
|
|
1273
|
-
[0.30.6]: https://github.com/rokucommunity/brighterscript/compare/v0.30.5...v0.30.6
|
|
1274
|
-
[0.30.7]: https://github.com/rokucommunity/brighterscript/compare/v0.30.6...v0.30.7
|
|
1275
|
-
[0.30.8]: https://github.com/rokucommunity/brighterscript/compare/v0.30.7...v0.30.8
|
|
1276
|
-
[0.30.9]: https://github.com/rokucommunity/brighterscript/compare/v0.30.8...v0.30.9
|
|
1277
|
-
[0.31.0]: https://github.com/rokucommunity/brighterscript/compare/v0.30.9...v0.31.0
|
|
1278
|
-
[0.31.1]: https://github.com/rokucommunity/brighterscript/compare/v0.31.0...v0.31.1
|
|
1279
|
-
[0.31.2]: https://github.com/rokucommunity/brighterscript/compare/v0.31.1...v0.31.2
|
|
1280
|
-
[0.32.2]: https://github.com/rokucommunity/brighterscript/compare/v0.31.2...v0.32.2
|
|
1281
|
-
[0.32.3]: https://github.com/rokucommunity/brighterscript/compare/v0.32.2...v0.32.3
|
|
1282
|
-
[0.33.0]: https://github.com/rokucommunity/brighterscript/compare/v0.32.3...v0.33.0
|
|
1283
|
-
[0.34.0]: https://github.com/rokucommunity/brighterscript/compare/v0.33.0...v0.34.0
|
|
1284
|
-
[0.34.1]: https://github.com/rokucommunity/brighterscript/compare/v0.34.0...v0.34.1
|
|
1285
|
-
[0.34.2]: https://github.com/rokucommunity/brighterscript/compare/v0.34.1...v0.34.2
|
|
1286
|
-
[0.34.3]: https://github.com/rokucommunity/brighterscript/compare/v0.34.2...v0.34.3
|
|
1287
|
-
[0.35.0]: https://github.com/rokucommunity/brighterscript/compare/v0.34.3...v0.35.0
|
|
1288
|
-
[0.36.0]: https://github.com/rokucommunity/brighterscript/compare/v0.35.0...v0.36.0
|
|
1289
|
-
[0.37.0]: https://github.com/rokucommunity/brighterscript/compare/v0.36.0...v0.37.0
|
|
1290
|
-
[0.37.1]: https://github.com/rokucommunity/brighterscript/compare/v0.37.0...v0.37.1
|
|
1291
|
-
[0.37.2]: https://github.com/rokucommunity/brighterscript/compare/v0.37.1...v0.37.2
|
|
1292
|
-
[0.37.3]: https://github.com/rokucommunity/brighterscript/compare/v0.37.2...v0.37.3
|
|
1293
|
-
[0.37.4]: https://github.com/rokucommunity/brighterscript/compare/v0.37.3...v0.37.4
|
|
1294
|
-
[0.38.0]: https://github.com/rokucommunity/brighterscript/compare/v0.37.4...v0.38.0
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
|
|
1279
|
+
|