Merge remote-tracking branch 'origin/v2-dev' into v2-dev

This commit is contained in:
xiaojunnuo
2024-11-11 13:44:08 +08:00
68 changed files with 945 additions and 128 deletions

View File

@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.27.2](https://github.com/certd/certd/compare/v1.27.1...v1.27.2) (2024-11-08)
### Performance Improvements
* 支持公共cname服务 ([3c919ee](https://github.com/certd/certd/commit/3c919ee5d1aef5d26cf3620a7c49d920786bc941))
## [1.27.1](https://github.com/certd/certd/compare/v1.27.0...v1.27.1) (2024-11-04)
### Performance Improvements

View File

@@ -1 +1 @@
21:35
23:43

View File

@@ -1,7 +1,7 @@
{
"name": "@certd/basic",
"private": false,
"version": "1.27.1",
"version": "1.27.2",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
@@ -40,8 +40,8 @@
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"typescript": "^5.4.2",
"tslib": "^2.8.1"
"tslib": "^2.8.1",
"typescript": "^5.4.2"
},
"gitHead": "1d8515bce0b3ce5ece84db53ca57cfbd0c3f4d5a"
"gitHead": "3a0178b2949083c770ed96a4122e4c0a5e0bcc11"
}

View File

@@ -1,4 +1,4 @@
import _ from "lodash-es";
import * as _ from 'lodash-es';
function isUnMergeable(srcValue: any) {
return srcValue != null && srcValue instanceof UnMergeable;
}