v10.0.0
Breaking Changes
Because the gorilla/mux
project has been archived, brokerapi
now depends on go-chi/chi
:
- Function signatures that referred to
gorilla/mux
now refer togo-chi/chi
. This affectsAttachRoutes()
andWithRouter()
. - Previously
gorilla/mux
would have treated/v2/service_instances/foo%2Fbar
as/v2/service_instances/foo/bar
unless theWithEncodedPath()
option was used. This behavior is now the default and/v2/service_instances/foo%2Fbar
will interpretfoo%2Fbar
as an instance ID. TheWithEncodedPath()
option is now a no-op.
What's Changed
- chore(deps): bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 by @dependabot in #244
- chore(deps): bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 by @dependabot in #245
- chore(deps): bump github.com/onsi/gomega from 1.27.6 to 1.27.7 by @dependabot in #247
- feat!: swap gorilla/mux for go-chi/chi by @blgm in #246
- feat!: update import path to v10 by @blgm in #248
- docs: fix typo by @blgm in #249
Full Changelog: v9.0.1...v10.0.0