Skip to content

Commit b9ab7be

Browse files
chore(release): 1.0.0 [skip ci]
# 1.0.0 (2025-02-28) ### Bug Fixes ✅ **docker-compose:** Update Docker Compose file and README ([0bdd831](0bdd831)) This commit updates the Docker Compose file and the README in the microstream-hub project. Changes include: - Updated Docker Compose file for better configuration and deployment. - Updated README with new information and improved structure. These updates ensure that developers have clear and comprehensive documentation and configuration for using and deploying the microstream-hub project. <br/><br/> ✅ **release.config.js:** trying a fix for Semantic-Release Config ([b97934a](b97934a)), closes [#1](#1) This might fix the issue of Semantic-Release failing to push Git Tag with GITHUB_TOKEN. We removed the 'repositoryUrl' with value as ssh git repo link from release.config.js - as it was needed to test locally but it is creating a problem maybe on CI/CD. Let's see if it does fix it. If it does, then good. <br/><br/> ### Features ✅ **logger:** Implement configurable and colorful logging ([58d98ac](58d98ac)) This commit introduces a new logging utility to the microstream-hub project, allowing developers to control the verbosity of logs using a configurable logLevel option. The logLevel supports the following levels: "debug", "info", "warn", "error", and "silent". Additionally, logs are now color-coded based on their type for better readability. Changes include: - Creation of a logger.js file in src/utils/ with methods for debug, info, warn, and error, respecting the logLevel setting. - Addition of a logLevel option to the hub configuration. - Initialization of the logger in hub.js using the provided logLevel. - Replacement of all console.log, console.warn, and console.error calls with the appropriate logger methods. - Color-coding of log messages using the chalk library. <br/><br/> ✅ **logger:** Implement configurable logging and replace console statements in hub.js ([0860bf3](0860bf3)) This commit introduces a new logging utility to the microstream-hub project, allowing developers to control the verbosity of logs using a configurable logLevel option. The logLevel supports the following levels: "debug", "info", "warn", "error", and "silent". Changes include: - Creation of a logger.js file in src/utils/ with methods for debug, info, warn, and error, respecting the logLevel setting. - Addition of a logLevel option to the hub configuration. - Initialization of the logger in hub.js using the provided logLevel. - Replacement of all console.log, console.warn, and console.error calls with the appropriate logger methods. <br/><br/> ✅ **microstream-hub:** The primary working setup for microstream-hub. ([68fb1dc](68fb1dc)) This is the first commit - with the primary version (v1) of a working version of microstream-hub. <br/><br/> ✅ **semantic-release:** set up Semantic-Release for auto Release & Update ([af97398](af97398)), closes [#1](#1) Setup Semantic-Release with Commitizen - along with GitHub Workflow. Now this setup will - - Auto Release on GitHub, NPM - Update Changelog automatically from Conventional Commit messages and update version in Package.json - Set up Commitizen for Conventiona Commit message formatting - Setup GitHub Workflow to automate all these tasks <br/><br/>
1 parent b97934a commit b9ab7be

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

CHANGELOG.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,66 @@
11
# 1.0.0 (2025-02-28)
22

33

4+
### Bug Fixes
5+
6+
**docker-compose:** Update Docker Compose file and README ([0bdd831](https://github.com/arijitcodes/microstream-hub/commit/0bdd831acf519b79f3708eed754a2b19dbf68ca5))
7+
8+
This commit updates the Docker Compose file and the README in the microstream-hub project.
9+
10+
Changes include:
11+
- Updated Docker Compose file for better configuration and deployment.
12+
- Updated README with new information and improved structure.
13+
14+
These updates ensure that developers have clear and comprehensive documentation and configuration for using and deploying the microstream-hub project. <br/><br/>
15+
16+
**release.config.js:** trying a fix for Semantic-Release Config ([b97934a](https://github.com/arijitcodes/microstream-hub/commit/b97934a490279fa594da531197d356383eebb3aa)), closes [#1](https://github.com/arijitcodes/microstream-hub/issues/1)
17+
18+
This might fix the issue of Semantic-Release failing to push Git Tag with GITHUB_TOKEN. We removed
19+
the 'repositoryUrl' with value as ssh git repo link from release.config.js - as it was needed to
20+
test locally but it is creating a problem maybe on CI/CD. Let's see if it does fix it. If it does,
21+
then good. <br/><br/>
22+
23+
24+
25+
### Features
26+
27+
**logger:** Implement configurable and colorful logging ([58d98ac](https://github.com/arijitcodes/microstream-hub/commit/58d98ac6033dc8a8fac6324c1cf3d8239ac616ce))
28+
29+
This commit introduces a new logging utility to the microstream-hub project, allowing developers to control the verbosity of logs using a configurable logLevel option. The logLevel supports the following levels: "debug", "info", "warn", "error", and "silent". Additionally, logs are now color-coded based on their type for better readability.
30+
31+
Changes include:
32+
- Creation of a logger.js file in src/utils/ with methods for debug, info, warn, and error, respecting the logLevel setting.
33+
- Addition of a logLevel option to the hub configuration.
34+
- Initialization of the logger in hub.js using the provided logLevel.
35+
- Replacement of all console.log, console.warn, and console.error calls with the appropriate logger methods.
36+
- Color-coding of log messages using the chalk library. <br/><br/>
37+
38+
**logger:** Implement configurable logging and replace console statements in hub.js ([0860bf3](https://github.com/arijitcodes/microstream-hub/commit/0860bf33405a929da297a817fb98394a2755bf1c))
39+
40+
This commit introduces a new logging utility to the microstream-hub project, allowing developers to control the verbosity of logs using a configurable logLevel option. The logLevel supports the following levels: "debug", "info", "warn", "error", and "silent".
41+
42+
Changes include:
43+
- Creation of a logger.js file in src/utils/ with methods for debug, info, warn, and error, respecting the logLevel setting.
44+
- Addition of a logLevel option to the hub configuration.
45+
- Initialization of the logger in hub.js using the provided logLevel.
46+
- Replacement of all console.log, console.warn, and console.error calls with the appropriate logger methods. <br/><br/>
47+
48+
**microstream-hub:** The primary working setup for microstream-hub. ([68fb1dc](https://github.com/arijitcodes/microstream-hub/commit/68fb1dcda974b960fd685549a149e023659613a6))
49+
50+
This is the first commit - with the primary version (v1) of a working version of microstream-hub. <br/><br/>
51+
52+
**semantic-release:** set up Semantic-Release for auto Release & Update ([af97398](https://github.com/arijitcodes/microstream-hub/commit/af97398cfa5f9dcba5a95f867357e82e280a6875)), closes [#1](https://github.com/arijitcodes/microstream-hub/issues/1)
53+
54+
Setup Semantic-Release with Commitizen - along with GitHub Workflow. Now this setup will -
55+
56+
- Auto Release on GitHub, NPM
57+
- Update Changelog automatically from Conventional Commit messages and update version in Package.json
58+
- Set up Commitizen for Conventiona Commit message formatting
59+
- Setup GitHub Workflow to automate all these tasks <br/><br/>
60+
61+
# 1.0.0 (2025-02-28)
62+
63+
464
### Bug Fixes
565

666
**docker-compose:** Update Docker Compose file and README ([0bdd831](https://github.com/arijitcodes/microstream-hub/commit/0bdd831acf519b79f3708eed754a2b19dbf68ca5))

0 commit comments

Comments
 (0)