diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d84ee6e..bbf412b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 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 @@ -32,10 +27,6 @@ jobs: needs: test runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' - strategy: - fail-fast: false - matrix: - node: [18] steps: - name: Setup Node diff --git a/CHANGELOG.md b/CHANGELOG.md index 528f504..7afde8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 + +- 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 diff --git a/package.json b/package.json index 654d8fe..e61a497 100644 --- a/package.json +++ b/package.json @@ -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",