Skip to content

Commit a602b4b

Browse files
authored
Merge branch 'main' into sotw-dedupe
2 parents eba7aed + 17d64b8 commit a602b4b

File tree

948 files changed

+118988
-15153
lines changed

Some content is hidden

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

948 files changed

+118988
-15153
lines changed

.github/workflows/golangci-lint.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: golangci-lint
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
golangci:
7+
name: lint
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: golangci-lint
12+
uses: golangci/golangci-lint-action@v2
13+
with:
14+
version: latest
15+
only-new-issues: true
16+
17+
# Optional: golangci-lint command line arguments.
18+
args: --timeout=10m0s

.golangci.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ linters:
66
- bodyclose
77
- gofmt
88
- goimports
9-
- golint
109
- gosec
1110
- misspell
1211
- revive
@@ -24,14 +23,4 @@ linters-settings:
2423
local-prefixes: github.com/envoyproxy/go-control-plane
2524

2625
issues:
27-
exclude:
28-
exclude-rules:
29-
- text: "SA1019: package github.com/golang/protobuf/jsonpb is deprecated"
30-
linters:
31-
- staticcheck
32-
- text: "SA1019: package github.com/golang/protobuf/proto is deprecated"
33-
linters:
34-
- staticcheck
35-
- text: "SA1019: proto.MessageName is deprecated"
36-
linters:
37-
- staticcheck
26+
fix: true

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## Release v0.10.0
4+
5+
### Added
6+
7+
- Added snapshot support in the Linear cache (#437)
8+
- Added CI linting support (#455)
9+
- Incremental xDS support for Linear and Mux caches (#459)
10+
- Added Extension Configs support (#417)
11+
- Added a default cache logger (#483)
12+
- Added Scoped Routes Discovery Service - SRDS (#495)
13+
14+
### Changed
15+
16+
- Removed linearization in server API to preserve cache ordering (#443)
17+
- SetSnapshot now takes a `context` (#474)
18+
- Delta xDS now responds immediately for the first wildcard request in a delta stream if the corresponding snapshot exists and the response is empty (#473)
19+
- Reworked snapshot API to faciliate additional xDS resources without changes (#484)
20+
- Delta xDS won't delete non-existent resources in wildcard mode (#488)
21+
- Simple cache now holds a read lock when cancelling a snapshot watch (#507)
22+
23+
### Fixed
24+
25+
- Delta xDS not registering another watch after resource sent (#458)
26+
- Fixed data race in Linear cache (#502)
27+
- State of the World now tracks known resource names per caller stream (#508)
28+
29+
330
## Release v0.9.9
431

532
### Added

contrib/envoy/extensions/filters/http/squash/v3/squash.pb.go

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contrib/envoy/extensions/filters/http/squash/v3/squash.pb.validate.go

Lines changed: 122 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contrib/envoy/extensions/filters/http/sxg/v3alpha/sxg.pb.go

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)