Skip to content

Commit 403a656

Browse files
committed
Version 5.5.1
1 parent bda5055 commit 403a656

4 files changed

Lines changed: 16 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased][unreleased]
44

5+
## [5.5.1][] - 2026-03-09
6+
7+
- Fix generateUUID: randomUUID call from crypto
8+
- Updated dependencies
9+
- Rebuild with mew bundler for web
10+
- Fixed README: getX509 → getX509names, Pool.next exclusive parameter
11+
- Added metautil.js to package files for npm publish
12+
513
## [5.5.0][] - 2026-02-09
614

715
- Fixed metautil.d.ts: getX509names, Pool.next
@@ -337,7 +345,8 @@
337345
See this link for 2.2.0 and all previous versions:
338346
https://github.com/metarhia/common/blob/master/CHANGELOG.md
339347

340-
[unreleased]: https://github.com/metarhia/metautil/compare/v5.5.0...HEAD
348+
[unreleased]: https://github.com/metarhia/metautil/compare/v5.5.1...HEAD
349+
[5.5.1]: https://github.com/metarhia/metautil/compare/v5.5.0...v5.5.1
341350
[5.5.0]: https://github.com/metarhia/metautil/compare/v5.4.0...v5.5.0
342351
[5.4.0]: https://github.com/metarhia/metautil/compare/v5.3.0...v5.4.0
343352
[5.3.0]: https://github.com/metarhia/metautil/compare/v5.2.5...v5.3.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ try {
181181
- `hashPassword(password: string): Promise<string>`
182182
- `validatePassword(password: string, serHash: string): Promise<boolean>`
183183
- `md5(fileName: string): Promise<string>`
184-
- `getX509(cert: X509Certificate): Strings`
184+
- `getX509names(cert: X509Certificate): Strings`
185185

186186
```js
187187
const x509 = new crypto.X509Certificate(cert);
@@ -270,7 +270,7 @@ const domains = metautil.getX509names(x509);
270270
- `size: number`
271271
- `available: number`
272272
- `timeout: number`
273-
- `next(): Promise<unknown>`
273+
- `next(exclusive?: boolean): Promise<unknown>`
274274
- `add(item: unknown): void`
275275
- `capture(): Promise<unknown>`
276276
- `release(item: unknown): void`

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metautil",
3-
"version": "5.5.0",
3+
"version": "5.5.1",
44
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
55
"license": "MIT",
66
"description": "Metarhia utilities",
@@ -16,6 +16,7 @@
1616
"types": "metautil.d.ts",
1717
"files": [
1818
"lib/",
19+
"metautil.js",
1920
"metautil.mjs",
2021
"metautil.d.ts"
2122
],

0 commit comments

Comments
 (0)