Changeset 3364188
- Timestamp:
- 09/18/2025 07:40:03 PM (6 months ago)
- Location:
- wp-connectr/trunk
- Files:
-
- 43 edited
-
changelog.txt (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
src/ACF/Rest_Request.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/ArgumentInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/ArgumentResolverInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/ArgumentResolverTrait.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/DefaultValueArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/DefaultValueInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/ArrayArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/BooleanArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/CallableArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/FloatArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/IntegerArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/ObjectArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/Literal/StringArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/LiteralArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/LiteralArgumentInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/ResolvableArgument.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Argument/ResolvableArgumentInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Container.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ContainerAwareInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ContainerAwareTrait.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Definition/Definition.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Definition/DefinitionAggregate.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Definition/DefinitionAggregateInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Definition/DefinitionInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/DefinitionContainerInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Exception/ContainerException.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Exception/NotFoundException.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Inflector/Inflector.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Inflector/InflectorAggregate.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Inflector/InflectorAggregateInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/Inflector/InflectorInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ReflectionContainer.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ServiceProvider/AbstractServiceProvider.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ServiceProvider/BootableServiceProviderInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregate.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregateInterface.php (modified) (1 diff)
-
vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderInterface.php (modified) (1 diff)
-
vendor_prefixed/psr/container/src/ContainerExceptionInterface.php (modified) (1 diff)
-
vendor_prefixed/psr/container/src/ContainerInterface.php (modified) (1 diff)
-
vendor_prefixed/psr/container/src/NotFoundExceptionInterface.php (modified) (1 diff)
-
wp-connectr.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-connectr/trunk/changelog.txt
r3363457 r3364188 1 1 *** Changelog *** 2 3 2025-09-18 - version 2.1.2 4 * Added support for Get V2 endpoint for ACF fields. ACF fields are now visible when fetching single records (previously hidden). 2 5 3 6 2025-09-17 - version 2.1.1 -
wp-connectr/trunk/readme.txt
r3363457 r3364188 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.2.0 8 Stable tag: 2.1. 18 Stable tag: 2.1.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wp-connectr/trunk/src/ACF/Rest_Request.php
r3363457 r3364188 73 73 $this->supported_routes[] = "{$base_route}/(?P<rest_base>{$rest_base})"; 74 74 $this->supported_routes[] = "{$base_route}/(?P<rest_base>{$rest_base})/(?P<id>[\d]+)"; 75 $this->supported_routes[] = "{$base_route}/(?P<rest_base>{$rest_base})/fetch"; 75 76 76 77 if ( post_type_supports( $post_type->name, 'revisions' ) ) { -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentResolverInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentResolverTrait.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/DefaultValueArgument.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/DefaultValueInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/ArrayArgument.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/BooleanArgument.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/CallableArgument.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/FloatArgument.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/IntegerArgument.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/ObjectArgument.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/StringArgument.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/LiteralArgument.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/LiteralArgumentInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ResolvableArgument.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ResolvableArgumentInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Container.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ContainerAwareInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ContainerAwareTrait.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/Definition.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionAggregate.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionAggregateInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/DefinitionContainerInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Exception/ContainerException.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Exception/NotFoundException.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/Inflector.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorAggregate.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorAggregateInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ReflectionContainer.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/AbstractServiceProvider.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/BootableServiceProviderInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregate.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregateInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/psr/container/src/ContainerInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/psr/container/src/NotFoundExceptionInterface.php
r3363457 r3364188 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 1 7-September-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 18-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/wp-connectr.php
r3363457 r3364188 27 27 * Plugin URI: https://www.reenhanced.com/products/wordpress-connector/ 28 28 * Description: Deeply integrates WordPress with Microsoft Power Automate. Microsoft Certified. Easily connect your site to Microsoft SharePoint, Dynamics, Teams or over 1000 other services. 29 * Version: 2.1.1 29 * Version: 2.1.2 30 30 * Author: Reenhanced LLC 31 31 * License: GPL-2.0+ … … 34 34 * 35 35 */ 36 define( 'WP_CONNECTR_VERSION', '2.1. 1' );36 define( 'WP_CONNECTR_VERSION', '2.1.2' ); 37 37 38 38 /*
Note: See TracChangeset
for help on using the changeset viewer.