autoload 7.x-1.4

Bug fixes
New features
  1. Fix class seeker (PSR-4 support)
  2. Added support of Drupal-way namespaces (lib/Drupal -> Drupal\module_name, src -> Drupal\module_name)
  3. Extended tests coverage

autoload 7.x-1.3

Bug fixes
New features
  1. Allow autoloading for disabled and never enabled modules when "run-tests.sh" is used

autoload 7.x-1.2

Bug fixes
New features
  1. Fixed coding standards errors
  2. Allow autoloading for SimpleTest tests

autoload 6.x-2.1

New features

Changes since 6.x-2.0:

  • #1091176 by te-brian, Dave Reid: Disable registry miss watchdog messages by default.
  • #1091176: Added watchdog notice for autoload registry misses.
  • Removing translation directories
  • Stripping CVS keywords

autoload 6.x-2.0

Changes since DRUPAL-6--2-0-RC1:

  • #943168 by Dave Reid: Added autoload_get_lookup() to help maintain backwards compatibility.
  • #904856 by Dave Reid: Added new autoload.api.php and updated README.txt.

autoload 6.x-2.0-rc1

New features

Changes since DRUPAL-6--1-4:

  • #817496 by mikeryan, Dave Reid: Backported D7 registry to autoload via .info files with compatibility support for the 1.x autoload hooks.
  • by Dave Reid: Bumped update from 6002() to 6200() since it exists on the 2.x branch.
  • #904840 by Dave Reid: Added 'Class registry' item into Administration Menu's 'Flush all caches' menu.

autoload 6.x-1.4

Bug fixes

Nothing really exciting in this release. Just various bug fixes by various people. Thanks, folks!

Changes since DRUPAL-6--1-3:

autoload 6.x-1.3

Bug fixes

This version is another critical bug fix. In 1.2, if the lookup table is empty then we will re-request the lookup table from the cache on every page request. That could result in several dozen identical cache_get() calls that just burns cycles. This version fixes that. It also switches from require_once() to require(), which should be very slightly faster.

There are no API changes.

autoload 6.x-1.2

Bug fixes

This release fixes a critical bug in 1.1. In earlier versions, the lookup table was rebuilt on every failed lookup on the logic that you're unlikely to actually trigger a lookup unless you actually had data. However, I discovered that was causing dozens of cache_set() calls per page, which is doubleplusungood. This version uses hook_flush_caches() to rebuild the lookup table instead, which is really should have done in the first place.

autoload 6.x-1.1

Bug fixes

Fixed critical bug where hook_autoload_info_alter() wasn't being called, but hook_autoload_alter() was. Oopsies.

Subscribe with RSS Subscribe to Releases for Autoload