diff --git a/.github/workflows/cypress-custom.yml b/.github/workflows/cypress-custom.yml
index c40b05926..1a8b69f88 100644
--- a/.github/workflows/cypress-custom.yml
+++ b/.github/workflows/cypress-custom.yml
@@ -31,7 +31,7 @@ jobs:
fail-fast: false
matrix:
databases: [ 'mysql' ]
- server-versions: [ 'stable31', 'stable32', 'master' ]
+ server-versions: [ 'stable31', 'stable32', 'stable33', 'master' ]
include:
- php-versions: 8.2
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
index b5dc03da3..9b18b2360 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -53,7 +53,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- server-versions: ['stable31', 'stable32', 'master']
+ server-versions: ['stable31', 'stable32', 'stable33', 'master']
php-versions: ['8.2']
databases: ['mysql']
include:
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 912fa7830..9baa8b2c5 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -48,7 +48,7 @@ Have a good time and manage whatever you want.
pgsql
mysql
sqlite
-
+
diff --git a/lib/Share/SharePageShareDataDecorator.php b/lib/Share/SharePageShareDataDecorator.php
index 98d1db2f9..4dc6ff7bc 100644
--- a/lib/Share/SharePageShareDataDecorator.php
+++ b/lib/Share/SharePageShareDataDecorator.php
@@ -158,8 +158,8 @@ public function canSeeContent(): never {
throw new LogicException('Not implemented');
}
- public function getId(): int {
- return $this->share->getId();
+ public function getId(): string {
+ return (string)$this->share->getId();
}
public function getFullId(): string {