- Added testing and support for Python versions up to 3.8, along with PyPy 3.
- Remove support for deprecated Python versions 2.6, 3.3, and 3.4.
- Fixed
get_format()
andget_formats()
methods, to use the right endpoint.
- Added new organizers endpoint (thanks tp @mgrdcm)
- GET /organizers/:id/events/
- Added 3 new user endpoints, thanks to @jon-ga (#29)
- GET /users/:id/events/
- GET /users/:id/venues/
- GET /users/:id/organizers/
- Removed type mapping as it added unnecessary complexity preventing easy management of paginated responses.
- Enabled webhooks
- Fixed ticket definitions in Event creation test
- Set input variable using input argument thanks to Bill So (#27).
- Added new publish and unpublish methods thanks to Ryan Bagwell.
- Eventbrite client now accepts an
eventbrite_api_url
argument.
- Added control over expansion of response. Documentation at http://www.eventbrite.com/developer/v3/reference/expansions/
- Removed 'content-type' header from all GET requests. Thank you @xxv for identifying the problem and contributing code.
- Resolved the search result response problem where filtering did not work.
- Fixed import issue with
__version__
. Thank you @meshy and @longjos for identifying the problem.
- Event creation now working.
- Added feature allowing the use of Eventbrite API url at test servers. Should expedite development of tricky post actions.
- Added reverse mapping for
get_event_ticket_class()
method. - Added
events
mapping to provide GET access to the Event endpoint. - Removed several deprecated JSON mappings.
- Initial release of 3.0.0 client
- Inception