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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:
description: Increment
required: true
options:
- major
- minor
- patch
- minor
- major

permissions:
id-token: write
Expand Down
9 changes: 4 additions & 5 deletions .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
},
"github": {
"release": true,
"assets": [
"jetstreamapp-soql-parser-js-${version}.tgz",
"dist/soql-parser-js-lwc-v${version}.zip",
"dist/lwc/soqlParserJs.js"
]
"assets": ["jetstreamapp-soql-parser-js-${version}.tgz", "dist/soql-parser-js-lwc-v${version}.zip"]
},
"npm": {
"skipChecks": true
},
"hooks": {
"before:init": ["npm run build", "npm test"],
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ A minimal `soqlParserJs.js-meta.xml`:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>65.0</apiVersion>
<apiVersion>66.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
```
Expand Down
11 changes: 10 additions & 1 deletion docs/static/sample-queries-json.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,14 @@
"SELECT Id FROM Account WHERE (NOT Invoice_Type__c LIKE '%Usage%')",
"SELECT Id, City FROM Lead WHERE NOT ((NOT (City LIKE '%LHR%')) AND City LIKE '%KHR%')",
"SELECT Name FROM Invoice__c WHERE Balance__c < USD-500",
"SELECT Name, Id FROM Contact USING SCOPE mru ORDER BY Name ASC"
"SELECT Name, Id FROM Contact USING SCOPE mru ORDER BY Name ASC",
"SELECT Id FROM Task USING SCOPE delegated",
"SELECT Id FROM Account USING SCOPE everything",
"SELECT Id FROM Account USING SCOPE mine",
"SELECT Id FROM ProcessInstanceWorkitem USING SCOPE mine_and_my_groups",
"SELECT Id FROM Account USING SCOPE my_territory",
"SELECT Id FROM Account USING SCOPE my_team_territory",
"SELECT Id FROM Account USING SCOPE team",
"SELECT Id FROM Account USING SCOPE scopingRule",
"SELECT Id, Name FROM Account USING SCOPE myRule"
]
74 changes: 72 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jetstreamapp/soql-parser-js",
"version": "7.1.1",
"version": "7.2.0",
"salesforceApiVersion": "66.0",
"description": "Salesforce.com SOQL parser and composer",
"main": "dist/cjs/index.js",
Expand Down Expand Up @@ -58,6 +58,7 @@
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"release-it": "^20.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
Expand Down