Skip to content

Commit 5b9f96d

Browse files
Merge pull request #312154 from MicrosoftDocs/main
Auto Publish – main to live - 2026-02-23 23:00 UTC
2 parents 6baa715 + 1b1bac6 commit 5b9f96d

38 files changed

Lines changed: 610 additions & 115 deletions

articles/application-gateway/for-containers/service-mesh-integration.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: application-gateway
55
author: JackStromberg
66
ms.service: azure-appgw-for-containers
77
ms.topic: how-to
8-
ms.date: 1/28/2026
8+
ms.date: 2/23/2026
99
ms.author: jstrom
1010
---
1111

@@ -48,7 +48,7 @@ az aks get-credentials --resource-group $RESOURCE_GROUP --name $AKS_NAME
4848

4949
helm install alb-controller-servicemesh-extension oci://mcr.microsoft.com/application-lb/charts/alb-controller-servicemesh-extension \
5050
--namespace $HELM_NAMESPACE \
51-
--version 1.9.11
51+
--version 1.9.13
5252
```
5353

5454
### Verify the ALB Controller installation
@@ -347,5 +347,4 @@ There's no extra price to enable service mesh integration.
347347

348348
## Limitations
349349

350-
- Application Gateway for Containers only supports the community/open source version of Istio today. Istio-based service mesh add-on for AKS isn't supported at this time.
351350
- Ingress API isn't supported; consider migrating to Gateway API.

articles/azure-app-configuration/concept-enable-rbac.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,70 @@ builder.AddAzureAppConfiguration(o =>
105105
});
106106
```
107107

108+
### [Java](#tab/java)
109+
110+
The Audience for the target cloud must be configured for the following packages.
111+
112+
- Azure SDK for Java: azure-data-appconfiguration >= 1.8.0
113+
- Java configuration provider: spring-cloud-azure-appconfiguration-config >= 5.22.0
114+
115+
In the **Azure SDK for Java**, audience is configured by passing the `audience` option to the `ConfigurationClientBuilder` when building a `ConfigurationClient`.
116+
117+
The following code snippet demonstrates how to instantiate a configuration client with a cloud-specific audience.
118+
119+
```java
120+
ConfigurationClient configurationClient = new ConfigurationClientBuilder()
121+
.endpoint(myStoreEndpoint)
122+
.credential(new DefaultAzureCredentialBuilder().build())
123+
.audience(ConfigurationAudience.fromString("{Cloud specific audience here}"))
124+
.buildClient();
125+
```
126+
127+
In the **Spring configuration provider**, audience is configured by customizing the `ConfigurationClientBuilder` through the `ConfigurationClientCustomizer` interface, then adding it to the bootstrap registry.
128+
129+
The following code snippet demonstrates how to add the Azure App Configuration provider into a Spring Boot application with a cloud-specific audience.
130+
131+
```java
132+
import com.azure.data.appconfiguration.ConfigurationClientBuilder;
133+
import com.azure.data.appconfiguration.models.ConfigurationAudience;
134+
import com.azure.spring.cloud.appconfiguration.config.ConfigurationClientCustomizer;
135+
136+
public class CustomClient implements ConfigurationClientCustomizer {
137+
138+
@Override
139+
public void customize(ConfigurationClientBuilder builder, String endpoint) {
140+
builder.audience(ConfigurationAudience.fromString("{Cloud specific audience here}"));
141+
}
142+
}
143+
```
144+
145+
Then, register the `CustomClient` in the bootstrap registry.
146+
147+
```java
148+
import org.springframework.boot.SpringApplication;
149+
import org.springframework.boot.autoconfigure.AutoConfiguration;
150+
import org.springframework.boot.autoconfigure.SpringBootApplication;
151+
152+
import hello.impl.AppConfigClientImpl;
153+
154+
@SpringBootApplication
155+
@AutoConfiguration
156+
public class Application {
157+
158+
public static void main(String[] args) {
159+
SpringApplication app = new SpringApplication(Application.class);
160+
161+
// Register the ConfigurationClientCustomizer in the bootstrap context
162+
app.addBootstrapRegistryInitializer(registry -> {
163+
registry.register(CustomClient.class, context -> new CustomClient());
164+
});
165+
166+
app.run(args);
167+
}
168+
169+
}
170+
```
171+
108172
### [JavaScript](#tab/javascript)
109173

110174
The Audience for the target cloud must be configured for the following packages.

articles/connectors/connectors-create-api-sqlazure.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ For more information, review the [SQL Server managed connector reference](/conne
5353

5454
The SQL Server connector requires that your tables contain data so that the connector operations can return results when called. For example, if you use Azure SQL Database, you can use the included sample databases to try the SQL Server connector operations.
5555

56-
* The information required to create a SQL database connection, such as your SQL server and database name. If you're using Windows Authentication or SQL Server Authentication to authenticate access, you also need your user name and password. You can usually find this information in the connection string.
56+
* The information required to create a SQL database connection, such as your SQL server and database name. If you're using Windows Authentication or SQL Server Authentication to authenticate access, you also need your username and password. You can usually find this information in the connection string.
57+
58+
> [!IMPORTANT]
59+
>
60+
> Make sure you or other users have only the minimum permissions for the logic app workflow to successfully perform the required operations on the database, such as permissions to read and write the relevant tables and execute any required stored procedures. To support change tracking, you need permissions such as `VIEW CHANGE TRACKING` and any permissions to create or use the `az_func` schema and `GlobalState` objects. Assign the `db_owner` role only if required for troubleshooting.
5761
5862
> [!IMPORTANT]
5963
>
@@ -393,4 +397,4 @@ When you call a stored procedure by using the SQL Server connector, the returned
393397
## Related content
394398

395399
* [Managed connectors for Azure Logic Apps](/connectors/connector-reference/connector-reference-logicapps-connectors)
396-
* [Built-in connectors in Azure Logic Apps](built-in.md)
400+
* [Built-in connectors in Azure Logic Apps](built-in.md)

articles/healthcare-apis/fhir/fhir-bulk-update.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To execute a bulk update, the application or user must be assigned one of the fo
4242

4343
## Request
4444

45-
You can use FHIR search parameters in the request. The bulk update operation supports standard search filters, for example: address:contains=Meadow, or Patient.birthdate=1987-02-20. You can also use _include, _revinclude, and _not-referenced to extend search criteria.
45+
You can use FHIR search parameters in the request. The bulk update operation supports standard search filters, for example: address:contains=Meadow, or Patient.birthdate=1987-02-20. You can also use _include, _revinclude, and _not-referenced to extend search criteria, and _meta-history to configure versioning behavior for metadata-only updates.
4646

4747
### Request examples
4848

@@ -61,6 +61,10 @@ You can use FHIR search parameters in the request. The bulk update operation sup
6161

6262
`PATCH {FHIR-SERVICE-HOST}/DiagnosticReport/$bulk-update?_lastUpdated=lt2021-12-12&_include=DiagnosticReport:based-on:ServiceRequest&_include:iterate=ServiceRequest:encounter`
6363

64+
4. Metadata-only updates with `_meta-history` query parameter: When the FHIR server versioning policy is set to either `versioned` or `version-update`, the `_meta-history` parameter allows you to control whether metadata-only changes to a resource create a new historical version of the resource or not. By default, any change to a resource, including metadata-only changes, creates a new version and saves the previous version as a historical record. When you set the `_meta-history` parameter to false, metadata-only changes do not create a new version, and the previous version is not saved as a historical record. This feature is useful for scenarios where frequent metadata updates are made, and you want to avoid cluttering the resource history with numerous versions that only differ in metadata. For more information and examples, see [FHIR versioning policy and history management](fhir-versioning-policy-and-history-management.md#metadata-only-updates-and-versioning).
65+
66+
`PATCH https://{FHIR-SERVICE-HOST}/$bulk-update?_meta-history=false`
67+
6468
When using bulk update with FHIR search parameters, consider using the same query in a FHIR search first, so that you can verify the data that you plan to update.
6569

6670
The following is an example request body.

articles/healthcare-apis/fhir/fhir-versioning-policy-and-history-management.md

Lines changed: 34 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: sfi-image-nochange
1212

1313
# Versioning policy and history management
1414

15-
The versioning policy in the Azure Health Data Services FHIR® service is a configuration which determines how history is stored for every resource type, with the option for resource specific configuration. This policy is directly related to the concept of managing history for FHIR resources.
15+
The versioning policy in the Azure Health Data Services FHIR® service is a configuration that determines how history is stored for every resource type, with the option for resource specific configuration. This policy is directly related to the concept of managing history for FHIR resources.
1616

1717
## History in FHIR
1818

@@ -71,9 +71,9 @@ Changing the versioning policy, either at a system level or resource level, won'
7171
> The query parameter _summary=count and _count=0 can be added to _history endpoint to get a count of all versioned resources. This count includes soft deleted resources.
7272
7373
## Metadata-only updates and versioning
74-
If the versioning policy is set to either `versioned` or `version-update`, metadata-only updates (changes to FHIR resources that only affect the metadata) increment the resource version, create a new version, and save the old version as a historical record. If you are making metadata-only changes using PUT or PATCH updates, you can use the query parameter _meta-history for PUT and PATCH updates to configure whether or not the old version is saved as a historical record.
74+
If the versioning policy is set to either `versioned` or `version-update`, metadata-only updates (changes to FHIR resources that only affect the metadata) increment the resource version, create a new version, and save the old version as a historical record. If you're making metadata-only changes using PUT, PATCH, or `$bulk-update`, you can use the query parameter `_meta-history` to configure whether or not the old version is saved as a historical record.
7575
- `_meta-history=true` is set by default. By default, the resource version is incremented, a new version is created, and the old version is saved as a historical record. The lastUpdated timestamp is updated to reflect the change.
76-
- `_meta-history=false` The `_meta-history` parameter can be configured to `false`. This means that the resource version is incremented, a new version is created, but the old version is not saved as a historical record. The lastUpdated timestamp is also still updated to reflect the change. This configuration can be used to help reduce data storage when making metadata-only updates.
76+
- `_meta-history=false` The `_meta-history` parameter can be configured to `false`. This means that the resource version is incremented, a new version is created, but the old version isn't saved as a historical record. The lastUpdated timestamp is also still updated to reflect the change. This configuration can be used to help reduce data storage when making metadata-only updates.
7777

7878

7979
### Example of `_meta-history=false` with PUT
@@ -92,7 +92,7 @@ To demonstrate the use of the `_meta-history` parameter with PUT, follow this ex
9292
]
9393
}
9494
```
95-
2. Create a new version of the resource with `PUT <fhir server>/Patient/test-patient`. This will have version 2.
95+
2. Create a new version of the resource with `PUT <fhir server>/Patient/test-patient`. This has version 2.
9696
```
9797
{
9898
"id": "test-patient",
@@ -127,11 +127,11 @@ To demonstrate the use of the `_meta-history` parameter with PUT, follow this ex
127127
]
128128
}
129129
```
130-
5. This will increment resource version and create a new version 3, but the old version 2 will not be saved as a historical record. To see this, run: `GET <fhir server>/Patient/test-patient/_history`. Two versions should be returned, versions 1 and 3. Please note that `_meta-history=false` query parameter only affects metadata-only changes made using PUT or PATCH. Using the query parameter to make metadata updates along with other non-metadata field value changes will increment the resource version and save the old version as a historical record.
130+
5. This increments resource version and create a new version 3, but the old version 2 won't be saved as a historical record. To see this, run: `GET <fhir server>/Patient/test-patient/_history`. Two versions should be returned, versions 1 and 3. Please note that `_meta-history=false` query parameter only affects metadata-only changes made using PUT or PATCH. Using the query parameter to make metadata updates along with other non-metadata field value changes will increment the resource version and save the old version as a historical record.
131131

132132

133-
### Example of `_meta-history=false` with PATCH
134-
To demonstrate the use of the `_meta-history` parameter with PATCH, follow this example:
133+
### Example of `_meta-history=false` with PATCH or `$bulk-update`
134+
To demonstrate the use of the `_meta-history` parameter with PATCH or `$bulk-update`, follow this example:
135135

136136
1. Create a resource:
137137
`PUT <fhir server>/Patient/test-patient`
@@ -169,7 +169,7 @@ To demonstrate the use of the `_meta-history` parameter with PATCH, follow this
169169
}
170170
```
171171
3. Run: `GET <fhir server>/Patient/test-patient/_history`. Two versions should be returned, versions 1 and 2.
172-
4. Use PATCH to make a metadata-only update with `_meta-history=false` query parameter. The example uses PATCH to update only the Patient.meta.tag.system value. More information about PATCH [here](rest-api-capabilities.md#patch-and-conditional-patch).
172+
4. Use PATCH or `$bulk-update`to make a metadata-only update with `_meta-history=false` query parameter. The example demonstrates using PATCH or `$bulk-update` to update only the Patient.meta.tag.system value. More information about PATCH [here](rest-api-capabilities.md#patch-and-conditional-patch) and `$bulk-update` [here](fhir-bulk-update.md).
173173

174174
Using PATCH with FHIRPath patch:
175175
`PATCH <fhir server>/Patient/test-patient?_meta-history=false`
@@ -192,6 +192,30 @@ Using PATCH with FHIRPath patch:
192192
]
193193
}
194194
```
195+
If you wanted to bulk update multiple resources, you could use `$bulk-update`. The following example shows how to use `$bulk-update` to update the same metadata field for all Patient resources with `_meta-history=false`:
196+
197+
`PATCH <fhir server>/Patient/$bulk-update?_meta-history=false`
198+
`Accept: application/fhir+json`
199+
`Content-type: application/fhir+json`
200+
`Prefer: respond-async`
201+
202+
```
203+
204+
{
205+
"resourceType": "Parameters",
206+
"parameter": [
207+
{
208+
"name": "operation",
209+
"part": [
210+
{ "name": "type", "valueCode": "upsert" },
211+
{ "name": "path", "valueString": "Patient.meta.tag[0].system" },
212+
{ "name": "value", "valueUri": "test2" }
213+
]
214+
}
215+
]
216+
}
217+
```
218+
195219

196220
Using PATCH with JSON Patch:
197221
`PATCH <fhir server>/Patient/test-patient?_meta-history=false`
@@ -207,6 +231,8 @@ Using PATCH with JSON Patch:
207231
```
208232
5. This will increment resource version and create a new version 3, but the old version 2 will not be saved as a historical record. To see this, run: `GET <fhir server>/Patient/test-patient/_history`. Two versions should be returned, versions 1 and 3. Please note that `_meta-history=false` query parameter only affects metadata-only changes made using PUT or PATCH. Using the query parameter to make metadata updates along with other non-metadata field value changes will increment the resource version and save the old version as a historical record.
209233

234+
235+
210236
## Next steps
211237

212238
In this article, you learned how to purge the history for resources in the FHIR service. For more information about how to disable history and some concepts about history management, see

articles/healthcare-apis/fhir/rest-api-capabilities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Content-Type: `application/json`
182182
```
183183

184184
#### Patch with `_meta-history` parameter
185-
The FHIR service supports the `_meta-history` query parameter with both `PUT` and `PATCH` operations. This parameter allows you to control whether metadata-only changes to a resource create a new historical version of the resource or not. By default, any change to a resource, including metadata-only changes, creates a new version and saves the previous version as a historical record. When you set the `_meta-history` parameter to `false`, metadata-only changes do not create a new version, and the previous version is not saved as a historical record. This feature is useful for scenarios where frequent metadata updates are made, and you want to avoid cluttering the resource history with numerous versions that only differ in metadata. For more information and examples, see [FHIR versioning policy and history management](fhir-versioning-policy-and-history-management.md#metadata-only-updates-and-versioning).
185+
The FHIR service supports the `_meta-history` query parameter with both `PUT` and `PATCH` operations. When the FHIR server versioning policy is set to either `versioned` or `version-update`, the `_meta-history` parameter allows you to control whether metadata-only changes to a resource create a new historical version of the resource or not. By default, any change to a resource, including metadata-only changes, creates a new version and saves the previous version as a historical record. When you set the `_meta-history` parameter to `false`, metadata-only changes do not create a new version, and the previous version is not saved as a historical record. This feature is useful for scenarios where frequent metadata updates are made, and you want to avoid cluttering the resource history with numerous versions that only differ in metadata. For more information and examples, see [FHIR versioning policy and history management](fhir-versioning-policy-and-history-management.md#metadata-only-updates-and-versioning).
186186

187187
`PATCH <fhir server>/Patient/test-patient?_meta-history=false`
188188

articles/healthcare-apis/release-notes-2026.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ Release notes describe features, enhancements, and bug fixes released in 2026 fo
1919

2020
## February 2026
2121
### FHIR service
22+
**Metadata-only updates and versioning configuration with `$bulk-update`**: Introduced new query parameter "_meta-history" for bulk update when versioning policy is set to either "versioned" or "version-update". The new query parameter is used to configure whether or not the old version is saved as a historical record. "_meta-history=true" is the default. By default, the resource version is incremented, a new version is created, and the old version is saved as a historical record. "_meta-history=false" can be configured so that the resource version is incremented, a new version is created, but the old version isn't saved as a historical record. For more information, visit [metadata-only updates and versioning](./fhir/fhir-versioning-policy-and-history-management.md#metadata-only-updates-and-versioning).
23+
2224
#### Bug fixes:
2325

2426
**Bug fix for `$bulk-delete` queries with paged results exceeding 100 included items**: There was an issue where some `$bulk-delete` queries that return paged results exceeding 1,000 included items with related links could return an HTTP 500 Internal Server Error. The issue is fixed, and the results are returned correctly now.
@@ -27,6 +29,10 @@ Release notes describe features, enhancements, and bug fixes released in 2026 fo
2729

2830
**Pagination bug in FHIR search fix**: There was an issue where a pagination bug in FHIR search queries caused resources to be intermittently skipped when results span multiple pages and use continuation tokens. The issue is fixed.
2931

32+
**Allow `_meta-history` in transaction bundles**: Previously, there was a limitation where `_meta-history` parameter was not working in [transaction bundles](./fhir/rest-api-capabilities.md#batch-and-transaction-bundles). This issue has been fixed, and the `_meta-history` parameter can now be used in transaction bundles.
33+
34+
**Soft deletes in transaction bundles**: For a [transaction bundle](./fhir/rest-api-capabilities.md#batch-and-transaction-bundles), all supported interactions or operations either succeed or fail together. When a transaction bundle fails, the FHIR service returns a single OperationOutcome. Previously, there was an issue where soft delete operations were not being considered for the transaction bundle scope, which could cause a discrepancy in the all-or-nothing behavior of the transaction bundle if soft delete operations were part of the transaction bundle. The issue has been fixed.
35+
3036
## January 2026
3137
### FHIR service
3238

0 commit comments

Comments
 (0)