Skip to content

Commit 9e672d8

Browse files
committed
Merge branch 'development' into fix/snyk
2 parents 22562ae + 5c9606d commit 9e672d8

File tree

12 files changed

+2871
-4527
lines changed

12 files changed

+2871
-4527
lines changed

.github/workflows/policy-scan.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,23 @@ jobs:
2424
- uses: actions/checkout@master
2525
- name: Checks for License file
2626
run: |
27-
if ! [[ -f "LICENSE" || -f "License.txt" || -f "LICENSE.md" || -f "LICENSE.txt" ]]; then exit 1; fi
27+
expected_license_files=("LICENSE" "LICENSE.txt" "LICENSE.md" "License.txt")
28+
license_file_found=false
29+
current_year=$(date +"%Y")
30+
31+
for license_file in "${expected_license_files[@]}"; do
32+
if [ -f "$license_file" ]; then
33+
license_file_found=true
34+
# check the license file for the current year, if not exists, exit with error
35+
if ! grep -q "$current_year" "$license_file"; then
36+
echo "License file $license_file does not contain the current year."
37+
exit 2
38+
fi
39+
break
40+
fi
41+
done
42+
43+
if [ "$license_file_found" = false ]; then
44+
echo "No license file found. Please add a license file to the repository."
45+
exit 1
46+
fi

.github/workflows/secrets-scan.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Secrets Scan
2+
on:
3+
pull_request:
4+
types: [opened, synchronize, reopened]
5+
jobs:
6+
security-secrets:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
with:
11+
fetch-depth: '2'
12+
ref: '${{ github.event.pull_request.head.ref }}'
13+
- run: |
14+
git reset --soft HEAD~1
15+
- name: Install Talisman
16+
run: |
17+
# Download Talisman
18+
wget https://github.com/thoughtworks/talisman/releases/download/v1.37.0/talisman_linux_amd64 -O talisman
19+
20+
# Checksum verification
21+
checksum=$(sha256sum ./talisman | awk '{print $1}')
22+
if [ "$checksum" != "8e0ae8bb7b160bf10c4fa1448beb04a32a35e63505b3dddff74a092bccaaa7e4" ]; then exit 1; fi
23+
24+
# Make it executable
25+
chmod +x talisman
26+
- name: Run talisman
27+
run: |
28+
# Run Talisman with the pre-commit hook
29+
./talisman --githook pre-commit

.talismanrc

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
fileignoreconfig:
2-
- filename: package-lock.json
3-
checksum: b9d3f334fcb23e80c5c48e4fc1068c53d9be7f9f6a3211352d14e37550071fcd
4-
- filename: test/typescript/taxonomy.test.ts
5-
checksum: e4bdf633e147fd60d929d379f20c814eed5f68b11421d7b53ec8826e9142de37
6-
- filename: src/core/modules/taxonomy.js
7-
checksum: 84589be9805c1be5fd6c56021c41d18365126cf82059ad2cbef1d418c70d08e0
8-
- filename: src/core/lib/utils.js
9-
checksum: 8a37566d0372573b8fe4ec506a43f1074981c5218e9adbc551c87922c8914922
10-
- filename: src/core/modules/query.js
11-
checksum: c88b336f9a271397ffedcf8c5085941ceb0bd1cd7e25ed9ada3acd8ce4f8970c
2+
- filename: index.d.ts
3+
checksum: 22c6a7fe4027d6b2c9adf0cbeb9c525ab79b15210b07ec5189693992e6800a66
124
- filename: test/typescript/stack.test.ts
13-
checksum: bbb3c425f8e1a63d4793f69ee9eaba9559294ff53f163a28f70ae54b1792276a
14-
- filename: src/core/contentstack.js
15-
checksum: 90a3b07300155a34f67dc3df87363107eec202123a21bc0cefda324e477a676d
16-
- filename: .husky/pre-commit
17-
checksum: 5baabd7d2c391648163f9371f0e5e9484f8fb90fa2284cfc378732ec3192c193
5+
checksum: 50b764c0ca6f6f27d7306a4e54327bef9b178e8436c6e3fad0d67d77343d10b3
6+
- filename: .github/workflows/secrets-scan.yml
7+
checksum: d79ec3f3288964f7d117b9ad319a54c0ebc152e35f69be8fde95522034fdfb2a
8+
- filename: package-lock.json
9+
checksum: f9d78235efa541f481a7966b0a95af27e30a6ecb6bf3049b7ae0053fbc6f2b48
1810
version: ""

CHANGELOG.md

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
## Change log
22

3+
### Version: 3.26.1
4+
#### Date: July-28-2025
5+
##### Fix:
6+
- Cleared unused dependencies
7+
- Fixed installation warnings
8+
9+
### Version: 3.26.0
10+
#### Date: July-01-2025
11+
##### Feat:
12+
- Added AWS-AU support
13+
314
### Version: 3.25.3
415
#### Date: April-21-2025
5-
##### Fix:
16+
##### Feat:
617
- Handle the sanity tests when ENVs are not provided.
718

819
### Version: 3.25.2
@@ -12,10 +23,10 @@
1223

1324
### Version: 3.25.1
1425
#### Date: April-01-2025
15-
##### Fix:
26+
##### Feat:
1627
- Update dependencies
1728
- Update slack notification
18-
29+
1930
### Version: 3.25.0
2031
#### Date: March-10-2025
2132
##### Fix:
@@ -118,14 +129,14 @@
118129
### Version: 3.18.0
119130
#### Date: January-15-2024
120131
##### New Features:
121-
- added taxonomy support
122-
- X-User-Agent updated
132+
- added taxonomy support
133+
- X-User-Agent updated
123134
- added region gcp_na
124135
### Version: 3.17.2
125136
#### Date: November-15-2023
126137
##### Bug fix:
127138
- Same management token in Live Preview in different stack object fixed
128-
- X-User-Agent updated
139+
- X-User-Agent updated
129140
##### New Features
130141
- Early Access added to stack config
131142

@@ -178,19 +189,19 @@
178189
#### Date: May-26-2021
179190
##### Dependency:
180191
- Update Utils SDK dependency version
181-
192+
182193
### Version: 3.13.1
183194
#### Date: Apr-16-2021
184195
##### Bug fix:
185196
- IE 11 request method issue resolved
186-
197+
187198
### Version: 3.13.0
188199
#### Date: Apr-05-2021
189200

190201
##### Update API:
191202
- [Query]: Added support for method includeEmbeddedItems
192203
- [Entry]: Added support for method includeEmbeddedItems
193-
204+
194205
### Version: 3.12.2
195206
#### Date: Feb-19-2021
196207

@@ -218,7 +229,7 @@
218229
#### Date: Sept-25-2020
219230

220231
##### Update API:
221-
- Retry limit for fetch request
232+
- Retry limit for fetch request
222233
- Retry delay options for fetch request
223234
- Retry on error occur for fetch request
224235
- Typescript definition added
@@ -328,8 +339,8 @@
328339

329340
##### New API:
330341
- [Asset] Image delivery support
331-
- find
332-
- fetch
342+
- find
343+
- fetch
333344

334345
### Version: 3.1.1
335346
#### Date: Oct-13-2017

0 commit comments

Comments
 (0)