Skip to content

API does not match Release notes for 2.6 #140

Closed
@j-bm

Description

@j-bm

Describe the bug
Release notes for 2.6 describe a new set of routines in CamelCase but the implementation is snake_case.

See #105 for code and PR text which conflicts.

See #126 for removal of now-deprecated methods from 2.6.x version in 3.0 version.

To Reproduce

>>> from passageidentity import Passage
>>> APP_ID='....elided...'
>>> API_LOGIN='...elided...'
>>> psg = Passage(APP_ID, API_LOGIN)
>>> type(psg.user.get_by_identifier)
<class 'method'>
>>> type(psg.user.getByIdentifier)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'User' object has no attribute 'getByIdentifier'. Did you mean: 'get_by_identifier'?

Expected behavior

Expected different spelling according to description in #105.

Passage SDK Versions

  • passage-identity 3.0.0

Third-Party SDK Versions

  • python 3.11.9

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions