2.4 KiB
2.4 KiB
Changelog
All notable changes to Glide will be documented in this file.
0.3.1
- Fixed bug with URLs that contain spaces or other special characters. Thanks @jasonvarga! #33
0.3.0
- Large refactor for improve code organization. Many classes moved and renamed.
- Changed
league/flysystem
dependency to version1.x
. Nice work @frankdejonge! - Responses will now return
304 Not Modified
on subsequent requests. #20 - Added new source path prefix option to
Server
, withsetSourcePathPrefix()
andgetSourcePathPrefix()
methods. #26 - Added new cache path prefix option to
Server
, withsetCachePathPrefix()
andgetCachePathPrefix()
methods. #26 - Added new
source_path_prefix
andcache_path_prefix
options toServerFactory
. #26 - Added new
FilesystemException\FilesystemException
exception, and additional file system checks. - Changed manipulators to return an instance of
Intervention\Image\Image
. This allows for more rigorous manipulations to occur. #25 - Updated output manipulator to use source format when format is not set or invalid. Previously this was set to
jpg
by default. #24 - Renamed server method
getSourceFilename()
togetSourcePath()
, andgetCacheFilename()
togetCachePath()
. - Removed
$baseUrl
parameter from theServer
constructor. UsesetBaseUrl()
method instead.
0.2.0
- Removed
sign_key
option from theServer
class. For simplicity HTTP signatures are now configured and managed separately from the server. - Renamed
SignKey
toHttpSignature
. - Renamed
InvalidTokenException
toInvalidSignatureException
. - Added new
HttpSignature
interface, allowing for custom implementations. - Added new
HttpSignature
andUrlBuilder
factories. - Added new base URL option to server class.
0.1.1
- Added new
cacheFileExists
andsourceFileExists
methods to server. - Updated
getCacheFilename
method to accept aRequest
object or$filename
,$params
combination.
0.1.0
- First release, woohoo!