Skip to content

Commit

Permalink
Merge pull request #361 from NASA-IMPACT/iss358__cumulus_core_upgrade…
Browse files Browse the repository at this point in the history
…_to_18_2_0

Upgrade Cumulus from 18.1.0 to 18.2.0 - Part 2 of 2
  • Loading branch information
krisstanton authored May 17, 2024
2 parents 1f76041 + ab81393 commit 18e986a
Show file tree
Hide file tree
Showing 4 changed files with 1,429 additions and 237 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
"ResultWriter": {
"Resource": "arn:aws:states:::s3:putObject",
"Parameters": {
"Bucket.$": "$.[0].cumulus_meta.system_bucket",
"Bucket.$": "$[0].cumulus_meta.system_bucket",
"Prefix": "mapRun"
}
},
Expand Down
2 changes: 1 addition & 1 deletion config/helpers/cumulus_version_helper.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Terraspace::Project::CumulusVersionHelper
def cumulus_version
"v18.1.0"
"v18.2.0"
end
end
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "echo 'skipping: run-s build test:*'",
"test:lint": "echo 'skipping: eslint src --ext .ts'",
"test:prettier": "echo 'skipping: prettier \"src/**/*.ts\" --check'",
"test:unit": "echo 'skipping: nyc --silent ava --node-arguments SQ--trace-warningsSQ'",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --check",
"test:unit": "nyc --silent ava --node-arguments '--trace-warnings'",
"check-cli": "run-s test diff-integration-tests check-integration-tests",
"check-integration-tests": "run-s check-integration-test:*",
"diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'",
Expand Down Expand Up @@ -60,9 +60,9 @@
"@aws-sdk/lib-dynamodb": "^3.370.0",
"@aws-sdk/lib-storage": "^3.370.0",
"@aws-sdk/types": "^3.370.0",
"@cumulus/aws-client": "18.1.0",
"@cumulus/cmrjs": "18.1.0",
"@cumulus/common": "18.1.0",
"@cumulus/aws-client": "18.2.0",
"@cumulus/cmrjs": "18.2.0",
"@cumulus/common": "18.2.0",
"@cumulus/cumulus-message-adapter-js": "2.0.4",
"@smithy/util-stream": "^2.0.17",
"date-fns": "^3.0.6",
Expand All @@ -78,8 +78,8 @@
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@aws-sdk/client-dynamodb": "^3.370.0",
"@cumulus/api-client": "18.1.0",
"@cumulus/types": "18.1.0",
"@cumulus/api-client": "18.2.0",
"@cumulus/types": "18.2.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@tsconfig/node16": "^16.1.1",
"@types/aws-lambda": "^8.10.85",
Expand Down
Loading

0 comments on commit 18e986a

Please sign in to comment.