Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0e38c52

Browse files
committedJul 14, 2022
sync with master
2 parents f4e9f1d + 0d2249c commit 0e38c52

File tree

145 files changed

+2417
-3531
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+2417
-3531
lines changed
 

‎CHANGELOG.md

+36-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,49 @@
1+
# Changelog
2+
3+
> **Tags:**
4+
>
5+
> - :boom: [Breaking Change]
6+
> - :eyeglasses: [Spec Compliance]
7+
> - :rocket: [New Feature]
8+
> - :bug: [Bug Fix]
9+
> - :memo: [Documentation]
10+
> - :house: [Internal]
11+
> - :nail_care: [Polish]
12+
113
## master
214

15+
## v1.4.0
16+
17+
#### :rocket: New Feature
18+
19+
- Add command: ReScript: Restart Language Server
20+
- Extend integration with reanalyze for code analysis. Support both `dce` and `exception` analysis which can be configured to e.g. both run by adding `{"reanalyze": {"analysis": ["dce", "exception"]} }` in `bsconfig.json`.
21+
- Add configuration option for suppressing the "Do you want to start a build?" prompt.
22+
- Add configuration option for autostarting the Code Analyzer.
23+
- Report syntax errors as you type.
24+
25+
#### :bug: Bug Fix
26+
327
- Fix issue with autocompletion for constructors in switch statements.
428
- Fix issue with autocompletion inside template expressions.
529
- Fix handling of local opens.
630
- Fix extension crash when renaming a file.
7-
- Add hover information with links to documentation for decorators.
8-
- Add command: ReScript: Restart Language Server
931
- Fix issue where the server would crash on genType's errors.
10-
- Extend integration with reanalyze for code analysis. Support both `dce` and `exception` analysis which can be configured to e.g. both run by adding `{"reanalyze": {"analysis": ["dce", "exception"]} }` in `bsconfig.json`.
1132
- Fix issue where the server would crash if the project contains an OCaml file with a syntax error.
12-
- Add configuration option for suppressing the "Do you want to start a build?" prompt.
13-
- Add configuration option for autostarting the Code Analyzer.
33+
- Fix issue where `@inline` was not suported by the command to generate an interface file.
34+
35+
#### :nail_care: Polish
36+
37+
- Add hover information with links to documentation for decorators.
1438
- Sync with latest parser/printer.
39+
40+
#### :house: Internal
41+
1542
- Support paths to rescript executables in arm64 architectures.
16-
- Fix issue where `@inline` was not suported by the command to generate an interface file.
43+
44+
#### :boom: Breaking Change
45+
46+
- Drop support for `bs-patform`. Only `rescript` supported.
1747

1848
## 1.3.0
1949

‎Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ clean:
99
test:
1010
make -C analysis test
1111

12+
format:
13+
make -C analysis format
14+
15+
checkformat:
16+
make -C analysis checkformat
17+
1218
.DEFAULT_GOAL := build
1319

1420
.PHONY: build clean test

0 commit comments

Comments
 (0)
Please sign in to comment.