Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 2.21 KB

File metadata and controls

64 lines (42 loc) · 2.21 KB

Changelog

v2.0.0 - 21.Aug.2026

Breaking changes

  • Default API hosts now use the canonical app domains:
    • Production: https://www.mifiel.comhttps://app.mifiel.com
    • Sandbox (Client.use_sandbox()): https://sandbox.mifiel.comhttps://app-sandbox.mifiel.com
  • If you relied on the previous defaults (or on mocks/stubs keyed to those hosts), update your configuration or call set_base_url(...) explicitly.

Features

  • Send a standardized User-Agent on API requests, e.g. PYTHON/3.12.1 mifiel/2.0.0 requests/2.32.5 (Linux/6.8.0).

Migration

from mifiel import Client

client = Client(app_id='APP_ID', secret_key='APP_SECRET')
# Production requests now go to https://app.mifiel.com/api/v1/...

client.use_sandbox()
# Sandbox requests now go to https://app-sandbox.mifiel.com/api/v1/...

v1.0.0 - 22.Apr.2026

Breaking changes

  • Python: the minimum supported version is now 3.10 (Python 3.9 is no longer supported). This release is tagged 1.0.0 to reflect that compatibility change — PR#16

Bug fixes

  • Encode allowed_signature_methods correctly when creating documents — PR#15

Tooling

  • Modernize packaging and CI (Poetry-only build, pytest, Ruff, upgraded dependencies, Travis on Python 3.10–3.12, remove legacy setup.py / requirements.txt install path) — PR#16

v0.0.11 - 23.Sep.2020

Features

  • Allow to add viewers on document creation

v0.0.10 - 2.Sep.2020

Features

  • Allow to pass any argument to Document.create to support more features

v0.0.9 - 28.Ago.2020

Bug fixes

  • Fix save_file and save_file_signed to save binary files

v0.0.8 - 22.Jun.2020

Features

  • Ability to use the timeout parameter of the requests

v0.0.7 - 17.Jan.2020

Bug fixes

  • Allow empty responses from server (status codes 204 and 205) - PR#8

v0.0.6 - 7.Nov.2019

Bug fixes

  • Fix authentication when the system locale is different than en_US - PR#6