Promise
* [.getWriteHeaders(params)](#CMR+getWriteHeaders) ⇒ Object
* [.getReadHeaders(params)](#CMR+getReadHeaders) ⇒ Object
- * [.ingestCollection(xml)](#CMR+ingestCollection) ⇒ Promise.<Object>
- * [.ingestGranule(xml, cmrRevisionId)](#CMR+ingestGranule) ⇒ Promise.<Object>
- * [.ingestUMMGranule(ummgMetadata, cmrRevisionId)](#CMR+ingestUMMGranule) ⇒ Promise.<Object>
- * [.deleteCollection(datasetID)](#CMR+deleteCollection) ⇒ Promise.<Object>
- * [.deleteGranule(granuleUR)](#CMR+deleteGranule) ⇒ Promise.<Object>
- * [.searchCollections(params, [format])](#CMR+searchCollections) ⇒ Promise.<Object>
- * [.searchGranules(params, [format])](#CMR+searchGranules) ⇒ Promise.<Object>
+ * [.ingestCollection(xml, provider)](#CMR+ingestCollection) ⇒ Promise.<Object>
+ * [.ingestGranule(xml, provider, cmrRevisionId)](#CMR+ingestGranule) ⇒ Promise.<Object>
+ * [.ingestUMMGranule(ummgMetadata, provider, cmrRevisionId)](#CMR+ingestUMMGranule) ⇒ Promise.<Object>
+ * [.deleteCollection(datasetID, provider)](#CMR+deleteCollection) ⇒ Promise.<Object>
+ * [.deleteGranule(granuleUR, provider)](#CMR+deleteGranule) ⇒ Promise.<Object>
+ * [.searchCollections(params, provider, [format])](#CMR+searchCollections) ⇒ Promise.<Object>
+ * [.searchGranules(params, provider, [format])](#CMR+searchGranules) ⇒ Promise.<Object>
* [.getGranuleMetadata(cmrLink)](#CMR+getGranuleMetadata) ⇒ Object
* _static_
* [.getInstance()](#CMR.getInstance) ⇒ [CMR](#CMR)
@@ -153,7 +153,7 @@ Return object containing CMR request headers for GETs
-### cmrClient.ingestCollection(xml) ⇒ Promise.<Object>
+### cmrClient.ingestCollection(xml, provider) ⇒ Promise.<Object>
Adds a collection record to the CMR
**Kind**: instance method of [CMR](#CMR)
@@ -162,10 +162,11 @@ Adds a collection record to the CMR
| Param | Type | Description |
| --- | --- | --- |
| xml | string | the collection XML document |
+| provider | string | the CMR provider to target |
-### cmrClient.ingestGranule(xml, cmrRevisionId) ⇒ Promise.<Object>
+### cmrClient.ingestGranule(xml, provider, cmrRevisionId) ⇒ Promise.<Object>
Adds a granule record to the CMR
**Kind**: instance method of [CMR](#CMR)
@@ -174,11 +175,12 @@ Adds a granule record to the CMR
| Param | Type | Description |
| --- | --- | --- |
| xml | string | the granule XML document |
+| provider | string | the CMR provider to target |
| cmrRevisionId | string | Optional CMR Revision ID |
-### cmrClient.ingestUMMGranule(ummgMetadata, cmrRevisionId) ⇒ Promise.<Object>
+### cmrClient.ingestUMMGranule(ummgMetadata, provider, cmrRevisionId) ⇒ Promise.<Object>
Adds/Updates UMMG json metadata in the CMR
**Kind**: instance method of [CMR](#CMR)
@@ -187,11 +189,12 @@ Adds/Updates UMMG json metadata in the CMR
| Param | Type | Description |
| --- | --- | --- |
| ummgMetadata | Object | UMMG metadata object |
+| provider | string | the CMR provider to target |
| cmrRevisionId | string | Optional CMR Revision ID |
-### cmrClient.deleteCollection(datasetID) ⇒ Promise.<Object>
+### cmrClient.deleteCollection(datasetID, provider) ⇒ Promise.<Object>
Deletes a collection record from the CMR
**Kind**: instance method of [CMR](#CMR)
@@ -200,10 +203,11 @@ Deletes a collection record from the CMR
| Param | Type | Description |
| --- | --- | --- |
| datasetID | string | the collection unique id |
+| provider | string | the CMR provider to target |
-### cmrClient.deleteGranule(granuleUR) ⇒ Promise.<Object>
+### cmrClient.deleteGranule(granuleUR, provider) ⇒ Promise.<Object>
Deletes a granule record from the CMR
**Kind**: instance method of [CMR](#CMR)
@@ -212,10 +216,11 @@ Deletes a granule record from the CMR
| Param | Type | Description |
| --- | --- | --- |
| granuleUR | string | the granule unique id |
+| provider | string | the CMR provider to target |
-### cmrClient.searchCollections(params, [format]) ⇒ Promise.<Object>
+### cmrClient.searchCollections(params, provider, [format]) ⇒ Promise.<Object>
Search in collections
**Kind**: instance method of [CMR](#CMR)
@@ -224,11 +229,12 @@ Search in collections
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| params | string | | the search parameters |
+| provider | string | | the CMR provider to target |
| [format] | string | "json" | format of the response |
-### cmrClient.searchGranules(params, [format]) ⇒ Promise.<Object>
+### cmrClient.searchGranules(params, provider, [format]) ⇒ Promise.<Object>
Search in granules
**Kind**: instance method of [CMR](#CMR)
@@ -237,6 +243,7 @@ Search in granules
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| params | string | | the search parameters |
+| provider | string | | the CMR provider to target |
| [format] | string | "'json'" | format of the response |
diff --git a/packages/cmr-client/package.json b/packages/cmr-client/package.json
index f8b964171a84..0b39fa988c09 100644
--- a/packages/cmr-client/package.json
+++ b/packages/cmr-client/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/cmr-client",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "A Node.js client to NASA's Common Metadata Repository (CMR) API.",
"engines": {
"node": ">=22.21.1"
@@ -36,11 +36,11 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/launchpad-auth": "22.3.3",
- "@cumulus/logger": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/launchpad-auth": "22.3.4",
+ "@cumulus/logger": "22.3.4",
"got": "^11.8.5",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.18.1",
diff --git a/packages/cmrjs/package.json b/packages/cmrjs/package.json
index cd8b23f1ea92..ef9ca9bdf718 100644
--- a/packages/cmrjs/package.json
+++ b/packages/cmrjs/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/cmrjs",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "A node SDK for CMR",
"engines": {
"node": ">=22.21.1"
@@ -36,14 +36,14 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/cmr-client": "22.3.3",
- "@cumulus/common": "22.3.3",
- "@cumulus/distribution-utils": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/launchpad-auth": "22.3.3",
- "@cumulus/logger": "22.3.3",
- "@cumulus/message": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/cmr-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/distribution-utils": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/launchpad-auth": "22.3.4",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/message": "22.3.4",
"got": "^11.8.1",
"js2xmlparser": "^5.0.0",
"lodash": "^4.18.1",
@@ -52,6 +52,6 @@
"xml2js": "0.5.0"
},
"devDependencies": {
- "@cumulus/types": "22.3.3"
+ "@cumulus/types": "22.3.4"
}
}
diff --git a/packages/collection-config-store/package.json b/packages/collection-config-store/package.json
index fb6e3a77da1d..c64771a38296 100644
--- a/packages/collection-config-store/package.json
+++ b/packages/collection-config-store/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/collection-config-store",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Utility for persisting collection configuration to S3 and retrieving it",
"keywords": [
"CUMULUS",
@@ -35,8 +35,8 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
- "@cumulus/message": "22.3.3"
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/message": "22.3.4"
}
}
diff --git a/packages/common/package.json b/packages/common/package.json
index 35718d2e852c..b236f8ba3f5b 100644
--- a/packages/common/package.json
+++ b/packages/common/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/common",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Common utilities used across tasks",
"keywords": [
"GIBS",
@@ -45,9 +45,9 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/signature-v4-crt": "^3.993.0",
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/logger": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/logger": "22.3.4",
"ajv": "^6.12.3",
"follow-redirects": "^1.2.4",
"fs-extra": "^5.0.0",
diff --git a/packages/db/package.json b/packages/db/package.json
index 68200d41303f..772d7193d7ca 100644
--- a/packages/db/package.json
+++ b/packages/db/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/db",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Utilities for working with the Cumulus DB",
"license": "Apache-2.0",
"main": "./dist/index.js",
@@ -47,12 +47,12 @@
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.993.0",
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/logger": "22.3.3",
- "@cumulus/message": "22.3.3",
- "@cumulus/types": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/message": "22.3.4",
+ "@cumulus/types": "22.3.4",
"@duckdb/node-api": "^1.4.4-r.1",
"crypto-random-string": "^3.2.0",
"is-valid-hostname": "1.0.2",
diff --git a/packages/distribution-utils/package.json b/packages/distribution-utils/package.json
index 6d4a8c1d9e95..7d227154efa7 100644
--- a/packages/distribution-utils/package.json
+++ b/packages/distribution-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/distribution-utils",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Cumulus Distribution utilities",
"keywords": [
"CUMULUS"
@@ -35,9 +35,9 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
- "@cumulus/errors": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/errors": "22.3.4",
"url-join": "^1.1.0"
},
"devDependencies": {
diff --git a/packages/errors/package.json b/packages/errors/package.json
index 1ce96378eb4c..6c1bb5d4ba49 100644
--- a/packages/errors/package.json
+++ b/packages/errors/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/errors",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Provides error classes for Cumulus",
"keywords": [
"GIBS",
diff --git a/packages/es-client/package.json b/packages/es-client/package.json
index d2096a2ba92f..7c176b9c8cd7 100644
--- a/packages/es-client/package.json
+++ b/packages/es-client/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/es-client",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Utilities for working with Elasticsearch",
"keywords": [
"CUMULUS",
@@ -34,10 +34,10 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/credential-providers": "^3.993.0",
- "@cumulus/common": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/logger": "22.3.3",
- "@cumulus/message": "22.3.3",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/message": "22.3.4",
"@elastic/elasticsearch": "^5.6.20",
"aws4": "^1.12.0",
"lodash": "^4.18.1",
@@ -45,8 +45,8 @@
"p-limit": "^1.2.0"
},
"devDependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/test-data": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/test-data": "22.3.4",
"p-each-series": "^2.1.0"
}
}
diff --git a/packages/ingest/package.json b/packages/ingest/package.json
index 326dfef5cb36..df849c74572e 100644
--- a/packages/ingest/package.json
+++ b/packages/ingest/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/ingest",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Ingest utilities",
"engines": {
"node": ">=22.21.1"
@@ -40,13 +40,13 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
- "@cumulus/db": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/logger": "22.3.3",
- "@cumulus/message": "22.3.3",
- "@cumulus/sftp-client": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/db": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/message": "22.3.4",
+ "@cumulus/sftp-client": "22.3.4",
"cksum": "^1.3.0",
"encodeurl": "^1.0.2",
"fs-extra": "^5.0.0",
@@ -60,9 +60,9 @@
"tough-cookie": "~4.0.0"
},
"devDependencies": {
- "@cumulus/checksum": "22.3.3",
- "@cumulus/cmrjs": "22.3.3",
- "@cumulus/test-data": "22.3.3",
- "@cumulus/types": "22.3.3"
+ "@cumulus/checksum": "22.3.4",
+ "@cumulus/cmrjs": "22.3.4",
+ "@cumulus/test-data": "22.3.4",
+ "@cumulus/types": "22.3.4"
}
}
diff --git a/packages/integration-tests/package.json b/packages/integration-tests/package.json
index 599e19967adc..5636d978aa1e 100644
--- a/packages/integration-tests/package.json
+++ b/packages/integration-tests/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/integration-tests",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Integration tests",
"bin": {
"cumulus-test": "./bin/cli.js"
@@ -31,16 +31,16 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-lambda": "^3.993.0",
- "@cumulus/api": "22.3.3",
- "@cumulus/api-client": "22.3.3",
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/cmr-client": "22.3.3",
- "@cumulus/cmrjs": "22.3.3",
- "@cumulus/common": "22.3.3",
- "@cumulus/launchpad-auth": "22.3.3",
- "@cumulus/logger": "22.3.3",
- "@cumulus/message": "22.3.3",
- "@cumulus/oauth-client": "22.3.3",
+ "@cumulus/api": "22.3.4",
+ "@cumulus/api-client": "22.3.4",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/cmr-client": "22.3.4",
+ "@cumulus/cmrjs": "22.3.4",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/launchpad-auth": "22.3.4",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/message": "22.3.4",
+ "@cumulus/oauth-client": "22.3.4",
"base-64": "^0.1.0",
"commander": "^2.15.0",
"dotenv": "^8.2.0",
diff --git a/packages/launchpad-auth/package.json b/packages/launchpad-auth/package.json
index bc8e9c9f3648..6a24c40e0979 100644
--- a/packages/launchpad-auth/package.json
+++ b/packages/launchpad-auth/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/launchpad-auth",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Utilities for authentication with Launchpad",
"keywords": [
"CUMULUS",
@@ -40,8 +40,8 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/logger": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/logger": "22.3.4",
"got": "^11.8.5",
"lodash": "^4.18.1",
"p-retry": "^4.2.0",
diff --git a/packages/logger/package.json b/packages/logger/package.json
index 5d97a3aa829e..4a00fc8adf13 100644
--- a/packages/logger/package.json
+++ b/packages/logger/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/logger",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "A log library for use on Cumulus",
"keywords": [
"GIBS",
diff --git a/packages/lzards-api-client/package.json b/packages/lzards-api-client/package.json
index 337f434768dc..50b96401539e 100644
--- a/packages/lzards-api-client/package.json
+++ b/packages/lzards-api-client/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/lzards-api-client",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "A Node.js client to NASA's Level Zero and Repositories Data Store (LZARDS) API.",
"engines": {
"node": ">=22.21.1"
@@ -35,11 +35,11 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/launchpad-auth": "22.3.3",
- "@cumulus/logger": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/launchpad-auth": "22.3.4",
+ "@cumulus/logger": "22.3.4",
"got": "^11.8.5",
"lodash": "^4.18.1"
}
diff --git a/packages/message/package.json b/packages/message/package.json
index a1d4af9df927..6a44389b2d2b 100644
--- a/packages/message/package.json
+++ b/packages/message/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/message",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Utilities for building and parsing Cumulus messages",
"keywords": [
"GIBS",
@@ -41,11 +41,11 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/logger": "22.3.3",
- "@cumulus/types": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/types": "22.3.4",
"jsonpath-plus": "^10.0.0",
"lodash": "^4.18.1",
"uuid": "^11.1.1"
diff --git a/packages/oauth-client/package.json b/packages/oauth-client/package.json
index 776fb9bc6fa1..7de8b3779858 100644
--- a/packages/oauth-client/package.json
+++ b/packages/oauth-client/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/oauth-client",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "A generic auth client",
"homepage": "https://github.com/nasa/cumulus/tree/master/packages/oauth-client#readme",
"repository": {
diff --git a/packages/object-store/package.json b/packages/object-store/package.json
index 9dfb1c00f3e2..9d23d3ea865d 100644
--- a/packages/object-store/package.json
+++ b/packages/object-store/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/object-store",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Utilities for managing object stores",
"keywords": [
"GIBS",
@@ -42,6 +42,6 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3"
+ "@cumulus/aws-client": "22.3.4"
}
}
diff --git a/packages/pvl/package.json b/packages/pvl/package.json
index c0cf766717c1..ba0ec4828e1b 100644
--- a/packages/pvl/package.json
+++ b/packages/pvl/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/pvl",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Parse and serialize Parameter Value Language, a data markup language used by NASA",
"main": "index.js",
"engine": {
diff --git a/packages/s3-credentials-endpoint/package.json b/packages/s3-credentials-endpoint/package.json
index 305063713b48..4a6a705b7df1 100644
--- a/packages/s3-credentials-endpoint/package.json
+++ b/packages/s3-credentials-endpoint/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/s3-credentials-endpoint",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "An API Gateway Lambda to return AWS credentials for fetching objects from S3",
"license": "Apache-2.0",
"engines": {
@@ -20,12 +20,12 @@
"failFast": true
},
"dependencies": {
- "@cumulus/api": "22.3.3",
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/cmrjs": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/logger": "22.3.3",
- "@cumulus/oauth-client": "22.3.3",
+ "@cumulus/api": "22.3.4",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/cmrjs": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/oauth-client": "22.3.4",
"aws-serverless-express": "^3.3.6",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
diff --git a/packages/schemas/package.json b/packages/schemas/package.json
index 2a70c1facbf0..40953316221d 100644
--- a/packages/schemas/package.json
+++ b/packages/schemas/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/schemas",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Helpers for managing Cumulus task schemas",
"homepage": "https://github.com/nasa/cumulus/tree/master/packages/schemas",
"repository": {
diff --git a/packages/sftp-client/package.json b/packages/sftp-client/package.json
index da1fe9ccf1d5..1034057d8226 100644
--- a/packages/sftp-client/package.json
+++ b/packages/sftp-client/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/sftp-client",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "A Promise-based SFTP client",
"keywords": [
"GIBS",
@@ -39,16 +39,16 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
"lodash": "^4.18.1",
"mime-types": "^2.1.27",
"ssh2": "^1.16.0",
"ssh2-sftp-client": "^11.0.0"
},
"devDependencies": {
- "@cumulus/checksum": "22.3.3",
- "@cumulus/test-data": "22.3.3",
+ "@cumulus/checksum": "22.3.4",
+ "@cumulus/test-data": "22.3.4",
"@types/ssh2-sftp-client": "^7.0.0"
}
}
diff --git a/packages/tea-map-cache/package.json b/packages/tea-map-cache/package.json
index e498a53ccb6f..96136bb3f84c 100644
--- a/packages/tea-map-cache/package.json
+++ b/packages/tea-map-cache/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/tea-map-cache",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Tea Bucket Map Cache Writer",
"main": "index.js",
"engines": {
@@ -30,8 +30,8 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/logger": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/logger": "22.3.4",
"got": "^11.8.5",
"p-retry": "^4.2.0"
},
diff --git a/packages/test-data/package.json b/packages/test-data/package.json
index 49a485a66ab8..fbf85e6b7e41 100644
--- a/packages/test-data/package.json
+++ b/packages/test-data/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/test-data",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Includes the test data for various packages",
"keywords": [
"GIBS",
diff --git a/packages/tf-inventory/package.json b/packages/tf-inventory/package.json
index f7cc6344ab8c..4a4caa9a08e9 100644
--- a/packages/tf-inventory/package.json
+++ b/packages/tf-inventory/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/tf-inventory",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Package to help keep track of what resources are managed by Terraform in the AWS account",
"main": "index.js",
"engines": {
@@ -32,11 +32,11 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
"commander": "^4.1.0",
"lodash": "^4.18.1"
},
"devDependencies": {
- "@cumulus/common": "22.3.3"
+ "@cumulus/common": "22.3.4"
}
}
diff --git a/packages/types/package.json b/packages/types/package.json
index 7d05ceb19375..559e94751de6 100644
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/types",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "TypeScript definitions for working with Cumulus data structures",
"keywords": [
"GIBS",
diff --git a/scripts/generate_records/package.json b/scripts/generate_records/package.json
index e83f4e5a77c5..668504a5bea7 100644
--- a/scripts/generate_records/package.json
+++ b/scripts/generate_records/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/generate_records",
- "version": "22.3.3",
+ "version": "22.3.4",
"author": "Cumulus Authors",
"description": "compile errors",
"license": "Apache-2.0",
@@ -27,12 +27,12 @@
"timeout": "10m"
},
"dependencies": {
- "@cumulus/api-client": "22.3.3",
- "@cumulus/common": "22.3.3",
- "@cumulus/db": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/integration-tests": "22.3.3",
- "@cumulus/logger": "22.3.3",
+ "@cumulus/api-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
+ "@cumulus/db": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/integration-tests": "22.3.4",
+ "@cumulus/logger": "22.3.4",
"@types/minimist": "^1.2.5",
"cli-progress": "^3.12.0",
"crypto-js": "^4.2.0",
diff --git a/scripts/unit-error-analysis/package.json b/scripts/unit-error-analysis/package.json
index ef643197c12f..60ff75b4f2cf 100644
--- a/scripts/unit-error-analysis/package.json
+++ b/scripts/unit-error-analysis/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/unit-error-analysis",
- "version": "22.3.3",
+ "version": "22.3.4",
"author": "Cumulus Authors",
"description": "compile errors",
"license": "Apache-2.0",
@@ -25,7 +25,7 @@
"tsc:listEmittedFiles": "../../node_modules/.bin/tsc --listEmittedFiles"
},
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
"@types/minimist": "^1.2.5",
"minimist": "^1.2.8",
"moment": "^2.30.1"
diff --git a/tasks/add-missing-file-checksums/package.json b/tasks/add-missing-file-checksums/package.json
index 8d01c201cd56..57ec772e005b 100644
--- a/tasks/add-missing-file-checksums/package.json
+++ b/tasks/add-missing-file-checksums/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/add-missing-file-checksums",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Add checksums to files in S3 which don't have one",
"author": "Cumulus Authors",
"license": "Apache-2.0",
@@ -45,12 +45,12 @@
"failFast": true
},
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0"
},
"devDependencies": {
- "@cumulus/schemas": "22.3.3",
- "@cumulus/types": "22.3.3",
+ "@cumulus/schemas": "22.3.4",
+ "@cumulus/types": "22.3.4",
"@types/aws-lambda": "^8.10.58"
}
}
diff --git a/tasks/add-unique-granuleID/package.json b/tasks/add-unique-granuleID/package.json
index 7bc18d6f6dae..8c9a4f1a46d8 100644
--- a/tasks/add-unique-granuleID/package.json
+++ b/tasks/add-unique-granuleID/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/add-unique-granule-id",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "A Cumulus task to add a unique granule ID to a granule",
"main": "dist/index.js",
"private": true,
@@ -40,11 +40,11 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/common": "22.3.3",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/ingest": "22.3.3",
- "@cumulus/logger": "22.3.3",
- "@cumulus/message": "22.3.3",
- "@cumulus/types": "22.3.3"
+ "@cumulus/ingest": "22.3.4",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/message": "22.3.4",
+ "@cumulus/types": "22.3.4"
}
}
diff --git a/tasks/aws-api-proxy/package.json b/tasks/aws-api-proxy/package.json
index 0dc8bf6a4d6f..9d193dfc9414 100644
--- a/tasks/aws-api-proxy/package.json
+++ b/tasks/aws-api-proxy/package.json
@@ -1,7 +1,7 @@
{
"name": "@cumulus/aws-api-proxy-task",
"private": true,
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "AWS API proxy task",
"main": "index.js",
"homepage": "https://github.com/nasa/cumulus/tree/master/tasks/aws-api-proxy",
diff --git a/tasks/aws-api-proxy/pyproject.toml b/tasks/aws-api-proxy/pyproject.toml
index 7b1863fcbbdd..567f875db03b 100644
--- a/tasks/aws-api-proxy/pyproject.toml
+++ b/tasks/aws-api-proxy/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "aws-api-proxy"
-version = "22.3.3"
+version = "22.3.4"
description = "Makes specified AWS API calls wrapped the Cumulus Message Adapter"
readme = "README.md"
requires-python = ">=3.12"
diff --git a/tasks/aws-api-proxy/uv.lock b/tasks/aws-api-proxy/uv.lock
index f93de760913b..d04944605da7 100644
--- a/tasks/aws-api-proxy/uv.lock
+++ b/tasks/aws-api-proxy/uv.lock
@@ -22,7 +22,7 @@ wheels = [
[[package]]
name = "aws-api-proxy"
-version = "22.3.3"
+version = "22.3.4"
source = { virtual = "." }
dependencies = [
{ name = "cumulus-message-adapter" },
diff --git a/tasks/change-granule-collection-pg/package.json b/tasks/change-granule-collection-pg/package.json
index bd7c90d5c3f5..3567204ca6c3 100644
--- a/tasks/change-granule-collection-pg/package.json
+++ b/tasks/change-granule-collection-pg/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/change-granule-collection-pg",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Move granule files and postgres records to a new collection",
"private": true,
"main": "dist/index.js",
@@ -41,19 +41,19 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/api-client": "22.3.3",
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/api-client": "22.3.4",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/errors": "22.3.3",
- "@cumulus/message": "22.3.3",
- "@cumulus/types": "22.3.3"
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/message": "22.3.4",
+ "@cumulus/types": "22.3.4"
},
"devDependencies": {
- "@cumulus/api": "22.3.3",
- "@cumulus/db": "22.3.3",
- "@cumulus/distribution-utils": "22.3.3",
- "@cumulus/es-client": "22.3.3",
+ "@cumulus/api": "22.3.4",
+ "@cumulus/db": "22.3.4",
+ "@cumulus/distribution-utils": "22.3.4",
+ "@cumulus/es-client": "22.3.4",
"lodash": "^4.18.1"
}
}
diff --git a/tasks/change-granule-collection-s3/package.json b/tasks/change-granule-collection-s3/package.json
index da7619281beb..3a3c46b7b8ec 100644
--- a/tasks/change-granule-collection-s3/package.json
+++ b/tasks/change-granule-collection-s3/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/change-granule-collection-s3",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Move granule files and postgres records to a new collection",
"private": true,
"main": "dist/index.js",
@@ -41,20 +41,20 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/api-client": "22.3.3",
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/cmrjs": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/api-client": "22.3.4",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/cmrjs": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/distribution-utils": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/ingest": "22.3.3",
- "@cumulus/message": "22.3.3",
- "@cumulus/types": "22.3.3",
+ "@cumulus/distribution-utils": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/ingest": "22.3.4",
+ "@cumulus/message": "22.3.4",
+ "@cumulus/types": "22.3.4",
"lodash": "^4.18.1"
},
"devDependencies": {
"@aws-sdk/client-sns": "^3.993.0",
- "@cumulus/api": "22.3.3"
+ "@cumulus/api": "22.3.4"
}
}
diff --git a/tasks/cnm-response/package.json b/tasks/cnm-response/package.json
index 24924a4d745b..af7c6b9b1c69 100644
--- a/tasks/cnm-response/package.json
+++ b/tasks/cnm-response/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/cnm-response",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "CNM Response task",
"main": "index.js",
"directories": {
@@ -27,6 +27,6 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"devDependencies": {
- "@cumulus/schemas": "22.3.3"
+ "@cumulus/schemas": "22.3.4"
}
}
diff --git a/tasks/cnm-response/pyproject.toml b/tasks/cnm-response/pyproject.toml
index 475ab9af9c34..681c6efe798c 100644
--- a/tasks/cnm-response/pyproject.toml
+++ b/tasks/cnm-response/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "cnm-response"
-version = "22.3.3"
+version = "22.3.4"
description = "CNM Response task"
requires-python = "~=3.12.0"
dependencies = [
diff --git a/tasks/cnm-response/uv.lock b/tasks/cnm-response/uv.lock
index 2289d52b1f9c..684b12dd00a5 100644
--- a/tasks/cnm-response/uv.lock
+++ b/tasks/cnm-response/uv.lock
@@ -98,7 +98,7 @@ wheels = [
[[package]]
name = "cnm-response"
-version = "22.3.3"
+version = "22.3.4"
source = { virtual = "." }
dependencies = [
{ name = "boto3" },
diff --git a/tasks/cnm-to-cma/package.json b/tasks/cnm-to-cma/package.json
index 81d238c09fa3..2bb59568389d 100644
--- a/tasks/cnm-to-cma/package.json
+++ b/tasks/cnm-to-cma/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/cnm-to-cma",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "CNM to CMA task",
"main": "index.js",
"directories": {
@@ -27,6 +27,6 @@
"author": "Cumulus Author : Cumulus Coreification Team",
"license": "Apache-2.0",
"devDependencies": {
- "@cumulus/schemas": "22.3.3"
+ "@cumulus/schemas": "22.3.4"
}
}
diff --git a/tasks/cnm-to-cma/pyproject.toml b/tasks/cnm-to-cma/pyproject.toml
index 18a0b3d31509..d28a5a43554b 100644
--- a/tasks/cnm-to-cma/pyproject.toml
+++ b/tasks/cnm-to-cma/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "cnm-to-cma"
-version = "22.3.3"
+version = "22.3.4"
description = "Translate CNM message to CMA"
authors = [
{ name = "ESHINDavid Yen", email = "david.yen@jpl.nasa.gov" }
diff --git a/tasks/cnm-to-cma/uv.lock b/tasks/cnm-to-cma/uv.lock
index 09be53f1cdc5..4fc1df7ff00e 100644
--- a/tasks/cnm-to-cma/uv.lock
+++ b/tasks/cnm-to-cma/uv.lock
@@ -107,7 +107,7 @@ wheels = [
[[package]]
name = "cnm-to-cma"
-version = "22.3.3"
+version = "22.3.4"
source = { virtual = "." }
dependencies = [
{ name = "cumulus-message-adapter-python" },
diff --git a/tasks/discover-granules/package.json b/tasks/discover-granules/package.json
index 9dfe6a1d2f99..310c039fc944 100644
--- a/tasks/discover-granules/package.json
+++ b/tasks/discover-granules/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/discover-granules",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Discover Granules in FTP/HTTP/HTTPS/SFTP/S3 endpoints",
"main": "index.js",
"directories": {
@@ -39,16 +39,16 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/api-client": "22.3.3",
+ "@cumulus/api-client": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/ingest": "22.3.3",
- "@cumulus/logger": "22.3.3",
+ "@cumulus/ingest": "22.3.4",
+ "@cumulus/logger": "22.3.4",
"got": "^11.8.5",
"lodash": "^4.18.1",
"p-map": "^4.0.0"
},
"devDependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3"
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4"
}
}
diff --git a/tasks/discover-pdrs/package.json b/tasks/discover-pdrs/package.json
index 8f3d5a309cb3..846282f5cbbd 100644
--- a/tasks/discover-pdrs/package.json
+++ b/tasks/discover-pdrs/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/discover-pdrs",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Discover PDRs in FTP and HTTP endpoints",
"main": "index.js",
"directories": {
@@ -38,14 +38,14 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/ingest": "22.3.3",
+ "@cumulus/ingest": "22.3.4",
"lodash": "^4.18.1",
"p-filter": "^2.1.0"
},
"devDependencies": {
- "@cumulus/common": "22.3.3",
- "@cumulus/errors": "22.3.3"
+ "@cumulus/common": "22.3.4",
+ "@cumulus/errors": "22.3.4"
}
}
diff --git a/tasks/files-to-granules/package.json b/tasks/files-to-granules/package.json
index d981b61e2ad8..b774f77f1a32 100644
--- a/tasks/files-to-granules/package.json
+++ b/tasks/files-to-granules/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/files-to-granules",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Converts array-of-files input into a granules object by extracting granuleId from filename",
"main": "index.js",
"directories": {
@@ -36,13 +36,13 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/errors": "22.3.3",
+ "@cumulus/errors": "22.3.4",
"lodash": "^4.18.1"
},
"devDependencies": {
- "@cumulus/common": "22.3.3",
- "@cumulus/schemas": "22.3.3"
+ "@cumulus/common": "22.3.4",
+ "@cumulus/schemas": "22.3.4"
}
}
diff --git a/tasks/get-cnm/package.json b/tasks/get-cnm/package.json
index f3630ea258c1..87cd8f7f1b26 100644
--- a/tasks/get-cnm/package.json
+++ b/tasks/get-cnm/package.json
@@ -1,7 +1,7 @@
{
"name": "@cumulus/get-cnm-task",
"private": true,
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Get CNM task",
"main": "index.js",
"homepage": "https://github.com/nasa/cumulus/tree/master/tasks/get-cnm",
diff --git a/tasks/get-cnm/pyproject.toml b/tasks/get-cnm/pyproject.toml
index 2b76b9752a46..e91c78c24644 100644
--- a/tasks/get-cnm/pyproject.toml
+++ b/tasks/get-cnm/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "get-cnm"
-version = "22.3.3"
+version = "22.3.4"
description = "Retrieves the originating CNM message for a specified granule"
readme = "README.md"
requires-python = ">=3.12"
diff --git a/tasks/get-cnm/uv.lock b/tasks/get-cnm/uv.lock
index 4541191e8bd3..bbc2c2ae3c97 100644
--- a/tasks/get-cnm/uv.lock
+++ b/tasks/get-cnm/uv.lock
@@ -351,7 +351,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/4a/92/8e97cc640181f72eb
[[package]]
name = "get-cnm"
-version = "22.3.3"
+version = "22.3.4"
source = { virtual = "." }
dependencies = [
{ name = "cumulus-api" },
diff --git a/tasks/granule-invalidator/package.json b/tasks/granule-invalidator/package.json
index 7f50e52de3f3..d33da28a4440 100644
--- a/tasks/granule-invalidator/package.json
+++ b/tasks/granule-invalidator/package.json
@@ -1,7 +1,7 @@
{
"name": "@cumulus/granule-invalidator-task",
"private": true,
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Granule invalidator task",
"main": "index.js",
"homepage": "https://github.com/nasa/cumulus/tree/master/tasks/granule-invalidator",
diff --git a/tasks/granule-invalidator/pyproject.toml b/tasks/granule-invalidator/pyproject.toml
index 36b14754e3f5..343adfdb5b97 100644
--- a/tasks/granule-invalidator/pyproject.toml
+++ b/tasks/granule-invalidator/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "granule-invalidator"
-version = "22.3.3"
+version = "22.3.4"
description = "Identifies granules that fulfill specific criteria"
readme = "README.md"
requires-python = ">=3.12"
diff --git a/tasks/granule-invalidator/uv.lock b/tasks/granule-invalidator/uv.lock
index 49c2f6e3e3dc..3a6f72dfb6d9 100644
--- a/tasks/granule-invalidator/uv.lock
+++ b/tasks/granule-invalidator/uv.lock
@@ -351,7 +351,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/4a/92/8e97cc640181f72eb
[[package]]
name = "granule-invalidator"
-version = "22.3.3"
+version = "22.3.4"
source = { virtual = "." }
dependencies = [
{ name = "cumulus-api" },
diff --git a/tasks/hello-world/package.json b/tasks/hello-world/package.json
index c70505488eb8..2288db5a1a6d 100644
--- a/tasks/hello-world/package.json
+++ b/tasks/hello-world/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/hello-world",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Example task",
"main": "index.js",
"directories": {
@@ -36,8 +36,8 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0"
}
}
diff --git a/tasks/hyrax-metadata-updates/package.json b/tasks/hyrax-metadata-updates/package.json
index 3e95f9502170..ec68dd60360c 100644
--- a/tasks/hyrax-metadata-updates/package.json
+++ b/tasks/hyrax-metadata-updates/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/hyrax-metadata-updates",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Update granule metadata with hooks to OPeNDAP URL",
"main": "index.js",
"directories": {
@@ -41,17 +41,17 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/cmr-client": "22.3.3",
- "@cumulus/cmrjs": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/cmr-client": "22.3.4",
+ "@cumulus/cmrjs": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/errors": "22.3.3",
+ "@cumulus/errors": "22.3.4",
"lodash": "^4.18.1",
"xml2js": "0.6.2"
},
"devDependencies": {
- "@cumulus/schemas": "22.3.3",
+ "@cumulus/schemas": "22.3.4",
"jsonwebtoken": "^9.0.0",
"nock": "^12.0.1",
"rewire": "^6.0.0"
diff --git a/tasks/lzards-backup/package.json b/tasks/lzards-backup/package.json
index aff43931562d..5b669543481b 100644
--- a/tasks/lzards-backup/package.json
+++ b/tasks/lzards-backup/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/lzards-backup",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Run LZARDS backup",
"author": "Cumulus Authors",
"license": "Apache-2.0",
@@ -46,20 +46,20 @@
"failFast": true
},
"dependencies": {
- "@cumulus/api-client": "22.3.3",
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/api-client": "22.3.4",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/db": "22.3.3",
- "@cumulus/distribution-utils": "22.3.3",
- "@cumulus/launchpad-auth": "22.3.3",
- "@cumulus/logger": "22.3.3",
- "@cumulus/lzards-api-client": "22.3.3",
- "@cumulus/message": "22.3.3",
+ "@cumulus/db": "22.3.4",
+ "@cumulus/distribution-utils": "22.3.4",
+ "@cumulus/launchpad-auth": "22.3.4",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/lzards-api-client": "22.3.4",
+ "@cumulus/message": "22.3.4",
"got": "^11.8.5"
},
"devDependencies": {
- "@cumulus/schemas": "22.3.3",
- "@cumulus/types": "22.3.3"
+ "@cumulus/schemas": "22.3.4",
+ "@cumulus/types": "22.3.4"
}
}
diff --git a/tasks/move-granules/package.json b/tasks/move-granules/package.json
index 68e0a4b9e9f0..f744ad7a3de2 100644
--- a/tasks/move-granules/package.json
+++ b/tasks/move-granules/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/move-granules",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Move granule files from staging to final location",
"main": "index.js",
"directories": {
@@ -41,18 +41,18 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/api-client": "22.3.3",
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/cmrjs": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/api-client": "22.3.4",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/cmrjs": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/distribution-utils": "22.3.3",
- "@cumulus/errors": "22.3.3",
- "@cumulus/ingest": "22.3.3",
- "@cumulus/message": "22.3.3",
+ "@cumulus/distribution-utils": "22.3.4",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/ingest": "22.3.4",
+ "@cumulus/message": "22.3.4",
"lodash": "^4.18.1"
},
"devDependencies": {
- "@cumulus/schemas": "22.3.3"
+ "@cumulus/schemas": "22.3.4"
}
}
diff --git a/tasks/orca-copy-to-archive-adapter/package.json b/tasks/orca-copy-to-archive-adapter/package.json
index bf6a733d8977..9a64907ae422 100644
--- a/tasks/orca-copy-to-archive-adapter/package.json
+++ b/tasks/orca-copy-to-archive-adapter/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/orca-copy-to-archive-adapter",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Adapter to invoke orca copy-to-archive lambda",
"main": "dist/index.js",
"private": true,
@@ -40,13 +40,13 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/logger": "22.3.3",
+ "@cumulus/logger": "22.3.4",
"lodash": "^4.18.1"
},
"devDependencies": {
- "@cumulus/schemas": "22.3.3"
+ "@cumulus/schemas": "22.3.4"
}
}
diff --git a/tasks/orca-recovery-adapter/package.json b/tasks/orca-recovery-adapter/package.json
index 6bbd06e90323..aeb7183a7e6e 100644
--- a/tasks/orca-recovery-adapter/package.json
+++ b/tasks/orca-recovery-adapter/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/orca-recovery-adapter",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Adapter to invoke orca recovery workflow",
"main": "dist/index.js",
"private": true,
@@ -40,14 +40,14 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/logger": "22.3.3",
- "@cumulus/message": "22.3.3",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/message": "22.3.4",
"lodash": "^4.18.1"
},
"devDependencies": {
- "@cumulus/schemas": "22.3.3"
+ "@cumulus/schemas": "22.3.4"
}
}
diff --git a/tasks/parse-pdr/package.json b/tasks/parse-pdr/package.json
index 9fa70ba072a6..ca8e583c8f71 100644
--- a/tasks/parse-pdr/package.json
+++ b/tasks/parse-pdr/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/parse-pdr",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Download and Parse a given PDR",
"license": "Apache-2.0",
"main": "index.js",
@@ -34,18 +34,18 @@
"failFast": true
},
"dependencies": {
- "@cumulus/api-client": "22.3.3",
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/collection-config-store": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/api-client": "22.3.4",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/collection-config-store": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/errors": "22.3.3",
- "@cumulus/ingest": "22.3.3",
- "@cumulus/logger": "22.3.3",
- "@cumulus/pvl": "22.3.3",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/ingest": "22.3.4",
+ "@cumulus/logger": "22.3.4",
+ "@cumulus/pvl": "22.3.4",
"lodash": "^4.18.1"
},
"devDependencies": {
- "@cumulus/test-data": "22.3.3"
+ "@cumulus/test-data": "22.3.4"
}
}
diff --git a/tasks/pdr-cleanup/package.json b/tasks/pdr-cleanup/package.json
index 0d4981efbe6a..04153e5c16a1 100644
--- a/tasks/pdr-cleanup/package.json
+++ b/tasks/pdr-cleanup/package.json
@@ -1,7 +1,7 @@
{
"name": "@cumulus/pdr-cleanup",
"private": true,
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "This task is for cleaning up PDRs after a successful ingest",
"homepage": "https://github.com/nasa/cumulus/tree/master/tasks/pdr-cleanup",
"repository": {
diff --git a/tasks/pdr-cleanup/pyproject.toml b/tasks/pdr-cleanup/pyproject.toml
index 1a5e8d99a307..a9aea455d502 100644
--- a/tasks/pdr-cleanup/pyproject.toml
+++ b/tasks/pdr-cleanup/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "pdr-cleanup"
-version = "22.3.3"
+version = "22.3.4"
description = "This task is for cleaning up PDRs after a successful ingest"
readme = "README.md"
requires-python = ">=3.12.0"
diff --git a/tasks/pdr-cleanup/uv.lock b/tasks/pdr-cleanup/uv.lock
index 9a67340b746a..ce268daa6371 100644
--- a/tasks/pdr-cleanup/uv.lock
+++ b/tasks/pdr-cleanup/uv.lock
@@ -242,7 +242,7 @@ wheels = [
[[package]]
name = "pdr-cleanup"
-version = "22.3.3"
+version = "22.3.4"
source = { virtual = "." }
dependencies = [
{ name = "boto3" },
diff --git a/tasks/pdr-status-check/package.json b/tasks/pdr-status-check/package.json
index 008055930216..1a070aefed15 100644
--- a/tasks/pdr-status-check/package.json
+++ b/tasks/pdr-status-check/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/pdr-status-check",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Checks execution status of granules in a PDR",
"main": "index.js",
"directories": {
@@ -35,9 +35,9 @@
"failFast": true
},
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/errors": "22.3.3"
+ "@cumulus/errors": "22.3.4"
}
}
diff --git a/tasks/post-to-cmr/package.json b/tasks/post-to-cmr/package.json
index f08a0d49231c..ce1a770f5595 100644
--- a/tasks/post-to-cmr/package.json
+++ b/tasks/post-to-cmr/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/post-to-cmr",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Post a given granule to CMR",
"main": "index.js",
"directories": {
@@ -36,17 +36,17 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/cmrjs": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/cmrjs": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/errors": "22.3.3",
- "@cumulus/launchpad-auth": "22.3.3",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/launchpad-auth": "22.3.4",
"lodash": "^4.18.1",
"p-map": "^4.0.0"
},
"devDependencies": {
- "@cumulus/cmr-client": "22.3.3",
- "@cumulus/schemas": "22.3.3"
+ "@cumulus/cmr-client": "22.3.4",
+ "@cumulus/schemas": "22.3.4"
}
}
diff --git a/tasks/queue-granules/package.json b/tasks/queue-granules/package.json
index 1751fa88d2bf..a0235d5faf56 100644
--- a/tasks/queue-granules/package.json
+++ b/tasks/queue-granules/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/queue-granules",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Add discovered granules to the queue",
"main": "dist/src/index.js",
"directories": {
@@ -46,12 +46,12 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/api-client": "22.3.3",
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/api-client": "22.3.4",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/ingest": "22.3.3",
- "@cumulus/message": "22.3.3",
+ "@cumulus/ingest": "22.3.4",
+ "@cumulus/message": "22.3.4",
"lodash": "^4.18.1",
"p-map": "^4.0.0"
}
diff --git a/tasks/queue-pdrs/package.json b/tasks/queue-pdrs/package.json
index 590ba49c4f6f..774376aa0c23 100644
--- a/tasks/queue-pdrs/package.json
+++ b/tasks/queue-pdrs/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/queue-pdrs",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Add discovered PDRs to a queue",
"main": "index.js",
"directories": {
@@ -35,11 +35,11 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/ingest": "22.3.3",
- "@cumulus/message": "22.3.3",
+ "@cumulus/ingest": "22.3.4",
+ "@cumulus/message": "22.3.4",
"lodash": "^4.18.1"
}
}
diff --git a/tasks/queue-workflow/package.json b/tasks/queue-workflow/package.json
index cc38cfe007b5..97aeed8d4e1c 100644
--- a/tasks/queue-workflow/package.json
+++ b/tasks/queue-workflow/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/queue-workflow",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Add workflow to the queue",
"main": "index.js",
"directories": {
@@ -35,11 +35,11 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/ingest": "22.3.3",
- "@cumulus/message": "22.3.3",
+ "@cumulus/ingest": "22.3.4",
+ "@cumulus/message": "22.3.4",
"lodash": "^4.18.1"
}
}
diff --git a/tasks/send-pan/package.json b/tasks/send-pan/package.json
index 29e64ddcdd6b..6fa6bbefea81 100644
--- a/tasks/send-pan/package.json
+++ b/tasks/send-pan/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/send-pan",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Sends a PAN response after parsing a PDR.",
"main": "dist/index.js",
"private": true,
@@ -40,15 +40,15 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/api": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/api": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/ingest": "22.3.3",
- "@cumulus/logger": "22.3.3",
+ "@cumulus/ingest": "22.3.4",
+ "@cumulus/logger": "22.3.4",
"got": "^11.8.5"
},
"devDependencies": {
- "@cumulus/aws-client": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
"url-join": "^4.0.0"
}
}
diff --git a/tasks/sf-sqs-report/package.json b/tasks/sf-sqs-report/package.json
index cf876f25c56e..53443f189c24 100644
--- a/tasks/sf-sqs-report/package.json
+++ b/tasks/sf-sqs-report/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/sf-sqs-report",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Sends an incoming Cumulus message to SQS",
"main": "index.js",
"directories": {
@@ -36,11 +36,11 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
"lodash": "^4.18.1"
},
"devDependencies": {
- "@cumulus/common": "22.3.3"
+ "@cumulus/common": "22.3.4"
}
}
diff --git a/tasks/sync-granule/package.json b/tasks/sync-granule/package.json
index 504e940c1d19..91bc7a982721 100644
--- a/tasks/sync-granule/package.json
+++ b/tasks/sync-granule/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/sync-granule",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Download a given granule",
"main": "index.js",
"directories": {
@@ -40,21 +40,21 @@
"failFast": true
},
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/collection-config-store": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/collection-config-store": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/errors": "22.3.3",
- "@cumulus/ingest": "22.3.3",
- "@cumulus/message": "22.3.3",
- "@cumulus/types": "22.3.3",
+ "@cumulus/errors": "22.3.4",
+ "@cumulus/ingest": "22.3.4",
+ "@cumulus/message": "22.3.4",
+ "@cumulus/types": "22.3.4",
"lodash": "^4.18.1",
"p-map": "^2.1.0",
"uuid": "^11.1.1"
},
"devDependencies": {
- "@cumulus/schemas": "22.3.3",
- "@cumulus/sftp-client": "22.3.3",
- "@cumulus/test-data": "22.3.3"
+ "@cumulus/schemas": "22.3.4",
+ "@cumulus/sftp-client": "22.3.4",
+ "@cumulus/test-data": "22.3.4"
}
}
diff --git a/tasks/test-processing/package.json b/tasks/test-processing/package.json
index 84c6c9687e93..0f740ae8e93d 100644
--- a/tasks/test-processing/package.json
+++ b/tasks/test-processing/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/test-processing",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Fake processing task used for integration tests",
"main": "index.js",
"homepage": "https://github.com/nasa/cumulus/tree/master/tasks/test-processing",
@@ -24,8 +24,8 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/integration-tests": "22.3.3"
+ "@cumulus/integration-tests": "22.3.4"
}
}
diff --git a/tasks/update-cmr-access-constraints/package.json b/tasks/update-cmr-access-constraints/package.json
index fcd9ec267a94..487c8bbc6474 100644
--- a/tasks/update-cmr-access-constraints/package.json
+++ b/tasks/update-cmr-access-constraints/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/update-cmr-access-constraints",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Updates CMR metadata to set access constraints",
"author": "Cumulus Authors",
"license": "Apache-2.0",
@@ -37,13 +37,13 @@
"failFast": true
},
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/cmrjs": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/cmrjs": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
"lodash": "^4.18.1"
},
"devDependencies": {
- "@cumulus/common": "22.3.3",
- "@cumulus/schemas": "22.3.3"
+ "@cumulus/common": "22.3.4",
+ "@cumulus/schemas": "22.3.4"
}
}
diff --git a/tasks/update-granules-cmr-metadata-file-links/package.json b/tasks/update-granules-cmr-metadata-file-links/package.json
index 4cfd8b5e5a5a..7157c03efbdd 100644
--- a/tasks/update-granules-cmr-metadata-file-links/package.json
+++ b/tasks/update-granules-cmr-metadata-file-links/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/update-granules-cmr-metadata-file-links",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Update CMR metadata files with correct online access urls and etags and transfer etag info to granules' CMR files",
"main": "index.js",
"directories": {
@@ -40,15 +40,15 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3",
- "@cumulus/cmrjs": "22.3.3",
- "@cumulus/common": "22.3.3",
+ "@cumulus/aws-client": "22.3.4",
+ "@cumulus/cmrjs": "22.3.4",
+ "@cumulus/common": "22.3.4",
"@cumulus/cumulus-message-adapter-js": "2.4.0",
- "@cumulus/distribution-utils": "22.3.3",
- "@cumulus/logger": "22.3.3",
+ "@cumulus/distribution-utils": "22.3.4",
+ "@cumulus/logger": "22.3.4",
"lodash": "^4.18.1"
},
"devDependencies": {
- "@cumulus/schemas": "22.3.3"
+ "@cumulus/schemas": "22.3.4"
}
}
diff --git a/tf-modules/ingest/package.json b/tf-modules/ingest/package.json
index 77a372fb9890..a59aa291a0a8 100644
--- a/tf-modules/ingest/package.json
+++ b/tf-modules/ingest/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/ingest-module",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Terraform module for data ingest related functionality",
"engines": {
"node": ">=22.21.1"
diff --git a/tf-modules/internal/cumulus-test-cleanup/package.json b/tf-modules/internal/cumulus-test-cleanup/package.json
index a1de94460acf..20b2702dc226 100644
--- a/tf-modules/internal/cumulus-test-cleanup/package.json
+++ b/tf-modules/internal/cumulus-test-cleanup/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/cumulus-test-cleanup",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Nightly cron job for cleaning up integration test artifacts",
"main": "index.js",
"engines": {
diff --git a/tf-modules/s3-replicator/package.json b/tf-modules/s3-replicator/package.json
index 17add6d43eab..153ccfa1cab6 100644
--- a/tf-modules/s3-replicator/package.json
+++ b/tf-modules/s3-replicator/package.json
@@ -1,6 +1,6 @@
{
"name": "@cumulus/s3-replicator",
- "version": "22.3.3",
+ "version": "22.3.4",
"description": "Replicate S3 Events to alternate bucket. Solves same-region replication.",
"engines": {
"node": ">=22.21.1"
@@ -25,10 +25,10 @@
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
- "@cumulus/aws-client": "22.3.3"
+ "@cumulus/aws-client": "22.3.4"
},
"devDependencies": {
- "@cumulus/common": "22.3.3"
+ "@cumulus/common": "22.3.4"
},
"private": true
}
diff --git a/website/versioned_docs/version-v22.3.4/README.md b/website/versioned_docs/version-v22.3.4/README.md
new file mode 100644
index 000000000000..e5dab16cdae4
--- /dev/null
+++ b/website/versioned_docs/version-v22.3.4/README.md
@@ -0,0 +1,36 @@
+---
+id: cumulus-docs-readme
+slug: /
+title: Introduction
+hide_title: false
+---
+
+This Cumulus project seeks to address the existing need for a “native” cloud-based data ingest, archive, distribution, and management system that can be used for all future Earth Observing System Data and Information System (EOSDIS) data streams via the development and implementation of Cumulus. The term “native” implies that the system will leverage all components of a cloud infrastructure provided by the vendor for efficiency (in terms of both processing time and cost). Additionally, Cumulus will operate on future data streams involving satellite missions, aircraft missions, and field campaigns.
+
+This documentation includes both guidelines, examples, and source code docs. It is accessible at "(MOD09GQ\\..*)(\\.hdf|\\.cmr|_ndvi\\.jpg)"|Yes|The regular expression used to extract the granule ID from filenames. The first capturing group extracted from the filename by the regex will be used as the granule ID.|
+|sampleFileName|`"MOD09GQ.A2017025.h21v00.006.2017034065104.hdf"`|Yes|An example filename belonging to this collection|
+|files|`("replace"|"version"|"skip") determines granule duplicate handling scheme|
+|ignoreFilesConfigForDiscovery|`false` (default)|No|By default, during discovery only files that match one of the regular expressions in this collection's `files` attribute (see above) are ingested. Setting this to `true` will ignore the `files` attribute during discovery, meaning that all files for a granule (i.e., all files with filenames matching `granuleIdExtraction`) will be ingested even when they don't match a regular expression in the `files` attribute at _discovery_ time. (NOTE: this attribute does not appear in the example file, but is listed here for completeness.)
+|process|`"modis"`|No|Example options for this are found in the ChooseProcess step definition in [the IngestAndPublish workflow definition](https://github.com/nasa/cumulus/tree/master/example/cumulus-tf/ingest_and_publish_granule_workflow.tf)|
+|meta|`("ENABLED"|"DISABLED") whether or not the rule will be active. Defaults to `"ENABLED"`.|
+|queueUrl|`https://sqs.us-east-1.amazonaws.com/1234567890/queue-name`|No|URL for SQS queue that will be used to schedule workflows for this rule
+|tags|`["kinesis", "podaac"]`|No|An array of strings that can be used to simplify search|
+
+#### collection-object
+
+|Key |Value |Required|Description|
+|:---:|:-----:|:------:|-----------|
+|name|`"L2_HR_PIXC"`|Yes|Name of a collection defined/configured in the Collections dashboard page|
+|version|`"000"`|Yes|Version number of a collection defined/configured in the Collections dashboard page|
+
+#### meta-object
+
+|Key |Value |Required|Description|
+|:---:|:-----:|:------:|-----------|
+|retries|`3`|No|Number of retries on errors, for sqs-type rule only. Defaults to 3.|
+|visibilityTimeout|`900`|No|VisibilityTimeout in seconds for the inflight messages, for sqs-type rule only. Defaults to the visibility timeout of the SQS queue when the rule is created.|
+
+#### rule-object
+
+|Key|Value|Required|Description|
+|:---:|:-----:|:------:|-----------|
+|type|`"kinesis"`|Yes|("onetime"|"scheduled"|"kinesis"|"sns"|"sqs") type of scheduling/workflow kick-off desired|
+|value|`