Skip to content

Commit

Permalink
Update package.json keywords, add engines field, add changelog
Browse files Browse the repository at this point in the history
Update readme, links
  • Loading branch information
ryanblock committed Aug 29, 2023
1 parent 1f83210 commit 84a774f
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dynalite

[![Build Status](https://api.travis-ci.org/mhart/dynalite.png?branch=master)](https://travis-ci.org/github/mhart/dynalite)
[![GitHub CI status](https://github.com/architect/dynalite/workflows/Node%20CI/badge.svg)](https://github.com/architect/dynalite/actions?query=workflow%3A%22Node+CI%22)

An implementation of Amazon's DynamoDB built on LevelDB
(well, [@rvagg](https://github.com/rvagg)'s awesome [LevelUP](https://github.com/Level/levelup) to be precise)
Expand Down
26 changes: 26 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Dynalite changelog

---

## [4.0.0] 2023-tbd

Hello! After a bit of a hiatus, the [Architect team](https://github.com/architect/dynalite/issues/166) is pleased bring the first new Dynalite release in over two years!


### Changed

- [Breaking change] Introduced minimum Node.js version of >= 14; fixes [#169](https://github.com/architect/dynalite/issues/169)
- Changed license from MIT to Apache 2.0; see [#166](https://github.com/architect/dynalite/issues/166)
- Updated dependencies (which themselves dropped support for older versions of Node.js)
- Updated tests
- Added Architect Code of Conduct, new CI flow, etc.

---

## [3.2.2 (and prior)]

This changelog was introduced as of 4.0. Big thanks to [@mhart](https://github.com/mhart) for creating and shepherding this project!

---

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if (argv.help) {
'--updateTableMs <ms> Amount of time tables stay in UPDATING state (default: 500)',
'--maxItemSizeKb <kb> Maximum item size (default: 400)',
'',
'Report bugs at github.com/mhart/dynalite/issues',
'Report bugs at github.com/architect/dynalite/issues',
].join('\n'))
}

Expand Down
26 changes: 16 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,9 @@
"test": "mocha --require should --reporter spec -t $([ $REMOTE ] && echo 30s || echo 4s)",
"coverage": "npx nyc@latest mocha --require should -t 4s"
},
"keywords": [
"dynamodb",
"mock",
"fake",
"test",
"aws",
"dynamo",
"leveldb"
],
"engines": {
"node": ">=14"
},
"author": "Michael Hart <michael.hart.au@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
Expand All @@ -46,5 +40,17 @@
"mocha": "^10.2.0",
"pegjs": "^0.10.0",
"should": "^13.2.3"
}
},
"keywords": [
"aws",
"amazon",
"cloud",
"dynamo",
"dynamodb",
"fake",
"leveldb",
"mock",
"serverless",
"test"
]
}

0 comments on commit 84a774f

Please sign in to comment.