diff --git a/CHANGELOG.md b/CHANGELOG.md index ee5049e..0e7604c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.6.0](https://github.com/lzwme/fe-utils/compare/v1.5.10...v1.6.0) (2024-01-16) + + +### Features + +* 新增基于 fetch 的通用 API 请求简易封装类 ([82a1e83](https://github.com/lzwme/fe-utils/commit/82a1e834de8f6caf547536a4bd854f24c46e65e4)) +* **cookie:** 新增 cookie 解析相关方法 ([9902d02](https://github.com/lzwme/fe-utils/commit/9902d02cc0d9d874c0b087b8fa65adbd13a9e1c0)) +* **Logger:** 增加 trace 日志级别,用于调试跟踪更细粒度的日志 ([eddf027](https://github.com/lzwme/fe-utils/commit/eddf02734d11db77d06003a15cd5912cb750c544)) + ### [1.5.10](https://github.com/lzwme/fe-utils/compare/v1.5.9...v1.5.10) (2024-01-08) diff --git a/package.json b/package.json index 47f0875..a35b7ad 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@lzwme/fe-utils", "description": "前端 node、web 项目常用工具函数集合。", - "version": "1.5.10", + "version": "1.6.0", "main": "cjs/index.js", "module": "esm/index.js", "typings": "cjs/index.d.ts", @@ -66,24 +66,24 @@ "@jest/core": "^29", "@jest/types": "^29", "@lzwme/fed-lint-helper": "^2.5.1", - "@types/eslint": "^8.56.1", + "@types/eslint": "^8.56.2", "@types/jest": "^29.5.11", "@types/micromatch": "^4.0.6", - "@types/node": "^20.10.7", - "@typescript-eslint/eslint-plugin": "^6.18.0", - "@typescript-eslint/parser": "^6.18.0", + "@types/node": "^20.11.3", + "@typescript-eslint/eslint-plugin": "^6.19.0", + "@typescript-eslint/parser": "^6.19.0", "compressing": "^1.10.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", - "eslint-plugin-jest": "^27.6.1", - "eslint-plugin-prettier": "^5.1.2", + "eslint-plugin-jest": "^27.6.3", + "eslint-plugin-prettier": "^5.1.3", "eslint-plugin-unicorn": "^50.0.1", "husky": "^8.0.3", "jest": "^29.7.0", "json5": "^2.2.3", "micromatch": "^4.0.5", "npm-run-all": "^4.1.5", - "prettier": "^3.1.1", + "prettier": "^3.2.2", "standard-version": "^9.5.0", "ts-jest": "^29.1.1", "ts-node": "^10.9.2",