Conversation
# Conflicts: # serverless/src/publisher/__tests__/handler.test.js # serverless/src/publisher/handler.js # serverless/src/shared/csvComparator.js # serverless/src/shared/downloadConcepts.js
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #99 +/- ##
=======================================
Coverage 99.67% 99.67%
=======================================
Files 154 153 -1
Lines 3052 3070 +18
Branches 748 737 -11
=======================================
+ Hits 3042 3060 +18
Misses 9 9
Partials 1 1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
added 2 commits
April 9, 2026 16:25
htranho
reviewed
Apr 10, 2026
htranho
approved these changes
Apr 10, 2026
eudoroolivares2016
approved these changes
Apr 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
What is the feature?
Adds the remaining KMS-660 work on top of what is already in main: publish keyword events to SNS after a successful publish, support the downstream local event flow in LocalStack, and harden the local draft/Redis behavior needed to test that flow reliably.
What is the Solution?
This branch changes only the delta beyond main:
EventBridge -> publisher
EventBridge -> primeConceptsCache
SNS/SQS -> cmrKeywordEventsListener
What areas of the application does this impact?
Testing
Reproduction steps
Start local dependencies and app:
Create a unique draft keyword:
./scripts/local/create_unique_keyword.shPublish:
curl -X POST 'http://127.0.0.1:3013/publish?name=v1.0.0'Verify in logs that:
publisher runs
keyword events are published after publish success
primeConceptsCache is invoked
cmrKeywordEventsListener is invoked
Re-run publish without new draft changes and verify the no-op path skips SNS publication.
Checklist