Skip to content
Open
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
2 changes: 1 addition & 1 deletion .talismanrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fileignoreconfig:
- filename: .github/workflows/secrets-scan.yml
checksum: d79ec3f3288964f7d117b9ad319a54c0ebc152e35f69be8fde95522034fdfb2a
- filename: package-lock.json
checksum: 215757874c719e0192e440dd4b98f4dfb6824f72e526047182fcd60cc03e3e80
checksum: c7c4feda727fae78c6fa03665b1d8f2a6363060631dd57b475f09307991ad305
- filename: src/core/modules/assets.js
checksum: 00f19d659b830b0f145b4db0ccf3211a4048d9488f30a224fe3c31cacca6dcd2
- filename: .husky/pre-commit
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## Change log
### Version: 3.26.4
#### Date: Jan-27-2026
##### Feat:
- Update the internal dependency of qs to latest version to fix the CVE-2025-15284 issue

### Version: 3.26.3
#### Date: Dec-08-2025
##### Feat:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)


Copyright (c) 2016-2025 Contentstack
Copyright (c) 2016-2026 Contentstack

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ You can use advanced sync queries to fetch custom results while performing initi

### The MIT License (MIT)

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

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:

Expand Down
3,676 changes: 1,982 additions & 1,694 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "contentstack",
"version": "3.26.3",
"version": "3.26.4",
"description": "Contentstack Javascript SDK",
"homepage": "https://www.contentstack.com/",
"author": {
Expand Down Expand Up @@ -103,5 +103,8 @@
"es6-promise": "^4.2.8",
"husky": "^9.1.7",
"localStorage": "1.0.4"
},
"overrides": {
"qs": "^6.14.1"
}
}
6 changes: 0 additions & 6 deletions test/typescript/asset-query.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,6 @@ describe('Asset Query Test', () => {
expect(assetQuery._query).toEqual({"include_reference_content_type_uid": true, query:{} });
done()
});
// The includeOwner function is deprecated.
test.skip('Asset Query include owner test', done => {
const assetQuery = makeAssetQuery().includeOwner()
expect(assetQuery._query).toEqual({"include_owner": true, query:{} });
done()
});

test('Asset Query less than test', done => {
const assetQuery = makeAssetQuery().lessThan('fieldUID', 'value')
Expand Down
6 changes: 0 additions & 6 deletions test/typescript/entry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,6 @@ describe('Entry Test', () => {
expect(entry._query).toEqual({"include_fallback": true});
done()
});
// The includeOwner function is deprecated.
test.skip('Entry include owner test', done => {
const entry = makeEntry().includeOwner()
expect(entry._query).toEqual({"include_owner": true});
done()
});
});

function makeEntry() {
Expand Down
Loading