Changeset 3358663
- Timestamp:
- 09/09/2025 02:08:26 PM (6 months ago)
- Location:
- wp-connectr/trunk
- Files:
-
- 46 edited
-
changelog.txt (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/ACF/Rest_Api.php (modified) (1 diff)
-
src/Capabilities.php (modified) (1 diff)
-
src/DynamicSchemaProvider.php (modified) (3 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
-
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
r3346447 r3358663 1 1 *** Changelog *** 2 3 2025-09-08 - version 2.0.2 4 * Enhanced enum value normalization with optional null support for better Power Automate compatibility 2 5 3 6 2025-06-26 - version 2.0.0 -
wp-connectr/trunk/readme.txt
r3347067 r3358663 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.2.0 8 Stable tag: 2.0. 18 Stable tag: 2.0.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 74 74 == Changelog == 75 75 76 2025-09-08 - version 2.0.2 77 * Enhanced enum value normalization with optional null support for better Power Automate compatibility 78 76 79 2025-08-19 - version 2.0.1 77 80 * Resolves an issue with the plugin publishing process that caused issues with the plugin installation from the plugin directory. -
wp-connectr/trunk/src/ACF/Rest_Api.php
r3346447 r3358663 779 779 // For single select, populate enum with available choices 780 780 if ( isset( $schema['items'] ) && is_array( $schema['items'] ) && isset( $schema['items']['enum'] ) ) { 781 $schema['enum'] = DynamicSchemaProvider::normalize_enum_values( $schema['items']['enum'], 'string' ); 781 // Check if the ACF field has "Allow Null" enabled in validation settings 782 $allow_null = isset( $field['allow_null'] ) && $field['allow_null']; 783 $schema['enum'] = DynamicSchemaProvider::normalize_enum_values( $schema['items']['enum'], 'string', $allow_null ); 784 } 785 786 if ( empty( $schema['enum'] ) || ! is_array( $schema['enum'] ) || $schema['enum'][0] === null ) { 787 unset( $schema['enum'] ); 782 788 } 783 789 -
wp-connectr/trunk/src/Capabilities.php
r3250561 r3358663 32 32 add_role( 33 33 'wp_connectr_user', 34 'WP Connectr User',34 'WP Connectr Power Automate Service', 35 35 array( 36 36 'wp_connectr_manage' => true, -
wp-connectr/trunk/src/DynamicSchemaProvider.php
r3346447 r3358663 121 121 // Ensure enum values in array items match the item type and are unique 122 122 if ( isset( $item['items']['enum'] ) && isset( $item['items']['type'] ) ) { 123 $item['items']['enum'] = self::normalize_enum_values( $item['items']['enum'], $item['items']['type'] );123 $item['items']['enum'] = self::normalize_enum_values( $item['items']['enum'], $item['items']['type'], false ); 124 124 } 125 125 } … … 309 309 * @param array $enum_values The enum values to normalize 310 310 * @param string $type The target type (string, integer, number, boolean) 311 * @param bool $allow_null Whether to include null in the enum values 311 312 * @return array The normalized and deduplicated enum values 312 313 */ 313 public static function normalize_enum_values( $enum_values, $type ) {314 public static function normalize_enum_values( $enum_values, $type, $allow_null = false ) { 314 315 if ( ! is_array( $enum_values ) || empty( $enum_values ) ) { 315 316 return $enum_values; … … 342 343 } 343 344 345 // Add null to the enum if allowed and not already present 346 if ( $allow_null && ! in_array( null, $normalized, true ) ) { 347 $normalized[] = null; 348 } 349 344 350 return $normalized; 345 351 } -
wp-connectr/trunk/vendor/composer/installed.php
r3347067 r3358663 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' ed53c1551423955e116c30b82ec82a8dac85dfb9',6 'reference' => '32139fd19ae95317a7173e0be0d3d5e5da459155', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 44 44 'pretty_version' => 'dev-main', 45 45 'version' => 'dev-main', 46 'reference' => ' ed53c1551423955e116c30b82ec82a8dac85dfb9',46 'reference' => '32139fd19ae95317a7173e0be0d3d5e5da459155', 47 47 'type' => 'wordpress-plugin', 48 48 'install_path' => __DIR__ . '/../../', -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentResolverInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentResolverTrait.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/DefaultValueArgument.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/DefaultValueInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-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
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-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
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-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
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-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
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-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
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-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
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-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
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/LiteralArgument.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/LiteralArgumentInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ResolvableArgument.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ResolvableArgumentInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Container.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ContainerAwareInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ContainerAwareTrait.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/Definition.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionAggregate.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionAggregateInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/DefinitionContainerInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Exception/ContainerException.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Exception/NotFoundException.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/Inflector.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorAggregate.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorAggregateInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ReflectionContainer.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/AbstractServiceProvider.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/BootableServiceProviderInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregate.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregateInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/psr/container/src/ContainerInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/vendor_prefixed/psr/container/src/NotFoundExceptionInterface.php
r3347066 r3358663 3 3 * @license MIT 4 4 * 5 * Modified by reenhanced on 19-August-2025 using {@see https://github.com/BrianHenryIE/strauss}.5 * Modified by reenhanced on 09-September-2025 using {@see https://github.com/BrianHenryIE/strauss}. 6 6 */ 7 7 -
wp-connectr/trunk/wp-connectr.php
r3347067 r3358663 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.0. 129 * Version: 2.0.2 30 30 * Author: Reenhanced LLC 31 31 * License: GPL-2.0+ … … 34 34 * 35 35 */ 36 define( 'WP_CONNECTR_VERSION', '2.0. 1' );36 define( 'WP_CONNECTR_VERSION', '2.0.2' ); 37 37 38 38 /*
Note: See TracChangeset
for help on using the changeset viewer.