Skip to content

Releases: alibaba/higress

v2.1.0-rc.2

01 Apr 15:36
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.0-rc.1...v2.1.0-rc.2

v2.1.0-rc.1

27 Mar 08:43
6f762b5
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.7...v2.1.0-rc.1

v2.0.7

19 Feb 09:44
3dbd1b2
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.6...v2.0.7

plugins/wasm-go/v1.4.3

21 Jan 09:28
ce94c6e
Compare
Choose a tag to compare
feat:接入dify (#1664)

v2.0.6

17 Jan 07:25
fd1eb54
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.5...v2.0.6

v2.0.6-rc.3

15 Jan 12:47
9e418da
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.6-rc.2...v2.0.6-rc.3

v2.0.6-rc.2

15 Jan 07:34
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.6-rc.1...v2.0.6-rc.2

v2.0.5

15 Jan 12:48
9e418da
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.4...v2.0.5

v2.0.6-rc.1

08 Jan 09:16
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.5...v2.0.6-rc.1

v2.0.4

06 Dec 05:53
85c7b1f
Compare
Choose a tag to compare

Recommended Upgrade Reasons

Basic capability update

  1. Support for wildcard domain routing with exact domain fallback

As in the example below, in the previous version, when requesting www.example.com/abcd , if no route was found under www.example.com , it would directly return a 404; in the current version, if no route is found under www.example.com , it will then find route under *.example.com .

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: wildcard-ingress
spec:
  rules:
  - host: "*.example.com"
    http:
      paths:
      - path: /
        pathType: Prefix
        backend:
          service:
            name: wildcard-service
            port:
              number: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: exact-ingress
spec:
  rules:
  - host: "www.example.com"
    http:
      paths:
      - path: /abc
        pathType: Exact
        backend:
          service:
            name: exact-service
            port:
              number: 80

‼️ Important Fixes

  1. In the previous 2.x versions, due to issues with the RDS caching strategy, the latest configuration might not have been distributed during high-frequency updates of the ingress. #1547
  2. The previous 2.x version did not automatically configure the number of Envoy worker threads based on the cpu request/limit.

What's Changed

New Contributors

Full Changelog: v2.0.2...v2.0.4