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