Skip to content

Commit ec3039f

Browse files
committed
Add note about supported versions
1 parent 54fddf9 commit ec3039f

2 files changed

Lines changed: 13 additions & 15 deletions

File tree

.github/workflows/echo-contrib.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ permissions:
1414

1515
env:
1616
# run coverage and benchmarks only with the latest Go version
17-
LATEST_GO_VERSION: "1.20"
17+
LATEST_GO_VERSION: "1.22"
1818

1919
jobs:
2020
test:
2121
strategy:
2222
matrix:
2323
os: [ubuntu-latest, macos-latest, windows-latest]
2424
# Each major Go release is supported until there are two newer major releases. https://golang.org/doc/devel/release.html#policy
25-
# Echo tests with last four major releases (unless there are pressing vulnerabilities)
26-
# As we depend on `golang.org/x/` libraries which only support last 2 Go releases we could have situations when
25+
# Echo CORE tests with last four major releases (unless there are pressing vulnerabilities)
26+
# As we depend on MANY DIFFERENT libraries which of SOME support last 2 Go releases we could have situations when
2727
# we derive from last four major releases promise.
28-
go: ["1.18", "1.19", "1.20"]
28+
go: ["1.21", "1.22"]
2929
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
3030
runs-on: ${{ matrix.os }}
3131
steps:
3232
- name: Checkout Code
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Set up Go ${{ matrix.go }}
3636
uses: actions/setup-go@v4
@@ -53,7 +53,7 @@ jobs:
5353
runs-on: ubuntu-latest
5454
steps:
5555
- name: Checkout Code (Previous)
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
ref: ${{ github.base_ref }}
5959
path: previous

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@
66
[![Codecov](https://img.shields.io/codecov/c/github/labstack/echo-contrib.svg?style=flat-square)](https://codecov.io/gh/labstack/echo-contrib)
77
[![Twitter](https://img.shields.io/badge/twitter-@labstack-55acee.svg?style=flat-square)](https://twitter.com/labstack)
88

9-
## Packages
9+
# Supported Go version
1010

11-
Name | Description | Author
12-
--- | --- | ---
13-
[casbin](https://github.com/casbin/casbin) | Access control library | [hsluoyz](https://github.com/hsluoyz)
14-
session | Session middleware backed by [gorilla/sessions](https://github.com/gorilla/sessions) | [vishr](https://github.com/vishr)
15-
jaegertracing | Jaeger tracer middleware | [carlosedp](https://github.com/carlosedp)
16-
prometheus | Prometheus metrics | [carlosedp](https://github.com/carlosedp)
17-
pprof | pprof middlware | [arun0009](https://github.com/arun0009)
18-
zipkin | [Zipkin](https://github.com/openzipkin/zipkin-go) middleware | [arun0009](https://github.com/arun0009)
11+
Each major Go release is supported until there are two newer major releases. https://golang.org/doc/devel/release.html#policy
12+
[Echo CORE](https://github.com/labstack/echo) tests with last FOUR major releases (unless there are pressing vulnerabilities)
13+
As this library depends on MANY DIFFERENT libraries which of SOME support only last 2 Go releases we could have situations when
14+
we derive from last four major releases promise.
15+
16+
p.s. you really should use latest versions of Go as there are many vulnerebilites fixed only in supported versions. Please see https://pkg.go.dev/vuln/

0 commit comments

Comments
 (0)