Plugin Directory

Changeset 3269396


Ignore:
Timestamp:
04/09/2025 07:32:00 AM (12 months ago)
Author:
tlamedia
Message:

Update to version 2.4.2 from GitHub

Location:
gtm-kit
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • gtm-kit/tags/2.4.2/changelog.txt

    r3266236 r3269396  
    11*** GTM Kit ***
     2
     32025-04-09 - version 2.4.2
     4* Fix: Fix fatal error in admin when used together with MC4WP: Mailchimp for WordPress.
     5* Dev: Tested up to WordPress 6.8.
     6* Dev: Tested up to WooCommerce 9.8.
    27
    382025-04-02 - version 2.4.1
  • gtm-kit/tags/2.4.2/gtm-kit.php

    r3266236 r3269396  
    44 *
    55 * Plugin Name: GTM Kit
    6  * Version:     2.4.1
     6 * Version:     2.4.2
    77 * Plugin URI:  https://gtmkit.com/
    88 * Description: Google Tag Manager implementation focusing on flexibility and pagespeed.
     
    1616 *
    1717 * WC requires at least: 8.4
    18  * WC tested up to: 9.7
     18 * WC tested up to: 9.8
    1919 *
    2020 * @package GTM Kit
     
    2828}
    2929
    30 const GTMKIT_VERSION = '2.4.1';
     30const GTMKIT_VERSION = '2.4.2';
    3131
    3232if ( ! defined( 'GTMKIT_FILE' ) ) {
  • gtm-kit/tags/2.4.2/languages/gtm-kit.pot

    r3266236 r3269396  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: GTM Kit 2.4.1\n"
     5"Project-Id-Version: GTM Kit 2.4.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gtm-kit\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-04-03T10:18:51+00:00\n"
     12"POT-Creation-Date: 2025-04-08T14:48:09+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.9.0\n"
  • gtm-kit/tags/2.4.2/readme.txt

    r3266236 r3269396  
    33Donate link: https://github.com/tlamedia/gtm-kit
    44Tags: google tag manager, gtm, woocommerce, analytics, ga4
    5 Tested up to: 6.7
    6 Stable tag: 2.4.1
     5Tested up to: 6.8
     6Stable tag: 2.4.2
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9797== Changelog ==
    9898
     99= 2.4.2 =
     100
     101Release date: 2025-04-09
     102
     103#### Bugfixes:
     104 * Fix fatal error when used together with MC4WP: Mailchimp for WordPress.
     105
     106#### Other:
     107 * Tested up to WordPress 6.8.
     108 * Tested up to WooCommerce 9.8.
     109
    99110= 2.4.1 =
    100111
  • gtm-kit/tags/2.4.2/src/Integration/WooCommerce.php

    r3254521 r3269396  
    11221122     * Has WooCommerce blocks
    11231123     *
    1124      * @param int $post_id The post ID.
     1124     * @param int|null $post_id The post ID.
    11251125     *
    11261126     * @return array<int, mixed>
    11271127     */
    1128     public function has_woocommerce_blocks( int $post_id ): array {
     1128    public function has_woocommerce_blocks( ?int $post_id ): array {
     1129        if ( null === $post_id ) {
     1130            return [];
     1131        }
     1132
    11291133        $post_content = get_the_content( null, false, $post_id );
    11301134
  • gtm-kit/tags/2.4.2/vendor/composer/installed.php

    r3266155 r3269396  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '08f8e3ee6f0805b3abcefb99a363510df9be5e84',
     6        'reference' => '12d5e68b376e59638d0b93a3c5dbaca4a9eda572',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '08f8e3ee6f0805b3abcefb99a363510df9be5e84',
     16            'reference' => '12d5e68b376e59638d0b93a3c5dbaca4a9eda572',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • gtm-kit/trunk/changelog.txt

    r3266236 r3269396  
    11*** GTM Kit ***
     2
     32025-04-09 - version 2.4.2
     4* Fix: Fix fatal error in admin when used together with MC4WP: Mailchimp for WordPress.
     5* Dev: Tested up to WordPress 6.8.
     6* Dev: Tested up to WooCommerce 9.8.
    27
    382025-04-02 - version 2.4.1
  • gtm-kit/trunk/gtm-kit.php

    r3266236 r3269396  
    44 *
    55 * Plugin Name: GTM Kit
    6  * Version:     2.4.1
     6 * Version:     2.4.2
    77 * Plugin URI:  https://gtmkit.com/
    88 * Description: Google Tag Manager implementation focusing on flexibility and pagespeed.
     
    1616 *
    1717 * WC requires at least: 8.4
    18  * WC tested up to: 9.7
     18 * WC tested up to: 9.8
    1919 *
    2020 * @package GTM Kit
     
    2828}
    2929
    30 const GTMKIT_VERSION = '2.4.1';
     30const GTMKIT_VERSION = '2.4.2';
    3131
    3232if ( ! defined( 'GTMKIT_FILE' ) ) {
  • gtm-kit/trunk/languages/gtm-kit.pot

    r3266236 r3269396  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: GTM Kit 2.4.1\n"
     5"Project-Id-Version: GTM Kit 2.4.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gtm-kit\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-04-03T10:18:51+00:00\n"
     12"POT-Creation-Date: 2025-04-08T14:48:09+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.9.0\n"
  • gtm-kit/trunk/readme.txt

    r3266236 r3269396  
    33Donate link: https://github.com/tlamedia/gtm-kit
    44Tags: google tag manager, gtm, woocommerce, analytics, ga4
    5 Tested up to: 6.7
    6 Stable tag: 2.4.1
     5Tested up to: 6.8
     6Stable tag: 2.4.2
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9797== Changelog ==
    9898
     99= 2.4.2 =
     100
     101Release date: 2025-04-09
     102
     103#### Bugfixes:
     104 * Fix fatal error when used together with MC4WP: Mailchimp for WordPress.
     105
     106#### Other:
     107 * Tested up to WordPress 6.8.
     108 * Tested up to WooCommerce 9.8.
     109
    99110= 2.4.1 =
    100111
  • gtm-kit/trunk/src/Integration/WooCommerce.php

    r3254521 r3269396  
    11221122     * Has WooCommerce blocks
    11231123     *
    1124      * @param int $post_id The post ID.
     1124     * @param int|null $post_id The post ID.
    11251125     *
    11261126     * @return array<int, mixed>
    11271127     */
    1128     public function has_woocommerce_blocks( int $post_id ): array {
     1128    public function has_woocommerce_blocks( ?int $post_id ): array {
     1129        if ( null === $post_id ) {
     1130            return [];
     1131        }
     1132
    11291133        $post_content = get_the_content( null, false, $post_id );
    11301134
  • gtm-kit/trunk/vendor/composer/installed.php

    r3266155 r3269396  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '08f8e3ee6f0805b3abcefb99a363510df9be5e84',
     6        'reference' => '12d5e68b376e59638d0b93a3c5dbaca4a9eda572',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '08f8e3ee6f0805b3abcefb99a363510df9be5e84',
     16            'reference' => '12d5e68b376e59638d0b93a3c5dbaca4a9eda572',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.