Skip to content

Commit

Permalink
chore(main): release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Dec 11, 2024
1 parent 7afac85 commit 51d73ec
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 8 deletions.
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.4.0"
".": "0.5.0"
}
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,31 @@ All notable changes to this project will be documented in this file.

## Unreleased

## [0.5.0](https://github.com/passageidentity/passage-php/compare/v0.4.0...v0.5.0) (2024-12-11)


### Features

* add new classes for PassageUser, CreateUserArgs, and UpdateUserArgs ([#90](https://github.com/passageidentity/passage-php/issues/90)) ([7afac85](https://github.com/passageidentity/passage-php/commit/7afac8582143b00228224045ebd49b437b29366b))
* add parameter guards ([#89](https://github.com/passageidentity/passage-php/issues/89)) ([9317085](https://github.com/passageidentity/passage-php/commit/9317085318c51c0c4369da52378ee1db39395fd3))
* adds audience validation when validating a jwt ([#87](https://github.com/passageidentity/passage-php/issues/87)) ([1700bce](https://github.com/passageidentity/passage-php/commit/1700bce2cf5de8c16f992b098e180715cd3f67c9))
* adds new classes and method signatures ([#86](https://github.com/passageidentity/passage-php/issues/86)) ([308894c](https://github.com/passageidentity/passage-php/commit/308894cd8966f4e40e533ad964e4cfaea3dbb5c3))
* **codegen:** create magic link request fields are now optional ([#88](https://github.com/passageidentity/passage-php/issues/88)) ([90fb5e3](https://github.com/passageidentity/passage-php/commit/90fb5e364bd176147b5fe814cb30fb386363e0a9))


### Bug Fixes

* adds passage-version header to all api calls ([#69](https://github.com/passageidentity/passage-php/issues/69)) ([0e98725](https://github.com/passageidentity/passage-php/commit/0e987251f989907750d6ead7608d302fd5e38ee7))


### Miscellaneous Chores

* add dev container ([#77](https://github.com/passageidentity/passage-php/issues/77)) ([749e888](https://github.com/passageidentity/passage-php/commit/749e8886764886900d3534acb5fa07f643c69405))
* bootstrap releases for path: . ([#79](https://github.com/passageidentity/passage-php/issues/79)) ([575d1cc](https://github.com/passageidentity/passage-php/commit/575d1cccadbf30eb63907d4874c759374ae5f0c6))
* resolve linting errors and warnings per PSR-12 ([#83](https://github.com/passageidentity/passage-php/issues/83)) ([9b527e4](https://github.com/passageidentity/passage-php/commit/9b527e41b761f519f278f8313e8979fb6e54beef))
* sets create magic link channel for email and phone identifiers ([#91](https://github.com/passageidentity/passage-php/issues/91)) ([e090c3f](https://github.com/passageidentity/passage-php/commit/e090c3f804dd9ba8d85354f29daae41b65fa0e1d))
* update all dependencies ([#84](https://github.com/passageidentity/passage-php/issues/84)) ([6a1759e](https://github.com/passageidentity/passage-php/commit/6a1759e5fde9ad8c8d1c32e5b908d05e5fd24a1f))

## [0.4.0] - 2024-03-21

### Added
Expand Down Expand Up @@ -58,4 +83,3 @@ All notable changes to this project will be documented in this file.
### Added

- Created the PHP SDK.

15 changes: 9 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "passageidentity/passage-php",
"description": "Passkey Complete for PHP - Integrate into your PHP API or service to enable a completely passwordless standalone auth solution with Passage by 1Password.",
"version": "0.4.1",
"version": "0.5.0",
"keywords": [
"authentication",
"passkeys",
Expand Down Expand Up @@ -49,15 +49,18 @@
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
"OpenAPI\\Client\\" : ["generated/lib/", "custom/models/"],
"psr-4": {
"OpenAPI\\Client\\": [
"generated/lib/",
"custom/models/"
],
"Passage\\Client\\": "custom/lib/"
}
},
"autoload-dev": {
"psr-4": {
"OpenAPI\\Client\\Test\\" : "generated/test/",
"Passage\\Client\\Test\\" : "custom/test/"
"psr-4": {
"OpenAPI\\Client\\Test\\": "generated/test/",
"Passage\\Client\\Test\\": "custom/test/"
}
}
}

0 comments on commit 51d73ec

Please sign in to comment.