Compare commits

..

29 commits

Author SHA1 Message Date
40f5bdc94b test
Some checks failed
/ upload-release (push) Successful in 4s
PHP Code Checker / PHP Code Checker (pull_request) Successful in 47s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Failing after 53s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Failing after 55s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Failing after 51s
2024-10-29 21:06:12 +01:00
c75e1307df test
All checks were successful
/ upload-release (push) Successful in 3s
2024-10-29 21:00:34 +01:00
1c67f7a338 test
All checks were successful
/ upload-release (push) Successful in 4s
2024-10-29 20:58:59 +01:00
898a6baf7c test
All checks were successful
/ upload-release (push) Successful in 3s
2024-10-29 20:54:06 +01:00
2d40091866 test
All checks were successful
/ upload-release (push) Successful in 3s
2024-10-29 20:43:43 +01:00
d1c8a1266b test 2024-10-29 20:43:21 +01:00
b3f7d83bfa test
Some checks failed
/ upload-release (push) Failing after 3s
2024-10-29 20:42:10 +01:00
79bf945744 test
Some checks failed
/ upload-release (push) Failing after 3s
2024-10-29 20:39:19 +01:00
9d3f439edc test
Some checks failed
/ upload-release (push) Failing after 2s
2024-10-29 20:37:41 +01:00
d5465a3551 test
Some checks failed
/ upload-release (push) Failing after 2s
2024-10-29 20:37:05 +01:00
4b656c6457 test
Some checks failed
/ upload-release (push) Failing after 3s
2024-10-29 20:35:21 +01:00
0f1dd8be47 test
All checks were successful
/ upload-release (push) Successful in 3s
2024-10-29 17:52:29 +01:00
7fdf01356c typo
All checks were successful
/ upload-release (push) Successful in 4s
2024-10-29 17:51:16 +01:00
defeff32c1 test
Some checks failed
/ upload-release (push) Failing after 1s
2024-10-29 17:50:13 +01:00
804a967233 test
All checks were successful
/ upload-release (push) Successful in 4s
2024-10-29 17:31:58 +01:00
6a931e38a4 add step tot remove distignore files
All checks were successful
/ upload-release (push) Successful in 4s
2024-10-29 17:02:53 +01:00
df15c8610f test
All checks were successful
/ upload-release (push) Successful in 3s
2024-10-29 16:09:46 +01:00
a5f3d632f2 test
Some checks failed
/ upload-release (push) Failing after 3s
2024-10-29 16:08:14 +01:00
08a1172f80 test release workflow
Some checks failed
/ upload-release (push) Failing after 3s
2024-10-29 16:07:04 +01:00
67ea7f7b87 fix typo
Some checks failed
/ upload-release (push) Failing after 3s
2024-10-29 15:58:46 +01:00
48a086765b test FORGEJO_TOKEN
Some checks failed
/ upload-release (push) Failing after 3s
2024-10-29 15:57:25 +01:00
573c6bfa2a use a release token secret
Some checks failed
/ upload-release (push) Failing after 3s
2024-10-29 15:54:56 +01:00
6b4fb08337 use v prefix for release tags
Some checks failed
/ upload-release (push) Failing after 3s
2024-10-29 15:48:22 +01:00
a96ce18524 add token to release ci 2024-10-29 15:47:40 +01:00
ceeb161ca6 fix actions links
Some checks failed
/ upload-release (push) Failing after 4s
2024-10-29 15:43:49 +01:00
0bed532593 test release workflow
Some checks failed
/ upload-release (push) Failing after 4s
2024-10-29 15:41:22 +01:00
743d1e13f3 Use english license URI in main plugin file 2024-10-29 15:28:52 +01:00
557801db33 Tested with ActivityPub plugin up to 4.0.1 2024-10-29 15:28:06 +01:00
4cd1ef4aa0 Fix Text Domain Mismatch 2024-10-29 15:27:27 +01:00
7 changed files with 10 additions and 10 deletions

View file

@ -21,7 +21,7 @@ jobs:
MYSQL_ROOT_PASSWORD: root
strategy:
matrix:
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
php-version: ['8.1', '8.2', '8.3']
name: PHPUnit PHP ${{ matrix.php-version }}
env:
extensions: mysql
@ -45,7 +45,7 @@ jobs:
with:
path: |
./vendor/
key: cache-composer-phpunit-2
key: cache-composer-phpunit-1
- name: Setup PHP
uses: https://github.com/shivammathur/setup-php@v2

View file

@ -4,7 +4,7 @@
**Requires at least:** 6.5
**Tested up to:** 6.6
**Stable tag:** 0.2.0
**Requires PHP:** 7.4
**Requires PHP:** 8.1
**License:** AGPL-3.0-or-later
**License URI:** https://www.gnu.org/licenses/agpl-3.0.html
Integrating popular event plugins with the ActivityPub plugin.

View file

@ -9,7 +9,7 @@
* Text Domain: activitypub-event-bridge
* License: AGPL-3.0-or-later
* License URI: https://www.gnu.org/licenses/agpl-3.0.html
* Requires PHP: 7.4
* Requires PHP: 8.1
*
* Requires at least ActivityPub plugin with version >= 3.2.2. ActivityPub plugin tested up to: 4.0.1.
*

View file

@ -4,7 +4,7 @@
"description": "The ActivityPub Event Bridge help for event custom post types to federate properly.",
"type": "wordpress-plugin",
"require": {
"php": ">=7.4.0",
"php": ">=8.1.0",
"composer/installers": "^2.0"
},
"require-dev": {

View file

@ -121,9 +121,9 @@ final class The_Events_Calendar extends Event {
/**
* Get the event location.
*
* @return ?Place The place/venue if one is set.
* @return Place|array The place/venue if one is set.
*/
public function get_location(): ?Place {
public function get_location(): Place|null {
// Get short handle for the venues.
$venues = $this->tribe_event->venues;

View file

@ -252,7 +252,7 @@ class Setup {
*
* @return \Activitypub\Transformer\Base|null
*/
public function register_activitypub_event_transformer( $transformer, $wp_object, $object_class ): \Activitypub\Transformer\Base {
public function register_activitypub_event_transformer( $transformer, $wp_object, $object_class ): \Activitypub\Transformer\Base|null {
// If the current WordPress object is not a post (e.g., a WP_Comment), don't change the transformer.
if ( 'WP_Post' !== $object_class ) {
return $transformer;
@ -285,7 +285,7 @@ class Setup {
foreach ( $this->active_event_plugins as $event_plugin ) {
if ( ! in_array( $event_plugin->get_post_type(), $activitypub_supported_post_types, true ) ) {
$activitypub_supported_post_types[] = $event_plugin->get_post_type();
add_post_type_support( $event_plugin->get_post_type(), 'activitypub' );
add_post_type_support( $event_plugin->get_post_type(), 'activitypub-event-bridge' );
}
}
update_option( 'activitypub_support_post_types', $activitypub_supported_post_types );

View file

@ -4,7 +4,7 @@ Tags: events, fediverse, activitypub, calendar
Requires at least: 6.5
Tested up to: 6.6
Stable tag: 0.2.0
Requires PHP: 7.4
Requires PHP: 8.1
License: AGPL-3.0-or-later
License URI: https://www.gnu.org/licenses/agpl-3.0.html
Integrating popular event plugins with the ActivityPub plugin.