Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
06929b3
deps/tooling: Make cve data preload optional (#30589)
phlax Oct 30, 2023
27a1448
bazel/deps: Add updater tool (#30368)
phlax Oct 22, 2023
999ffb7
github/ci: Update branch to new framework
phlax Dec 11, 2023
e99a9ad
deps: Bump `com_github_grpc_grpc` -> 1.59.1 (#30370)
phlax Oct 24, 2023
76e4d65
ci: Shift windows and macos jobs to github
phlax Dec 11, 2023
1ad5967
CI: explicitly specify the service want to start for kafka and websoc…
soulxu Dec 5, 2023
9e2eec7
build(deps): bump distroless/base-nossl-debian12 from `bad3646` to `8…
dependabot[bot] Dec 13, 2023
b92053e
docker/build: Update Ubuntu base image
phlax Dec 13, 2023
1ed1fb5
examples/grpc: fix go.mod (#31299)
doujiang24 Dec 12, 2023
4c871d8
examples/grpc: remove useless go.mod (#31318)
doujiang24 Dec 13, 2023
0290902
deps: Bump `com_github_curl` -> 8.4.0 (#30088)
Oct 19, 2023
5ca4acf
tooling/deps: CVE updates
phlax Dec 15, 2023
23bfb50
golang: fix replace path in go.mod (#31297)
doujiang24 Dec 12, 2023
9bf0fdd
build(deps): bump golang.org/x/net from 0.7.0 to 0.17.0 in /contrib/g…
dependabot[bot] Dec 15, 2023
745c2a3
build(deps): bump google.golang.org/grpc
dependabot[bot] Dec 15, 2023
e563329
build(deps): bump google.golang.org/grpc in /examples/grpc-bridge/server
dependabot[bot] Dec 15, 2023
8ddcd92
build(deps): bump google.golang.org/grpc
dependabot[bot] Dec 15, 2023
ffe8aaf
build(deps): bump golang.org/x/net in /examples/grpc-bridge/server
dependabot[bot] Dec 15, 2023
629758e
build(deps): bump envoy-dependency-check in /tools/base
dependabot[bot] Dec 15, 2023
efff40e
build(deps): bump google.golang.org/grpc
dependabot[bot] Dec 15, 2023
698c194
build(deps): bump distroless/base-nossl-debian12 from `8a0cabc` to `8…
dependabot[bot] Dec 15, 2023
49d1aad
bazel/deps: Shift edenhill/kakfa dep -> confluentinc (#31393)
phlax Dec 15, 2023
d7b4053
bazel/updater: Use workaround to filter deps + format fix (#31397)
phlax Dec 15, 2023
fcad60f
deps/tooling: Fix for CVE scanner
phlax Dec 15, 2023
43d2e2d
deps/tooling: Add CI paths
phlax Dec 15, 2023
89aaab4
deps: Rename edenhill -> confluentinc
phlax Dec 15, 2023
596b716
docs/examples: Assorted cleanups (#31588)
phlax Jan 3, 2024
be8b96c
datadog: fix names in Span::spawnChild (#31593)
dgoffredo Jan 4, 2024
15b30f4
deps: bump Boost to 1.84.0 (#31566)
zhxie Jan 3, 2024
da23aa4
datadog: fix span error property
dgoffredo Jan 8, 2024
8c8f6b2
debs/build: Bump Ubuntu base image -> f2034e7
phlax Jan 17, 2024
3663ae5
build(deps): bump distroless/base-nossl-debian12 from `8c957f0` to `5…
dependabot[bot] Feb 2, 2024
2371cfc
deps/build: Bump Ubuntu base image -> bb1c41
phlax Feb 6, 2024
15ab92b
deps/tooling: Bump python (~vulnerable) dependencies
phlax Feb 6, 2024
9ba5055
deps: Bump `com_github_grpc_grpc` -> 1.59.3 (#31641)
dependency-envoy[bot] Jan 4, 2024
22195f3
coverage: lower coverage for source/common/io/ (#32150)
RyanTheOptimist Feb 1, 2024
29ad926
deps: Bump `com_github_grpc_grpc` from 1.59.3 -> 1.59.4 (#32235)
tonya11en Feb 7, 2024
96d2db4
release/ci: Fix artefact publishing (#31837)
phlax Jan 16, 2024
aae5eb4
verify/examples: Expect/allow failure for local_ratelimit (#31348)
phlax Dec 13, 2023
8d5e0d9
ci/release: Ensure windows is built on release
phlax Feb 9, 2024
c6fe0ac
Fix crash from AWS NLB healthchecks when proxy protocol is enabled
jacobneiltaylor Jul 8, 2023
84ffb38
Fix crash when idle and per try timeouts occurs within backoff interval
yanavlasov Nov 15, 2023
d41d61a
Cache RE object in uri template matcher.
yanavlasov Nov 15, 2023
b096572
Fix crashes when using address type that isn't supported by the OS
ggreenway Nov 15, 2023
4795bf3
Proxy protocol: sanitise non utf8 chars in TLVs
Jan 12, 2024
0fd81ee
repo: Release v1.27.3
phlax Feb 9, 2024
c64d121
Merge branch 'release/v1.27' of ssh://github.com/envoyproxy/envoy int…
jbohanon Feb 9, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .azure-pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ parameters:
displayName: "CI target"
type: string
default: release
- name: artifactName
displayName: "Artifact name"
type: string
default: ""
- name: artifactSuffix
displayName: "Suffix of artifact"
type: string
Expand Down Expand Up @@ -338,6 +342,9 @@ steps:
- task: PublishBuildArtifacts@1
inputs:
pathtoPublish: "$(Build.StagingDirectory)/envoy"
artifactName: ${{ parameters.ciTarget }}
${{ if eq(parameters.artifactName, '') }}:
artifactName: ${{ parameters.ciTarget }}
${{ if ne(parameters.artifactName, '') }}:
artifactName: ${{ parameters.artifactName }}
timeoutInMinutes: 10
condition: eq(${{ parameters.publishEnvoy }}, 'true')
12 changes: 0 additions & 12 deletions .azure-pipelines/pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,6 @@ stages:
parameters:
buildStageDeps:
- env
macBuildStageDeps:
- env
windowsBuildStageDeps:
- env

# Scheduled run anywhere
- ${{ if eq(variables.pipelineScheduled, true) }}:
Expand All @@ -87,10 +83,6 @@ stages:
- env
checkStageDeps:
- env
macBuildStageDeps:
- env
windowsBuildStageDeps:
- env

# Postsubmit main/release branches
- ${{ if eq(variables.pipelinePostsubmit, true) }}:
Expand All @@ -103,7 +95,3 @@ stages:
- env
checkStageDeps:
- env
macBuildStageDeps:
- env
windowsBuildStageDeps:
- env
1 change: 1 addition & 0 deletions .azure-pipelines/stage/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
name: target
- template: ../ci.yml
parameters:
artifactName: release
managedAgent: ${{ parameters.managedAgent }}
ciTarget: $(target.value)
cacheName: "release"
Expand Down
62 changes: 0 additions & 62 deletions .azure-pipelines/stage/macos.yml

This file was deleted.

1 change: 1 addition & 0 deletions .azure-pipelines/stage/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ jobs:
publishEnvoy: false
publishTestResults: false
env:
ENVOY_REPO: $(Build.Repository.Name)
${{ if eq(variables['Build.Reason'], 'PullRequest') }}:
ENVOY_HEAD_REF: "$(Build.SourceBranch)"
ENVOY_BRANCH: "$(System.PullRequest.TargetBranch)"
Expand Down
125 changes: 0 additions & 125 deletions .azure-pipelines/stage/windows.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .azure-pipelines/stages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,6 @@ parameters:
default:
- env
- prechecks
- name: macBuildStageDeps
displayName: "macOS stage dependencies"
type: object
default:
- env
- prechecks
- name: windowsBuildStageDeps
displayName: "Windows stage dependencies"
type: object
default:
- env
- prechecks
- name: checkStageDeps
displayName: "Check stage dependencies"
type: object
Expand Down Expand Up @@ -158,25 +146,3 @@ stages:
- template: stage/verify.yml
parameters:
authGCP: $(GcpServiceAccountKey)

- stage: macos
displayName: macOS
dependsOn: ${{ parameters.macBuildStageDeps }}
variables:
RUN_BUILD: $[stageDependencies.env.repo.outputs['run.build']]
jobs:
- template: stage/macos.yml
parameters:
authGCP: $(GcpServiceAccountKey)
runBuild: variables['RUN_BUILD']

- stage: windows
displayName: Windows
dependsOn: ${{ parameters.windowsBuildStageDeps }}
variables:
RUN_BUILD: $[stageDependencies.env.repo.outputs['run.build']]
jobs:
- template: stage/windows.yml
parameters:
authGCP: $(GcpServiceAccountKey)
runBuild: variables['RUN_BUILD']
3 changes: 2 additions & 1 deletion .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ build:coverage --instrumentation_filter="^//source(?!/common/quic/platform)[/:],
build:coverage --remote_download_minimal
build:coverage --define=tcmalloc=gperftools
build:coverage --define=no_debug_info=1
build:coverage --linkopt=-Wl,-s
# `--no-relax` is required for coverage to not err with `relocation R_X86_64_REX_GOTPCRELX`
build:coverage --linkopt=-Wl,-s,--no-relax
build:coverage --test_env=ENVOY_IP_TEST_VERSIONS=v4only

build:test-coverage --test_arg="-l trace"
Expand Down
Loading