Skip to content

Commit

Permalink
Bump to 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Jul 24, 2023
1 parent 47f2a35 commit a3c84c4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Change Log

## [5.0.0](https://github.com/auth0/symfony/tree/5.0.0) (2023-10-01)
## [5.1.0](https://github.com/auth0/symfony/tree/5.0.0) (2023-07-24)

**Added**

- Organization Name support added for Authentication API and token handling ¹ ([#719](https://github.com/auth0/auth0-PHP/pull/719))

**Changed**

- Bumped `auth0-php` dependency version range to `^8.7`.
- Updated telemetry to indicate new `symfony` package name (previously `jwt-auth-bundle`.)

> **Note**
> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants.`
## [5.0.0](https://github.com/auth0/symfony/tree/5.0.0) (2023-01-10)

[Full Changelog](https://github.com/auth0/symfony/compare/4.0.0...5.0.0)

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"homepage": "https://github.com/auth0/symfony",
"require": {
"php": "^8.1",
"auth0/auth0-php": "^8.0",
"auth0/auth0-php": "^8.7",
"symfony/cache": "^6.1",
"symfony/framework-bundle": "^6.1",
"symfony/security-bundle": "^6.1"
Expand Down
4 changes: 2 additions & 2 deletions src/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

final class Service implements ServiceInterface
{
public const VERSION = '5.0.0-BETA1';
public const VERSION = '5.1.0';

private ?Auth0 $sdk = null;

Expand All @@ -33,7 +33,7 @@ public function getSdk()
$this->sdk = new Auth0($this->configuration);

HttpTelemetry::setEnvProperty('Symfony', Kernel::VERSION);
HttpTelemetry::setPackage('jwt-auth-bundle', self::VERSION);
HttpTelemetry::setPackage('symfony', self::VERSION);
}

return $this->sdk;
Expand Down

0 comments on commit a3c84c4

Please sign in to comment.