You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 8, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: BreakingChanges.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,23 @@
1
+
Tracking Breaking changes in 0.19.0
2
+
3
+
Blob
4
+
* Populate content MD5 for range gets on Blobs.
5
+
-`MicrosoftAzure\Storage\Blob\Models\BlobProperties::getContentMD5()` will always return the value of the whole blob’s MD5 value.
6
+
- Added `MicrosoftAzure\Storage\Blob\Models\BlobProperties::getRangeContentMD5()` to get MD5 of a blob range.
7
+
*`MicrosoftAzure\Storage\Blob\Models\GetBlobOptions` and `MicrosoftAzure\Storage\Blob\Models\ListPageBlobRangesOptions` now provide `setRange()` and `getRange()` to accept a `MicrosoftAzure\Storage\Common\Models\Range` object. Following methods are removed:
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ You can use the following commands to run tests:
47
47
* One particular test case: ``phpunit -c phpunit.dist.xml --filter <case name>`` or ``phpunit -c phpunit.functional.dist.xml --filter <case name>``
48
48
49
49
### Testing Features
50
-
As you develop a feature, you'll need to write tests to ensure quality. Your changes should be covered by both unit tests and functional tests. The unit tests and functional tests codes should be placed under tests/unit and tests/functional respectively. You should also run existing tests related to your change to address any unexpected breaks.
50
+
As you develop a feature, you'll need to write tests to ensure quality. Your changes should be covered by both unit tests and functional tests. The unit tests and functional tests codes should be placed under tests/Unit and tests/Functional respectively. You should also run existing tests related to your change to address any unexpected breaks.
* The public access level of a container is now returned from the List Containers and Get Container Properties APIs.
19
+
*`MicrosoftAzure\Storage\Blob\Models\GetBlobOptions` and `MicrosoftAzure\Storage\Blob\Models\ListPageBlobRangesOptions` now provide `setRange()` and `getRange()` to accept a `MicrosoftAzure\Storage\Common\Models\Range` object. Following methods are removed:
20
+
-`setRangeStart()`
21
+
-`getRangeStart()`
22
+
-`setRangeEnd()`
23
+
-`getRangeEnd()`
24
+
25
+
Queue
26
+
* The `QueueRestProxy::createMessage` now returns information about the message that was just added, including the pop receipt.
27
+
28
+
File
29
+
* Fixed a bug that setting content MD5 cannot work when creating files.
30
+
* Option parameter `ListDirectoriesAndFilesOptions` of `FileRestProxy::listDirectoriesAndFiles` is now able to set a prefix which limits the listing to a specified prefix.
31
+
* Populate content MD5 for range gets on Files.
32
+
-`MicrosoftAzure\Storage\File\Models\FileProperties::getContentMD5()` will always return the value of the whole file’s MD5 value.
33
+
- Added `MicrosoftAzure\Storage\File\Models\FileProperties::getRangeContentMD5()` to get MD5 of a file range.
34
+
1
35
2017.08 - version 0.18.0
2
36
3
37
All
4
38
* Updated `SharedAccessSignatureHelper` to accept `Datetime` type as `signedExpiry` or `signedStart` parameter when generating SAS tokens.
5
-
* Added samples under samples foder to generate account level or service level SAS tokens with `SharedAccessSignatureHelper`.
39
+
* Added samples under the samples folder to generate account level or service level SAS tokens with `SharedAccessSignatureHelper`.
6
40
* Fixed wrong PHPUnit `@covers` tags in unit and functional test.
0 commit comments