Skip to content

Commit 14ef35d

Browse files
Merge pull request #203 from contentstack/next
Hotfix | 02-08-2024
2 parents af9cbe1 + aa07ce1 commit 14ef35d

File tree

4 files changed

+29
-23
lines changed

4 files changed

+29
-23
lines changed

CHANGELOG.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
## Change log
22

3-
### Version: 3.20.0
4-
#### Date: May-31-2024
5-
##### Enhanncement:
6-
- Adds Timeline Preview changes
3+
4+
### Version: 3.20.3
5+
#### Date: August-02-2024
6+
##### HotFix:
7+
- Removed encode for query params
78

89
### Version: 3.20.1
910
#### Date: July-09-2024
1011
##### Fix:
1112
- Type support for LivePreviewQuery method params
1213

14+
### Version: 3.20.0
15+
#### Date: May-31-2024
16+
##### Enhanncement:
17+
- Adds Timeline Preview changes
18+
1319
### Version: 3.19.3
1420
#### Date: May-17-2024
1521
##### Enhanncement:

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "contentstack",
3-
"version": "3.20.2",
3+
"version": "3.20.3",
44
"description": "Contentstack Javascript SDK",
55
"homepage": "https://www.contentstack.com/",
66
"author": {
@@ -99,7 +99,7 @@
9999
"webpack-node-externals": "^3.0.0"
100100
},
101101
"dependencies": {
102-
"@contentstack/utils": "^1.3.8",
102+
"@contentstack/utils": "^1.3.10",
103103
"cheerio": "^1.0.0-rc.12",
104104
"es6-promise": "^4.1.1",
105105
"isomorphic-fetch": "^3.0.0",

src/core/lib/request.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function fetchRetry(stack, queryParams, fetchOptions, resolve, reject, retryDela
109109
}
110110

111111

112-
fetch(encodeURI(request.url), request.option)
112+
fetch(request.url, request.option)
113113
.then( function(response) {
114114

115115
if (fetchOptions.debug) fetchOptions.logHandler('info', response);

0 commit comments

Comments
 (0)