Skip to content

Commit ff6c041

Browse files
Merge pull request #27 from apex-dev-tools/26-update-antlr-to-491
build: update ANTLR to 4.9.1
2 parents c1049d8 + db291f5 commit ff6c041

File tree

6 files changed

+21
-16
lines changed

6 files changed

+21
-16
lines changed

CHANGELOG.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
# apex-parser - Changelog
22

3+
## 3.3.0 - 2023-04-30
4+
5+
- Update to ANTLR 4.9.1
6+
37
## 3.2.0 - 2023-01-24
4-
* Adds user/system mode on DML and within SOQL queries
8+
9+
- Adds user/system mode on DML and within SOQL queries
510

611
## 3.1.0 - 2022-11-17
712

8-
* Adds DISTANCE and GEOLOCATION literals for SOQL.
9-
* Removes support for modulus operator to match apex.
10-
* Use of `void.class` no longer causes syntax error.
11-
* Now supports newer Date literals from API 55.
13+
- Adds DISTANCE and GEOLOCATION literals for SOQL.
14+
- Removes support for modulus operator to match apex.
15+
- Use of `void.class` no longer causes syntax error.
16+
- Now supports newer Date literals from API 55.
1217

1318
## 3.0.0 - 2022-06-14
1419

15-
* Initial github release.
20+
- Initial github release.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ Maven
4848
<dependency>
4949
<groupId>io.github.apex-dev-tools</groupId>
5050
<artifactId>apex-parser</artifactId>
51-
<version>3.2.0</version>
51+
<version>3.3.0</version>
5252
</dependency>
5353

5454
NPM
5555

56-
"@apexdevtools/apex-parser": "^3.2.0"
56+
"@apexdevtools/apex-parser": "^3.3.0"
5757

5858
## Building
5959

@@ -77,4 +77,4 @@ The tag version of apex-samples used by builds is set in the [build file](.githu
7777

7878
## Source & Licenses
7979

80-
All the source code included uses a 3-clause BSD license. The only third-party component included is the Apex Antlr4 grammar originally from [Tooling-force.com](https://github.com/neowit/tooling-force.com), although this version used is now markedly different from the original.
80+
All the source code included uses a 3-clause BSD license. The only third-party component included is the Apex Antlr4 grammar originally from [Tooling-force.com](https://github.com/neowit/tooling-force.com), although this version used is now markedly different from the original.

jvm/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.apex-dev-tools</groupId>
66
<artifactId>apex-parser</artifactId>
7-
<version>3.2.0</version>
7+
<version>3.3.0</version>
88
<packaging>jar</packaging>
99

1010
<name>apex-parser</name>
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>org.antlr</groupId>
6363
<artifactId>antlr4-runtime</artifactId>
64-
<version>4.8-1</version>
64+
<version>4.9.1</version>
6565
</dependency>
6666

6767
<dependency>
@@ -192,7 +192,7 @@
192192
<plugin>
193193
<groupId>org.antlr</groupId>
194194
<artifactId>antlr4-maven-plugin</artifactId>
195-
<version>4.8-1</version>
195+
<version>4.9.1</version>
196196
<executions>
197197
<execution>
198198
<id>antlr</id>

jvm/src/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Manifest-Version: 1.0
22
Class-Path:
3-
antlr4-runtime-4.8-1.jar
3+
antlr4-runtime-4.9.1.jar

npm/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apexdevtools/apex-parser",
3-
"version": "3.2.0",
3+
"version": "3.3.0",
44
"author": "Apex Dev Tools Team <[email protected]> (https://github.com/apex-dev-tools)",
55
"bugs": "https://github.com/apex-dev-tools/apex-parser/issues",
66
"description": "Javascript parser for Salesforce Apex Language",

0 commit comments

Comments
 (0)