Skip to content

Commit 1ba3514

Browse files
Merge pull request #294 from contentstack/staging
DX | 03-03-2025 | Release
2 parents 8dd7d48 + 68828a7 commit 1ba3514

File tree

6 files changed

+26
-5
lines changed

6 files changed

+26
-5
lines changed

.github/workflows/npm-publish.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
node-version: '22.x'
2929
registry-url: 'https://npm.pkg.github.com'
3030
scope: '@contentstack'
31-
- run: npm ci
32-
- run: npm publish
3331
env:
3432
NODE_AUTH_TOKEN: ${{ secrets.PAT_TOKEN }}
33+
- run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.PAT_TOKEN }}" > ~/.npmrc
34+
- run: npm ci --registry=https://npm.pkg.github.com
35+
- run: npm publish --registry=https://npm.pkg.github.com

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
## Change log
2+
### Version: 3.24.3
3+
#### Date: March-03-2025
4+
##### Fix:
5+
- Using Node v22
6+
- Fixed license and Semgrep issues
7+
8+
### Version: 3.24.2
9+
#### Date: Feb-25-2025
10+
##### Fix:
11+
- Reset Timeline Preview variables
12+
213
### Version: 3.24.1
314
#### Date: February-03-2025
415
##### Fix:

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ data.then(function(sync_data, err) {
281281

282282
##### Advanced sync queries
283283

284+
You can use advanced sync queries to fetch custom results while performing initial sync.
284285
[Read advanced sync queries documentation](https://www.contentstack.com/docs/developers/use-the-sync-apis-with-sdk/use-sync-api-with-javascript-sdk#advanced-sync-queries)
285286

286287
### Helpful Links

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "contentstack",
3-
"version": "3.24.2",
3+
"version": "3.24.3",
44
"description": "Contentstack Javascript SDK",
55
"homepage": "https://www.contentstack.com/",
66
"author": {

src/core/stack.js

+8
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,13 @@ export default class Stack {
258258
}
259259
if (params.has('release_id')) {
260260
this.headers['release_id'] = params.get('release_id');
261+
} else {
262+
delete this.headers['release_id'];
261263
}
262264
if (params.has('preview_timestamp')) {
263265
this.headers['preview_timestamp'] = params.get('preview_timestamp');
266+
} else {
267+
delete this.headers['preview_timestamp'];
264268
}
265269
}
266270
}
@@ -274,9 +278,13 @@ export default class Stack {
274278

275279
if (query.hasOwnProperty('release_id')) {
276280
this.headers['release_id'] = query.release_id;
281+
} else {
282+
delete this.headers['release_id'];
277283
}
278284
if (query.hasOwnProperty('preview_timestamp')) {
279285
this.headers['preview_timestamp'] = query.preview_timestamp;
286+
} else {
287+
delete this.headers['preview_timestamp'];
280288
}
281289
}
282290

0 commit comments

Comments
 (0)