mcpbeat

Release Notes

azure/appconfiguration-release-notes

Author and update release notes for Azure App Configuration libraries and providers. USE FOR: write release notes, add release note entry, update release notes, draft release notes, new version release notes, format release notes. DO NOT USE FOR: generating changelogs from git history, writing internal engineering notes.

3k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
263
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Azure/AppConfiguration --skill release-notes

The instruction itself

21 sections, as written by the author

Release Notes Authoring Skill

This skill guides the authoring of customer-facing release notes for Azure App Configuration libraries and providers. Release notes live in releaseNotes/ and are the primary way customers learn about new versions.

Key Principle

Release notes are for customers, not engineers. Every entry should help a customer decide whether to upgrade and understand what changed from their perspective.

File Location & Naming

  • All release notes go in releaseNotes/ in this repository, even if the library has its own repo.
  • One Markdown file per product (e.g., MicrosoftExtensionsConfigurationAzureAppConfiguration.md).
  • If adding release notes for a new product, create a new file in releaseNotes/.

File Structure

Each release notes file follows this structure:

# Product Name

[Source code][source_code] | [Package (NuGet/npm/PyPI)][package] | [Samples][samples]

## {version} - {Month} {Day}, {Year}

### Breaking Changes

### Enhancements

### Bug Fixes

<!-- Reference links at bottom of file -->
[source_code]: https://...
[package]: https://...
[samples]: https://...

Version & Date Format

  • Use the format: ## {version} - {Month} {Day}, {Year}
  • Use the full month name, never abbreviations.
  • Examples:
  • ## 7.0.0 - November 21, 2023
  • ## 2.4.0 - February 17, 2026
  • ## v1.5.0 - February 14, 2026 (Go uses the v prefix)
  • ## 8.6.0-preview - February 26, 2026 (preview/beta versions)
  • Sort entries in reverse chronological order (newest first).

Categories

Organize changes under these headings. Omit a category if it has no entries for that release.

Breaking Changes

Reserved for changes that require customers to modify their code or configuration.

  • Always explain why the breaking change was made.
  • Always explain how to migrate from the old behavior to the new one.
  • Example:

> Removed IConfigurationRefresher.SetDirty API in favor of IConfigurationRefresher.ProcessPushNotification API for push-model based configuration refresh. Unlike the SetDirty method, the ProcessPushNotification method guarantees that all configuration changes up to the triggering event are loaded in the following configuration refresh. For more details on the ProcessPushNotification API, refer to this tutorial.

Enhancements

New features, capabilities, or improvements.

  • Describe what new scenarios are enabled and how to take advantage of them.
  • Don't just name a new API — explain what it lets customers do.
  • Include brief code snippets when they help illustrate usage.
  • Example:

> Added health check integration for Microsoft.Extensions.Diagnostic.HealthChecks. You can call AddAzureAppConfiguration on IHealthCheckBuilder to register a health check for the Azure App Configuration provider. #644

>

> `cs

> builder.Services

> .AddHealthChecks()

> .AddAzureAppConfiguration();

> `

Bug Fixes

Fixes for issues customers may have encountered.

  • Describe the symptom, not the implementation fix. Customers need to know if the bug affected them.
  • Bad: "Added a call to ConfigureAwait(false) in LoadKeyValuesRegisteredForRefresh"
  • Good: "Fixed a bug where ASP.NET Framework applications may fail to refresh their configuration."
  • Example:

> Fixed a bug where calls to FeatureFlagOptions.Select were ignored if they were followed by a call to either AzureAppConfigurationOptions.Select or AzureAppConfigurationOptions.SelectSnapshot. #628

Linking to Issues and PRs

  • Always link each change to a GitHub issue or PR.
  • Prefer linking to issues over PRs — issues provide more context and already link to the PR.
  • Use the format: #123
  • Place the link at the end of the bullet point.
  • Example:

> Added the following new API for additional App Configuration geo-replication support. #385

Writing Style

  • Use past tense: "Added support for…", "Fixed a bug where…", "Removed the API…"
  • Write from the customer's perspective, not the developer's.
  • Be concise but informative — one to two sentences per entry is typical.

What to Exclude

Do not include changes that are not meaningful to customers:

  • Internal code refactoring
  • Telemetry additions or changes
  • Test improvements
  • CI/CD pipeline changes
  • Dependency bumps that don't affect customer behavior (unless they fix a customer-facing issue)

Special Cases

Preview / Beta Releases

  • Include preview and beta versions in the same file, interleaved chronologically.
  • Use the full version string: ## 8.6.0-preview - February 26, 2026
  • Preview/beta releases are cumulative — each one includes all changes from previous previews in that series. List all changes in every preview entry; duplicates across preview entries are expected.
  • The first stable release also re-lists all changes that were introduced across its preview/beta cycle. Do not omit items just because they appeared in a prior preview.

Delisted Releases

  • Mark delisted versions in the heading: ## 4.2.1 - July 9, 2025 (Delisted)
  • Explain why the release was delisted and link to the tracking issue.

Stable Releases That Graduate Preview Features

  • Note which features are graduating from preview: "This is the first stable release of the SetClientFactory API introduced in 8.2.0-preview."

Product Reference

Use this table to determine the correct release notes file, GitHub repo (for issue/PR links), and package registry for each product. This information is also available in the main README.

Configuration Providers

| Release Notes File | Module | GitHub Repo | Package |

|---|---|---|---|

| MicrosoftExtensionsConfigurationAzureAppConfiguration.md | Microsoft.Extensions.Configuration.AzureAppConfiguration | Azure/AppConfiguration-DotnetProvider | NuGet |

| MicrosoftAzureAppConfigurationAspNetCore.md | Microsoft.Azure.AppConfiguration.AspNetCore | Azure/AppConfiguration-DotnetProvider | NuGet |

| MicrosoftAzureAppConfigurationFunctionsWorker.md | Microsoft.Azure.AppConfiguration.Functions.Worker | Azure/AppConfiguration-DotnetProvider | NuGet |

| SpringCloudAzureAppConfigurationConfig.md | spring-cloud-azure-appconfiguration-config | Azure/azure-sdk-for-java | Maven |

| AzureAppConfigurationProviderPython.md | azure-appconfiguration-provider | Azure/azure-sdk-for-python | PyPI |

| JavaScriptProvider.md | @azure/app-configuration-provider | Azure/AppConfiguration-JavaScriptProvider | npm |

| GoProvider.md | azureappconfiguration | Azure/AppConfiguration-GoProvider | pkg.go.dev |

Feature Management Libraries

| Release Notes File | Module | GitHub Repo | Package |

|---|---|---|---|

| Microsoft.Featuremanagement.md | Microsoft.FeatureManagement | microsoft/FeatureManagement-Dotnet | NuGet |

| Microsoft.Featuremanagement.AspNetCore.md | Microsoft.FeatureManagement.AspNetCore | microsoft/FeatureManagement-Dotnet | NuGet |

| Microsoft.Featuremanagement.Telemetry.ApplicationInsights.md | Microsoft.FeatureManagement.Telemetry.ApplicationInsights | microsoft/FeatureManagement-Dotnet | NuGet |

| Microsoft.Featuremanagement.Telemetry.ApplicationInsights.AspNetCore.md | Microsoft.FeatureManagement.Telemetry.ApplicationInsights.AspNetCore | microsoft/FeatureManagement-Dotnet | NuGet |

| SpringCloudAzureFeatureManagement.md | spring-cloud-azure-feature-management | Azure/azure-sdk-for-java | Maven |

| PythonFeatureManagement.md | featuremanagement | microsoft/FeatureManagement-Python | PyPI |

| JavaScriptFeatureManagement.md | @microsoft/feature-management | microsoft/FeatureManagement-JavaScript | npm |

| JavaScriptFeatureManagementApplicationInsightsBrowser.md | @microsoft/feature-management-applicationinsights-browser | microsoft/FeatureManagement-JavaScript | npm |

| JavaScriptFeatureManagementApplicationInsightsNode.md | @microsoft/feature-management-applicationinsights-node | microsoft/FeatureManagement-JavaScript | npm |

| GoFeatureManagement.md | featuremanagement | microsoft/FeatureManagement-Go | pkg.go.dev |

Platform & Tools

| Release Notes File | Module | GitHub Repo | Package |

|---|---|---|---|

| KubernetesProvider.md | Azure App Configuration Kubernetes Provider | Azure/AppConfiguration-KubernetesProvider | MCR |

| AppConfigurationEmulator.md | Azure App Configuration Emulator | Azure/AppConfiguration-Emulator | — |

| AzureDevOpsPipelineExtension.md | Azure App Configuration (Azure Pipeline) | — | — |

| AzureDevOpsPushPipelineExtension.md | Azure App Configuration Push (Azure Pipeline) | — | — |

Legacy (Deprecated)

| Release Notes File | Module | GitHub Repo |

|---|---|---|

| AzureSpringCloudAppConfigurationConfig.md | azure-spring-cloud-appconfiguration-config | Azure/azure-sdk-for-java |

| AzureSpringCloudFeatureManagement.md | azure-spring-cloud-feature-management | Azure/azure-sdk-for-java |

How to use it

Copy the folder

Take azure/appconfiguration-release-notes from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.