Skip to content

Commit d7bb821

Browse files
committed
build(release): bump version to 4.1.1
1 parent afda904 commit d7bb821

File tree

5 files changed

+80
-5
lines changed

5 files changed

+80
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "posts-bridge",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"author": "Còdec",
55
"license": "GPL-2.0-or-later",
66
"scripts": {

posts-bridge/migrations/4.1.1.php

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?php
2+
/**
3+
* Migration 4.1.1
4+
*
5+
* @package postsbridge
6+
*/
7+
8+
if ( ! defined( 'ABSPATH' ) ) {
9+
exit();
10+
}
11+
12+
/**
13+
* Migration 4.1.0.
14+
*
15+
* - Renames HTTP setting option on the database.
16+
*/
17+
function posts_bridge_migration_411() {
18+
$general = get_option( 'posts-bridge_general', array() ) ?: array();
19+
20+
if ( ! isset( $general['synchronization']['recurrence'] ) ) {
21+
return;
22+
}
23+
24+
switch ( $general['synchronization']['recurrence'] ) {
25+
case 'minutly':
26+
$general['synchronization']['recurrence'] = 'every_minute';
27+
break;
28+
case 'quarterly':
29+
$general['synchronization']['recurrence'] = 'pb-quarterly';
30+
break;
31+
case 'twicehourly':
32+
$general['synchronization']['recurrence'] = 'pb-twicehourly';
33+
break;
34+
case 'twicedaily':
35+
$general['synchronization']['recurrence'] = 'pb-twicedaily';
36+
break;
37+
}
38+
39+
update_option( 'posts-bridge_general', $general );
40+
}
41+
42+
posts_bridge_migration_411();

posts-bridge/posts-bridge.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010
* Text Domain: posts-bridge
1111
* Domain Path: /languages
12-
* Version: 4.1.0
12+
* Version: 4.1.1
1313
* Requires PHP: 8.0
1414
* Requires at least: 6.7
1515
*

posts-bridge/readme.txt

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: posts integration, remote cms, synchronization, http api, automation
55
Donate link: https://buymeacoffee.com/codeccoop
66
License: GPLv2 or later
77
License URI: http://www.gnu.org/licenses/gpl-2.0.html
8-
Stable Tag: 4.1.0
8+
Stable Tag: 4.1.1
99
Tested up to: 6.9
1010

1111
Synchronize backend data with WordPress post collections over HTTP APIs, enabling remote and automated web content management.
@@ -120,6 +120,39 @@ You can get support from Còdec using the [Posts Bridge support forum](https://w
120120

121121
== Changelog ==
122122

123+
= 4.1.1 =
124+
* feat: full live fetch strategy with automatic post titles
125+
* feat: detached synchronizations
126+
* feat: introspection api cache
127+
* feat: introspection filters on generic addon
128+
* feat: remote fields schema as addon introspection requests
129+
* feat: remote fields post type selector for site editor
130+
* feat: check dav modified on nextcloud table headers requests
131+
* feat: odoo pings as login requests
132+
133+
= 4.1.0 =
134+
feat: apply wp coding standards
135+
feat: plugin repo directory refactor
136+
feat: http deps as library
137+
feat: grist addon
138+
feat: airtable addon
139+
feat: holded addon
140+
feat: google calendar addon
141+
feat: nextcloud addon refactor
142+
feat: odoo addon refactor
143+
feat: dolibarr addon refactor
144+
feat: openapi response introspections
145+
feat: new cpts settings tab and support for custom fields
146+
feat: addon endpoints and introspection
147+
feat: bridge single_endpoint pattern
148+
feat: move lock files to uploads
149+
feat: mappers api fields datalists
150+
feat: post custom fields and taxonomies datalists
151+
feat: attachments requested with backends
152+
feat: addons http defaults registration
153+
feat: dropdown select search input
154+
fix: gsheets value range url encoding
155+
123156
= 4.0.1 =
124157
* feat: odoo add-on jobs template
125158
* feat: disable plugin activation if uploads dir is not writable

0 commit comments

Comments
 (0)