long-task-queue-reader 0.7.3-test.1 → 0.8.0-beta.1

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
@@ -1,6 +1,6 @@
1
- ## [0.7.3-test.1](https://github.com/Parsimotion/long-task-queue-reader/compare/v0.7.2...v0.7.3-test.1) (2025-05-26)
1
+ # [0.8.0-beta.1](https://github.com/Parsimotion/long-task-queue-reader/compare/v0.7.2...v0.8.0-beta.1) (2026-02-25)
2
2
 
3
3
 
4
- ### Bug Fixes
4
+ ### Features
5
5
 
6
- * **test:** test pre-release ([8a8ffbd](https://github.com/Parsimotion/long-task-queue-reader/commit/8a8ffbdde664d6b1bc7f650752407b93e082ea73))
6
+ * add earlyFinish attribute ([063cc51](https://github.com/Parsimotion/long-task-queue-reader/commit/063cc51aa6a8564f8e90b883726f38f384834acd))
package/README.md CHANGED
@@ -33,3 +33,25 @@ new LongTaskQueueBuilder()
33
33
  .then (queueReader) -> queueReader.start()
34
34
 
35
35
  ```
36
+ ## 📦 Publishing a New Version
37
+
38
+ Package publishing is now handled automatically via a GitHub Action triggered on `push` to the `main` or `master` branches.
39
+
40
+ You can also trigger it manually from the **Actions** tab using the `Release` workflow.
41
+
42
+ The workflow supports prerelease versions (e.g., `alpha`, `beta`) through the `prereleaseTag` input.
43
+
44
+ > 🔐 The release process uses the contents of the `lib/` directory generated during build.
45
+
46
+ ## ✅ Commit Message Validation
47
+
48
+ [`commitlint`](https://github.com/conventional-changelog/commitlint) was added to ensure commit messages follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) standard.
49
+
50
+ Commit messages are automatically validated before each commit using [Husky](https://typicode.github.io/husky/).
51
+
52
+ **Example of a valid commit message:**
53
+
54
+ ```bash
55
+ feat: add login functionality
56
+ ```
57
+ > If the format is invalid, the commit will be blocked.