toolbox-x 2.2.4 → 2.2.5

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/CHANGELOG.md +13 -4
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,11 +1,20 @@
1
1
  # Changelog
2
2
 
3
- <!-- markdownlint-disable-file MD024 -->
4
-
5
3
  All notable changes to **toolbox-x** will be documented in this file.
6
4
 
7
5
  > Auto-generated from git history using [changelog-maker](https://github.com/nodejs/changelog-maker).
8
6
 
7
+ ## [v2.2.5](https://github.com/nazmul-nhb/toolbox-x/releases/tag/v2.2.5) — 2026-06-16
8
+
9
+ [Compare changes](https://github.com/nazmul-nhb/toolbox-x/compare/v2.2.4...v2.2.5)
10
+
11
+ * \[[`86be53a528`](https://github.com/nazmul-nhb/toolbox-x/commit/86be53a528)] - 🔧 update(scripts): updated pre-commit script to pull main with safety (Nazmul Hassan)
12
+ * \[[`dd02dcf024`](https://github.com/nazmul-nhb/toolbox-x/commit/dd02dcf024)] - 🔧 update(changelog): updated changelog script (Nazmul Hassan)
13
+ * \[[`314749f832`](https://github.com/nazmul-nhb/toolbox-x/commit/314749f832)] - 🐛 fix(docs): updated build script (Nazmul Hassan)
14
+ * \[[`524acb4d98`](https://github.com/nazmul-nhb/toolbox-x/commit/524acb4d98)] - 🐛 fix(docs): fixed error in changelog sync (Nazmul Hassan)
15
+ * \[[`169ab67304`](https://github.com/nazmul-nhb/toolbox-x/commit/169ab67304)] - 🔧 update(docs): sync changelog before build (Nazmul Hassan)
16
+ * \[[`daa192f88c`](https://github.com/nazmul-nhb/toolbox-x/commit/daa192f88c)] - 📚 docs: updated CHANGELOG.md for v2.2.4 (github-actions\[bot])
17
+
9
18
  ## [v2.2.4](https://github.com/nazmul-nhb/toolbox-x/releases/tag/v2.2.4) — 2026-06-16
10
19
 
11
20
  [Compare changes](https://github.com/nazmul-nhb/toolbox-x/compare/v2.2.2...v2.2.4)
@@ -82,9 +91,9 @@ All notable changes to **toolbox-x** will be documented in this file.
82
91
  * \[[`8bfc3133cd`](https://github.com/nazmul-nhb/toolbox-x/commit/8bfc3133cd)] - 🐛 fix(docs): updated all invalid mdx links (Nazmul Hassan)
83
92
  * \[[`960c38abf8`](https://github.com/nazmul-nhb/toolbox-x/commit/960c38abf8)] - 🐛 fix(docs): fixed some syntax errors and removed some pg (Nazmul Hassan)
84
93
  * \[[`6723823ab2`](https://github.com/nazmul-nhb/toolbox-x/commit/6723823ab2)] - 🔧 update(docs): removed some pg tag and added some (Nazmul Hassan)
85
- * \[[`048824461d`](https://github.com/nazmul-nhb/toolbox-x/commit/048824461d)] - 🔧 update(docs): updated class docs sideba titles and other gaps (Nazmul Hassan)
94
+ * \[[`048824461d`](https://github.com/nazmul-nhb/toolbox-x/commit/048824461d)] - 🔧 update(docs): updated class docs sidebar titles and other gaps (Nazmul Hassan)
86
95
  * \[[`6a2193938a`](https://github.com/nazmul-nhb/toolbox-x/commit/6a2193938a)] - 🔧 update(docs): migrated rest of the docs from old docusaurus docs (Nazmul Hassan)
87
- * \[[`169e3e7b7f`](https://github.com/nazmul-nhb/toolbox-x/commit/169e3e7b7f)] - ✨ feat(object): added new util `extractObjectEntries` and updated array iltering util (Nazmul Hassan)
96
+ * \[[`169e3e7b7f`](https://github.com/nazmul-nhb/toolbox-x/commit/169e3e7b7f)] - ✨ feat(object): added new util `extractObjectEntries` and updated array filtering util (Nazmul Hassan)
88
97
  * \[[`fed3e28a6a`](https://github.com/nazmul-nhb/toolbox-x/commit/fed3e28a6a)] - 🔧 update(docs): rearranged sidebar items (Nazmul Hassan)
89
98
  * \[[`5ecff45b6e`](https://github.com/nazmul-nhb/toolbox-x/commit/5ecff45b6e)] - 🐛 fix(docs): fixed syntax error in mdx (Nazmul Hassan)
90
99
  * \[[`1daecd22ed`](https://github.com/nazmul-nhb/toolbox-x/commit/1daecd22ed)] - 🔧 update(docs): added (migrated) rest of the docs by AI Agent (Nazmul Hassan)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toolbox-x",
3
- "version": "2.2.4",
3
+ "version": "2.2.5",
4
4
  "description": "A versatile collection of smart, efficient, and reusable utility functions, classes and types for everyday development needs.",
5
5
  "main": "./dist/index.cjs",
6
6
  "type": "module",
@@ -243,13 +243,14 @@
243
243
  "typecheck": "tsc --noEmit",
244
244
  "typecheck:docs": "pnpm --filter toolbox-x-docs typecheck",
245
245
  "validate:links": "pnpm --filter toolbox-x-docs validate:links",
246
- "commit": "nhb-commit",
246
+ "commit": "node scripts/pull-main.mjs && nhb-commit",
247
247
  "count": "nhb-count",
248
248
  "delete": "nhb-delete",
249
249
  "lint": "biome lint --diagnostic-level=warn",
250
250
  "fix": "biome check --write --diagnostic-level=warn",
251
251
  "format": "biome format --write --diagnostic-level=warn",
252
252
  "create-docs": "nhb-module -t docs",
253
- "changelog": "node scripts/generate-changelog.mjs"
253
+ "changelog": "node scripts/generate-changelog.mjs",
254
+ "changelog:docs": "pnpm --filter toolbox-x-docs changelog"
254
255
  }
255
256
  }