Skip to content

Commit 06c0da7

Browse files
authored
Merge pull request #283 from jetstreamapp/chore/fix-docs-build
Update release workflow and fix documentation site build
2 parents 56e28ea + aed5a00 commit 06c0da7

6 files changed

Lines changed: 91 additions & 12 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ on:
88
description: Increment
99
required: true
1010
options:
11-
- major
12-
- minor
1311
- patch
12+
- minor
13+
- major
1414

1515
permissions:
1616
id-token: write

.release-it.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
},
55
"github": {
66
"release": true,
7-
"assets": [
8-
"jetstreamapp-soql-parser-js-${version}.tgz",
9-
"dist/soql-parser-js-lwc-v${version}.zip",
10-
"dist/lwc/soqlParserJs.js"
11-
]
7+
"assets": ["jetstreamapp-soql-parser-js-${version}.tgz", "dist/soql-parser-js-lwc-v${version}.zip"]
8+
},
9+
"npm": {
10+
"skipChecks": true
1211
},
1312
"hooks": {
1413
"before:init": ["npm run build", "npm test"],

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ A minimal `soqlParserJs.js-meta.xml`:
542542
```xml
543543
<?xml version="1.0" encoding="UTF-8"?>
544544
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
545-
<apiVersion>65.0</apiVersion>
545+
<apiVersion>66.0</apiVersion>
546546
<isExposed>false</isExposed>
547547
</LightningComponentBundle>
548548
```

docs/static/sample-queries-json.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,14 @@
128128
"SELECT Id FROM Account WHERE (NOT Invoice_Type__c LIKE '%Usage%')",
129129
"SELECT Id, City FROM Lead WHERE NOT ((NOT (City LIKE '%LHR%')) AND City LIKE '%KHR%')",
130130
"SELECT Name FROM Invoice__c WHERE Balance__c < USD-500",
131-
"SELECT Name, Id FROM Contact USING SCOPE mru ORDER BY Name ASC"
131+
"SELECT Name, Id FROM Contact USING SCOPE mru ORDER BY Name ASC",
132+
"SELECT Id FROM Task USING SCOPE delegated",
133+
"SELECT Id FROM Account USING SCOPE everything",
134+
"SELECT Id FROM Account USING SCOPE mine",
135+
"SELECT Id FROM ProcessInstanceWorkitem USING SCOPE mine_and_my_groups",
136+
"SELECT Id FROM Account USING SCOPE my_territory",
137+
"SELECT Id FROM Account USING SCOPE my_team_territory",
138+
"SELECT Id FROM Account USING SCOPE team",
139+
"SELECT Id FROM Account USING SCOPE scopingRule",
140+
"SELECT Id, Name FROM Account USING SCOPE myRule"
132141
]

package-lock.json

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

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jetstreamapp/soql-parser-js",
3-
"version": "7.1.1",
3+
"version": "7.2.0",
44
"salesforceApiVersion": "66.0",
55
"description": "Salesforce.com SOQL parser and composer",
66
"main": "dist/cjs/index.js",
@@ -58,6 +58,7 @@
5858
"npm-run-all": "^4.1.5",
5959
"prettier": "^3.8.1",
6060
"release-it": "^20.0.1",
61+
"tsx": "^4.21.0",
6162
"typescript": "^5.9.3",
6263
"vitest": "^4.1.0"
6364
},

0 commit comments

Comments
 (0)