Skip to content

Commit

Permalink
Merge pull request #1128 from JupiterOne/update-data-model-0.61.13
Browse files Browse the repository at this point in the history
SDK v14: update data-model to v0.61.13
  • Loading branch information
VDubber authored Oct 23, 2024
2 parents 52167ef + 6f053f6 commit 1a62ec8
Show file tree
Hide file tree
Showing 18 changed files with 412 additions and 184 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ and this project adheres to

# Unreleased

# 14.0.0 - 2024-10-23

- Upgrade @jupiterone/data-model to v0.61.13
- Breaking changes to the Device & Host \_class schema validation.
- More details can be found
[here](https://docs.jupiterone.io/api/data-model/schemas/Device) and
[here](https://docs.jupiterone.io/api/data-model/schemas/Host) or
[here](https://github.com/JupiterOne/jupiter-data-model/pull/36/files)

# 13.7.2 - 2024-10-14

- Add agent option to http client
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"packages/integration-sdk-*",
"packages/cli"
],
"version": "13.7.2"
"version": "14.0.0"
}
74 changes: 37 additions & 37 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupiterone/cli",
"version": "13.7.2",
"version": "14.0.0",
"description": "The JupiterOne cli",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand All @@ -24,8 +24,8 @@
"test": "jest"
},
"dependencies": {
"@jupiterone/integration-sdk-core": "^13.7.2",
"@jupiterone/integration-sdk-runtime": "^13.7.2",
"@jupiterone/integration-sdk-core": "^14.0.0",
"@jupiterone/integration-sdk-runtime": "^14.0.0",
"@lifeomic/attempt": "^3.0.3",
"commander": "^5.0.0",
"globby": "^11.0.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/integration-sdk-benchmark/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupiterone/integration-sdk-benchmark",
"version": "13.7.2",
"version": "14.0.0",
"private": true,
"description": "SDK benchmarking scripts",
"main": "./src/index.js",
Expand All @@ -15,8 +15,8 @@
"benchmark": "for file in ./src/benchmarks/*; do npm run prebenchmark && node $file; done"
},
"dependencies": {
"@jupiterone/integration-sdk-core": "^13.7.2",
"@jupiterone/integration-sdk-runtime": "^13.7.2",
"@jupiterone/integration-sdk-core": "^14.0.0",
"@jupiterone/integration-sdk-runtime": "^14.0.0",
"benchmark": "^2.1.4"
}
}
10 changes: 5 additions & 5 deletions packages/integration-sdk-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupiterone/integration-sdk-cli",
"version": "13.7.2",
"version": "14.0.0",
"description": "The SDK for developing JupiterOne integrations",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand All @@ -25,9 +25,9 @@
"plop": "plop --plopfile dist/src/generator/newIntegration.js"
},
"dependencies": {
"@jupiterone/data-model": "^0.61.11",
"@jupiterone/integration-sdk-core": "^13.7.2",
"@jupiterone/integration-sdk-runtime": "^13.7.2",
"@jupiterone/data-model": "0.61.13",
"@jupiterone/integration-sdk-core": "^14.0.0",
"@jupiterone/integration-sdk-runtime": "^14.0.0",
"chalk": "^4",
"commander": "^9.4.0",
"ejs": "^3.1.9",
Expand All @@ -45,7 +45,7 @@
"url-exists": "^1.0.3"
},
"devDependencies": {
"@jupiterone/integration-sdk-private-test-utils": "^13.7.2",
"@jupiterone/integration-sdk-private-test-utils": "^14.0.0",
"@pollyjs/adapter-node-http": "^6.0.5",
"@pollyjs/core": "^6.0.5",
"@pollyjs/persister-fs": "^6.0.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/integration-sdk-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupiterone/integration-sdk-core",
"version": "13.7.2",
"version": "14.0.0",
"description": "The SDK for developing JupiterOne integrations",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand All @@ -23,8 +23,8 @@
"prepack": "npm run build:dist"
},
"dependencies": {
"@jupiterone/data-model": "^0.61.11",
"@jupiterone/integration-sdk-entity-validator": "^13.7.2",
"@jupiterone/data-model": "0.61.13",
"@jupiterone/integration-sdk-entity-validator": "^14.0.0",
"@sinclair/typebox": "^0.32.30",
"lodash": "^4.17.21"
},
Expand Down
Loading

0 comments on commit 1a62ec8

Please sign in to comment.