Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: shelfio/jest-dynamodb
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bed8dfc27aba031f3bcbec4d1758996cb4fefc9c
Choose a base ref
..
head repository: shelfio/jest-dynamodb
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 24f369b50eac2ec4b222429a87a09c0a08677793
Choose a head ref
Showing with 19 additions and 10 deletions.
  1. +7 −4 .circleci/config.yml
  2. +1 −0 .nvmrc
  3. +5 −0 CHANGELOG.md
  4. +6 −6 package.json
11 changes: 7 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
version: 2.1

parameters:
node_docker_image:
type: string
default: cimg/node:22.14.0-browsers

jobs:
test_without_db:
working_directory: ~/repo
docker:
- image: cimg/node:20.18.1-browsers

- image: << parameters.node_docker_image >>
steps:
- checkout
- run: yarn
@@ -15,9 +19,8 @@ jobs:
test_with_db:
working_directory: ~/repo
docker:
- image: cimg/node:20.18.1-browsers
- image: << parameters.node_docker_image >>
- image: circleci/dynamodb

steps:
- checkout
- run: yarn
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v22.13.0
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Breaking Changes

## 4.0.0

- Switched `node` version `18`->`22`
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shelf/jest-dynamodb",
"version": "3.4.4",
"version": "4.0.0",
"description": "Run your tests using Jest & DynamoDB local",
"keywords": [
"dynamodb",
@@ -56,24 +56,24 @@
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.7",
"@babel/core": "7.26.9",
"@shelf/babel-config": "1.2.0",
"@shelf/eslint-config": "4.2.1",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.1.0",
"@types/aws-sdk": "2.7.4",
"@types/cwd": "^0.10.2",
"@types/jest": "29.5.14",
"@types/node": "20",
"eslint": "9.19.0",
"@types/node": "22",
"eslint": "9.21.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "13.3.0",
"prettier": "3.4.2",
"prettier": "3.5.2",
"typescript": "5.7.3"
},
"engines": {
"node": ">=20"
"node": ">=22"
},
"publishConfig": {
"access": "public"