Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@apexdevtools/apex-parser

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@apexdevtools/apex-parser - npm Package Compare versions

Comparing version 3.2.0 to 3.3.0

17

CHANGELOG.md
# apex-parser - Changelog
## 3.3.0 - 2023-04-30
- Update to ANTLR 4.9.1
## 3.2.0 - 2023-01-24
* Adds user/system mode on DML and within SOQL queries
- Adds user/system mode on DML and within SOQL queries
## 3.1.0 - 2022-11-17
* Adds DISTANCE and GEOLOCATION literals for SOQL.
* Removes support for modulus operator to match apex.
* Use of `void.class` no longer causes syntax error.
* Now supports newer Date literals from API 55.
- Adds DISTANCE and GEOLOCATION literals for SOQL.
- Removes support for modulus operator to match apex.
- Use of `void.class` no longer causes syntax error.
- Now supports newer Date literals from API 55.
## 3.0.0 - 2022-06-14
* Initial github release.
- Initial github release.
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*
Copyright (c) 2021 Kevin Jones, All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
*/
const ApexLexer_1 = require("../ApexLexer");

@@ -4,0 +17,0 @@ const CaseInsensitiveInputStream_1 = require("../CaseInsensitiveInputStream");

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*
Copyright (c) 2021 Kevin Jones, All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
*/
const ApexLexer_1 = require("../ApexLexer");

@@ -4,0 +17,0 @@ const ApexParser_1 = require("../ApexParser");

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*
Copyright (c) 2021 Kevin Jones, All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
*/
const ApexParser_1 = require("../ApexParser");

@@ -4,0 +17,0 @@ const ThrowingErrorListener_1 = require("../ThrowingErrorListener");

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*
Copyright (c) 2021 Kevin Jones, All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
*/
const ApexLexer_1 = require("../ApexLexer");

@@ -4,0 +17,0 @@ const ApexParser_1 = require("../ApexParser");

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*
Copyright (c) 2021 Kevin Jones, All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
*/
const ApexParser_1 = require("../ApexParser");

@@ -4,0 +17,0 @@ const SyntaxErrorCounter_1 = require("./SyntaxErrorCounter");

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*
Copyright (c) 2021 Kevin Jones, All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
*/
const ApexParser_1 = require("../ApexParser");

@@ -4,0 +17,0 @@ const SyntaxErrorCounter_1 = require("./SyntaxErrorCounter");

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.createParser = exports.SyntaxErrorCounter = void 0;
/*
Copyright (c) 2021 Kevin Jones, All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
*/
const antlr4ts_1 = require("antlr4ts");

@@ -5,0 +18,0 @@ const ApexLexer_1 = require("../ApexLexer");

@@ -12,2 +12,5 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
/*
* Copyright (c) 2022 FinancialForce.com, inc. All rights reserved.
*/
const child_process_1 = require("child_process");

@@ -14,0 +17,0 @@ const fs_1 = require("fs");

{
"name": "@apexdevtools/apex-parser",
"version": "3.2.0",
"version": "3.3.0",
"author": "Apex Dev Tools Team <apexdevtools@gmail.com> (https://github.com/apex-dev-tools)",

@@ -5,0 +5,0 @@ "bugs": "https://github.com/apex-dev-tools/apex-parser/issues",

@@ -51,3 +51,3 @@ # apex-parser

<artifactId>apex-parser</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
</dependency>

@@ -57,3 +57,3 @@

"@apexdevtools/apex-parser": "^3.2.0"
"@apexdevtools/apex-parser": "^3.3.0"

@@ -82,2 +82,2 @@ ## Building

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.
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.

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc