Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V2.0.0 #159

Merged
merged 2 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 2 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,14 @@ on: [push, pull_request]

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [18.x]
os: [ubuntu-latest]
runs-on: ubuntu-latest
Copy link
Contributor Author

@Nick-NCSU Nick-NCSU May 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed matrix since only one option was used and it adds a bunch of clicks to get to the actual action you want to see in the UI. :)


steps:
- id: setup-node
name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 18.x

- name: Check out code repository source code
uses: actions/checkout@v2
Expand All @@ -32,10 +27,6 @@ jobs:
needs: test
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
strategy:
fail-fast: false
matrix:
node: [18]
Comment on lines -35 to -38
Copy link
Contributor Author

@Nick-NCSU Nick-NCSU May 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This matrix wasn't even used at all. matrix.node is never read.


steps:
- name: Setup Node
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,22 @@ and this project adheres to

## [Unreleased]

## [2.0.0] - 2024-05-13

- Removed the `ingestEntities` and `ingestCommitRange` methods

## [1.1.0] - 2024-02-15
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank you for the clean up


- Added `abortSyncJob` and `publishEvents` methods

## [1.0.1] - 2023-10-26

- Improved error handling when calling `networkRequest`

## [1.0.0] - 2023-10-23

- Removed Cognito `authenticateUser` method

## [0.26.2] - 2022-04-05

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupiterone/jupiterone-client-nodejs",
"version": "1.1.0",
"version": "2.0.0",
"description": "A node.js client wrapper for JupiterOne public API",
"repository": {
"type": "git",
Expand Down
Loading