Skip to content

Commit 8966fbb

Browse files
committed
Updating documentation, changelog, and versions for release. Removing old development assets.
1 parent b47048a commit 8966fbb

File tree

6 files changed

+14
-23
lines changed

6 files changed

+14
-23
lines changed

.eslintrc.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log for aws-lambda-ses-forwarder
22

3+
## 6.0.0 [2025/1/11]
4+
5+
- Refactoring code to use AWS SDK for JavaScript v3, which is included with the
6+
Node.js 18, 20, and 22 Lambda runtimes.
7+
- Upgrading ESLint and Mocha development dependencies.
8+
9+
### Upgrade Notes
10+
11+
- This version is compatible with the **Node.js 18, 20, or 22** Lambda runtime.
12+
313
## 5.1.0 [2023/10/9]
414

515
- Updating documentation about using Node.js 16 or 18 AWS Lambda runtimes.

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# AWS Lambda SES Email Forwarder
22

3-
[![npm version](https://badge.fury.io/js/aws-lambda-ses-forwarder.svg)](https://www.npmjs.com/package/aws-lambda-ses-forwarder)
4-
[![Travis CI test status](https://travis-ci.org/arithmetric/aws-lambda-ses-forwarder.svg?branch=master)](https://travis-ci.org/arithmetric/aws-lambda-ses-forwarder)
5-
[![Test coverage status](https://coveralls.io/repos/github/arithmetric/aws-lambda-ses-forwarder/badge.svg?branch=master)](https://coveralls.io/github/arithmetric/aws-lambda-ses-forwarder?branch=master)
3+
[![npm version](https://img.shields.io/npm/v/aws-lambda-ses-forwarder)](https://www.npmjs.com/package/aws-lambda-ses-forwarder)
64

75
A Node.js script for AWS Lambda that uses the inbound/outbound capabilities of
86
AWS Simple Email Service (SES) to run a "serverless" email forwarding service.
@@ -59,7 +57,7 @@ the email forwarding mapping from original destinations to new destination.
5957
2. In AWS Lambda, add a new function and skip selecting a blueprint.
6058

6159
- Name the function "SesForwarder" and optionally give it a description. Ensure
62-
Runtime is set to Node.js 20.x.
60+
Runtime is set to Node.js 22.x. (Node.js 18.x and 20.x can also be used.)
6361

6462
- For the Lambda function code, either copy and paste the contents of
6563
`index.js` into the inline code editor or zip the contents of the repository

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"description": "Example implementation of aws-lambda-ses-forwarder.",
55
"main": "index.js",
66
"dependencies": {
7-
"aws-lambda-ses-forwarder": "^4.0.0"
7+
"aws-lambda-ses-forwarder": "^6.0.0"
88
}
99
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-lambda-ses-forwarder",
3-
"version": "5.1.0",
3+
"version": "6.0.0",
44
"description": "Serverless email forwarding using AWS Lambda and SES",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)