@alwatr/hash-string 5.2.3 โ†’ 5.2.4

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.
package/CHANGELOG.md CHANGED
@@ -3,11 +3,29 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.2.4](https://github.com/Alwatr/nanolib/compare/@alwatr/hash-string@5.2.3...@alwatr/hash-string@5.2.4) (2025-08-23)
7
+
8
+ **Note:** Version bump only for package @alwatr/hash-string
9
+
6
10
  ## [5.2.3](https://github.com/Alwatr/nanolib/compare/@alwatr/hash-string@5.2.1...@alwatr/hash-string@5.2.3) (2025-08-23)
7
11
 
8
- ### Code Refactoring
12
+ ### ๐Ÿ› Bug Fixes
9
13
 
10
- * Updated all package.json files in the project to change dependency version specifiers from "workspace:^" to "workspace:*" for consistency and to allow for more flexible version resolution. ([db6a4f7](https://github.com/Alwatr/nanolib/commit/db6a4f76deec2d1d8039978144e4bc51b6f1a0e3)) by @alimd
14
+ * update license from AGPL-3.0-only to MPL-2.0 ([d20968e](https://github.com/Alwatr/nanolib/commit/d20968e60cc89b1dcdf9b96507178da6ed562f55))
15
+ * update package versions in multiple package.json files ([7638b1c](https://github.com/Alwatr/nanolib/commit/7638b1cafee2b4e0f97db7a89ac9fba6384b9b10))
16
+
17
+ ### ๐Ÿ”จ Code Refactoring
18
+
19
+ * Updated all package.json files in the project to change dependency version specifiers from "workspace:^" to "workspace:*" for consistency and to allow for more flexible version resolution. ([db6a4f7](https://github.com/Alwatr/nanolib/commit/db6a4f76deec2d1d8039978144e4bc51b6f1a0e3))
20
+
21
+ ### ๐Ÿงน Miscellaneous Chores
22
+
23
+ * reformat all package.json files ([ceda45d](https://github.com/Alwatr/nanolib/commit/ceda45de186667790474f729cb4b161a5148ce19))
24
+ * remove duplicate keywords from package.json ([3125526](https://github.com/Alwatr/nanolib/commit/3125526b5ed8284d461055bf6ea925fad8fa8fb0))
25
+
26
+ ### ๐Ÿ”— Dependencies update
27
+
28
+ * update TypeScript and Jest versions across all packages to improve compatibility and performance ([31baf36](https://github.com/Alwatr/nanolib/commit/31baf366101e92e27db66a21c849fb101f19be47))
11
29
 
12
30
  ## [5.2.2](https://github.com/Alwatr/nanolib/compare/@alwatr/hash-string@5.2.1...@alwatr/hash-string@5.2.2) (2025-08-23)
13
31
 
package/dist/main.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @alwatr/hash-string v5.2.3 */
1
+ /* @alwatr/hash-string v5.2.4 */
2
2
  "use strict";
3
3
  var __defProp = Object.defineProperty;
4
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -63,7 +63,7 @@ function nanoHash(str, prefix, repeat = 1) {
63
63
  }
64
64
 
65
65
  // src/main.ts
66
- __dev_mode__: import_package_tracer.packageTracer.add("@alwatr/hash-string", "5.2.3");
66
+ __dev_mode__: import_package_tracer.packageTracer.add("@alwatr/hash-string", "5.2.4");
67
67
  // Annotate the CommonJS export names for ESM import in node:
68
68
  0 && (module.exports = {
69
69
  djb2Hash,
package/dist/main.mjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @alwatr/hash-string v5.2.3 */
1
+ /* @alwatr/hash-string v5.2.4 */
2
2
 
3
3
  // src/main.ts
4
4
  import { packageTracer } from "@alwatr/package-tracer";
@@ -39,7 +39,7 @@ function nanoHash(str, prefix, repeat = 1) {
39
39
  }
40
40
 
41
41
  // src/main.ts
42
- __dev_mode__: packageTracer.add("@alwatr/hash-string", "5.2.3");
42
+ __dev_mode__: packageTracer.add("@alwatr/hash-string", "5.2.4");
43
43
  export {
44
44
  djb2Hash,
45
45
  nanoHash
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@alwatr/hash-string",
3
3
  "description": "A simple utility to generate a hash string.",
4
- "version": "5.2.3",
4
+ "version": "5.2.4",
5
5
  "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
6
6
  "bugs": "https://github.com/Alwatr/nanolib/issues",
7
7
  "dependencies": {
8
- "@alwatr/package-tracer": "5.5.5"
8
+ "@alwatr/package-tracer": "5.5.6"
9
9
  },
10
10
  "devDependencies": {
11
- "@alwatr/nano-build": "5.5.5",
12
- "@alwatr/prettier-config": "5.0.1",
13
- "@alwatr/tsconfig-base": "5.0.1",
11
+ "@alwatr/nano-build": "6.0.1",
12
+ "@alwatr/prettier-config": "5.0.2",
13
+ "@alwatr/tsconfig-base": "5.0.2",
14
14
  "jest": "^30.0.5",
15
15
  "typescript": "^5.9.2"
16
16
  },
@@ -75,5 +75,5 @@
75
75
  },
76
76
  "type": "module",
77
77
  "types": "./dist/main.d.ts",
78
- "gitHead": "102cc505864da042258ffe18894dc5a9157b0040"
78
+ "gitHead": "be87ff1a4a783c0707e0b06efe728a54b5348b38"
79
79
  }