You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+71-20Lines changed: 71 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,41 +4,92 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
## Unreleased
7
+
## v2.0.0 - 2025-05-11
8
+
9
+
The package has been adopted by the SublimeText GitHub org and now lives at
10
+
<https://github.com/SublimeText/Terraform/> for the community to maintain.
11
+
This is accompanied by many changes
12
+
to bring the syntax definition up to current standards.
8
13
9
14
### Added
10
15
11
-
- Declare hyphens as sub-word separators.
12
-
- Special highlighting for `for_each` and `count` meta arguments.
13
-
- Highlighting of more special language variables: `each`, `count` and `self`.
16
+
- Declare hyphens as sub-word separators. (@FichteFoll, #60)
17
+
- Special highlighting for `for_each` and `count` meta arguments (`keyword.control`). (@FichteFoll, #59)
18
+
- Highlighting of more special language variables: `each`, `count` and `self`. (@FichteFoll, #58)
19
+
- Highlighting for `ephemeral` blocks. (@TerminalFi, #70)
20
+
- A separate syntax definition for `terraform plan` output (@michaelblyons, #51, #68)
21
+
- Special highlighting for AWS ACL resource references in strings. (@michaelblyons, @deathaxe, #69, #76)
22
+
- Support JSON-style objects. (@michaelblyons, #54, #71)
23
+
- Scope-based folding rules. (@deathaxe, #81)
24
+
- Consistent indentation rules. (@deathaxe, #82)
25
+
- Highlight unclosed strings and stray closing brackets as illegal. (@FichteFoll, #91)
14
26
15
27
### Changed
16
28
17
-
- Switch to Syntax version 2. This breaks compatibility with ST builds before 4000!
18
-
- Adapt and improve many scope names to standards that have been established
19
-
over the past years for the default packages,
20
-
including:
21
-
* String interpolation meta scopes and punctuation
22
-
* Keywords (declarations and `in` inside a `for` expression)
23
-
* Attribute access punctuation
24
-
* Punctuation scopes in `for` expressions
25
-
- Updated the built-in function list for highlighting.
29
+
- Switched to syntax version 2.
30
+
This breaks compatibility with ST builds before 4000,
31
+
but the previous version can still be installed on older builds.
32
+
(@FichteFoll, #62)
33
+
- Adapted and improved many scope names to standards that have been established
34
+
over the past years for the default packages:
35
+
* String interpolation meta scopes and punctuation (@FichteFoll, #58)
0 commit comments