From 0082f48f014e4a345fae948a9fc2fd8865f13bc5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:40:53 +0000 Subject: [PATCH] chore(main): release 0.8.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ lib/passageidentity/version.rb | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1b77f50..6538ca9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.0" + ".": "0.8.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e0915a2..72fe1b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file. +## [0.8.0](https://github.com/passageidentity/passage-ruby/compare/v0.7.0...v0.8.0) (2024-12-12) + + +### 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 + +* 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)) + ## [0.7.0](https://github.com/passageidentity/passage-ruby/compare/v0.6.2...v0.7.0) (2024-12-12) diff --git a/lib/passageidentity/version.rb b/lib/passageidentity/version.rb index 0cd2786..de8fb64 100644 --- a/lib/passageidentity/version.rb +++ b/lib/passageidentity/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Passage - VERSION = '0.7.0' + VERSION = '0.8.0' end