Skip to content

Commit dccc88e

Browse files
feature: add changelog entry
1 parent 4f10450 commit dccc88e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/AppConfiguration/AppConfiguration/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
-->
2020
## Upcoming Release
2121

22+
* Fixed GitHub issue #23731 'Problem with Get-AzAppConfigurationKeyValue when more that 100 records are present'
23+
- fixed `NextLink` property to give absolute URI, allowing subsequent pages of results to be retrieved.
24+
2225
## Version 2.0.0
2326
* Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).
2427

src/AppConfiguration/AppConfigurationdata.Autorest/custom/GetAzAppConfigurationKeyValue_Get.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMe
2626
var baseUri = new Uri(responseMessage.RequestMessage.RequestUri.GetLeftPart(UriPartial.Authority));
2727
var absoluteUri = new Uri(baseUri, result.NextLink);
2828

29-
// CRITICAL: Modify the result's NextLink
29+
// Modify the result's NextLink
3030
if (result is Microsoft.Azure.PowerShell.Cmdlets.AppConfigurationdata.Models.KeyValueListResult mutableResult)
3131
{
3232
mutableResult.NextLink = absoluteUri.ToString();

0 commit comments

Comments
 (0)