-
Notifications
You must be signed in to change notification settings - Fork 13
chore: release v1.5.0 #172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| ".": "1.4.0" | ||
| ".": "1.5.0" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,28 @@ Format follows [Keep a Changelog](https://keepachangelog.com). Categories: **Add | |
|
|
||
| --- | ||
|
|
||
| ## [1.5.0](https://github.com/reqcore-inc/reqcore/compare/v1.4.0...v1.5.0) (2026-05-04) | ||
|
|
||
|
|
||
| ### ✨ Features | ||
|
|
||
| * add pgDumpEnv utility to secure environment variable handling ([6fe4900](https://github.com/reqcore-inc/reqcore/commit/6fe490000487779ad008277ee650ded375bdbcf9)) | ||
| * enhance color mode functionality and improve UI responsiveness ([8068e4e](https://github.com/reqcore-inc/reqcore/commit/8068e4ec7eecb6c087d6ae45e6ce2a3e6c60374e)) | ||
| * implement nonce-based CSP middleware for enhanced security ([bfb4483](https://github.com/reqcore-inc/reqcore/commit/bfb44830d3205dc9e8c5392fdabdb8da4ed37a5e)) | ||
| * implement nonce-based CSP middleware for enhanced security ([6fe4900](https://github.com/reqcore-inc/reqcore/commit/6fe490000487779ad008277ee650ded375bdbcf9)) | ||
|
|
||
|
|
||
| ### 🐛 Bug Fixes | ||
|
|
||
| * enhance rate limiting logic and add tests ([6fe4900](https://github.com/reqcore-inc/reqcore/commit/6fe490000487779ad008277ee650ded375bdbcf9)) | ||
| * update comments for clarity and enhance rate limiting logic in production ([921ea39](https://github.com/reqcore-inc/reqcore/commit/921ea399bc35fbb006274d98faf7433fedf88aa5)) | ||
|
Comment on lines
+31
to
+32
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hyphenate “rate-limiting” (compound adjective). Static analysis suggests the changelog phrasing “rate limiting” should be “rate-limiting” as a compound adjective. Consider updating Lines 31-32 accordingly for consistency and correctness. As per coding guidelines, “If applicable, propose fixes … without fixing an immediate user-visible problem.” This is a low-risk documentation polish backed by static analysis hints. 🧰 Tools🪛 LanguageTool[uncategorized] ~31-~31: If this is a compound adjective that modifies the following noun, use a hyphen. (EN_COMPOUND_ADJECTIVE_INTERNAL) [uncategorized] ~32-~32: If this is a compound adjective that modifies the following noun, use a hyphen. (EN_COMPOUND_ADJECTIVE_INTERNAL) 🤖 Prompt for AI Agents |
||
|
|
||
|
|
||
| ### 🧪 Testing | ||
|
|
||
| * add security tests for recent fixes ([6fe4900](https://github.com/reqcore-inc/reqcore/commit/6fe490000487779ad008277ee650ded375bdbcf9)) | ||
| * add unit tests for pgDumpEnv utility ([6fe4900](https://github.com/reqcore-inc/reqcore/commit/6fe490000487779ad008277ee650ded375bdbcf9)) | ||
|
|
||
| ## [1.4.0](https://github.com/reqcore-inc/reqcore/compare/v1.3.0...v1.4.0) (2026-04-30) | ||
|
|
||
|
|
||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "reqcore", | ||
| "version": "1.4.0", | ||
| "version": "1.5.0", | ||
| "type": "module", | ||
| "private": true, | ||
| "scripts": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove duplicated feature entry in the 1.5.0 notes.
CHANGELOG.mdLine 25 and Line 26 describe the same nonce-based CSP middleware feature, which makes the release notes misleading/redundant. Keep only one entry (or differentiate if they are actually distinct changes).🤖 Prompt for AI Agents