Skip to content

Releases: nnsnodnb/kalyke

v1.0.5

11 Oct 10:47
d39e818
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.4...1.0.5

v1.0.4

04 Aug 18:36
e3f9a03
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.3...1.0.4

v1.0.3

22 Feb 19:23
b1d1e1f
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.2...1.0.3

v1.0.2

24 Jan 02:20
84cecc4
Compare
Choose a tag to compare

New support

VoIPClient is supported cert & key separated authkey.
You can use the existing implementation as is.

Added key_filepath and password to VoIPClient properties.
Type of auth_key_filepath and key_filepath is typing.Union[str, pathlib.Path].

Existing implementation

from kalyke import VoIPClient

client = VoIPClient(
    use_sandbox=True,
    auth_key_filepath="/path/to/YOUR_VOIP_CERTIFICATE.pem",
)

Use separated authkey

from kalyke import VoIPClient

client = VoIPClient(
    use_sandbox=True,
    auth_key_filepath="/path/to/aps.cer",
    key_filepath="/path/to/private.key",
    password="private_key_passphrase",  # or None
)

What's Changed

  • Support cert & key separated for VoIP client by @nnsnodnb in #195

Full Changelog: 1.0.1...1.0.2

v1.0.1

23 Jan 07:03
fe07cb3
Compare
Choose a tag to compare

What's Changed

  • Update suzuki-shunsuke/github-action-renovate-config-validator action to v1.0.1 by @renovate in #187
  • Update dependency cryptography to v42 by @renovate in #188
  • Modify installable version range for httpx by @nnsnodnb in #189
  • Modify installable version range for PyJWT by @nnsnodnb in #190
  • Configure poetry-dynamic-versioning by @nnsnodnb in #191
  • Remove internal.status_code by @nnsnodnb in #192

Full Changelog: 1.0.0...1.0.1

v1.0.0

13 Jan 09:34
e573457
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.2.2...1.0.0

v0.2.2

15 May 02:26
db24ecd
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.2.1...0.2.2

v0.2.1

11 Jan 13:21
48a5830
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.2.0...0.2.1

v0.2.0

02 Jan 11:18
ca61f28
Compare
Choose a tag to compare

Breaking Update

Please see examples folder.

What's Changed

Full Changelog: 0.1.8...0.2.0

v0.1.8

02 Jan 17:10
6c65796
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.1.7...0.1.8