Recent Releases of rt
rt - v3.3.3
What's Changed
- do not attempt to cast bytes object to str by @Sxderp in https://github.com/python-rt/python-rt/pull/100
- Replace the removed httpx parameteReplace the removed httpx parameter of proxies by proxy (fixes #102)r of proxies by proxy (fixes #102) by @sim0nx in https://github.com/python-rt/python-rt/pull/105
New Contributors
- @Sxderp made their first contribution in https://github.com/python-rt/python-rt/pull/100
Full Changelog: https://github.com/python-rt/python-rt/compare/v3.2.0...v3.3.3
- Python
Published by sim0nx over 1 year ago
rt - v3.2.0
What's Changed
- Custom Fields for population in search functions by @nerdfirefighter in https://github.com/python-rt/python-rt/pull/97
New Contributors
- @nerdfirefighter made their first contribution in https://github.com/python-rt/python-rt/pull/97
Full Changelog: https://github.com/python-rt/python-rt/compare/v3.1.4...v3.2.0
- Python
Published by sim0nx almost 2 years ago
rt - v3.0.0
The following is a major release of the rt library.
There is support for the REST API version 1 as well as version 2.
Please note that this release contains breaking changes and requires adaptations to existing code, even if you are
sticking to version 1 of the API.
These changes were necessary in order to properly support both API versions.
Added
- RT REST2 support was added and is mostly on par with the REST1 support (differences are a result of the REST2 API implementation differences in RT). REST2 is a modern API based on JSON exchanges and thus the complex parsing of responses and request construction are no longer needed.
Changes
- Existing exception classes were renamed to adhere to the naming convention (https://peps.python.org/pep-0008/#exception-names).
- In case you do catch specific
rtexceptions, a simple search/replace will do, see the changelog page in the documentation for details.
- In case you do catch specific
Importing the
rtclass changed in order to better accommodate the newrest2implementation.- Where one use to be able to import
rtusing:from rt import Rt
you now have to use the following syntax:
from rt.rest1 import Rt- Where one use to be able to import
Importing the
rtmodule does no longer import all exceptions but only the coreRtErrorexception. If you require other exceptions, please import them fromrt.exceptions.Use pytest instead of nose.
- Python
Published by sim0nx about 4 years ago
rt -
- Search has a parameter fields that can be used to return only particular fields for tickets. In some cases I noticed it will improve the speed of the query completion if you only need specific fields (#65 by @kimmoal).
- Python
Published by sebix over 4 years ago