martyzz1 / heroku3.py

This is the updated Python wrapper for the Heroku API V3. https://devcenter.heroku.com/articles/platform-api-reference The Heroku REST API allows Heroku users to manage their accounts, applications, addons, and other aspects related to Heroku. It allows you to easily utilize the Heroku platform from your applications.
Other
118 stars 73 forks source link

fix rollback call #87

Closed Carlosedo closed 4 years ago

Carlosedo commented 4 years ago

The rollback API endpoint has changed, now it needs the release uuid sent as a POST param. See context here: https://devcenter.heroku.com/articles/platform-api-reference#release-rollback

coveralls commented 4 years ago

Coverage Status

Coverage decreased (-0.07%) to 47.947% when pulling 199921296fc9593aa70006afd5bb42618847dc5e on Carlosedo:fix-rollback into 4f6442417c141a2f624f27218728515bda110127 on martyzz1:master.

coveralls commented 4 years ago

Coverage Status

Coverage decreased (-0.07%) to 47.947% when pulling 199921296fc9593aa70006afd5bb42618847dc5e on Carlosedo:fix-rollback into 4f6442417c141a2f624f27218728515bda110127 on martyzz1:master.

codecov-io commented 4 years ago

Codecov Report

Merging #87 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #87   +/-   ##
=======================================
  Coverage   47.98%   47.98%           
=======================================
  Files          27       27           
  Lines        1194     1194           
  Branches      111      111           
=======================================
  Hits          573      573           
  Misses        612      612           
  Partials        9        9
Impacted Files Coverage Δ
heroku3/models/app.py 32.55% <ø> (ø) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 4f64424...1999212. Read the comment docs.

martyzz1 commented 4 years ago

Thanks for the patch @Carlosedo

Carlosedo commented 4 years ago

@martyzz1 no problem!

Did you push a new version to pypi? How can I install the version with the patch?

martyzz1 commented 4 years ago

pip install git+https://github.com/martyzz1/heroku3.py@bd3e24a

replace the hash with the latest commit