From 3c30fb3c32bd25bdb378408cab278dbfd541564e Mon Sep 17 00:00:00 2001 From: sullivanpj Date: Sun, 10 Nov 2024 01:23:11 -0500 Subject: [PATCH] chore(release): Publish monorepo release updates - project: unique-identifier 1.32.0 - project: plugin-system 1.22.0 - project: serialization 1.41.0 - project: server-result 0.16.0 - project: server-cache 0.15.0 - project: file-system 1.37.0 - project: string-fns 0.17.0 - project: date-time 1.43.0 - project: telemetry 1.16.0 - project: utilities 1.35.0 - project: hashing 0.14.0 - project: logging 1.36.0 - project: errors 1.37.0 - project: hooks 0.20.0 - project: types 0.29.0 - project: cli 1.35.0 --- packages/cli/CHANGELOG.md | 6 ++++++ packages/cli/package.json | 2 +- packages/date-time/CHANGELOG.md | 6 ++++++ packages/date-time/package.json | 2 +- packages/errors/CHANGELOG.md | 6 ++++++ packages/errors/package.json | 2 +- packages/file-system/CHANGELOG.md | 6 ++++++ packages/file-system/package.json | 2 +- packages/hashing/CHANGELOG.md | 6 ++++++ packages/hashing/package.json | 2 +- packages/hooks/CHANGELOG.md | 6 ++++++ packages/hooks/package.json | 2 +- packages/logging/CHANGELOG.md | 6 ++++++ packages/logging/package.json | 2 +- packages/plugin-system/CHANGELOG.md | 6 ++++++ packages/plugin-system/package.json | 2 +- packages/serialization/CHANGELOG.md | 6 ++++++ packages/serialization/package.json | 2 +- packages/server-cache/CHANGELOG.md | 6 ++++++ packages/server-cache/package.json | 2 +- packages/server-result/CHANGELOG.md | 6 ++++++ packages/server-result/package.json | 2 +- packages/string-fns/CHANGELOG.md | 6 ++++++ packages/string-fns/package.json | 2 +- packages/telemetry/CHANGELOG.md | 6 ++++++ packages/telemetry/package.json | 2 +- packages/types/CHANGELOG.md | 6 ++++++ packages/types/package.json | 2 +- packages/unique-identifier/CHANGELOG.md | 6 ++++++ packages/unique-identifier/package.json | 2 +- packages/utilities/CHANGELOG.md | 6 ++++++ packages/utilities/package.json | 2 +- 32 files changed, 112 insertions(+), 16 deletions(-) diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index b60127a3..50392b41 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.35.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 1.34.0 (2024-11-08) ### Features diff --git a/packages/cli/package.json b/packages/cli/package.json index 84fb541a..0b233e3d 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/cli", - "version": "1.34.0", + "version": "1.35.0", "type": "module", "description": "A collection of CLI utilities to assist in creating command line applications.", "repository": { diff --git a/packages/date-time/CHANGELOG.md b/packages/date-time/CHANGELOG.md index 1295d76f..45d7dae3 100644 --- a/packages/date-time/CHANGELOG.md +++ b/packages/date-time/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.43.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 1.42.0 (2024-11-08) ### Features diff --git a/packages/date-time/package.json b/packages/date-time/package.json index b398549c..a67d80d6 100644 --- a/packages/date-time/package.json +++ b/packages/date-time/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/date-time", - "version": "1.42.0", + "version": "1.43.0", "type": "module", "description": "This package includes a DateTime class, various utility functions for working with dates and times, and a number of formatting options.", "repository": { diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 8f6bab80..264ca5de 100644 --- a/packages/errors/CHANGELOG.md +++ b/packages/errors/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.37.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 1.36.0 (2024-11-08) ### Features diff --git a/packages/errors/package.json b/packages/errors/package.json index 54c72a24..47716bf7 100644 --- a/packages/errors/package.json +++ b/packages/errors/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/errors", - "version": "1.36.0", + "version": "1.37.0", "type": "module", "description": "This package includes a base error class and various utility functions for working with errors.", "repository": { diff --git a/packages/file-system/CHANGELOG.md b/packages/file-system/CHANGELOG.md index 0a8ebb4b..01b4cc89 100644 --- a/packages/file-system/CHANGELOG.md +++ b/packages/file-system/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.37.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 1.36.0 (2024-11-08) ### Features diff --git a/packages/file-system/package.json b/packages/file-system/package.json index 9559a621..0dcc2ee9 100644 --- a/packages/file-system/package.json +++ b/packages/file-system/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/file-system", - "version": "1.36.0", + "version": "1.37.0", "type": "module", "description": "⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.", "repository": { diff --git a/packages/hashing/CHANGELOG.md b/packages/hashing/CHANGELOG.md index 37faf410..b115c3c1 100644 --- a/packages/hashing/CHANGELOG.md +++ b/packages/hashing/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.14.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 0.13.0 (2024-11-08) ### Features diff --git a/packages/hashing/package.json b/packages/hashing/package.json index c31db362..9f29358c 100644 --- a/packages/hashing/package.json +++ b/packages/hashing/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/hashing", - "version": "0.13.0", + "version": "0.14.0", "type": "module", "description": "⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.", "repository": { diff --git a/packages/hooks/CHANGELOG.md b/packages/hooks/CHANGELOG.md index cfd32e55..49ec720b 100644 --- a/packages/hooks/CHANGELOG.md +++ b/packages/hooks/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.20.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 0.19.0 (2024-11-08) ### Features diff --git a/packages/hooks/package.json b/packages/hooks/package.json index 56c550ec..b2882a9c 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/hooks", - "version": "0.19.0", + "version": "0.20.0", "type": "module", "description": "⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.", "repository": { diff --git a/packages/logging/CHANGELOG.md b/packages/logging/CHANGELOG.md index ee059e3b..a2bb2a83 100644 --- a/packages/logging/CHANGELOG.md +++ b/packages/logging/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.36.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 1.35.0 (2024-11-08) ### Features diff --git a/packages/logging/package.json b/packages/logging/package.json index 046edad6..7305b822 100644 --- a/packages/logging/package.json +++ b/packages/logging/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/logging", - "version": "1.35.0", + "version": "1.36.0", "type": "module", "description": "⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.", "repository": { diff --git a/packages/plugin-system/CHANGELOG.md b/packages/plugin-system/CHANGELOG.md index 6165f17f..fa0ebd72 100644 --- a/packages/plugin-system/CHANGELOG.md +++ b/packages/plugin-system/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.22.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 1.21.0 (2024-11-08) ### Features diff --git a/packages/plugin-system/package.json b/packages/plugin-system/package.json index 566543ed..d506b27b 100644 --- a/packages/plugin-system/package.json +++ b/packages/plugin-system/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/plugin-system", - "version": "1.21.0", + "version": "1.22.0", "type": "module", "description": "A library used to create and manage a plugin-styled architecture in a TypeScript application.", "repository": { diff --git a/packages/serialization/CHANGELOG.md b/packages/serialization/CHANGELOG.md index f52a3030..0e7a263c 100644 --- a/packages/serialization/CHANGELOG.md +++ b/packages/serialization/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.41.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 1.40.0 (2024-11-08) ### Features diff --git a/packages/serialization/package.json b/packages/serialization/package.json index 1e3b6ab7..bca7c5a4 100644 --- a/packages/serialization/package.json +++ b/packages/serialization/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/serialization", - "version": "1.40.0", + "version": "1.41.0", "type": "module", "description": "A package used to support serializing and deserializing data sent between the client and the server.", "repository": { diff --git a/packages/server-cache/CHANGELOG.md b/packages/server-cache/CHANGELOG.md index c9018dc4..284a84d3 100644 --- a/packages/server-cache/CHANGELOG.md +++ b/packages/server-cache/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.15.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 0.14.0 (2024-11-08) ### Features diff --git a/packages/server-cache/package.json b/packages/server-cache/package.json index ce0514bb..de3e19ed 100644 --- a/packages/server-cache/package.json +++ b/packages/server-cache/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/server-cache", - "version": "0.14.0", + "version": "0.15.0", "type": "module", "description": "Storm-Stack patch to handle server-side caching with the [Bentocache](https://bentocache.dev/docs/introduction) library.", "repository": { diff --git a/packages/server-result/CHANGELOG.md b/packages/server-result/CHANGELOG.md index c956c75a..e488a9ef 100644 --- a/packages/server-result/CHANGELOG.md +++ b/packages/server-result/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.16.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 0.15.0 (2024-11-08) ### Features diff --git a/packages/server-result/package.json b/packages/server-result/package.json index 7f816fc7..fa68aa1f 100644 --- a/packages/server-result/package.json +++ b/packages/server-result/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/server-result", - "version": "0.15.0", + "version": "0.16.0", "type": "module", "description": "⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.", "repository": { diff --git a/packages/string-fns/CHANGELOG.md b/packages/string-fns/CHANGELOG.md index 5d1288f8..fb9beecc 100644 --- a/packages/string-fns/CHANGELOG.md +++ b/packages/string-fns/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.17.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 0.16.0 (2024-11-08) ### Features diff --git a/packages/string-fns/package.json b/packages/string-fns/package.json index 70d18662..f263f99c 100644 --- a/packages/string-fns/package.json +++ b/packages/string-fns/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/string-fns", - "version": "0.16.0", + "version": "0.17.0", "type": "module", "description": "⚡ A package containing various utility functions used to format string values.", "repository": { diff --git a/packages/telemetry/CHANGELOG.md b/packages/telemetry/CHANGELOG.md index eabdb48b..961e2253 100644 --- a/packages/telemetry/CHANGELOG.md +++ b/packages/telemetry/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.16.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 1.15.0 (2024-11-08) ### Features diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json index 64423f18..1756e70b 100644 --- a/packages/telemetry/package.json +++ b/packages/telemetry/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/telemetry", - "version": "1.15.0", + "version": "1.16.0", "description": "A Storm-Stack library used to drive server logging and handling telemetry processing in a NodeJS environment.", "repository": { "type": "github", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 61b9aa68..b29ad649 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.29.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 0.28.0 (2024-11-08) ### Features diff --git a/packages/types/package.json b/packages/types/package.json index b3fd12f4..fde1567f 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/types", - "version": "0.28.0", + "version": "0.29.0", "description": "⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.", "repository": { "type": "github", diff --git a/packages/unique-identifier/CHANGELOG.md b/packages/unique-identifier/CHANGELOG.md index c2a89b39..fa680789 100644 --- a/packages/unique-identifier/CHANGELOG.md +++ b/packages/unique-identifier/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.32.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 1.31.0 (2024-11-08) ### Features diff --git a/packages/unique-identifier/package.json b/packages/unique-identifier/package.json index e89433fa..a2b06599 100644 --- a/packages/unique-identifier/package.json +++ b/packages/unique-identifier/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/unique-identifier", - "version": "1.31.0", + "version": "1.32.0", "type": "module", "description": "This package provides a simple way to generate various types of unique identifiers.", "repository": { diff --git a/packages/utilities/CHANGELOG.md b/packages/utilities/CHANGELOG.md index 409cc0e1..0658332e 100644 --- a/packages/utilities/CHANGELOG.md +++ b/packages/utilities/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.35.0 (2024-11-10) + +### Features + +- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259)) + ## 1.34.0 (2024-11-08) ### Features diff --git a/packages/utilities/package.json b/packages/utilities/package.json index 8903b7d0..b07bed36 100644 --- a/packages/utilities/package.json +++ b/packages/utilities/package.json @@ -1,6 +1,6 @@ { "name": "@storm-stack/utilities", - "version": "1.34.0", + "version": "1.35.0", "description": "This package includes various base utility class and various functions to assist in the development process.", "repository": { "type": "github",