1.4.0
What's Changed
Essentially, all that changed is that ConnectionParameters.from_pydantic_multihost_hosts()
now accepts hosts from multi-host url that has one credentials pair, like this: ArtemisDsn("tcp://lev:pass@host1:61616,host2:61617,host3:61618").hosts()
. Previously you had to specify credentials for each host: ArtemisDsn("tcp://user1:pass1@host1:61616,user2:pass2@host2:61617,user3:pass@host3:61618").hosts()
.
- Expect only one username-password pair in
ConnectionParameters.from_pydantic_multihost_hosts()
by @vrslev in #72 - Rename
ConnectionParameters.from_pydantic_multihost_hosts()
toConnectionParameters.from_pydantic_multihosturl_hosts()
by @vrslev in #73 - Fix tests by @vrslev in #74
- Revert recent change by @vrslev in #75
- Allow to set-credentials to all hosts (old style) by @vrslev in #76
Full Changelog: 1.3.1...1.4.0