Skip to content

Commit f6c9ce1

Browse files
Merge pull request #374 from contentstack/development
staging PR
2 parents 81e0152 + 744cfd3 commit f6c9ce1

File tree

8 files changed

+1994
-1710
lines changed

8 files changed

+1994
-1710
lines changed

.talismanrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fileignoreconfig:
66
- filename: .github/workflows/secrets-scan.yml
77
checksum: d79ec3f3288964f7d117b9ad319a54c0ebc152e35f69be8fde95522034fdfb2a
88
- filename: package-lock.json
9-
checksum: 215757874c719e0192e440dd4b98f4dfb6824f72e526047182fcd60cc03e3e80
9+
checksum: c7c4feda727fae78c6fa03665b1d8f2a6363060631dd57b475f09307991ad305
1010
- filename: src/core/modules/assets.js
1111
checksum: 00f19d659b830b0f145b4db0ccf3211a4048d9488f30a224fe3c31cacca6dcd2
1212
- filename: .husky/pre-commit

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
## Change log
2+
### Version: 3.26.4
3+
#### Date: Jan-27-2026
4+
##### Feat:
5+
- Update the internal dependency of qs to latest version to fix the CVE-2025-15284 issue
6+
27
### Version: 3.26.3
38
#### Date: Dec-08-2025
49
##### Feat:

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The MIT License (MIT)
22

33

4-
Copyright (c) 2016-2025 Contentstack
4+
Copyright (c) 2016-2026 Contentstack
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ You can use advanced sync queries to fetch custom results while performing initi
292292

293293
### The MIT License (MIT)
294294

295-
Copyright © 2012-2025 [Contentstack](https://www.contentstack.com). All Rights Reserved
295+
Copyright © 2012-2026 [Contentstack](https://www.contentstack.com). All Rights Reserved
296296

297297
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
298298

package-lock.json

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

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "contentstack",
3-
"version": "3.26.3",
3+
"version": "3.26.4",
44
"description": "Contentstack Javascript SDK",
55
"homepage": "https://www.contentstack.com/",
66
"author": {
@@ -103,5 +103,8 @@
103103
"es6-promise": "^4.2.8",
104104
"husky": "^9.1.7",
105105
"localStorage": "1.0.4"
106+
},
107+
"overrides": {
108+
"qs": "^6.14.1"
106109
}
107110
}

test/typescript/asset-query.test.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,6 @@ describe('Asset Query Test', () => {
118118
expect(assetQuery._query).toEqual({"include_reference_content_type_uid": true, query:{} });
119119
done()
120120
});
121-
// The includeOwner function is deprecated.
122-
test.skip('Asset Query include owner test', done => {
123-
const assetQuery = makeAssetQuery().includeOwner()
124-
expect(assetQuery._query).toEqual({"include_owner": true, query:{} });
125-
done()
126-
});
127121

128122
test('Asset Query less than test', done => {
129123
const assetQuery = makeAssetQuery().lessThan('fieldUID', 'value')

test/typescript/entry.test.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,6 @@ describe('Entry Test', () => {
123123
expect(entry._query).toEqual({"include_fallback": true});
124124
done()
125125
});
126-
// The includeOwner function is deprecated.
127-
test.skip('Entry include owner test', done => {
128-
const entry = makeEntry().includeOwner()
129-
expect(entry._query).toEqual({"include_owner": true});
130-
done()
131-
});
132126
});
133127

134128
function makeEntry() {

0 commit comments

Comments
 (0)