Skip to content

Releases: pythongssapi/python-gssapi

v1.5.0: Jordan

06 Apr 18:46
Compare
Choose a tag to compare

Changelog

Features

  • Added build support for mingw32 (#149)
  • Implement gss_set_cred_option() and gss_set_sec_context_option() (#151, #51)

Bugfixes

  • Handle GSS_NO_OID_SET when creating sets (#148)

v1.4.1: Tom (patch 1)

16 Feb 18:00
Compare
Choose a tag to compare

Changelog

Features

Tooling

  • Exit successfully when no docs change (#136, #145)

Documentation

  • Fix typo in Name documentation (#138)

N.B.: Due to a tooling failure, there is no official 1.4.0. Please use this release instead.

v1.3.0: Myrtle

01 Dec 18:12
Compare
Choose a tag to compare

Changelog

Features

Bugfixes

  • Fix potential infinite recursion in GSSError#display_status when there is an error displaying the error (#112)

  • Read the linker path during setup to support properly building with Heimdal on Debian (#122)

  • Fix OID inequality comparison (previously would return the results of an equality comparison for inequality) (#125)

Tooling

Documentation

NB: this was erroneously released as v1.2.4, despite adding new features. v1.2.4 has been hidden. Please use this release instead.

v1.2.4-alpha.1: Daisy (patch 4)

30 Nov 04:02
Compare
Choose a tag to compare
Pre-release
Prepare for 1.2.4-alpha.1 release

v1.2.0: Daisy

01 Mar 19:08
Compare
Choose a tag to compare

Changelog

Bugfixes

  • SecurityContext#delegated_creds should not be set when the low-level API returns None for delegated_creds (#96, #99)

Features

  • Expose SecurityContext#delegated_creds as a read-only property (#95, #99)

Documentation

  • Introduce example (#93)
  • Improve ToC structure and depth (#93)

v1.1.4: Nick (patch 4)

19 Nov 21:05
Compare
Choose a tag to compare

Changelog

Bugfixes

  • Don't require enum34 in python >= 3.4
  • Update the requirements list (#86)

Documentation

  • Update installation instructions (#86)

v1.1.3: Nick (patch 3)

04 Sep 20:43
Compare
Choose a tag to compare

Changelog

Bugfixes

  • Avoid NULL dereference of "actual_mech_type" (#74)
  • Fix encoding-related issues in Name (#81)

Documentation

  • Warn about display_as (#79)

v1.1.2: Nick (patch 2)

08 Aug 20:18
Compare
Choose a tag to compare

Changelog

Bugfixes

  • Use encoding rather than language code for errmsgs (#72)
  • Don't inquire about incomplete security contexts (#69)
  • Streamline build and test process

v1.1.1: Nick (patch 1)

25 Apr 02:49
Compare
Choose a tag to compare

Changelog

Bugfixes

  • Always use custom-specified libraries when building
  • Fix incorrect header file usage causing issues on Heimdal -- #61

Documentation

New, improved, and more usable -- #64

v1.1.0: Nick

18 Mar 17:10
Compare
Choose a tag to compare

Changelog

Changelog items may be marked LL or HL to denote that they affect the low-level (gssapi.raw) or high-level (gssapi) APIs, respectively.

Bugfixes

  • Fix compilation on Cython 0.22+
  • Actually use any given acceptor credentials when accepting a security context

Features

  • Add support for add_cred_with_password and acquire_cred_with_password
    (accessible with the password='pass' argument to the Credentials constructor
    and Credentials.acquire) -- #5
  • Support Mac OS X compilation against GSS.framework
  • LL Add support for the DCE and IOV MIC extensions -- #6
  • Add support for RFC 6680 (Naming Extensions) - #4
  • LL When xyz(None) would be a valid call, allow xyz() to mean the same thing -- #29
  • LL Allow for mutating input credentials in add_cred (instead of returning a new set) -- #18

Documentation

  • Document specific GSSAPI errors instead of just GSSError, when such information is available -- #11
  • Fix verify_mic documentation