WebSub/PubSubHubbub - Version 3.1.2

Version Description

  • add new WebSub Hub
Download this release

Release Info

Developer pfefferle
Plugin Icon 128x128 WebSub/PubSubHubbub
Version 3.1.2
Comparing to
See all releases

Code changes from version 3.1.1 to 3.1.2

includes/class-pubsubhubbub-publisher.php CHANGED
@@ -121,6 +121,7 @@ class PubSubHubbub_Publisher {
121
  $hub_urls = array(
122
  'https://pubsubhubbub.appspot.com',
123
  'https://pubsubhubbub.superfeedr.com',
 
124
  );
125
  }
126
 
@@ -177,4 +178,4 @@ class PubSubHubbub_Publisher {
177
 
178
  return $feed_urls;
179
  }
180
- }
121
  $hub_urls = array(
122
  'https://pubsubhubbub.appspot.com',
123
  'https://pubsubhubbub.superfeedr.com',
124
+ 'https://websubhub.com/hub'
125
  );
126
  }
127
 
178
 
179
  return $feed_urls;
180
  }
181
+ }
includes/deprecated.php CHANGED
@@ -34,7 +34,7 @@ function pshb_publish_to_hub( $feed_urls ) {
34
  * @deprecated
35
  */
36
  function pshb_feed_urls( $feed_urls ) {
37
- _deprecated_function( __FUNCTION__, '3.0.0', 'get_feed_urls_by_post_id()' );
38
 
39
  return apply_filters( 'pshb_feed_urls', $feed_urls );
40
  }
34
  * @deprecated
35
  */
36
  function pshb_feed_urls( $feed_urls ) {
37
+ //_deprecated_function( __FUNCTION__, '3.0.0', 'get_feed_urls_by_post_id()' );
38
 
39
  return apply_filters( 'pshb_feed_urls', $feed_urls );
40
  }
pubsubhubbub.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WebSub (FKA. PubSubHubbub)
4
  * Plugin URI: https://github.com/pubsubhubbub/wordpress-pubsubhubbub/
5
  * Description: A better way to tell the world when your blog is updated.
6
- * Version: 3.1.1
7
  * Author: PubSubHubbub Team
8
  * Author URI: https://github.com/pubsubhubbub/wordpress-pubsubhubbub
9
  * License: MIT
3
  * Plugin Name: WebSub (FKA. PubSubHubbub)
4
  * Plugin URI: https://github.com/pubsubhubbub/wordpress-pubsubhubbub/
5
  * Description: A better way to tell the world when your blog is updated.
6
+ * Version: 3.1.2
7
  * Author: PubSubHubbub Team
8
  * Author URI: https://github.com/pubsubhubbub/wordpress-pubsubhubbub
9
  * License: MIT
readme.txt CHANGED
@@ -5,8 +5,8 @@ Author: PubSubHubbub Team
5
  Author URI: https://github.com/pubsubhubbub/wordpress-pubsubhubbub
6
  Tags: webhook, websub, pubsub, ping, indieweb, ostatus
7
  Requires at least: 4.5
8
- Tested up to: 5.8
9
- Stable tag: 3.1.1
10
 
11
  A better way to tell the world when your blog is updated.
12
 
@@ -29,6 +29,7 @@ By default this plugin will ping the following hubs:
29
 
30
  * [Demo hub on Google App Engine](https://pubsubhubbub.appspot.com "Demo hub on Google App Engine")
31
  * [SuperFeedr](https://pubsubhubbub.superfeedr.com "SuperFeedr")
 
32
 
33
  Please contact me if you operate a hub that you would like to be included as a default option.
34
 
@@ -75,6 +76,10 @@ A WebSub Subscriber is an implementation that discovers the hub and topic URL gi
75
 
76
  Project maintained on github at [pubsubhubbub/wordpress-pubsubhubbub](https://github.com/pubsubhubbub/wordpress-pubsubhubbub).
77
 
 
 
 
 
78
  = 3.1.1 =
79
 
80
  * fix deprecation issue (PHP8)
5
  Author URI: https://github.com/pubsubhubbub/wordpress-pubsubhubbub
6
  Tags: webhook, websub, pubsub, ping, indieweb, ostatus
7
  Requires at least: 4.5
8
+ Tested up to: 6.1
9
+ Stable tag: 3.1.2
10
 
11
  A better way to tell the world when your blog is updated.
12
 
29
 
30
  * [Demo hub on Google App Engine](https://pubsubhubbub.appspot.com "Demo hub on Google App Engine")
31
  * [SuperFeedr](https://pubsubhubbub.superfeedr.com "SuperFeedr")
32
+ * [WebSubHub](https://websubhub.com "WebSubHub")
33
 
34
  Please contact me if you operate a hub that you would like to be included as a default option.
35
 
76
 
77
  Project maintained on github at [pubsubhubbub/wordpress-pubsubhubbub](https://github.com/pubsubhubbub/wordpress-pubsubhubbub).
78
 
79
+ = 3.1.2 =
80
+
81
+ * add new WebSub Hub
82
+
83
  = 3.1.1 =
84
 
85
  * fix deprecation issue (PHP8)