Skip to content
Snippets Groups Projects
Verified Commit 47877247 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[TASK] Release version 8.1.2

parent e28ceba8
No related branches found
No related tags found
No related merge requests found
......@@ -27,11 +27,13 @@
namespace SGalinski\SgYoutube\Event;
use SGalinski\SgYoutube\Filter\FilterParameterBag;
/**
* Called before the call to the YouTube API
*/
final class BeforeYoutubeCallEvent {
private array $parameters;
private FilterParameterBag $parameters;
private int $maxResultsWithFilters;
......@@ -41,18 +43,18 @@ final class BeforeYoutubeCallEvent {
private mixed $id;
public function __construct(array $parameters) {
public function __construct(FilterParameterBag $parameters) {
$this->parameters = $parameters;
}
public function getParamters(): array {
public function getParamters(): FilterParameterBag {
return $this->parameters;
}
/**
* @return mixed
*/
public function getId() {
public function getId(): mixed {
return $this->id;
}
......
......@@ -131,13 +131,14 @@ class LicenceCheckService {
'8.0.0' => 1729271668, // Tue, 18 Oct 2024 20:57:50 GMT+3
'8.0.1' => 1732058531, // Tue, 19 Nov 2024 23:15:50 GMT+3
'8.1.0' => 1733341275, // Wed, 04 Dez 2024 20:57:50 GMT+3
'8.1.1' => 1737826502, // 2025-01-25T17:35:02Z
'8.1.1' => 1737826502, // 2025-01-25T17:35:02Z
'8.1.2' => 1737826693, // 2025-01-25T17:38:13Z
];
/**
* The current extension version
*/
public const CURRENT_VERSION = '8.1.1';
public const CURRENT_VERSION = '8.1.2';
/**
* @param mixed $validUntil A timestamp, which says the lifetime of this key.
......
......@@ -4,7 +4,7 @@
"description": "A solution for embedding YouTube videos, playlists, or channels easily into TYPO3 pages.",
"homepage": "https://www.sgalinski.de",
"license": "GPL-2.0-or-later",
"version": "8.1.1",
"version": "8.1.2",
"require": {
"typo3/cms-core": "^12.4 || ^13.4"
},
......
......@@ -32,11 +32,11 @@ $EM_CONF['sg_youtube'] = [
'author_email' => 'stefan@sgalinski.de',
'author_company' => 'sgalinski Internet Services (https://www.sgalinski.de)',
'state' => 'stable',
'version' => '8.1.1',
'version' => '8.1.2',
'constraints' => [
'depends' => [
'typo3' => '12.4.0-13.4.99',
'php' => '8.1.1-8.3.99',
'php' => '8.1.2-8.3.99',
],
'conflicts' => [],
'suggests' => [],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment