You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -70,12 +70,12 @@ Add the extension to your project by installing this [NuGet package].
70
70
By default, an application setting named `WebPubSubConnectionString` is used to store your Web PubSub connection string. When you choose to use a different setting name for your connection, you must explicitly set that as the key name in your binding definitions. During local development, you must also add this setting to the `Values` collection in the the [_local.settings.json_ file](./functions-develop-local.md#local-settings-file).
71
71
72
72
> [!IMPORTANT]
73
-
> A connection string includes the authorization information required for your application to access Azure Web PubSub service. The access key inside the connection string is similar to a root password for your service. For optimal security, your function app should use managed identities when connecting to the Web PubSub service instead of using a connection string. For more information, see [Authorize a managed identity request by using Microsoft Entra ID](../azure-web-pubsub/howto-authorize-from-managed-identity.md).
73
+
> A connection string includes the authorization information required for your application to access Azure Web PubSub service. The access key inside the connection string is similar to a root password for your service. For optimal security, your function app should use managed identities when connecting to the Web PubSub service instead of using a connection string. For more information, see [Authorize a managed identity request by using Microsoft Entra ID](../azure-web-pubsub/howto-authorize-from-managed-identity.md).
74
74
75
75
For details on how to configure and use Web PubSub and Azure Functions together, refer to [Tutorial: Create a serverless notification app with Azure Functions and Azure Web PubSub service](../azure-web-pubsub/tutorial-serverless-notification.md).
76
76
::: zone pivot="programming-language-csharp"
77
77
> [!NOTE]
78
-
> When running in the isolated worker model, the Azure Web PubSub binding doesn't currently support Microsoft Entra ID authetication using managed identities. In the isolated model, you must continue to use a connection string, which includes a shared secret key.
78
+
> When running in the isolated worker model, the Azure Web PubSub binding doesn't currently support Microsoft Entra ID authentication using managed identities. In the isolated model, you must continue to use a connection string, which includes a shared secret key.
> Wildcard roles (e.g., `webpubsub.sendToGroups.<pattern>`) are not supported in REST APIs or server SDKs during runtime yet. This feature will be supported in a future update.
237
+
> Assigning wildcard roles (e.g., `webpubsub.sendToGroups.<pattern>`) through REST APIs or server SDKs are not supported yet. This feature will be supported in a future update.
Copy file name to clipboardExpand all lines: articles/azure-web-pubsub/whats-new.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,15 +5,15 @@ author: kevinguo-ed
5
5
ms.author: kevinguo
6
6
ms.service: azure-web-pubsub
7
7
ms.topic: conceptual
8
-
ms.date: 10/14/2025
8
+
ms.date: 01/28/2026
9
9
ms.custom: mode-other
10
10
---
11
11
12
12
# What's new with Azure Web PubSub
13
13
14
14
On this page, you can read about recent updates about Azure Web PubSub. As we make continuous improvements to the capabilities and developer experience of the service, we welcome any feedback and suggestions. Reach out to the service team at **[email protected]**
15
15
16
-
## Q4 2025
16
+
## Q1 2026
17
17
18
18
### Wildcard group role patterns
19
19
@@ -22,7 +22,7 @@ You can now grant a client permissions to many related groups using a single wil
22
22
-`webpubsub.sendToGroups.{pattern}`
23
23
-`webpubsub.joinLeaveGroups.{pattern}`
24
24
25
-
Patterns support `?`, `*`, and `**` (where `**` can cross `/` separators) plus escaping. This reduces token size and simplifies hierarchical, path-style group authorization (for example: `clientA/**`). Existing literal roles (`webpubsub.sendToGroup.<group>` and `webpubsub.joinLeaveGroup.<group>`) continue to work unchanged.
25
+
Patterns support `?`, `*`, and `**` (where `**` can cross `.` separators) plus escaping. This reduces token size and simplifies hierarchical, path-style group authorization (for example: `clientA.**`). Existing literal roles (`webpubsub.sendToGroup.<group>` and `webpubsub.joinLeaveGroup.<group>`) continue to work unchanged.
26
26
27
27
> [!div class="nextstepaction"]
28
28
> [Learn how to use wildcard group role patterns](./concept-wildcard-group-roles.md)
0 commit comments