2021-04-30 20:37:56 +05:30
|
|
|
## 0.2.0
|
|
|
|
|
2021-07-05 14:39:35 +05:30
|
|
|
### Added:
|
|
|
|
|
|
|
|
- `Buster.no_hash` Option to exclude select files from processing. These
|
|
|
|
files will be copied over without any processing for cache
|
|
|
|
busting(i.e, no renaming)
|
|
|
|
|
2021-07-14 21:41:46 +05:30
|
|
|
- `Buster.source` is tracked by cargo
|
|
|
|
|
2021-04-30 20:37:56 +05:30
|
|
|
### Changed:
|
|
|
|
|
|
|
|
- `Files::new()` takes a `&str`: Earlier versions were using
|
|
|
|
environment variables to pass filemap information from `build.rs`
|
|
|
|
component to program code but this proved to be unreliable. Starting
|
|
|
|
with `0.2.0`, `cache_buster` will write filemap to
|
|
|
|
`CACHE_BUSTER_DATA_FILE`(`./src/cache_buster_data.json`) and the user
|
|
|
|
is requested to read and pass the value to `File::new()`
|
|
|
|
|
2021-07-05 15:44:34 +05:30
|
|
|
- `Files.mime_types` now accepts an `Option<Vec<mime::Mime>>`. When it
|
|
|
|
is unset(i.e `None`), no mime based filtering is done and all files
|
|
|
|
inside source directory is considered for processing.
|
|
|
|
|
2021-04-30 21:27:56 +05:30
|
|
|
### Fixed:
|
|
|
|
|
|
|
|
- `Files::get()` now behaves as it is described in the documentation
|
|
|
|
|
2021-04-11 22:53:16 +05:30
|
|
|
## 0.1.1
|
|
|
|
|
2021-04-12 18:23:56 +05:30
|
|
|
### Added:
|
2021-04-30 20:37:56 +05:30
|
|
|
|
2021-04-12 18:23:56 +05:30
|
|
|
- Optional route prefix to `Processor`
|
|
|
|
|
2021-04-11 22:53:16 +05:30
|
|
|
### Changed:
|
2021-04-30 20:37:56 +05:30
|
|
|
|
2021-04-11 22:53:16 +05:30
|
|
|
- `Files::load()` became `Files::new()`
|
|
|
|
|
|
|
|
### Removed:
|
2021-04-30 20:37:56 +05:30
|
|
|
|
2021-04-11 22:53:16 +05:30
|
|
|
- Some methods on `Files` were for internal use only but they had a
|
|
|
|
public API, they were modified to private.
|
|
|
|
|
2021-04-10 17:45:00 +05:30
|
|
|
## 0.1.0
|
|
|
|
|
2021-04-11 22:53:16 +05:30
|
|
|
### Added:
|
2021-04-30 20:37:56 +05:30
|
|
|
|
2021-04-10 17:45:00 +05:30
|
|
|
- `SHA-256`-based cache-buster
|
|
|
|
- runtime filemap loading
|