Files
tree-sitter-jhcl/CHANGELOG.md

85 lines
1.6 KiB
Markdown
Raw Normal View History

2021-06-13 09:38:12 +02:00
# Changelog
2022-12-03 00:40:51 +01:00
## 1.1.0 - not yet released
feature
* add dialects so we can have different queries in `nvim-treesitter`
2022-12-02 19:47:43 +01:00
## 1.0.0 - 2022-12-02
breaking:
* remove `template_if_branch` and `template_else_branch`
fix:
* fix precedence in template expressions
2022-06-02 20:13:06 +02:00
## 0.7.0 - 2022-06-02
housekeeping:
* bump tree-sitter dependency to 0.20.6
* regenerate parser
* fix clang+windows CI job
2022-06-02 19:14:44 +02:00
fix:
* allow empty string literals
2021-09-20 21:50:41 +02:00
## 0.6.0 - 2021-09-20
2021-09-17 20:53:40 +02:00
feature:
* add template for expressions
2021-09-19 13:25:57 +02:00
* add template if expressions
2021-09-17 20:53:40 +02:00
cleanup:
* move fuzzing instrumentation to different repository
2021-09-15 22:04:11 +02:00
## 0.5.0 - 2021-09-15
feature:
* unhide `(block|object|tuple)_(start|end)` tokens
2021-09-15 22:04:11 +02:00
fix:
* remove empty `template_directive` block because it causes issues for semgrep
2021-07-02 08:37:37 +02:00
## 0.4.0 - 2021-07-02
feature:
* add named "key" and "val" fields to left and right side of object elements
* unhide the `template_interpolation_(start|end)` and `quoted_template_(start|end)` tokens
2021-07-01 02:25:34 +02:00
## 0.3.2 - 2021-07-01
fix:
* add a build step to CI to make sure the scanner is compilable
2021-07-01 02:25:34 +02:00
* add fuzzing instrumentation
2021-06-30 19:50:33 +02:00
## 0.3.1 - 2021-06-30
fix:
* dont use c struct initializer syntax in src/scanner.cc
2021-06-28 19:08:48 +02:00
## 0.3.0 - 2021-06-28
2021-06-27 15:54:15 +02:00
fix:
* correct expression for identifiers
* allow empty template interpolations
* allow empty templates
2021-06-27 22:33:18 +02:00
* fix crash when `context_stack.size()` exceeds `CHAR_MAX`
* fix crash when `heredoc_identifier.size()` exceeds `CHAR_MAX`
2021-06-27 15:54:15 +02:00
2021-06-27 19:57:02 +02:00
quality:
* add fuzzing
2021-06-26 11:15:55 +02:00
## 0.2.0 - 2021-06-26
feature:
* add quoted templates and heredoc templates
* still missing template directives though
quality:
* collect corpus of real world hcl files from github
* add github actions
2021-06-13 09:38:12 +02:00
## 0.1.0 - 2021-06-13
* initial version