Skip to content

Commit 0170963

Browse files
authored
Release/v6.8.0 (#264)
Release/v6.8.0
1 parent 0fdaeb9 commit 0170963

33 files changed

Lines changed: 7391 additions & 1380 deletions

‎.gitignore‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
.project/
88
.nx-cache
99
.vscode/
10-
.prettierrc
1110

1211
# Salesforce cache
1312
.sf/

‎.prettierrc‎

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"trailingComma": "none",
3+
"arrowParens": "avoid",
4+
"singleQuote": true,
5+
"plugins": ["prettier-plugin-apex", "@prettier/plugin-xml"],
6+
"overrides": [
7+
{
8+
"files": "**/lwc/**/*.html",
9+
"options": {
10+
"parser": "lwc",
11+
"printWidth": 180
12+
}
13+
},
14+
{
15+
"files": "**/aura/**/*.cmp",
16+
"options": {
17+
"parser": "html",
18+
"printWidth": 180,
19+
"tabWidth": 4
20+
}
21+
},
22+
{
23+
"files": "*.{page,component}",
24+
"options": {
25+
"parser": "html",
26+
"printWidth": 180
27+
}
28+
},
29+
{
30+
"files": "*.{cls,trigger,apex}",
31+
"options": {
32+
"parser": "apex",
33+
"printWidth": 180,
34+
"tabWidth": 4
35+
}
36+
},
37+
{
38+
"files": "*.{html,js,css}",
39+
"options": {
40+
"printWidth": 180,
41+
"tabWidth": 4
42+
}
43+
}
44+
]
45+
}

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<a href="https://beyondthecloud.dev"><img alt="Beyond The Cloud logo" src="https://img.shields.io/badge/MADE_BY_BEYOND_THE_CLOUD-555?style=for-the-badge"></a>
1111

12-
<img alt="API version" src="https://img.shields.io/badge/api-v65.0-blue?style=for-the-badge">
12+
<img alt="API version" src="https://img.shields.io/badge/api-v66.0-blue?style=for-the-badge">
1313
<a href="https://github.com/beyond-the-cloud-dev/soql-lib/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/badge/license-mit-green?style=for-the-badge"></a>
1414
<img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/beyond-the-cloud-dev/soql-lib?style=for-the-badge&logo=github&color=blue">
1515
<img alt="GitHub Release" src="https://img.shields.io/github/v/release/beyond-the-cloud-dev/soql-lib?display_name=tag&style=for-the-badge&color=blue">
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
3-
<apiVersion>65.0</apiVersion>
3+
<apiVersion>66.0</apiVersion>
44
<status>Active</status>
55
</ApexClass>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
3-
<apiVersion>65.0</apiVersion>
3+
<apiVersion>66.0</apiVersion>
44
<status>Active</status>
55
</ApexClass>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
3-
<apiVersion>65.0</apiVersion>
3+
<apiVersion>66.0</apiVersion>
44
<status>Active</status>
55
</ApexClass>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
3-
<apiVersion>65.0</apiVersion>
3+
<apiVersion>66.0</apiVersion>
44
<status>Active</status>
55
</ApexClass>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
3-
<apiVersion>65.0</apiVersion>
3+
<apiVersion>66.0</apiVersion>
44
<status>Active</status>
55
</ApexClass>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
3-
<apiVersion>65.0</apiVersion>
3+
<apiVersion>66.0</apiVersion>
44
<status>Active</status>
55
</ApexClass>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
3-
<apiVersion>65.0</apiVersion>
3+
<apiVersion>66.0</apiVersion>
44
<status>Active</status>
55
</ApexClass>

0 commit comments

Comments
 (0)