Releases: heroku/heroku-go
SSL Endpoint is gone
Fix PipelineList
Regenerated client from Heroku API's fixed JSON schema, so now PipelineList
returns the pipeline results.
GitHub Actions
API Schema Update
- Update heroku.go with schema as of April 5, 2021
- Manual edit on
ReviewAppConfig
struct to fix pipeline field
Transport Debug fixes
Fixes issues we've seen appear in Terraform Provider Heroku:
API Schema Update
This includes changes generated from the most recent Heroku Platform API schema:
- Additions for Heroku Enterprise Teams: members, invitations, permissions, audit trails
- New Pipeline features: owner, builds, releases, config vars
- New Review App features
API Schema Update
This includes changes generated from the most recent Heroku Platform API schema:
- Adds
Name
field toAddOnUpdateOpts
- Various additions for Heroku Enterprise Teams
- Shifting nomenclature
organization
→team
- Removes deprecated
Organization
and its methods & related types - Removes deprecated
BuildResult
and its methods & related types
Platform API v3 with Go Modules compat
Go Module with correct semantic version v5
.
Eliminates the +incompatible
dependency suffix when used as a Go Module, but otherwise the same as v4.0.0.
v5.0.0-beta.1
Go Module with correct semantic version to import "github.com/heroku/heroku-go/v5"
Platform API v3 with Go Modules compat
🚨 Breaking changes: upgrading to this release will require updating import
statements across your codebase. Use the previous v3.0.0
release to avoid this change.
This release switches to Go Modules for dependency management.
This release drops the /v3
path version suffix:
- usage change:
- was
import "github.com/heroku/heroku-go/v3"
- now
import "github.com/heroku/heroku-go"
- was
- for detailed discussion see comments in the pull request
This release continues support for older versions of Go:
- see the Go wiki: Vendoring with Modules.