diff --git a/.gitignore b/.gitignore index 2037c22..7bc6dc2 100644 --- a/.gitignore +++ b/.gitignore @@ -219,4 +219,5 @@ $RECYCLE.BIN/ libs/**/package-lock.json +libs/**/pnpm-lock.yaml TODO.md \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e0e3de..22d0274 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.1] - 2023-10-14 + +### Updated + +- Improved documentation +- Update `devDependencies` + ## [0.1.0] - 2023-10-02 ### Updated diff --git a/README.md b/README.md index 3e73fc2..5d615d6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # NestHttpProblemDetails(RFC-7807) -Make NestJS return [RFC-7807]((https://datatracker.ietf.org/doc/html/rfc7807))-compliant HTTP problem details. +Make NestJS return [RFC-7807](https://datatracker.ietf.org/doc/html/rfc7807)-compliant HTTP problem details. ## Table of contents: @@ -21,7 +21,7 @@ Make NestJS return [RFC-7807]((https://datatracker.ietf.org/doc/html/rfc7807))-c ### [`nest-problem-details-filter`](./libs/nest-problem-details-filter/) -A NestJS exception filter to convert JSON responses to [RFC-7807]((https://datatracker.ietf.org/doc/html/rfc7807))-compliant format. This standardizes HTTP responses and sets `Content-Type` to `application/problem+json` +A NestJS exception filter to convert JSON responses to [RFC-7807](https://datatracker.ietf.org/doc/html/rfc7807)-compliant format. This standardizes HTTP responses and sets `Content-Type` to `application/problem+json` #### Usage diff --git a/libs/nest-problem-details-filter/README.md b/libs/nest-problem-details-filter/README.md index d387e34..a35242a 100644 --- a/libs/nest-problem-details-filter/README.md +++ b/libs/nest-problem-details-filter/README.md @@ -1,6 +1,6 @@ # NestHttpProblemDetails(RFC-7807) -A NestJS exception filter to convert JSON responses to [RFC-7807]((https://datatracker.ietf.org/doc/html/rfc7807))-compliant format. This standardizes HTTP responses and sets `Content-Type` to `application/problem+json` +A NestJS exception filter to convert JSON responses to [RFC-7807](https://datatracker.ietf.org/doc/html/rfc7807)-compliant format. This standardizes HTTP responses and sets `Content-Type` to `application/problem+json` #### Usage diff --git a/libs/nest-problem-details-filter/package.json b/libs/nest-problem-details-filter/package.json index 6032cd6..69f2454 100644 --- a/libs/nest-problem-details-filter/package.json +++ b/libs/nest-problem-details-filter/package.json @@ -1,6 +1,6 @@ { "name": "nest-problem-details-filter", - "version": "0.1.0", + "version": "0.1.1", "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -20,7 +20,7 @@ "build": "nest build", "prepack": "rm -rf dist && npm run build", "prepublish": "rm -rf dist && npm run build", - "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", + "format": "prettier --write \"src/**/*.ts\"", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "lint:fix": "npm run lint -- --fix", "test": "jest", @@ -28,28 +28,28 @@ "test:cov": "jest --coverage" }, "devDependencies": { - "@nestjs/common": "^10.0.0", - "@nestjs/core": "^10.0.0", + "@nestjs/common": "^10.2.7", + "@nestjs/core": "^10.2.7", "reflect-metadata": "^0.1.13", "rxjs": "^7.8.1", - "@nestjs/cli": "^10.0.0", - "@nestjs/schematics": "^10.0.0", - "@nestjs/testing": "^10.0.0", - "@types/jest": "^29.5.2", - "@types/node": "^20.3.1", - "@typescript-eslint/eslint-plugin": "^5.59.11", - "@typescript-eslint/parser": "^5.59.11", - "eslint": "^8.42.0", - "eslint-config-prettier": "^8.8.0", - "eslint-plugin-prettier": "^4.2.1", - "jest": "^29.5.0", - "prettier": "^2.8.8", + "@nestjs/cli": "^10.1.18", + "@nestjs/schematics": "^10.0.2", + "@nestjs/testing": "^10.2.7", + "@types/jest": "^29.5.5", + "@types/node": "^20.8.6", + "@typescript-eslint/eslint-plugin": "^6.7.5", + "@typescript-eslint/parser": "^6.7.5", + "eslint": "^8.51.0", + "eslint-config-prettier": "^9.0.0", + "eslint-plugin-prettier": "^5.0.1", + "jest": "^29.7.0", + "prettier": "^3.0.3", "source-map-support": "^0.5.21", - "ts-jest": "^29.1.0", - "ts-loader": "^9.4.3", + "ts-jest": "^29.1.1", + "ts-loader": "^9.5.0", "ts-node": "^10.9.1", "tsconfig-paths": "^4.2.0", - "typescript": "^5.1.3" + "typescript": "^5.2.2" }, "jest": { "moduleFileExtensions": [