Kong / insomnia

The open-source, cross-platform API client for GraphQL, REST, WebSockets, SSE and gRPC. With Cloud, Local and Git storage.
https://insomnia.rest
Apache License 2.0
33.56k stars 1.87k forks source link

:rocket: 9.3.0-beta.5 #7549

Closed insomnia-infra closed 2 weeks ago

insomnia-infra commented 2 weeks ago

WARNING: Do not merge this PR. This is an automated release PR. It should be released using the "Publish" workflow.

Download release artifacts here

Steps for Publish:

You can update the changelog.md in this branch, run git log to get the latest changes:

git log --no-merges --oneline --pretty=format:'* %s by @%an' --since="<last release tag>" --until="release/9.3.0-beta.5"

When ready to publish, trigger Publish workflow with these variables:

Alternatively, you can trigger the workflow from Github CLI:

gh workflow run release-publish.yml -f version=9.3.0-beta.5 --repo Kong/insomnia

Release notes will be generated automatically based on the commit messages during publish. Remove any unwanted notes manually afterwards.

Conflicts? Merge branch step failed on the publish workflow? Try this... Run locally: ```bash # Make sure git remote is Kong/insomnia... git checkout develop git merge --no-ff release/ # Solve merge conflicts ... # If there's package-lock conflicts, run `npm install` and commit the package-lock changes git push ```