2.9 KiB
2.9 KiB
Release History
1.2.2 (Unreleased)
Features Added
Breaking Changes
Bugs Fixed
Other Changes
1.2.1 (2024-08-13)
Bugs Fixed
- Fix endpoint parsing issues
1.2.0 (2024-08-08)
Features Added
- Change API version to
2024-01-01
- Added a
webpubsub_client_access
option to specify the type of client access when generating token. This is used to generate token and client connection URL for a specific client endpoint type - Added operations
add_connections_to_groups
andremove_connections_from_groups
1.1.0 (2024-04-24)
Bugs Fixed
- Use the correct REST API parameter name
groups
in methodget_client_access_token
- Upgrade dependency package
pyjwt
to>=2.0.0
which changes the return type ofjwt.encode(...)
. See https://pyjwt.readthedocs.io/en/stable/changelog.html#id30 for detail
Features Added
- Add overload signatures for operation
send_to_all
,send_to_user
,send_to_group
andsend_to_connection
- Update the type of parameter
content
fromIO
toUnion[IO, str, JSON]
for operationsend_to_all
,send_to_user
,send_to_group
andsend_to_connection
1.1.0b1 (2022-12-12)
Features Added
- Operation
send_to_all
has a new optional parameterfilter
- Operation
send_to_user
has a new optional parameterfilter
- Operation
send_to_group
has a new optional parameterfilter
- Operation
get_client_access_token
has a new optional parametergroup
- Added operation
remove_connection_from_all_groups
1.0.1 (2022-02-15)
Bugs Fixed
- fix authentication who use a
reverse_proxy_endpoint
with eitherWebPubSubServiceClient.from_connection_string
or pass in anAzureKeyCredential
for authentication #22587
Other Changes
- Python 2.7 is no longer supported. Please use Python version 3.6 or later.
1.0.0 (2021-11-10)
Breaking changes
- rename operation
generate_client_token
toget_client_access_token
- moved operation
build_authentication_token
intoget_client_access_token
on the client - rename parameter
role
toroles
of operationget_client_access_token
- remove the
operations
namespace fromazure.messaging.webpubsubservice
- rename operation
check_permission
tohas_permission
- operations
connection_exists
,group_exists
,user_exists
, andhas_permission
now return boolean values instead of raising - move parameter 'hub' from operation to client
Bug Fixes
- add port to client's endpoint if included in connection string for
WebPubSubServiceClient.from_connection_string
- fix proxy redirection to the endpoint specified in kwarg
reverse_proxy_endpoint
to run in correct policy placement and to not be overridden byCustomHookPolicy
. - fix bug that prevented users from calling
WebPubSubServiceClient.from_connection_string
with python 2.7
1.0.0b2 (2021-10-14)
- Change api-version to
2021-10-01
- Add operations to client
- Support AAD
- Support Api Management Proxy
1.0.0b1 (2021-04-27)
- Initial version