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