2026-W07

Feb 9–15, 2026

12 releases

New navigation blocks and components were added for headers, footers, and menus, alongside block visibility controls and gradient styling options. Monitoring capabilities were expanded with new settings and performance optimizations. Deployment configurations were refined through updated ignore rules and the removal of archived repositories. Several bug fixes addressed iframe attribute handling, text domain warnings, and script replacement logic.

github-files

Release 1.35.0

Removed archived repositories from sync configuration.

GitHub
View full changelog

Changed

  • sync.yml: removed archived repositories (captainup-website-2024, captainup-website-2025, nas-blog-2025)
airfleet-wordpress-dev

Release 4.6.1

Refined .deployignore to ignore specific nested directories and files.

GitHub
View full changelog

Fixed

  • Updated .deployignore to refine ignored nested directories and files
github-files

Release 1.34.0

Updated .deployignore to refine ignored nested directories and files

GitHub
View full changelog

Changed

  • Updated .deployignore to refine ignored nested directories and files
airfleet-theme-support-plugin

Release 4.2.0

Adds block visibility controls by category or individual selection, along with new categories and customization filters.

GitHub
View full changelog

Added

  • Added feature to Hide/Show blocks by category or individually
  • Added Airfleet Legacy and ACF category to blocks
  • Added airfleet/support/excluded-block-categories filter to change the list of categories available in excluded blocks feature
  • Added airfleet/support/default-excluded-block-categories filter to change the list of default selected categories available in excluded blocks feature
  • Added airfleet/support/airfleet-legacy-blocks filter to change the list of legacy blocks
airfleet-elements-modals-plugin

Release 2.1.1

Fixes script replacement and iframe attribute handling issues.

GitHub
View full changelog

Fixed

  • Fixed a bug where the PrepareLazyContent logic broke scripts by replacing code like iframe.src = '' inside <script> tags with iframe.data-airfleet-src = "".
  • Fixed an issue where LazyLoader didn't remove the type attribute from iframes unless they had a data-airfleet-src, so iframes with just a data-backup attribute were left incorrect.
airfleet-elements-colors-plugin

Release 2.1.0

Adds gradient components and CSS variables for background styling.

GitHub
View full changelog

Added

  • Added new component elements-components-background-gradient to use in the Background component to add background gradient styles
  • Added new component elements-components-color-gradient as a base component to be used in another components for gradient styles. Currently used in Background gradient component. Supporting five types for now: linear-gradient, radial-gradient, conic-gradient, repeating-linear-gradient and repeating-radial-gradient with basic options
  • Added option "Create CSS gradient presets classes" to the plugin options ACF page. Default is set to true
  • Added filter airfleet/elements/colors/gradients/presets to allow customization of gradient presets
  • Added CSS classes afc-gradient--background-{preset} for the color gradients
  • Added CSS variables --afu-gradient-{preset} for the color gradients
  • Added function airfleet_colors_gradient() (returns gradients API instance)
airfleet-lightyear-theme

Release 2.2.0

Adds a placeholder filter for gradient presets.

GitHub
View full changelog

Added

  • Added a placeholder filter for the gradient presets from the Airfleet Elements - Colors plugin
airfleet-monitoring-plugin

Release 1.1.2

Fixed a warning about the incorrect call to the _load_textdomain_just_in_time function.

GitHub
View full changelog

Fixed

  • Fixed warning Notice: Function _load_textdomain_just_in_time was called incorrectly
airfleet-elements-videos-plugin

Release 4.1.0

Added loading spinner animation styles for the loading state modifier class.

GitHub
View full changelog

Changed

  • elements-components-video-overlay: Added loading spinner animation styles for the afc-video--state-loading modifier class
airfleet-elements-nav-plugin

Release 0.1.0

Introduces navigation blocks and components for elements such as breadcrumbs, headers, footers, and menus, alongside customization filters and options.

GitHub
View full changelog

Added

  • Added options "Enable Menu Icons" and "Enable Submenu 100% Width".
  • Added block elements-blocks-breadcrumbs to display Yoast breadcrumbs.
  • Added block elements-blocks-header to display Header section.
  • Added block elements-blocks-footer to display Footer section.
  • Added block elements-blocks-minimal-footer to display Minimal Footer section.
  • Added component elements-components-breadcrumbs to render breadcrumbs.
  • Added component elements-components-copyright to render copyright.
  • Added component elements-components-language-switcher to render language switcher.
  • Added component elements-components-menu to render a menu.
  • Added component elements-components-search-bar to render a search bar in Header block.
  • Added component elements-components-social to render social icons.
  • Added partials breadcrumbs-separator-icon-* to render custom separator icons for breadcrumbs: arrow, bullet, chevron, hyphen, slash.
  • Added partial language-switcher-globe to render language switcher globe icon.
  • Added partial search-bar-close-icon to render close icon for search bar (renamed from close-icon).
  • Added partial search-icon to render search icon.
  • Added filter airfleet/elements/header/style to set style variation for header.
  • Added filter airfleet/elements/header/settings to set header settings (default, sticky, sticky-hide-on-scroll).
  • Added filter airfleet/elements/footer/style to set style variation for footer.
  • Added filter airfleet/elements/minimal-footer/style to set style variation for footer minimal style.
  • Added filter airfleet/elements/breadcrumbs/separator-icon to set icons for the breadcrumbs separator.
  • Added filter airfleet/elements/breadcrumbs/separator-icon/default to set default separator for the breadcrubs separator.
  • Added filter airfleet/elements/social/style to set style variation of social component.
  • Added filter airfleet/elements/social/networks to set social networks data.
  • Added partial menu-icon-dropdown-arrows for customizable dropdown arrow icon.
  • Added filter airfleet/elements/menu-icon-dropdown-arrow to customize the menu dropdown arrow SVG.
airfleet-monitoring-plugin

Release 1.1.0

Adds monitoring settings and performance optimizations including lazy Sentry initialization and caching, while fixing payload calculation bugs.

GitHub
View full changelog

Added

  • Added Settings tab under Tools > Monitoring
  • Added option to configure daily cron hour (default: 3 AM)
  • Added option to enable/disable PageSpeed test during data collection
  • Added filter airfleet/monitoring/skip_pagespeed to skip PageSpeed test
  • Added filter airfleet/monitoring/skip_dir_sizes to skip directory size calculations
  • Added source_type tag to Sentry events for filtering (airfleet, third-party-plugin, third-party-theme, wp-core)

Changed

  • Sentry SDK now initializes lazily only when an error occurs (significant performance improvement)
  • Optimized user counting with direct SQL query instead of loading all users into memory
  • Optimized post/taxonomy counting by eliminating duplicate wp_count_posts() calls
  • Directory sizes are now cached for 24 hours to reduce filesystem overhead
  • Directory sizes are now always recalculated during cron jobs to ensure fresh data is sent
  • PageSpeed test failure no longer fails the entire data collection job
  • Plugin activation now skips PageSpeed and directory size calculations to prevent timeout
  • Sentry now tracks critical errors (E_ERROR, E_PARSE, etc.) from all sources including third-party plugins, themes, and WP core
  • Sentry tracks all error severities for Airfleet plugins but only critical errors for non-Airfleet sources
  • Fatal errors in shutdown handler are now tracked regardless of source
  • No longer throws exceptions during Sentry initialization, only log them

Fixed

  • Fixed Sentry payload being calculated 2-3x on cold cache due to transient timing bug