Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release lambdas #664

Merged
merged 3 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions lambdas/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Howdju lambdas

This directory contains lamdba functions besies the main mono-lambda in
premiser--api.

The lambda functions in premiser-processing/lambda-functions should go here
(if we don't delete them entirely) since the lambdas in this subdirectory follow
more recent patterns.

## Releasing

Each package should define a `release` script based on `bin/release.sh`.

```sh
aws-vault exec user@howdju -- yarn run release
```
5 changes: 3 additions & 2 deletions lambdas/howdju-message-handler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "howdju-message-handler",
"version": "1.7.0",
"version": "1.8.0",
"description": "AWS Lambda function for handling SNS messages",
"main": "src/index.js",
"scripts": {
Expand Down Expand Up @@ -30,6 +30,7 @@
"howdju-test-common": "workspace:howdju-test-common",
"jest": "^29.3.1",
"prettier": "2.7.1",
"ts-node": "^10.9.1"
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}
2 changes: 1 addition & 1 deletion lambdas/proposition-tag-scorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "proposition-tag-scorer",
"version": "1.2.0",
"version": "1.3.0",
"description": "Scores tags for propositions",
"main": "index.ts",
"repository": "git@bitbucket.org:howdju/howdju.git",
Expand Down
1 change: 1 addition & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21858,6 +21858,7 @@ __metadata:
jest: "npm:^29.3.1"
prettier: "npm:2.7.1"
ts-node: "npm:^10.9.1"
typescript: "npm:^4.9.4"
languageName: unknown
linkType: soft

Expand Down
Loading