Socket
Socket
Sign inDemoInstall

@jupiterone/integration-sdk-dev-tools

Package Overview
Dependencies
Maintainers
10
Versions
265
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupiterone/integration-sdk-dev-tools - npm Package Versions

23
27

13.7.2

Diff

Changelog

Source

13.7.2 - 2024-10-14

  • Add agent option to http client
jupiterone-dev
published 13.7.1 •

Changelog

Source

13.7.1 - 2024-10-11

  • Add retry logic to sync job requests /abort and /finalize.
  • Added steps_finished Info Log Event
jupiterone-dev
published 13.7.0 •

Changelog

Source

13.7.0 - 2024-10-09

  • http-client: Added option to refresh authentication headers on 401/403 errors
  • http-client: deprecated retryOptions.retryErrorHandler in favor of protected method defaultErrorHandler
jupiterone-dev
published 13.6.0 •

Changelog

Source

13.6.0 - 2024-09-19

  • Minor breaking change to JobState methods iterateEntities and iterateRelationships function signatures. The graph object passed to the iteratee is now Readonly. The intention is to prevent modification of the object during iteration. This is not a breaking change since the long-standing understanding is that these objects should never be modified once added to the jobState.
- export type GraphObjectIteratee<T> = (obj: T) => void | Promise<void>;
+ export type GraphObjectIteratee<T> = (obj: Readonly<T>) => void | Promise<void>;
jupiterone-dev
published 13.5.2 •

Changelog

Source

13.5.2 - 2024-09-17

  • Temporary logging that should be removed after investigation.
jupiterone-dev
published 13.5.2-alpha.0 •

jupiterone-dev
published 13.5.1 •

Changelog

Source

13.5.1 - 2024-09-09

  • bump @jupiterone/data-model to 0.61.11
jupiterone-dev
published 13.5.0 •

Changelog

Source

13.5.0 - 2024-08-20

  • http-client: Added option to format and send body for content type application/x-www-form-urlencoded
jupiterone-dev
published 13.4.0 •

Changelog

Source

13.4.0 - 2024-08-14

  • Add new options parameter GraphObjectIterateeOptions to jobState.iterateEntities() and jobState.iterateRelationships() that allows a concurrency option to be specified. The options parameters is passed to in memory and the file based object stores. Example:
await jobState.iterateEntities(
  { _type: EcrEntities.ECR_IMAGE._type },
  async (image) => {
    ...
  },
  { concurrency: 5 },
);
jupiterone-dev
published 13.3.0 •

Changelog

Source

13.3.0 - 2024-08-07

  • Added a toMatchEntityStepMetadata Jest matcher for validating step results against the live production data model schema.
  • Added a toMatchDataModelSchema Jest matcher for validating entities against the live production data model schema.
  • Deprecated the toMatchStepMetadata method in favor of toMatchEntityStepMetadata.
  • Deprecated the toMatchGraphObjectSchema method in favor of toMatchDataModelSchema.
23
27
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc