File tree Expand file tree Collapse file tree 9 files changed +12
-12
lines changed
azure-messaging-webpubsub-client
azure-messaging-webpubsub
main/java/com/azure/messaging/webpubsub/models
test/java/com/azure/messaging/webpubsub Expand file tree Collapse file tree 9 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ com.azure:azure-messaging-eventhubs-track2-perf;1.0.0-beta.1;1.0.0-beta.1
159159com.azure:azure-messaging-servicebus;7.17.8;7.18.0-beta.2
160160com.azure:azure-messaging-servicebus-stress;1.0.0-beta.1;1.0.0-beta.1
161161com.azure:azure-messaging-servicebus-track2-perf;1.0.0-beta.1;1.0.0-beta.1
162- com.azure:azure-messaging-webpubsub;1.3.3;1.3.4
162+ com.azure:azure-messaging-webpubsub;1.3.3;1.4.0
163163com.azure:azure-messaging-webpubsub-client;1.0.9;1.1.0
164164com.azure:azure-mixedreality-authentication;1.2.30;1.3.0-beta.1
165165com.azure:azure-mixedreality-remoterendering;1.1.35;1.2.0-beta.1
Original file line number Diff line number Diff line change 11# Release History
22
3- ## 1.1.0 (2025-02-21 )
3+ ## 1.1.0 (2025-02-24 )
44
55### Features Added
66
Original file line number Diff line number Diff line change 8282 <dependency >
8383 <groupId >com.azure</groupId >
8484 <artifactId >azure-messaging-webpubsub</artifactId >
85- <version >1.3.4 </version > <!-- {x-version-update;com.azure:azure-messaging-webpubsub;current} -->
85+ <version >1.4.0 </version > <!-- {x-version-update;com.azure:azure-messaging-webpubsub;current} -->
8686 <scope >test</scope >
8787 </dependency >
8888 <dependency >
Original file line number Diff line number Diff line change 11# Release History
22
3- ## 1.3.4 (2025-02-21 )
3+ ## 1.4.0 (2025-02-24 )
44
55### Features Added
66
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ add the direct dependency to your project as follows.
6565<dependency >
6666 <groupId >com.azure</groupId >
6767 <artifactId >azure-messaging-webpubsub</artifactId >
68- <version >1.3.4 </version >
68+ <version >1.4.0 </version >
6969</dependency >
7070```
7171
Original file line number Diff line number Diff line change 1313
1414 <groupId >com.azure</groupId >
1515 <artifactId >azure-messaging-webpubsub</artifactId >
16- <version >1.3.4 </version > <!-- {x-version-update;com.azure:azure-messaging-webpubsub;current} -->
16+ <version >1.4.0 </version > <!-- {x-version-update;com.azure:azure-messaging-webpubsub;current} -->
1717
1818 <name >Microsoft Azure client library for Azure Web Pub Sub Service</name >
1919 <description >This package contains the Microsoft Azure Web Pub Sub library.</description >
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ public final class WebPubSubClientProtocol extends ExpandableStringEnum<WebPubSu
1616 /** Static value MQTT for WebPubSubClientProtocol. */
1717 public static final WebPubSubClientProtocol MQTT = fromString ("mqtt" );
1818
19- /** Static value SOCKETIO for WebPubSubClientProtocol. */
20- public static final WebPubSubClientProtocol SOCKETIO = fromString ("socketio" );
19+ /** Static value SOCKET_IO for WebPubSubClientProtocol. */
20+ public static final WebPubSubClientProtocol SOCKET_IO = fromString ("socketio" );
2121
2222 /**
2323 * Creates an instance of {@link WebPubSubClientProtocol} with no string value.
Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ public void testGetMqttAuthenticationToken() {
299299 @ LiveOnly
300300 public void testGetSocketIOAuthenticationToken () {
301301 GetClientAccessTokenOptions options = new GetClientAccessTokenOptions ();
302- options .setWebPubSubClientProtocol (WebPubSubClientProtocol .SOCKETIO );
302+ options .setWebPubSubClientProtocol (WebPubSubClientProtocol .SOCKET_IO );
303303 StepVerifier .create (client .getClientAccessToken (options )).assertNext (token -> {
304304 Assertions .assertNotNull (token );
305305 Assertions .assertNotNull (token .getToken ());
@@ -344,7 +344,7 @@ public void testGetSocketIOAuthenticationTokenAAD() {
344344 .hub (TestUtils .HUB_NAME );
345345 WebPubSubServiceAsyncClient aadClient = aadClientBuilder .buildAsyncClient ();
346346 GetClientAccessTokenOptions options = new GetClientAccessTokenOptions ();
347- options .setWebPubSubClientProtocol (WebPubSubClientProtocol .SOCKETIO );
347+ options .setWebPubSubClientProtocol (WebPubSubClientProtocol .SOCKET_IO );
348348 StepVerifier .create (aadClient .getClientAccessToken (options )).assertNext (token -> {
349349 Assertions .assertNotNull (token );
350350 Assertions .assertNotNull (token .getToken ());
Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ public void testGetMqttAuthenticationToken() throws ParseException {
277277 @ LiveOnly
278278 public void testGetSocketIOAuthenticationToken () throws ParseException {
279279 GetClientAccessTokenOptions options
280- = new GetClientAccessTokenOptions ().setWebPubSubClientProtocol (WebPubSubClientProtocol .SOCKETIO );
280+ = new GetClientAccessTokenOptions ().setWebPubSubClientProtocol (WebPubSubClientProtocol .SOCKET_IO );
281281 WebPubSubClientAccessToken token = client .getClientAccessToken (options );
282282
283283 Assertions .assertNotNull (token );
@@ -308,7 +308,7 @@ public void testGetSocketIOAuthenticationTokenAAD() throws ParseException {
308308 .hub (TestUtils .HUB_NAME );
309309 WebPubSubServiceClient aadClient = aadClientBuilder .buildClient ();
310310 GetClientAccessTokenOptions options
311- = new GetClientAccessTokenOptions ().setWebPubSubClientProtocol (WebPubSubClientProtocol .SOCKETIO );
311+ = new GetClientAccessTokenOptions ().setWebPubSubClientProtocol (WebPubSubClientProtocol .SOCKET_IO );
312312 WebPubSubClientAccessToken token = aadClient .getClientAccessToken (options );
313313
314314 Assertions .assertNotNull (token );
You can’t perform that action at this time.
0 commit comments