json-diff-ts 4.5.0 → 4.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # json-diff-ts
2
2
 
3
- ![Master CI/Publish](https://github.com/ltwlf/json-diff-ts/workflows/Master%20CI/Publish/badge.svg)
3
+ [![CI](https://github.com/ltwlf/json-diff-ts/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/ltwlf/json-diff-ts/actions/workflows/ci.yml)
4
4
  [![Known Vulnerabilities](https://snyk.io/test/github/ltwlf/json-diff-ts/badge.svg?targetFile=package.json)](https://snyk.io/test/github/ltwlf/json-diff-ts?targetFile=package.json)
5
5
  [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=ltwlf_json-diff-ts&metric=alert_status)](https://sonarcloud.io/dashboard?id=ltwlf_json-diff-ts)
6
6
 
@@ -188,6 +188,7 @@ const value = jsonPath.query(data, '$.characters[?(@.id=="LUK")].name');
188
188
 
189
189
  ## Release Notes
190
190
 
191
+ - **v4.5.1:** Updated package dependencies
191
192
  - **v4.5.0:** Switched internal utilities from lodash to es-toolkit/compat for a smaller bundle size
192
193
  - **v4.4.0:** Fixed Date-to-string diff when `treatTypeChangeAsReplace` is false
193
194
  - **v4.3.0:** Enhanced functionality:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-diff-ts",
3
- "version": "4.5.0",
3
+ "version": "4.5.1",
4
4
  "description": "A JSON diff tool for JavaScript written in TypeScript.",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -39,16 +39,16 @@
39
39
  },
40
40
  "homepage": "https://github.com/ltwlf/json-diff-ts#readme",
41
41
  "devDependencies": {
42
- "@eslint/js": "^9.8.0",
43
- "@jest/globals": "^29.7.0",
44
- "@types/jest": "^29.5.7",
45
- "eslint": "^8.56.0",
46
- "jest": "^29.7.0",
42
+ "@eslint/js": "^9.29.0",
43
+ "@jest/globals": "^30.0.0",
44
+ "@types/jest": "^30.0.0",
45
+ "eslint": "^9.29.0",
46
+ "jest": "^30.0.0",
47
47
  "prettier": "^3.0.3",
48
- "ts-jest": "^29.0.5",
49
- "tsup": "^8.0.2",
50
- "typescript": "^5.3.2",
51
- "typescript-eslint": "^8.31.0"
48
+ "ts-jest": "^29.4.0",
49
+ "tsup": "^8.5.0",
50
+ "typescript": "^5.8.3",
51
+ "typescript-eslint": "^8.34.0"
52
52
  },
53
53
  "dependencies": {
54
54
  "es-toolkit": "^1.39.3"