Skip to content

Commit a31e089

Browse files
authored
Merge pull request #64 from contentstack/development
DX | Release | 10-03-2025
2 parents db2657d + deaabbe commit a31e089

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2024 Contentstack LLC <https://www.contentstack.com/>
3+
Copyright (c) 2025 Contentstack LLC <https://www.contentstack.com/>
44

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Contentstack DataSync lets you sync your Contentstack data with your database, e
99
The DataSync Manager is one of the four important components of Contentstack DataSync. When any publish, unpublish, or delete operations are performed on assets or content, the DataSync Manager fetches the data and sends it to Content Store. It uses Contentstack's Sync APIs to sync data from Contentstack with your preferred database — Filesystem and MongoDB in our case.
1010

1111
### Prerequisite
12-
- nodejs v8+
12+
- nodejs v20+
1313

1414
### Usage
1515

package-lock.json

+16-16
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,7 +1,7 @@
11
{
22
"name": "@contentstack/datasync-manager",
33
"author": "Contentstack LLC <[email protected]>",
4-
"version": "2.0.7",
4+
"version": "2.0.8",
55
"description": "The primary module of Contentstack DataSync. Syncs Contentstack data with your server using Contentstack Sync API",
66
"main": "dist/index.js",
77
"dependencies": {

src/api.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const get = (req, RETRY = 1) => {
5757
headers: Contentstack.headers,
5858
hostname: Contentstack.host,
5959
method: Contentstack.verbs.get,
60-
path: sanitizeUrl(req.path),
60+
path: sanitizeUrl(encodeURI(req.path)),
6161
port: Contentstack.port,
6262
protocol: Contentstack.protocol,
6363
}

0 commit comments

Comments
 (0)