feat: ETag caching, Prisma pool config, CHANGELOG, husky lint-staged#625
Merged
Mystery-CLI merged 1 commit intoJun 1, 2026
Merged
Conversation
- Ethereal-Future#356: Add ETag headers to GET /api/stellar/account/:publicKey with If-None-Match / 304 Not Modified support - Ethereal-Future#354: Document connection_limit and pool_timeout params in .env.example, fix duplicate content in the file - Ethereal-Future#350: Add CHANGELOG.md following Keep a Changelog format (v1.0.0) - Ethereal-Future#346: Add husky pre-commit hook with lint-staged, ESLint config, and eslint devDependency to root and backend package.json
|
@Hahfyeex Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #346
Closes #350
Closes #354
Closes #356
Changes
#356 — ETag support on balance endpoint
Added
ETagheader (SHA-256 hash of the response, truncated to 16 hex chars) toGET /api/stellar/account/:publicKey. Clients sendingIf-None-Matchreceive a304 Not Modifiedwhen the balance hasn't changed, saving bandwidth on frequent polling.#354 — Prisma connection pool configuration
Added
connection_limitandpool_timeoutquery parameters to theDATABASE_URLexample in
.env.example, with comments explaining recommended values for dev andproduction. Also fixed a pre-existing duplicate-content bug in the file.
#350 — CHANGELOG.md
Added
CHANGELOG.mdat the repo root following the Keep a Changelog format.Documents the full v1.0.0 feature set as the initial release.
#346 — Pre-commit lint and format hook
huskyandlint-stagedto rootpackage.jsonwith apreparescripteslint.config.js(flat config, ESM) at the repo rooteslintdevDependency to both root andbackend/package.jsonlintscript tobackend/package.json.husky/pre-committo runlint-stagedbefore each commitlint-stagedruns ESLint + Prettier on staged JS/TS files and Prettier on JSON/MD/YAML