Skip to content

Commit

Permalink
Updating documentation, changelog, and versions for release. Removing…
Browse files Browse the repository at this point in the history
… old development assets.
  • Loading branch information
arithmetric committed Jan 11, 2025
1 parent b47048a commit 8966fbb
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 23 deletions.
3 changes: 0 additions & 3 deletions .eslintrc.js

This file was deleted.

14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log for aws-lambda-ses-forwarder

## 6.0.0 [2025/1/11]

- Refactoring code to use AWS SDK for JavaScript v3, which is included with the
Node.js 18, 20, and 22 Lambda runtimes.
- Upgrading ESLint and Mocha development dependencies.

### Upgrade Notes

- This version is compatible with the **Node.js 18, 20, or 22** Lambda runtime.

## 5.1.0 [2023/10/9]

- Updating documentation about using Node.js 16 or 18 AWS Lambda runtimes.
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# AWS Lambda SES Email Forwarder

[![npm version](https://badge.fury.io/js/aws-lambda-ses-forwarder.svg)](https://www.npmjs.com/package/aws-lambda-ses-forwarder)
[![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)
[![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)
[![npm version](https://img.shields.io/npm/v/aws-lambda-ses-forwarder)](https://www.npmjs.com/package/aws-lambda-ses-forwarder)

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

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

- For the Lambda function code, either copy and paste the contents of
`index.js` into the inline code editor or zip the contents of the repository
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"description": "Example implementation of aws-lambda-ses-forwarder.",
"main": "index.js",
"dependencies": {
"aws-lambda-ses-forwarder": "^4.0.0"
"aws-lambda-ses-forwarder": "^6.0.0"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-lambda-ses-forwarder",
"version": "5.1.0",
"version": "6.0.0",
"description": "Serverless email forwarding using AWS Lambda and SES",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 8966fbb

Please sign in to comment.