Skip to content

Commit

Permalink
setblob breaking change information (#188)
Browse files Browse the repository at this point in the history
* Create changeloG.md

* Rename changeloG.md to changelog.md

* Update changelog.md

* Update changelog.md

* Create setblobs-container.md

* Create setblobs-container.md

* Delete setblobs-container.md

* Update setblobs-container.md

* Update setblobs-container.md
  • Loading branch information
iricigor authored Jul 31, 2020
1 parent eae493a commit 8de2bb7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
8 changes: 5 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

## version 0.5

### date: July 29th, 2020
Released in scope of MSFT Hackathon 2020 event

Breaking changes:
* `setblobs` is not supporting `--container` parameter anymore, more info [here](docs/setblobs-container.md)

Functionality / performance
* `getblobs` speed increased 50 times!

Other changes
* updated doitnet core to version 3.1
* Full list of issues: https://github.com/SRE-PRG/azmitool/milestone/5?closed=1
* added `setblobs` command
* `getblobs` speed increased 5 times!
* added `--file` output argument for `getcertificate` and `getsecret` subcommands
Expand Down
20 changes: 20 additions & 0 deletions docs/setblobs-container.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Since azmi [version 0.5](../changelog.md#version-05), azmi sub-command `setblob` is not supporting parameter `--container` anymore. You must use `--blob` to specify destination.

## Not supported
```
azmi setblob --container $CONTAINER --file $FILE
```

## Supported
```
azmi setblob --blob $BLOB --file $FILE
```

## How to switch to supported version

In reality blob url consists of container and blob paths. Solution is to update your commands like this:
```
# azmi setblob --container $CONTAINER --file $FILE
BLOB="$CONT/$FILE"
azmi setblob --blob $BLOB --file $FILE
```

0 comments on commit 8de2bb7

Please sign in to comment.