File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
src/ContainerRegistry/ContainerRegistry Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 18
18
- Additional information about change #1
19
19
-->
20
20
## Upcoming Release
21
+ * Fixed bug in ` Get-AzContainerRegistryManifest ` showing incorrect image name
21
22
22
23
## Version 2.2.1
23
24
* Fixed authentication for ` Connect-AzContainerRegistry `
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public class PSAcrManifest
30
30
public PSAcrManifest ( AcrManifests manifest )
31
31
{
32
32
Registry = manifest ? . Registry ;
33
- ImageName = manifest ? . Registry ;
33
+ ImageName = manifest ? . ImageName ;
34
34
if ( manifest != null && manifest . ManifestsAttributes != null )
35
35
{
36
36
ManifestsAttributes = manifest . ManifestsAttributes . Select ( x => new PSManifestAttributeBase ( x ) ) . ToList ( ) ;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Get-AzContainerRegistryManifest -RegistryName registry -RepositoryName alpine
38
38
39
39
Registry ImageName ManifestsAttributes
40
40
-------- --------- -------------------
41
- registry.azurecr.io registry.azurecr.io {Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase, Microsoft.Azure.Comm…}
41
+ registry.azurecr.io alpine {Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase, Microsoft.Azure.Comm…}
42
42
```
43
43
44
44
List manifests for repository alpine under registry.
@@ -49,7 +49,7 @@ Get-AzContainerRegistryManifest -RegistryName registry -RepositoryName alpine -N
49
49
50
50
Registry ImageName Attributes
51
51
-------- --------- ----------
52
- registry.azurecr.io alpine Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase
52
+ registry.azurecr.io alpine Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase
53
53
```
54
54
55
55
Get manifests sha256: a5426f084c755f4d6c1d1562a2d456aa574a24a61706f6806415627360c06ac0 for repository alpine under registry.
You can’t perform that action at this time.
0 commit comments