Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
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).

## [2.1.5] - 2025-09-11
- Fix parsing error when a signed int is used inside an xpath

## [2.1.4] - 2025-09-04
- Implement evaluation of Iif build in function

Expand Down
2 changes: 1 addition & 1 deletion grammar/XtkLexer.g4
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ X_BRAC_OPEN : '[' -> pushMode(XPATH);
X_BRAC_CLOSE: ']' -> popMode;

X_INT
: DIGIT+
: MINUS? DIGIT+
;

X_STRING
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe/acc-xtk-parser",
"version": "2.1.4",
"version": "2.1.5",
"description": "Adobe Campaign XTK expression parser",
"source": "src/index.ts",
"main": "lib/main.js",
Expand Down
2 changes: 1 addition & 1 deletion src/generated/XtkLexer.interp

Large diffs are not rendered by default.

Loading