Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mahendraHegde committed Apr 27, 2024
1 parent d8103b5 commit 68eb785
Show file tree
Hide file tree
Showing 18 changed files with 749 additions and 662 deletions.
8 changes: 8 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,11 @@ Other packages in the monorepo are, click on the links to read detailed uses of
#### Contributing

Read more [here](./Contributing.md)


---
#### Release
1. pnpm changeset
2. commit changes
3. pnpm prepare:publish
4. pnpm publish -r
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"lint:fix": "eslint packages/**/*.ts --fix",
"format": "prettier --write .",
"build": "pnpm --filter @node-idempotency/* build",
"build:clean": "find packages/* -type d -name 'dist' -exec rm -rf {} \\;",
"typecheck": "pnpm --filter @node-idempotency/* typecheck",
"precommit": "pnpm build && pnpm format && pnpm lint:fix && pnpm test:e2e",
"prepare:publish": "pnpm changeset version && pnpm install && pnpm precommit"
Expand All @@ -37,27 +38,27 @@
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@nestjs/platform-express": "^10.3.3",
"@nestjs/testing": "^10.3.3",
"@nestjs/platform-express": "^10.3.8",
"@nestjs/testing": "^10.3.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"@types/node": "^20.12.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.3.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"supertest": "^6.3.4",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.12",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.2"
"typescript": "^5.4.5"
}
}
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @node-idempotency/core

## 1.0.7

### Patch Changes

- 9200b63: update dependencies to [email protected] vulnerability

## 1.0.6

### Patch Changes
Expand Down
1 change: 1 addition & 0 deletions packages/core/Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#### @node-idempotency/core

<i>makes any request idempotent.</i>

#### Why?
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@node-idempotency/core",
"version": "1.0.6",
"version": "1.0.7",
"description": "A Race-Condition free Node.js library that ensures idempotency for requests, preventing unintended duplicate operations.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -42,10 +42,10 @@
"author": "Mahendra Hegde",
"license": "MIT",
"devDependencies": {
"@node-idempotency/storage-adapter-memory": "1.0.1"
"@node-idempotency/storage-adapter-memory": "workspace:*"
},
"dependencies": {
"@node-idempotency/storage": "1.0.2"
"@node-idempotency/storage": "workspace:*"
},
"publishConfig": {
"access": "public"
Expand Down
10 changes: 10 additions & 0 deletions packages/plugin-express/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @node-idempotency/express

## 1.0.3

### Patch Changes

- 9200b63: update dependencies to [email protected] vulnerability
- Updated dependencies [9200b63]
- @node-idempotency/storage-adapter-memory@1.0.2
- @node-idempotency/shared@1.0.3
- @node-idempotency/core@1.0.7

## 1.0.2

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/plugin-express/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@node-idempotency/express",
"version": "1.0.2",
"version": "1.0.3",
"description": "Express middleware to provide Race-Condition free idempotency for HTTP requests, preventing unintended duplicate operations.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -46,10 +46,10 @@
},
"license": "MIT",
"dependencies": {
"@node-idempotency/core": "1.0.6",
"@node-idempotency/shared": "1.0.2",
"@node-idempotency/storage": "1.0.2",
"@node-idempotency/storage-adapter-memory": "1.0.1",
"@node-idempotency/core": "workspace:*",
"@node-idempotency/shared": "workspace:*",
"@node-idempotency/storage": "workspace:*",
"@node-idempotency/storage-adapter-memory": "workspace:*",
"express": "^4.19.2"
},
"devDependencies": {
Expand Down
10 changes: 10 additions & 0 deletions packages/plugin-fastify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @node-idempotency/fastify

## 1.0.3

### Patch Changes

- 9200b63: update dependencies to [email protected] vulnerability
- Updated dependencies [9200b63]
- @node-idempotency/storage-adapter-memory@1.0.2
- @node-idempotency/shared@1.0.3
- @node-idempotency/core@1.0.7

## 1.0.2

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/plugin-fastify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@node-idempotency/fastify",
"version": "1.0.2",
"version": "1.0.3",
"description": "fastify plugin that provides Race-Condition free idempotency for HTTP requests, preventing unintended duplicate operations.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -44,10 +44,10 @@
},
"license": "MIT",
"dependencies": {
"@node-idempotency/core": "1.0.6",
"@node-idempotency/shared": "1.0.2",
"@node-idempotency/storage": "1.0.2",
"@node-idempotency/storage-adapter-memory": "1.0.1",
"@node-idempotency/core": "workspace:*",
"@node-idempotency/shared": "workspace:*",
"@node-idempotency/storage": "workspace:*",
"@node-idempotency/storage-adapter-memory": "workspace:*",
"fastify": "^4.26.2",
"fastify-plugin": "^4.5.1"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/plugin-nestjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @node-idempotency/nestjs

## 1.0.4

### Patch Changes

- 9200b63: update dependencies to [email protected] vulnerability
- Updated dependencies [9200b63]
- @node-idempotency/shared@1.0.3
- @node-idempotency/core@1.0.7

## 1.0.3

### Patch Changes
Expand Down
14 changes: 7 additions & 7 deletions packages/plugin-nestjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@node-idempotency/nestjs",
"version": "1.0.3",
"version": "1.0.4",
"description": "Nestjs Plugin that provides Race-Condition free idempotency for HTTP requests, preventing unintended duplicate operations.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -44,17 +44,17 @@
},
"license": "MIT",
"dependencies": {
"@node-idempotency/core": "1.0.6",
"@node-idempotency/shared": "1.0.2",
"@node-idempotency/storage": "1.0.2"
"@node-idempotency/core": "workspace:*",
"@node-idempotency/shared": "workspace:*",
"@node-idempotency/storage": "workspace:*"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.3.3",
"@nestjs/core": "^9.0.0 || ^10.3.3",
"@nestjs/common": "^9.0.0 || ^10.3.8",
"@nestjs/core": "^9.0.0 || ^10.3.8",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/platform-fastify": "^10.3.3",
"@nestjs/platform-fastify": "^10.3.8",
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.2",
"fastify": "^4.26.2",
Expand Down
10 changes: 10 additions & 0 deletions packages/shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @node-idempotency/shared

## 1.0.3

### Patch Changes

- 9200b63: update dependencies to [email protected] vulnerability
- Updated dependencies [9200b63]
- @node-idempotency/storage-adapter-memory@1.0.2
- @node-idempotency/storage-adapter-redis@1.0.2
- @node-idempotency/core@1.0.7

## 1.0.2

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@node-idempotency/shared",
"version": "1.0.2",
"version": "1.0.3",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand All @@ -15,10 +15,10 @@
"keywords": [],
"author": "Mahendra Hegde",
"dependencies": {
"@node-idempotency/core": "1.0.6",
"@node-idempotency/storage": "1.0.2",
"@node-idempotency/storage-adapter-memory": "1.0.1",
"@node-idempotency/storage-adapter-redis": "1.0.1"
"@node-idempotency/core": "workspace:*",
"@node-idempotency/storage": "workspace:*",
"@node-idempotency/storage-adapter-memory": "workspace:*",
"@node-idempotency/storage-adapter-redis": "workspace:*"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 6 additions & 0 deletions packages/storage-adapter-memory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @node-idempotency/storage-adapter-memory

## 1.0.2

### Patch Changes

- 9200b63: update dependencies to [email protected] vulnerability

## 1.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/storage-adapter-memory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@node-idempotency/storage-adapter-memory",
"version": "1.0.1",
"version": "1.0.2",
"description": "in memory storage adapter for node-idempotency",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand All @@ -25,7 +25,7 @@
"author": "Mahendra Hegde",
"license": "MIT",
"dependencies": {
"@node-idempotency/storage": "1.0.2"
"@node-idempotency/storage": "workspace:*"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 6 additions & 0 deletions packages/storage-adapter-redis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @node-idempotency/storage-adapter-redis

## 1.0.2

### Patch Changes

- 9200b63: update dependencies to [email protected] vulnerability

## 1.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/storage-adapter-redis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@node-idempotency/storage-adapter-redis",
"version": "1.0.1",
"version": "1.0.2",
"description": "redis storage adapter for node-idempotency",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -31,7 +31,7 @@
"author": "Mahendra Hegde",
"license": "MIT",
"dependencies": {
"@node-idempotency/storage": "1.0.2",
"@node-idempotency/storage": "workspace:*",
"redis": "^4.6.13"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 68eb785

Please sign in to comment.