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