# CHANGELOGAll notable changes to this project will be documented in this file.The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).## [Unreleased]### Added- Add `Package::warmCache()` for preloading metadata.## [2.1.0] - 2026-05-10### Added- Add Laravel 13 support.### Changed- Improve default cache key generation for tagged cache stores.### Deprecated- Deprecate `Package::legacyHandle()` and schedule removal in v3.0.### Fixed- Fix null handling in `Package::resolveTenant()`.## [2.0.0] - 2026-03-01### Removed- Drop Laravel 11 support.### Security- Harden signed URL validation against malformed host headers.[Unreleased]: https://github.com/vendor/package/compare/v2.1.0...HEAD[2.1.0]: https://github.com/vendor/package/compare/v2.0.0...v2.1.0[2.0.0]: https://github.com/vendor/package/releases/tag/v2.0.0
<?phpnamespace Vendor\Package;class Client{ /** * @deprecated Use handle() instead. Will be removed in v3.0. */ public function legacyHandle(array $payload): array { trigger_error( 'Client::legacyHandle() is deprecated. Use Client::handle().', E_USER_DEPRECATED ); return $this->handle($payload); } public function handle(array $payload): array { return $payload; }}