|
1 | 1 | # Change Log
|
2 | 2 |
|
| 3 | + |
| 4 | +## [0.0.7](https://github.com/MindFlavor/AzureSDKForRust/releases/tag/0.0.7) (2015-01-14) |
| 5 | + |
| 6 | +**Implemented features:** |
| 7 | +* Added support for ```put_block``` in ```Blob```. |
| 8 | +* Added support for ```filter``` in ```Blob::list```. Now you can filter the blobs to find specifying the starting string. |
| 9 | +* Added support for ```timeout``` in ```Blob::list```. |
| 10 | +* Added support for ```timeout```, ```prefix``` and ```max_results``` in ```Container::list```. |
| 11 | +* Added support for ```max_results``` in ```Container::list```. Now you can limit how many containers could be returned by a single call. |
| 12 | +* Added support for ```next_marker``` in ```Container::list```. Now you can continue enumerating your containers in subsequent calls. |
| 13 | + |
| 14 | +**Refactoring:** |
| 15 | +* Moved ```Container::list``` options in a separate structure (```azure::storage::container::ListContainerOptions```). |
| 16 | +* Moved ```Blob::put_page``` options in a separate structure (```azure::storage::blob::PutPageOptions```). |
| 17 | + |
| 18 | +**Bugfixes:** |
| 19 | +* Corrected the format bug in ```azure::core::range::Range``` and ```azure::core::range::ba512_range::BA512Range```. Previously the string returned was |
| 20 | +formatted as ```{}/{}``` which is invalid for the ```x-ms-range``` header. Now the format is ```bytes={}-{}``` as expected. I still need to figure out if |
| 21 | + I need to change the ```FromStr``` trait too to match the change. |
| 22 | + |
| 23 | +**Removed methods:** |
| 24 | +* Removed ```ListBlobOptions::new``` as it was just useless boilerplate. |
| 25 | + |
3 | 26 | ## [0.0.6](https://github.com/MindFlavor/AzureSDKForRust/releases/tag/0.0.6) (2016-01-12)
|
4 | 27 |
|
5 | 28 | **Implemented features:**
|
6 |
| -* Added support for max_results in list_blobs. Now you can limit how many blobs could be returned by a single call. |
7 |
| -* Added support for next_marker in list_blobs. Now you can continue enumerating your blobs in subsequent calls. |
8 |
| -* Added put page for page blobs. |
9 |
| -* Added clear page for page blobs. |
| 29 | +* Added support for max_results in ```Blob::list```. Now you can limit how many blobs could be returned by a single call. |
| 30 | +* Added support for next_marker in ```Blob::list```. Now you can continue enumerating your blobs in subsequent calls. |
| 31 | +* Added ```put page``` for page blobs. |
| 32 | +* Added ```clear page``` for page blobs. |
10 | 33 |
|
11 | 34 | **Refactoring:**
|
12 | 35 | * Added page constraints (512-bytes aligned).
|
13 |
| -* Most methods moved from storage::Client to correct structs (ie storage::container::Container and storage::blob::Blob). |
14 |
| -* Moved list_blobs options in a separate structure (```azure::storage::blob::ListBlobOptions```). |
| 36 | +* Most methods moved from ```storage::Client``` to correct structs (ie ```storage::container::Container``` and ```storage::blob::Blob```). |
| 37 | +* Moved ```Blob::list``` options in a separate structure (```azure::storage::blob::ListBlobOptions```). |
15 | 38 |
|
16 | 39 | ## [0.0.5](https://github.com/MindFlavor/AzureSDKForRust/releases/tag/0.0.5) (2016-01-05)
|
17 | 40 |
|
|
0 commit comments