-
Notifications
You must be signed in to change notification settings - Fork 231
chore: replace semantic-release with changesets #497
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
09b70c0
chore: replace semantic-release with @changesets/cli
phoenix-server 08b615c
ci: replace semantic-release job with changeset-check for PRs
phoenix-server b340074
ci: add changesets release workflow
phoenix-server 3e9c1d7
chore: remove .releaserc.json (semantic-release config)
phoenix-server cea5ced
docs: document changesets workflow, remove semantic-release references
phoenix-server a55871b
chore: add changeset for semantic-release to changesets migration
phoenix-server f769b46
chore: add retrospective changeset for unreleased changes since v2.1.0
phoenix-server 0599e1f
chore: align changesets scripts, docs, and PR checklist
Justxd22 ffcd7cd
fix: package-lock.json
Justxd22 53d0031
Merge branch 'main' into chore/replace-semantic-release-with-changesets
cameri File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| { | ||
| "$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json", | ||
| "changelog": "@changesets/cli/changelog", | ||
| "commit": false, | ||
| "fixed": [], | ||
| "linked": [], | ||
| "access": "restricted", | ||
| "baseBranch": "main", | ||
| "updateInternalDependencies": "patch", | ||
| "ignore": [] | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "nostream": patch | ||
| --- | ||
|
|
||
| Replace semantic-release with changesets for explicit PR-level version management. Contributors now add a changeset file per PR; the Changesets Release workflow handles version bumps and GitHub releases. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| --- | ||
| "nostream": minor | ||
| --- | ||
|
|
||
| Release highlights: | ||
|
|
||
| **Features** | ||
| - NIP-05 verification support (#463) | ||
| - NIP-17 & NIP-44 v2 Modern Direct Messages (#458) | ||
| - NIP-62 vanish event support (#418) | ||
| - Vanish optimization (#446) | ||
| - Export events to JSON Lines format (#451) | ||
| - Import .jsonl events into events table (#414) | ||
| - Opt-in event retention purge (#359, #412) | ||
| - Wipe events table script (#450) | ||
| - Nginx reverse proxy in docker-compose (#423) | ||
| - Docker DNS pre-flight check for connectivity verification (#398) | ||
| - Strict validation for payment callbacks (#426) | ||
| - Real home page with templated pages (#409) | ||
|
|
||
| **Bug Fixes** | ||
| - NIP-01 compliance: deterministic event ordering by event_id | ||
| - NIP-01 compliance: correct dedup keys for parametrized replaceable events (#480) | ||
| - NIP-01 replaceable event tiebreaker (#416) | ||
| - NIP-11 served only on root path instead of relay path (#399) | ||
| - Dockerfile: run database migrations in CMD (#422) | ||
| - Added expired_at filter to message pipeline (#403) | ||
| - Removed unsafe-inline and implemented script nonces for CSP hardening (#394) | ||
| - Axios upgraded to fix CVE-2025-62718 (#466) | ||
|
|
||
| **Refactors & Chores** | ||
| - Migrated validation from Joi to Zod (#484) | ||
| - Migrated linting and formatting to Biome (#452) | ||
| - Converted user admission to PostgreSQL stored function (#428) | ||
| - Upgraded to Node.js 24 LTS (#419) | ||
| - Updated dependencies (express, body-parser, js-yaml, axios) |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| name: Changesets Release | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
|
|
||
| concurrency: ${{ github.workflow }}-${{ github.ref }} | ||
|
|
||
| jobs: | ||
| release: | ||
| name: Release | ||
| runs-on: ubuntu-latest | ||
| environment: release | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v3 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - uses: actions/setup-node@v3 | ||
| with: | ||
| node-version-file: .nvmrc | ||
| cache: npm | ||
|
|
||
| - name: Install package dependencies | ||
| run: npm ci | ||
|
|
||
| - name: Create Release Pull Request or Publish | ||
| uses: changesets/action@v1 | ||
| with: | ||
| version: npm run changeset:version | ||
| publish: npm run changeset:tag | ||
| createGithubReleases: true | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.RELEASE_PAT }} |
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.