-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCHANGELOG.md
128 lines (95 loc) · 2.69 KB
/
CHANGELOG.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# Changelog
## [Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security
## [0.4.0.9]
### Added
- Support for [string interpolation in paths](https://nixos.org/manual/nix/stable/language/string-interpolation#path) (#60)
## [0.4.0.8]
### Added
- Highlighting of built-in functions and constants
- Support for [semantic highlighting](https://www.jetbrains.com/help/idea/configuring-colors-and-fonts.html#semantic-highlighting)
- Settings to change the colors used by the highlighter
## [0.4.0.7]
### Added
- Support for IDEA 2023.1 EAP
### Removed
- Support for IDEA 2021.3
## [0.4.0.6]
### Added
- Support for IDEA 2022.3 EAP
### Removed
- Support for IDEA 2021.2
## [0.4.0.5]
### Fixed
- Trailing commas reported as syntax error (#46)
## [0.4.0.4]
### Added
- Support for IDEA 2022.2 EAP
### Removed
- Support for IDEA 2021.1
## [0.4.0.3]
### Added
- Support for IDEA 2022.1
## [0.4.0.2]
### Added
- Support for IDEA 2021.3
### Removed
- Support for IDEA 2020.3
## [0.4.0.1]
### Added
- Support for IDEA 2021.2
### Removed
- Support for IDEA 2020.2
## [0.4.0.0]
This release features a complete rewrite of the parser and lexer within
the plugin.
### Added
- Support for the full syntax of Nix 2.3
### Changed
- Error detection and recovery has been overhauled.
- The following words are no longer treated as keywords to make the
implementation consistent with Nix 2.3:
- `import`
- `imports`
- `require`
- `requires`
- `true`
- `false`
As a result, these words are no longer highlighted. We might bring
back the special highlighting in a future release by using a different
implementation for the highlighter.
- Messages for syntax errors no longer contain the *“NixTokenType.”*
prefix for every expected token. This should make the messages much
easier to read.
### Fixed
- Various parsing errors (including but not limited to #8 and #13)
- Incorrect reset of parser state when modifying a file
## [0.3.0.6]
### Added
- Support for IDEA 2021.1
### Removed
- Support for IDEA 2020.1
## [0.3.0.5]
### Added
- Support line comment and block comment IDEA actions
## [0.3.0.4]
### Added
- Support for IDEA 2020.3
### Removed
- Support for IDEA 2019.3
## [0.3.0.3]
### Fixed
- Change ID of plugin back from `org.nixos.idea` in version 0.3.0.0 to
`nix-idea` from earlier versions. The different ID of version 0.3.0.0
causes *IntelliJ* and *JetBrains Marketplace* to treat version 0.3.0.0
as a different plugin instead of another version of the same plugin.
**Note that if you installed version 0.3.0.0 manually from the ZIP
file, you should uninstall it when updating to a new version.**
## [0.3.0.0]
### Changed
- Update project to build for recent IJ versions