Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cumulus/checksum

Package Overview
Dependencies
Maintainers
0
Versions
148
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cumulus/checksum - npm Package Versions

1
15

9.8.0

Diff

Changelog

Source

[v9.8.0] 2021-10-19

Notable changes

Added

  • Added @cumulus/db/createRejectableTransaction() to handle creating a Knex transaction that will throw an error if the transaction rolls back. As of Knex 0.95+, promise rejection on transaction rollback is no longer the default behavior.

  • CUMULUS-2639

    • Increases logging on reconciliation reports.
  • CUMULUS-2670

    • Updated lambda_timeouts string map variable for cumulus module to accept a update_granules_cmr_metadata_file_links_task_timeout property
  • CUMULUS-2598

    • Add unit and integration tests to describe queued granules as ignored when duplicate handling is 'skip'

Changed

  • Updated knex version from 0.23.11 to 0.95.11 to address security vulnerabilities
  • Updated default version of async operations Docker image to cumuluss/async-operation:36
  • CUMULUS-2590
    • Granule applyWorkflow, Reingest actions and Bulk operation now update granule status to queued when scheduling the granule.
  • CUMULUS-2643
    • relocates system file buckets.json out of the s3://internal-bucket/workflows directory into s3://internal-bucket/buckets.
lfrederick
published 9.7.0 •

Changelog

Source

[v9.7.0] 2021-10-01

Notable Changes

  • CUMULUS-2583
    • The queue-granules task now updates granule status to queued when a granule is queued. In order to prevent issues with the private API endpoint and Lambda API request and concurrency limits, this functionality runs with limited concurrency, which may increase the task's overall runtime when large numbers of granules are being queued. If you are facing Lambda timeout errors with this task, we recommend converting your queue-granules task to an ECS activity. This concurrency is configurable via the task config's concurrency value.
  • CUMULUS-2676
    • The discover-granules task has been updated to limit concurrency on checks to identify and skip already ingested granules in order to prevent issues with the private API endpoint and Lambda API request and concurrency limits. This may increase the task's overall runtime when large numbers of granules are discovered. If you are facing Lambda timeout errors with this task, we recommend converting your discover-granules task to an ECS activity. This concurrency is configurable via the task config's concurrency value.
  • Updated memory of <prefix>-sfEventSqsToDbRecords Lambda to 1024MB

Added

  • CUMULUS-2000
    • Updated @cumulus/queue-granules to respect a new config parameter: preferredQueueBatchSize. Queue-granules will respect this batchsize as best as it can to batch granules into workflow payloads. As workflows generally rely on information such as collection and provider expected to be shared across all granules in a workflow, queue-granules will break batches up by collection, as well as provider if there is a provider field on the granule. This may result in batches that are smaller than the preferred size, but never larger ones. The default value is 1, which preserves current behavior of queueing 1 granule per workflow.
  • CUMULUS-2630
    • Adds a new workflow DiscoverGranulesToThrottledQueue that discovers and writes granules to a throttled background queue. This allows discovery and ingest of larger numbers of granules without running into limits with lambda concurrency.

Changed

  • CUMULUS-2720
    • Updated Core CI scripts to validate CHANGELOG diffs as part of the lint process
  • CUMULUS-2695
    • Updates the example/cumulus-tf deployment to change archive_api_reserved_concurrency from 8 to 5 to use fewer reserved lambda functions. If you see throttling errors on the <stack>-apiEndpoints you should increase this value.
    • Updates cumulus-tf/cumulus/variables.tf to change archive_api_reserved_concurrency from 8 to 15 to prevent throttling on the dashboard for default deployments.
  • CUMULUS-2584
    • Updates api/endpoints/execution-status.js get method to include associated granules, as an array, for the provided execution.
    • Added getExecutionArnsByGranuleCumulusId returning a list of executionArns sorted by most recent first, for an input Granule Cumulus ID in support of the move of translatePostgresGranuleToApiGranule from RDS-Phase2 feature branch
    • Added getApiExecutionCumulusIds returning cumulus IDs for a given list of executions
  • CUMULUS-NONE
    • Downgrades elasticsearch version in testing container to 5.3 to match AWS version.
    • Update serve.js -> eraseDynamoTables(). Changed the call Promise.all() to Promise.allSettled() to ensure all dynamo records (provider records in particular) are deleted prior to reseeding.

Fixed

  • CUMULUS-2583
    • Fixed a race condition where granules set as “queued” were not able to be set as “running” or “completed”
lfrederick
published 9.6.0 •

Changelog

Source

[v9.6.0] 2021-09-20

Added

  • CUMULUS-2576
    • Adds PUT /granules API endpoint to update a granule
    • Adds helper updateGranule to @cumulus/api-client/granules
  • CUMULUS-2606
    • Adds POST /granules/{granuleId}/executions API endpoint to associate an execution with a granule
    • Adds helper associateExecutionWithGranule to @cumulus/api-client/granules
  • CUMULUS-2583
    • Adds queued as option for granule's status field

Changed

  • Moved ssh2 package from @cumulus/common to @cumulus/sftp-client and upgraded package from ^0.8.7 to ^1.0.0 to address security vulnerability issue in previous version.

  • CUMULUS-2583

    • QueueGranules task now updates granule status to queued once it is added to the queue.
  • CUMULUS-2617

    • Use the Authorization header for CMR Launchpad authentication instead of the deprecated Echo-Token header.

Fixed

  • Added missing permission for <prefix>_ecs_cluster_instance_role IAM role (used when running ECS services/tasks) to allow kms:Decrypt on the KMS key used to encrypt provider credentials. Adding this permission fixes the sync-granule task when run as an ECS activity in a Step Function, which previously failed trying to decrypt credentials for providers.

  • CUMULUS-2576

    • Adds default value to granule's timestamp when updating a granule via API.
lfrederick
published 9.5.0 •

Changelog

Source

[v9.5.0] 2021-09-07

BREAKING CHANGES

  • Removed logs record type from mappings from Elasticsearch. This change should not have any adverse impact on existing deployments, even those which still contain logs records, but technically it is a breaking change to the Elasticsearch mappings.
  • Changed @cumulus/api-client/asyncOperations.getAsyncOperation to return parsed JSON body of response and not the raw API endpoint response

Added

  • CUMULUS-2670
    • Updated core cumulus module to take lambda_timeouts string map variable that allows timeouts of ingest tasks to be configurable. Allowed properties for the mapping include:
    • discover_granules_task_timeout
    • discover_pdrs_task_timeout
    • hyrax_metadata_update_tasks_timeout
    • lzards_backup_task_timeout
    • move_granules_task_timeout
    • parse_pdr_task_timeout
    • pdr_status_check_task_timeout
    • post_to_cmr_task_timeout
    • queue_granules_task_timeout
    • queue_pdrs_task_timeout
    • queue_workflow_task_timeout
    • sync_granule_task_timeout
  • CUMULUS-2575
    • Adds POST /granules API endpoint to create a granule
    • Adds helper createGranule to @cumulus/api-client
  • CUMULUS-2577
    • Adds POST /executions endpoint to create an execution
  • CUMULUS-2578
    • Adds PUT /executions endpoint to update an execution
  • CUMULUS-2592
    • Adds logging when messages fail to be added to queue
  • CUMULUS-2644
    • Pulled delete method for granules-executions.ts implemented as part of CUMULUS-2306 from the RDS-Phase-2 feature branch in support of CUMULUS-2644.
    • Pulled erasePostgresTables method in serve.js implemented as part of CUMULUS-2644, and CUMULUS-2306 from the RDS-Phase-2 feature branch in support of CUMULUS-2644
    • Added resetPostgresDb method to support resetting between integration test suite runs

Changed

  • Updated processDeadLetterArchive Lambda to return an object where processingSucceededKeys is an array of the S3 keys for successfully processed objects and processingFailedKeys is an array of S3 keys for objects that could not be processed

  • Updated async operations to handle writing records to the databases when output of the operation is undefined

  • CUMULUS-2644

    • Moved migration directory from the db-migration-lambda to the db package and updated unit test references to migrationDir to be pulled from @cumulus/db
    • Updated @cumulus/api/bin/serveUtils to write records to PostgreSQL tables
  • CUMULUS-2575

    • Updates model/granule to allow a granule created from API to not require an execution to be associated with it. This is a backwards compatible change that will not affect granules created in the normal way.
    • Updates @cumulus/db/src/model/granules functions get and exists to enforce parameter checking so that requests include either (granule_id and collection_cumulus_id) or (cumulus_id) to prevent incorrect results.
    • @cumulus/message/src/Collections.deconstructCollectionId has been modified to throw a descriptive error if the input collectionId is undefined rather than TypeError: Cannot read property 'split' of undefined. This function has also been updated to throw descriptive errors if an incorrectly formatted collectionId is input.
lfrederick
published 9.4.0 •

Changelog

Source

[v9.4.0] 2021-08-16

Notable changes

  • @cumulus/sync-granule task should now properly handle syncing files from HTTP/HTTPS providers where basic auth is required and involves a redirect to a different host (e.g. downloading files protected by Earthdata Login)

Added

  • CUMULUS-2591
    • Adds failedExecutionStepName to failed execution's jsonb error records. This is the name of the Step Function step for the last failed event in the execution's event history.
  • CUMULUS-2548
    • Added allowed_redirects field to PostgreSQL providers table
    • Added allowedRedirects field to DynamoDB <prefix>-providers table
    • Added @cumulus/aws-client/S3.streamS3Upload to handle uploading the contents of a readable stream to S3 and returning a promise
  • CUMULUS-2373
    • Added replaySqsMessages lambda to replay archived incoming SQS messages from S3.
    • Added /replays/sqs endpoint to trigger an async operation for the replaySqsMessages lambda.
    • Added unit tests and integration tests for new endpoint and lambda.
    • Added getS3PrefixForArchivedMessage to ingest/sqs package to get prefix for an archived message.
    • Added new async_operation type SQS Replay.
  • CUMULUS-2460
    • Adds POST /executions/workflows-by-granules for retrieving workflow names common to a set of granules
    • Adds workflowsByGranules to @cumulus/api-client/executions
  • CUMULUS-2635
    • Added helper functions:
      • @cumulus/db/translate/file/translateApiPdrToPostgresPdr

Fixed

  • CUMULUS-2548
    • Fixed @cumulus/ingest/HttpProviderClient.sync to properly handle basic auth when redirecting to a different host and/or host with a different port
  • CUMULUS-2626
    • Update PDR migration to correctly find Executions by a Dynamo PDR's execution field
  • CUMULUS-2635
    • Update data-migration2 to migrate PDRs before migrating granules.
    • Update data-migration2 unit tests testing granules migration to reference PDR records to better model the DB schema.
    • Update migratePdrRecord to use translateApiPdrToPostgresPdr function.

Changed

  • CUMULUS-2373
    • Updated getS3KeyForArchivedMessage in ingest/sqs to store SQS messages by queueName.
  • CUMULUS-2630
    • Updates the example/cumulus-tf deployment to change archive_api_reserved_concurrency from 2 to 8 to prevent throttling with the dashboard.
lfrederick
published 9.2.2 •

Changelog

Source

[v9.2.2] 2021-08-06 - [BACKPORT]

Please note changes in 9.2.2 may not yet be released in future versions, as this is a backport and patch release on the 9.2.x series of releases. Updates that are included in the future will have a corresponding CHANGELOG entry in future releases.

Added

  • CUMULUS-2635
    • Added helper functions:
      • @cumulus/db/translate/file/translateApiPdrToPostgresPdr

Fixed

  • CUMULUS-2635
    • Update data-migration2 to migrate PDRs before migrating granules.
    • Update data-migration2 unit tests testing granules migration to reference PDR records to better model the DB schema.
    • Update migratePdrRecord to use translateApiPdrToPostgresPdr function.
lfrederick
published 8.1.2 •

Changelog

Source

[v8.1.2] 2021-07-29

Please note changes in 8.1.2 may not yet be released in future versions, as this is a backport/patch release on the 8.x series of releases. Updates that are included in the future will have a corresponding CHANGELOG entry in future releases.

Notable changes

  • cmr_custom_host variable for cumulus module can now be used to configure Cumulus to integrate with a custom CMR host name and protocol (e.g. http://custom-cmr-host.com). Note that you must include a protocol (http:// or https://) if specifying a value for this variable.
  • @cumulus/sync-granule task should now properly handle syncing files from HTTP/HTTPS providers where basic auth is required and involves a redirect to a different host (e.g. downloading files protected by Earthdata Login)

Added

  • CUMULUS-2548
    • Added allowed_redirects field to PostgreSQL providers table
    • Added allowedRedirects field to DynamoDB <prefix>-providers table
    • Added @cumulus/aws-client/S3.streamS3Upload to handle uploading the contents of a readable stream to S3 and returning a promise

Changed

  • Updated cmr_custom_host variable to accept a full protocol and host name (e.g. http://cmr-custom-host.com), whereas it previously only accepted a host name

Fixed

  • Fixed bug where cmr_custom_host variable was not properly forwarded into archive, ingest, and sqs-message-remover modules from cumulus module
  • CUMULUS-2548
    • Fixed @cumulus/ingest/HttpProviderClient.sync to properly handle basic auth when redirecting to a different host and/or host with a different port
lfrederick
published 9.2.1 •

Changelog

Source

[v9.2.1] 2021-07-29 - [BACKPORT]

Fixed

  • CUMULUS-2626
    • Update PDR migration to correctly find Executions by a Dynamo PDR's execution field
lfrederick
published 9.3.0 •

Changelog

Source

[v9.3.0] 2021-07-26

BREAKING CHANGES

  • All API requests made by @cumulus/api-client will now throw an error if the status code does not match the expected response (200 for most requests and 202 for a few requests that trigger async operations). Previously the helpers in this package would return the response regardless of the status code, so you may need to update any code using helpers from this package to catch or to otherwise handle errors that you may encounter.
  • The Cumulus API Lambda function has now been configured with reserved concurrency to ensure availability in a high-concurrency environment. However, this also caps max concurrency which may result in throttling errors if trying to reach the Cumulus API multiple times in a short period. Reserved concurrency can be configured with the archive_api_reserved_concurrency terraform variable on the Cumulus module and increased if you are seeing throttling errors. The default reserved concurrency value is 8.

Notable changes

  • cmr_custom_host variable for cumulus module can now be used to configure Cumulus to integrate with a custom CMR host name and protocol (e.g. http://custom-cmr-host.com). Note that you must include a protocol (http:// or `https://) if specifying a value for this variable.
  • The cumulus module configuration valuerds_connetion_heartbeat and it's behavior has been replaced by a more robust database connection 'retry' solution. Users can remove this value from their configuration, regardless of value. See the Changed section notes on CUMULUS-2528 for more details.

Added

  • Added user doc describing new features related to the Cumulus dead letter archive.

  • CUMULUS-2327

    • Added reserved concurrency setting to the Cumulus API lambda function.
    • Added relevant tfvars to the archive and cumulus terraform modules.
  • CUMULUS-2460

    • Adds POST /executions/search-by-granules for retrieving executions from a list of granules or granule query
    • Adds searchExecutionsByGranules to @cumulus/api-client/executions
  • CUMULUS-2475

    • Adds GET endpoint to distribution API
  • CUMULUS-2463

    • PUT /granules reingest action allows a user to override the default execution to use by providing an optional workflowName or executionArn parameter on the request body.
    • PUT /granules/bulkReingest action allows a user to override the default execution/workflow combination to reingest with by providing an optional workflowName on the request body.
  • Adds workflowName and executionArn params to @cumulus/api-client/reingestGranules

  • CUMULUS-2476

    • Adds handler for authenticated HEAD Distribution requests replicating current behavior of TEA
  • CUMULUS-2478

    • Implemented bucket map.
    • Implemented /locate endpoint
    • Cumulus distribution API checks the file request against bucket map:
      • retrieves the bucket and key from file path
      • determines if the file request is public based on the bucket map rather than the bucket type
      • (EDL only) restricts download from PRIVATE_BUCKETS to users who belong to certain EDL User Groups
      • bucket prefix and object prefix are supported
    • Add 'Bearer token' support as an authorization method
  • CUMULUS-2486

    • Implemented support for custom headers
    • Added 'Bearer token' support as an authorization method
  • CUMULUS-2487

    • Added integration test for cumulus distribution API
  • CUMULUS-2569

    • Created bucket map cache for cumulus distribution API
  • CUMULUS-2568

    • Add deletePdr/PDR deletion functionality to @cumulus/api-client/pdrs
    • Add removeCollectionAndAllDependencies to integration test helpers
    • Added example/spec/apiUtils.waitForApiStatus to wait for a record to be returned by the API with a specific value for status
    • Added example/spec/discoverUtils.uploadS3GranuleDataForDiscovery to upload granule data fixtures to S3 with a randomized granule ID for discover-granules based integration tests
    • Added example/spec/Collections.removeCollectionAndAllDependencies to remove a collection and all dependent objects (e.g. PDRs, granules, executions) from the database via the API
    • Added helpers to @cumulus/api-client:
      • pdrs.deletePdr - Delete a PDR via the API
      • replays.postKinesisReplays - Submit a POST request to the /replays endpoint for replaying Kinesis messages
  • @cumulus/api-client/granules.getGranuleResponse to return the raw endpoint response from the GET /granules/<granuleId> endpoint

Changed

  • Moved functions from @cumulus/integration-tests to example/spec/helpers/workflowUtils:
    • startWorkflowExecution
    • startWorkflow
    • executeWorkflow
    • buildWorkflow
    • testWorkflow
    • buildAndExecuteWorkflow
    • buildAndStartWorkflow
  • example/spec/helpers/workflowUtils.executeWorkflow now uses waitForApiStatus to ensure that the execution is completed or failed before resolving
  • example/spec/helpers/testUtils.updateAndUploadTestFileToBucket now accepts an object of parameters rather than positional arguments
  • Removed PDR from the payload in the input payload test fixture for reconciliation report integration tests
  • The following integration tests for PDR-based workflows were updated to use randomized granule IDs:
    • example/spec/parallel/ingest/ingestFromPdrSpec.js
    • example/spec/parallel/ingest/ingestFromPdrWithChildWorkflowMetaSpec.js
    • example/spec/parallel/ingest/ingestFromPdrWithExecutionNamePrefixSpec.js
    • example/spec/parallel/ingest/ingestPdrWithNodeNameSpec.js
  • Updated the @cumulus/api-client/CumulusApiClientError error class to include new properties that can be accessed directly on the error object:
    • statusCode - The HTTP status code of the API response
    • apiMessage - The message from the API response
  • Added params.pRetryOptions parameter to @cumulus/api-client/granules.deleteGranule to control the retry behavior
  • Updated cmr_custom_host variable to accept a full protocol and host name (e.g. http://cmr-custom-host.com), whereas it previously only accepted a host name
  • CUMULUS-2482
    • Switches the default distribution app in the example/cumulus-tf deployment to the new Cumulus Distribution
    • TEA is still available by following instructions in example/README.md
  • CUMULUS-2463
    • Increases the duration of allowed backoff times for a successful test from 0.5 sec to 1 sec.
  • CUMULUS-2528
    • Removed rds_connection_heartbeat as a configuration option from all Cumulus terraform modules
    • Removed dbHeartBeat as an environmental switch from @cumulus/db.getKnexClient in favor of more comprehensive general db connect retry solution
    • Added new rds_connection_timing_configuration string map to allow for configuration and tuning of Core's internal database retry/connection timeout behaviors. These values map to connection pool configuration values for tarn (https://github.com/vincit/tarn.js/) which Core's database module / knex(https://www.npmjs.com/package/knex) use for this purpose:
      • acquireTimeoutMillis
      • createRetryIntervalMillis
      • createTimeoutMillis
      • idleTimeoutMillis
      • reapIntervalMillis Connection errors will result in a log line prepended with 'knex failed on attempted connection error' and sent from '@cumulus/db/connection'
    • Updated @cumulus/db and all terraform mdules to set default retry configuration values for the database module to cover existing database heartbeat connection failures as well as all other knex/tarn connection creation failures.

Fixed

  • Fixed bug where cmr_custom_host variable was not properly forwarded into archive, ingest, and sqs-message-remover modules from cumulus module
  • Fixed bug where parse-pdr set a granule's provider to the entire provider record when a NODE_NAME is present. Expected behavior consistent with other tasks is to set the provider name in that field.
  • CUMULUS-2568
    • Update reconciliation report integration test to have better cleanup/failure behavior
    • Fixed @cumulus/api-client/pdrs.getPdr to request correct endpoint for returning a PDR from the API
  • CUMULUS-2620
    • Fixed a bug where a granule could be removed from CMR but still be set as published: true and with a CMR link in the Dynamo/PostgreSQL databases. Now, the CMR deletion and the Dynamo/PostgreSQL record updates will all succeed or fail together, preventing the database records from being out of sync with CMR.
    • Fixed @cumulus/api-client/pdrs.getPdr to request correct endpoint for returning a PDR from the API
lfrederick
published 9.2.0 •

Changelog

Source

[v9.2.0] 2021-06-22

Added

  • CUMULUS-2475
    • Adds GET endpoint to distribution API
  • CUMULUS-2476
    • Adds handler for authenticated HEAD Distribution requests replicating current behavior of TEA

Changed

  • CUMULUS-2482
    • Switches the default distribution app in the example/cumulus-tf deployment to the new Cumulus Distribution
    • TEA is still available by following instructions in example/README.md

Fixed

  • CUMULUS-2520
    • Fixed error that prevented /elasticsearch/index-from-database from starting.
  • CUMULUS-2558
    • Fixed issue where executions original_payload would not be retained on successful execution
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