Skip to content
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

chore(main): release 0.8.0 #150

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
bundler-cache: true
ruby-version: '3.1'
rubygems: 'latest'
rubygems: '3.5'
if: ${{ steps.release.outputs.release_created }}
- uses: rubygems/release-gem@v1
id: publish
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.7.0"
".": "0.8.0"
}
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

All notable changes to this project will be documented in this file.

## [0.8.0](https://github.com/passageidentity/passage-ruby/compare/v0.7.1...v0.8.0) (2024-12-20)


### Features

* add new class and method names ([4515ac6](https://github.com/passageidentity/passage-ruby/commit/4515ac647530d193450939e4d727c146c7c970b5))
* add parameter guards ([#116](https://github.com/passageidentity/passage-ruby/issues/116)) ([ce5c590](https://github.com/passageidentity/passage-ruby/commit/ce5c59064f1f223c34121acf1b8c8f99cba4acc2))
* **codegen:** create magic link request fields are now optional ([#113](https://github.com/passageidentity/passage-ruby/issues/113)) ([f04af7b](https://github.com/passageidentity/passage-ruby/commit/f04af7bef874db3aba57c1541cc27210313da997))
* jwks caching with ActiveSupport ([#111](https://github.com/passageidentity/passage-ruby/issues/111)) ([34df698](https://github.com/passageidentity/passage-ruby/commit/34df6989e0f793e8a1cf7b81576ebaf3a2c84f98))
* reworks the new create magic link func into three separate functions ([#121](https://github.com/passageidentity/passage-ruby/issues/121)) ([10c9870](https://github.com/passageidentity/passage-ruby/commit/10c98703a8beda1380fae88bb930a4eb3ed5765b))
* support jwt aud validation for hosted apps ([#117](https://github.com/passageidentity/passage-ruby/issues/117)) ([bcaaebe](https://github.com/passageidentity/passage-ruby/commit/bcaaebe987d9e94d6c79a86261db8e56156b91dc))


### Bug Fixes

* jwt validation correctly compares the aud with both app id and auth origin ([#147](https://github.com/passageidentity/passage-ruby/issues/147)) ([8b03140](https://github.com/passageidentity/passage-ruby/commit/8b031405acb9905479f3a65c836083b845f8113e))
* name is now consistent with the others ([#63](https://github.com/passageidentity/passage-ruby/issues/63)) ([cc5965b](https://github.com/passageidentity/passage-ruby/commit/cc5965b7aa4d5f3341e30deab74ac7a4c4b961ff))
* use `Passage::VERSION` instead of parsing gemspec ([1e2d1e2](https://github.com/passageidentity/passage-ruby/commit/1e2d1e2dcd2deb846394d26d2436e9bd6da01663))
* validate_jwt now refreshes cache if it is expired after client initialization ([#145](https://github.com/passageidentity/passage-ruby/issues/145)) ([eef1230](https://github.com/passageidentity/passage-ruby/commit/eef1230285af8e3c9d1f1eedfdc1332575e98ee3))

## [0.7.1](https://github.com/passageidentity/passage-ruby/compare/v0.7.0...v0.7.1) (2024-12-20)


### Bug Fixes

* jwt validation correctly compares the aud with both app id and auth origin ([#147](https://github.com/passageidentity/passage-ruby/issues/147)) ([8b03140](https://github.com/passageidentity/passage-ruby/commit/8b031405acb9905479f3a65c836083b845f8113e))
* validate_jwt now refreshes cache if it is expired after client initialization ([#145](https://github.com/passageidentity/passage-ruby/issues/145)) ([eef1230](https://github.com/passageidentity/passage-ruby/commit/eef1230285af8e3c9d1f1eedfdc1332575e98ee3))

## [0.7.0](https://github.com/passageidentity/passage-ruby/compare/v0.6.2...v0.7.0) (2024-12-12)


Expand Down
2 changes: 1 addition & 1 deletion lib/passageidentity/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Passage
VERSION = '0.7.0'
VERSION = '0.8.0'
end
Loading