feat: add changelog automation, gitpod config, dev portal, and security headers - #782
Merged
Smartdevs17 merged 2 commits intoAug 28, 2026
Conversation
|
@vjuliaife is attempting to deploy a commit to the smartdevs17's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
@vjuliaife 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
Adds developer-experience tooling for AgenticPay: automated changelog generation from Conventional Commits, a Gitpod configuration to complement the existing DevContainer setup, a developer portal with an API playground and interactive documentation, and a dedicated security headers middleware enforcing HSTS and a Permissions-Policy.
Changes
.releaserc.jsonand.github/workflows/release.ymlconfiguring semantic-release to generateCHANGELOG.mdand GitHub releases from Conventional Commits on every push tomain; added thesemantic-release,@semantic-release/changelog, and@semantic-release/gitdevDependencies and areleasenpm script..gitpod.yml, reusing the existing.devcontainer/Dockerfileand rootdocker-compose.yml, so a Gitpod workspace installs dependencies, generates the Prisma client, starts Postgres/Redis, and runsnpm run devautomatically, alongside the existing DevContainer config.docsRouterat/docsinbackend/src/index.ts, enabling the Swagger UI API playground and raw OpenAPI JSON endpoint; addedfrontend/app/developers/page.tsx, a developer portal page linking to the API playground, the OpenAPI spec, and the official TypeScript/Python/Go SDKs and their guides.securityHeadersMiddlewareinbackend/src/middleware/security.ts, wired in as the first middleware inbackend/src/index.ts, which sets theStrict-Transport-Security(HSTS) andPermissions-Policyheaders on every response; both are configurable via newHSTS_MAX_AGE_SECONDSandPERMISSIONS_POLICYenvironment variables added tobackend/src/config.tsand documented inbackend/.env.example. This is kept independent of the existing (unused) CSP-bundling security stack to avoid overlapping with separate CSP work.Issues
Resolves #761
Resolves #760
Resolves #758
Resolves #757
Verification
Manual code review completed:
git status,git diff --stat, and the fullgit diffwere inspected, and every changed/added file was confirmed relevant to one of the four issues above.cargo buildandcargo testwere not run — no build or test commands were executed. No snapshots or generated files were committed.