Skip to content

Commit f071367

Browse files
committed
V5 changes
1 parent 482bb46 commit f071367

114 files changed

Lines changed: 13299 additions & 10032 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,3 @@
1313
*.js text eol=lf
1414
*.json text eol=lf
1515
LICENSE text eol=lf
16-
17-
# Exclude `website` and `cookbook` from GitHub's language statistics
18-
# https://github.com/github/linguist#using-gitattributes
19-
cookbook/* linguist-documentation
20-
website/* linguist-documentation

.github/ISSUE_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
package main
77

88
import (
9-
"github.com/labstack/echo/v4"
9+
"github.com/labstack/echo/v5"
1010
"net/http"
1111
"net/http/httptest"
1212
"testing"
@@ -15,7 +15,7 @@ import (
1515
func TestExample(t *testing.T) {
1616
e := echo.New()
1717

18-
e.GET("/", func(c echo.Context) error {
18+
e.GET("/", func(c *echo.Context) error {
1919
return c.String(http.StatusOK, "Hello, World!")
2020
})
2121

.github/workflows/checks.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,3 @@ jobs:
4545
go install golang.org/x/vuln/cmd/govulncheck@latest
4646
govulncheck ./...
4747
48-

.github/workflows/echo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# Echo tests with last four major releases (unless there are pressing vulnerabilities)
2626
# As we depend on `golang.org/x/` libraries which only support last 2 Go releases we could have situations when
2727
# we derive from last four major releases promise.
28-
go: ["1.22", "1.23", "1.24", "1.25"]
28+
go: ["1.25"]
2929
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
3030
runs-on: ${{ matrix.os }}
3131
steps:

0 commit comments

Comments
 (0)