Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .github/workflows/sca-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
jobs:
security-sca:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### Version: 5.5.1
#### Date: Aug-03-2026
Fix: Bump `@contentstack/core` to `^1.5.0`:
- Retry of transient network-level errors (`ECONNABORTED`, `ETIMEDOUT`, `ECONNRESET`, `EPIPE`, `EAI_AGAIN`) by default when there is no HTTP response
- Distinct classification of request timeouts instead of a generic `UNKNOWN_ERROR`
- Default `httpAgent`/`httpsAgent` keep-alive connection agents in Node environments

### Version: 5.5.0
#### Date: Jul-27-2026
Enhancement: Entry variants support an optional branch name as the second argument to `variants()` on `Entry` and `Entries`. When provided, the branch is sent as the `branch` request header together with `x-cs-variant-uid`. Existing `variants(uid)` and `variants(uids)` calls remain backward compatible. Added unit and API tests for variant + branch requests.
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentstack/delivery-sdk",
"version": "5.5.0",
"version": "5.5.1",
"type": "module",
"license": "MIT",
"engines": {
Expand Down Expand Up @@ -47,7 +47,7 @@
"prerelease": "npm run test:all && npm run validate:all"
},
"dependencies": {
"@contentstack/core": "^1.4.1",
"@contentstack/core": "^1.5.0",
"@contentstack/utils": "^1.9.1",
"axios": "^1.18.1",
"humps": "^2.0.1"
Expand Down
Loading