diff --git a/Changelog b/Changelog index 40475ee7b648bc3404239334c49dd14335a7bb0d..4213c621b1b2fb89860e4cf40f6952a5ae4cf522 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,55 @@ +Version 3.8dev1, 2022-10-06 + + Features: + * Drop support for Python 3.5 and 2.7 (#3263) + * Add MS CA connector to issue certificates from a Microsoft CA (#3233, + #3232, #2966, #2158) + * Add webhook event handler (#3178, #2938) + * Allow Kerebos Authentication for LDAP resolvers (#770) + + Enhancements: + * add policy for audit_page_size (#3167) + * Be more relaxing about subscription checking of plugins (#3296) + * Display multiple serials in auditlog in case of C/R (#3285) + * Add PI_LOGOUT_REDIRECT_URL for using a SAML logout link from the WebUI (#3257) + * Add passthru policy to audit log, even if password was wrong (#3212) + * Avoid double registration of webauthn tokens per user (#3207) + * Add WebAuthn attestation format "packed" (#3150) + * Support Windows Hello as WebAuthn token (#3142) + * Improve the description for appimageurl (#3133) + * Allow to choose padding for defaul security module (#3115) + * Make available languages configureable in pi.cfg (#3076) + * Add translation for admin error messages (#3066) + * Allow HTTPSMSProvider to send data as JSON (#3056) + * Rename pi-manage createdb to create-tables (#2996) + * Add ed25519-sk/ecdsa-sk for SSH tokens (#2792) + UI + * Add search highlighting in event handler conditions (#3062) + * Link online documentation in WebUI (#2952) + * Search and filter for actions in configured policies (#2788) + Documentation + * Add a glossary (#2783) + + + + Fixes: + * Automatically delete MachineTokenOptions when a MachineToken is deleted (#3165) + * Fixing int-str conversion with Python 3.10 (#3303) + * Remove pillow dependency (#3268) + * Fix default AD attributes to (ObjectCategory=person) (#3218) + * Fix WebAuthn trust anchor directory (#3216) + * Fix enrolling SSH keys with an empty comment (#3198) + * Avoid fails in case of content-type header mismatch (#3194) + * Fix App device in certain cases as WebAuthn token (#3136) + * Fix ImportException to be subclass of privacyIDEAError (#3131) + * Fix URL encoding in TiQR URL (#3121) + * Add index for timestamp in DB (#3120) + * AES module also encrypts empty strings (#2899) + * Fix Push_Wait if user presses decline on smartphone (#2865) + WebUI: + * Disable realm button in case of reasolverread (UI) (#3149) + * Add missing translation for PSKC import (#3129) + Version 3.7.3, 2022-08-01 Fixes: diff --git a/doc/conf.py b/doc/conf.py index 726fd4ed2d11ebaa10ea1ce815a8523682fa3287..e580e202f29bcf5a6a5ed356f22c92ae85f5adb4 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -23,7 +23,7 @@ import functools # built documents. # # The short X.Y version. -version = '3.7.3' +version = '3.8dev1' # The full version, including alpha/beta/rc tags. #release = '2.16dev5' release = version diff --git a/setup.py b/setup.py index 4737027f0076eccb517e043280a5ccdb956f9d52..2019498435c0e1a6367863286b4b0def52f6bd65 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ import stat import sys #VERSION = "2.1dev4" -VERSION = "3.7.3" +VERSION = "3.8dev1" # Taken from kennethreitz/requests/setup.py package_directory = os.path.realpath(os.path.dirname(__file__))