Skip to content

Commit 76f92fd

Browse files
authored
Merge pull request #63 from contentstack/staging
DX | 10-03-2025 | Release
2 parents f034a8e + c67aa3d commit 76f92fd

39 files changed

+2174
-765
lines changed

.env

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
EMAIL=
1+
ADMIN_EMAIL=
2+
USER_EMAIL=
23
PASSWORD=
34
ORG_UID=
4-
AUTHTOKEN=
5+
API_KEY=
56
DEFAULTHOST=developerhub-api.contentstack.com
6-
HOST=developerhub-api.contentstack.com
7+
HOST=developerhub-api.contentstack.com
8+
SLACK_SIGNING_SECRET=
9+
SLACK_BOT_TOKEN=
10+
SLACK_CHANNEL_ID=
11+
SLACK_CHANNEL=
12+
GO_PIPELINE_NAME=
13+
GO_PIPELINE_COUNTER=
14+
GOCD_SERVER=
15+
SLACK_WEBHOOK_URL=
16+
USER1=
17+
USER2=
18+
USER3=
19+
USER4=

.github/workflows/npm-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
publish-npm:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-node@v3
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '20.x'
16+
node-version: '22.x'
1717
registry-url: 'https://registry.npmjs.org'
1818
- run: npm ci
1919
- run: npm publish --access public
@@ -22,10 +22,10 @@ jobs:
2222
publish-git:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3
26-
- uses: actions/setup-node@v3
25+
- uses: actions/checkout@v4
26+
- uses: actions/setup-node@v4
2727
with:
28-
node-version: '20.x'
28+
node-version: '22.x'
2929
registry-url: 'https://npm.pkg.github.com'
3030
scope: '@contentstack'
3131
- run: npm ci

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jspm_packages/
3939
mochawesome-report/
4040
coverage/
4141
test/utility/dataFiles/
42+
test/sanity-check/utility/dataFiles/
4243
report.json
4344

4445
# TypeScript v1 declaration files

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changelog
2+
## [v1.2.6](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.6) (2024-03-03)
3+
- Update sanity tests
4+
5+
## [v1.2.5](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.5) (2025-01-17)
6+
- Dependency update
7+
28
## [v1.2.4](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.4) (2024-10-22)
39
- Node version bump in github package publish workflow file
410

lib/contentstackClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default function contentstackClient ({ http }) {
2727
*/
2828

2929
const region = http.defaults.region
30-
let baseUrlPath = `https://api.contentstack.io:443/v3/user-session`
30+
let baseUrlPath = `/user-session`
3131

3232
if (region && region !== Region.NA) {
3333
baseUrlPath = `https://${region}-api.contentstack.com:443/v3/user-session`

0 commit comments

Comments
 (0)