Skip to content

Commit d7efbb3

Browse files
Merge pull request #84 from contentstack/development
staging
2 parents 6e73396 + db08e2b commit d7efbb3

File tree

13 files changed

+1248
-936
lines changed

13 files changed

+1248
-936
lines changed

.eslintrc.js

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
module.exports = {
2-
// "env": {
3-
// "browser": true,
4-
// "amd": true
5-
// },
2+
env: {
3+
browser: true,
4+
amd: true,
5+
mocha: true,
6+
node: true
7+
},
68
extends: 'standard',
79
// "globals": {
810
// "Atomics": "readonly",
911
// "SharedArrayBuffer": "readonly"
1012
// },
11-
// "parserOptions": {
12-
// "ecmaFeatures": {
13-
// "jsx": true
14-
// },
15-
// "ecmaVersion": 2015,
16-
// "sourceType": "module"
17-
// },
13+
parserOptions: {
14+
ecmaFeatures: {
15+
jsx: true
16+
},
17+
ecmaVersion: 2020,
18+
sourceType: 'module'
19+
},
1820
plugins: [
1921
'standard',
2022
'promise'

.talismanrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fileignoreconfig:
66
- filename: test/unit/mock/execution-mock.js
77
checksum: 89d239d37c9d8d0cdb6ac61553a7d2e2d9115a10207f7c0b387c3565c9cb6564
88
- filename: package-lock.json
9-
checksum: 82d90ed88e227a8ba85084401ffb0ad4f129d0f8f27f5715bdcab32a260f0e4b
9+
checksum: 954f61bb34c87fa8a1cf6935cccd774a4a776001f2513f9fe977e76d29fd3b31
1010
- filename: docdash-template/fixtures/documents/probe.js
1111
checksum: e841ecf889d0e82367c53c48ee0b3be8bd68d7babf4777a87ced769f29686ac4
1212
- filename: docdash-template/.travis.yml

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Changelog
2-
## [v1.2.8](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.6) (2024-05-26)
2+
## [v1.2.8](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.9) (2024-08-04)
3+
- Fix: Fixed the Linting issues
4+
- Updated all the dependency to the latest version
5+
- Added Pre-commit hook to run the snyk and talismand scans
6+
7+
## [v1.2.8](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.8) (2024-05-26)
38
- Fix: Added params support to getInstalledApps method for enhanced flexibility
49

5-
## [v1.2.7](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.6) (2024-05-15)
10+
## [v1.2.7](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.7) (2024-05-15)
611
- Fixed base URL path logic in contentstackClient to handle when region and host not provided
712

813
## [v1.2.6](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.6) (2024-03-03)

lib/marketplace/installation/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ export function Installation (http, data, params = {}) {
312312
const headers = {
313313
headers: { ...cloneDeep(params) },
314314
params: {
315-
...cloneDeep(param)
315+
...cloneDeep(param)
316316
}
317317
}
318318
const response = await http.get(`${this.urlPath}/view/apps`, headers)

0 commit comments

Comments
 (0)