-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from passageidentity/PSG-3186-versioning-and-r…
…eleases Deploy v0.3.0 - Create CHANGELOG, update version
- Loading branch information
Showing
4 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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,21 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [0.3.0] - 2023-12-06 | ||
|
||
### Added | ||
|
||
- Generate types and api calls with openapi generator. | ||
- Version constant instead of parsing gemspec. | ||
|
||
|
||
### Deprecate | ||
|
||
- `user.signout()` -> `auth.revoke_user_refresh_tokens()` | ||
- `auth.authenticate_request()` -> `auth.validate_jwt()` | ||
|
||
|
||
### Possible Breaking Changes | ||
|
||
- Types are now generated. Previous type names may have changed. [See documentation](https://github.com/passageidentity/passage-ruby/tree/main/docs/generated) for model definitions. |
This file contains 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 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 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Passage | ||
VERSION = '0.2.3' | ||
VERSION = '0.3.0' | ||
end |