Skip to content

Commit

Permalink
Merge pull request #631 from JupiterOne/version-8.4.2
Browse files Browse the repository at this point in the history
v8.4.2
  • Loading branch information
austinkelleher authored Feb 19, 2022
2 parents b1f8622 + 538219f commit 1504c54
Show file tree
Hide file tree
Showing 9 changed files with 56 additions and 22 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,40 @@ and this project adheres to

## Unreleased

## [8.4.2] - 2022-02-19

### Fixed

Fix [#629](https://github.com/JupiterOne/sdk/issues/629) - Create relationships
from Neo4j store using `_class` as the label instead of `_type`

> Which GitHub repositories are accessible to outside collaborators?
Old query:

```cy
MATCH (n:github_repo)-[r:github_repo_allows_user]->(u:github_user{role:"OUTSIDE"})
RETURN n, u

MATCH (account:github_account)-[github_account_owns_repo]->
(repo:github_repo)-[github_repo_allows_user]->
(user:github_user {
role:"OUTSIDE"
})
RETURN account, repo, user
```

New query:

```cy
MATCH (account:github_account)-[OWNS]->
(repo:github_repo)-[ALLOWS]->
(user:github_user {
role:"OUTSIDE"
})
RETURN account, repo, user
```

## [8.4.1] - 2022-02-17

### Fixed
Expand Down
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": "8.4.1",
"version": "8.4.2",
"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": "^8.4.1",
"@jupiterone/integration-sdk-runtime": "^8.4.1",
"@jupiterone/integration-sdk-core": "^8.4.2",
"@jupiterone/integration-sdk-runtime": "^8.4.2",
"@lifeomic/attempt": "^3.0.0",
"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": "8.4.1",
"version": "8.4.2",
"private": true,
"description": "SDK benchmarking scripts",
"main": "./src/index.js",
Expand All @@ -15,8 +15,8 @@
"benchmark": "node ./src/index.js"
},
"dependencies": {
"@jupiterone/integration-sdk-core": "^8.4.1",
"@jupiterone/integration-sdk-runtime": "^8.4.1",
"@jupiterone/integration-sdk-core": "^8.4.2",
"@jupiterone/integration-sdk-runtime": "^8.4.2",
"benchmark": "^2.1.4"
}
}
6 changes: 3 additions & 3 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": "8.4.1",
"version": "8.4.2",
"description": "The SDK for developing JupiterOne integrations",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand All @@ -22,7 +22,7 @@
"prepack": "yarn build:dist"
},
"dependencies": {
"@jupiterone/integration-sdk-runtime": "^8.4.1",
"@jupiterone/integration-sdk-runtime": "^8.4.2",
"chalk": "^4",
"commander": "^5.0.0",
"fs-extra": "^10.0.0",
Expand All @@ -37,7 +37,7 @@
"vis": "^4.21.0-EOL"
},
"devDependencies": {
"@jupiterone/integration-sdk-private-test-utils": "^8.4.1",
"@jupiterone/integration-sdk-private-test-utils": "^8.4.2",
"@pollyjs/adapter-node-http": "^5.1.1",
"@pollyjs/core": "^5.1.1",
"@pollyjs/persister-fs": "^5.1.1",
Expand Down
2 changes: 1 addition & 1 deletion 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": "8.4.1",
"version": "8.4.2",
"description": "The SDK for developing JupiterOne integrations",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/integration-sdk-dev-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupiterone/integration-sdk-dev-tools",
"version": "8.4.1",
"version": "8.4.2",
"description": "A collection of developer tools that will assist with building integrations.",
"repository": "[email protected]:JupiterOne/sdk.git",
"author": "JupiterOne <[email protected]>",
Expand All @@ -15,8 +15,8 @@
"access": "public"
},
"dependencies": {
"@jupiterone/integration-sdk-cli": "^8.4.1",
"@jupiterone/integration-sdk-testing": "^8.4.1",
"@jupiterone/integration-sdk-cli": "^8.4.2",
"@jupiterone/integration-sdk-testing": "^8.4.2",
"@types/jest": "^27.1.0",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^4.22.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/integration-sdk-private-test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jupiterone/integration-sdk-private-test-utils",
"private": true,
"version": "8.4.1",
"version": "8.4.2",
"description": "The SDK for developing JupiterOne integrations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -15,7 +15,7 @@
"build:dist": "tsc -p tsconfig.json --declaration"
},
"dependencies": {
"@jupiterone/integration-sdk-core": "^8.4.1",
"@jupiterone/integration-sdk-core": "^8.4.2",
"lodash": "^4.17.15",
"uuid": "^7.0.3"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/integration-sdk-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupiterone/integration-sdk-runtime",
"version": "8.4.1",
"version": "8.4.2",
"description": "The SDK for developing JupiterOne integrations",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand All @@ -24,7 +24,7 @@
"prepack": "yarn build:dist"
},
"dependencies": {
"@jupiterone/integration-sdk-core": "^8.4.1",
"@jupiterone/integration-sdk-core": "^8.4.2",
"@lifeomic/alpha": "^1.4.0",
"@lifeomic/attempt": "^3.0.0",
"async-sema": "^3.1.0",
Expand All @@ -43,7 +43,7 @@
"uuid": "^7.0.3"
},
"devDependencies": {
"@jupiterone/integration-sdk-private-test-utils": "^8.4.1",
"@jupiterone/integration-sdk-private-test-utils": "^8.4.2",
"@types/uuid": "^7.0.2",
"get-port": "^5.1.1",
"memfs": "^3.2.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/integration-sdk-testing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupiterone/integration-sdk-testing",
"version": "8.4.1",
"version": "8.4.2",
"description": "Testing utilities for JupiterOne integrations",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand All @@ -23,8 +23,8 @@
"prepack": "yarn build:dist"
},
"dependencies": {
"@jupiterone/integration-sdk-core": "^8.4.1",
"@jupiterone/integration-sdk-runtime": "^8.4.1",
"@jupiterone/integration-sdk-core": "^8.4.2",
"@jupiterone/integration-sdk-runtime": "^8.4.2",
"@pollyjs/adapter-node-http": "^5.1.1",
"@pollyjs/core": "^5.1.1",
"@pollyjs/persister-fs": "^5.1.1",
Expand All @@ -36,7 +36,7 @@
"lodash": "^4.17.15"
},
"devDependencies": {
"@jupiterone/integration-sdk-private-test-utils": "^8.4.1",
"@jupiterone/integration-sdk-private-test-utils": "^8.4.2",
"@types/lodash": "^4.14.149",
"get-port": "^5.1.1",
"memfs": "^3.2.0"
Expand Down

0 comments on commit 1504c54

Please sign in to comment.