2025-W37

Sep 8–14, 2025

6 releases

This week's releases focused on improving performance and adding new features to the Airfleet ecosystem. The most notable change is the addition of object caching for ACF Local JSON through new classes and filters in airfleet/airfleet-wordpress-framework-php. This will help improve performance by reducing the number of database queries. Additionally, a new CTA plugin was released with several new blocks and partials, including custom post types for CTAs. The dependencies were also updated across various repositories to ensure compatibility and stability.

github-files

Release 1.23.0

Added airfleet/riseai-website-2025 to sync.yml

GitHub
View full changelog

Changed

  • sync.yml: Added airfleet/riseai-website-2025
airfleet-elements-cta-plugin

Release 0.4.0

Added new CTA blocks and partials, including a custom post type for CTAs.

GitHub
View full changelog

Added

  • Added elements-partials-cta (common partial for CTA blocks)
  • Added elements-partials-cta-with-form (common partial for CTA with Form blocks)
  • Added elements-blocks-cta-v2 (Block to render CTA with new performant approach)
  • Added elements-blocks-cta-with-form-v2 (Block to render CTA with Form with new performant approach)
  • Added elements-blocks-cta-post (block to render a single post from CTA CPT)
  • Added afe_cta (CTA cutom post type to add CTAs as collection)

Changed

  • elements-blocks-cta: refactored to use elements-partials-cta
  • elements-blocks-cta-with-form: refactored to use elements-partials-cta-with-form

Fixed

  • Tagline was centered for Form Right layout in CTA with Form block
airfleet-wordpress-framework-php

Release 1.17.0

Added object caching for ACF Local JSON through new classes and filters

GitHub
View full changelog

Added

  • Added object caching for ACF Local JSON through Acf\LocalJson classes
  • Added filter airfleet/framework/acf/local_json_cache/enabled to enable/disable cache for ACF Local JSON
  • Added filter airfleet/framework/acf/local_json_cache/expiration to set cache duration in seconds for ACF Local JSON
  • Added action airfleet/framework/acf/local_json_cache/invalidate to invalidate ACF Local JSON cache
airfleet-wordpress-dev

Release 3.7.0

Updated dependencies: parcel, transformer-sass, watcher-linux-x64-glibc, and lightningcss-linux-x64-gnu.

GitHub
View full changelog

Changed

  • Bump parcel to parcel 2.15.4
  • Bump @parcel/transformer-sass to 2.15.4
  • Bump @parcel/watcher-linux-x64-glibc to 2.5.1
  • Bump lightningcss-linux-x64-gnu to 1.30.1
airfleet-elements-core-plugin

Release 1.11.0

Bumped airfleet/wordpress-framework to 1.16.0, fixing a PHP error with certain block IDs.

GitHub
View full changelog

Changed

  • Bump airfleet/wordpress-framework to 1.16.0 (fixes issue where certain block IDs caused a PHP error due to strings be treated as callables)
airfleet-wordpress-framework-php

Release 1.16.0

Added is_string check for attribute values in Helpers\DisplayImplementation

GitHub
View full changelog

Added

  • Helpers\DisplayImplementation: Added is_string check in attributes() function to differentiate between regular string and callable functions as attribute value.