Skip to content

Comments

Update module github.com/labstack/echo-contrib to v0.17.3 - autoclosed#175

Closed
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/github.com-labstack-echo-contrib-0.x
Closed

Update module github.com/labstack/echo-contrib to v0.17.3 - autoclosed#175
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/github.com-labstack-echo-contrib-0.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 13, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/labstack/echo-contrib v0.14.1 -> v0.17.3 age adoption passing confidence

Release Notes

labstack/echo-contrib (github.com/labstack/echo-contrib)

v0.17.3

Compare Source

What's Changed

New Contributors

Full Changelog: labstack/echo-contrib@v0.17.2...v0.17.3

v0.17.2

Compare Source

What's Changed

Full Changelog: labstack/echo-contrib@v0.17.1...v0.17.2

v0.17.1

Compare Source

What's Changed

Security

Enhancements

Full Changelog: labstack/echo-contrib@v0.17.0...v0.17.1

v0.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: labstack/echo-contrib@v0.16.0...v0.17.0

v0.16.0: - small changes

Compare Source

Functionality:

  • Prometheus: disable echoprometheus compression by default #​97
  • Prometheus: Conditionally set url label for 404 responses #​111

Other:

  • Fix docs: Set correct go import path for echoprometheus package #​96
  • Add SDPX licence identifier to source files #​95
  • feat: improve test readability and include README.md #​107
  • Upgrade dependencies #​113

NB: this version needs Go 1.21+ if you want to use Prometheus mw

v0.15.0: New Prometheus middleware

Compare Source

Introduced new Prometheus middleware (#​94 ). This is cleaner API to replace older (now deprecated) Prometheus middleware. See README.md for migration guide.

Short example:

package main

import (
	"errors"
	"github.com/labstack/echo-contrib/echoprometheus"
	"github.com/labstack/echo/v4"
	"log"
	"net/http"
)

func main() {
	e := echo.New()
	e.Use(echoprometheus.NewMiddleware("myapp"))   // Add metrics middleware
	e.GET("/metrics", echoprometheus.NewHandler()) // Add handler for metrics scrapers

	if err := e.Start(":8080"); err != nil && !errors.Is(err, http.ErrServerClosed) {
		log.Fatal(err)
	}
}

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update module github.com/labstack/echo-contrib to v0.15.0 Update module github.com/labstack/echo-contrib to v0.16.0 Mar 21, 2024
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from b5a337e to 2de5844 Compare March 21, 2024 08:47
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch 2 times, most recently from ef479ed to bb6009a Compare April 14, 2024 17:15
@renovate renovate bot changed the title Update module github.com/labstack/echo-contrib to v0.16.0 Update module github.com/labstack/echo-contrib to v0.17.0 Apr 14, 2024
@renovate renovate bot changed the title Update module github.com/labstack/echo-contrib to v0.17.0 Update module github.com/labstack/echo-contrib to v0.17.1 Apr 19, 2024
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from bb6009a to 9169b05 Compare April 19, 2024 19:20
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from 9169b05 to b9e23d7 Compare May 9, 2024 09:55
@renovate
Copy link
Contributor Author

renovate bot commented Jun 4, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 19 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.19 -> 1.23.0
github.com/labstack/echo/v4 v4.10.2 -> v4.13.3
golang.org/x/oauth2 v0.8.0 -> v0.25.0
github.com/cespare/xxhash/v2 v2.2.0 -> v2.3.0
github.com/klauspost/compress v1.15.1 -> v1.18.0
github.com/labstack/gommon v0.4.0 -> v0.4.2
github.com/mattn/go-colorable v0.1.13 -> v0.1.14
github.com/mattn/go-isatty v0.0.17 -> v0.0.20
github.com/prometheus/client_golang v1.14.0 -> v1.21.1
github.com/prometheus/client_model v0.3.0 -> v0.6.1
github.com/prometheus/common v0.40.0 -> v0.63.0
github.com/prometheus/procfs v0.9.0 -> v0.16.0
go.uber.org/atomic v1.10.0 -> v1.11.0
golang.org/x/crypto v0.9.0 -> v0.36.0
golang.org/x/net v0.10.0 -> v0.37.0
golang.org/x/sys v0.8.0 -> v0.31.0
golang.org/x/term v0.8.0 -> v0.30.0
golang.org/x/text v0.9.0 -> v0.23.0
golang.org/x/time v0.3.0 -> v0.11.0
google.golang.org/protobuf v1.28.1 -> v1.36.5

@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from b9e23d7 to 1f5bc42 Compare June 17, 2024 13:58
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from 1f5bc42 to 0271a7c Compare July 14, 2024 11:41
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from 0271a7c to fd8acbb Compare September 11, 2024 15:43
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from fd8acbb to 9255b85 Compare November 17, 2024 17:03
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch 2 times, most recently from b7ea9a3 to 8fcc884 Compare December 23, 2024 22:21
@renovate renovate bot changed the title Update module github.com/labstack/echo-contrib to v0.17.1 Update module github.com/labstack/echo-contrib to v0.17.2 Dec 23, 2024
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from 8fcc884 to 7a88307 Compare March 3, 2025 16:48
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from 7a88307 to 554a620 Compare March 11, 2025 13:56
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from 554a620 to edd56f5 Compare March 27, 2025 12:48
@renovate renovate bot changed the title Update module github.com/labstack/echo-contrib to v0.17.2 Update module github.com/labstack/echo-contrib to v0.17.3 Mar 27, 2025
@renovate renovate bot force-pushed the renovate/github.com-labstack-echo-contrib-0.x branch from edd56f5 to 5981c86 Compare April 8, 2025 11:42
@renovate renovate bot changed the title Update module github.com/labstack/echo-contrib to v0.17.3 Update module github.com/labstack/echo-contrib to v0.17.3 - autoclosed Apr 30, 2025
@renovate renovate bot closed this Apr 30, 2025
@renovate renovate bot deleted the renovate/github.com-labstack-echo-contrib-0.x branch April 30, 2025 17:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants