Releases: solo-io/envoy-gloo
Releases · solo-io/envoy-gloo
v1.30.4-patch3
Dependency Bumps
- solo-io/envoy-fork has been upgraded to ed3a8b9ac0748d9b968e978945fdf930fad46bdf.
v1.30.4-patch2
New Features
- Create body transformation mechanism to modify keys rather than overwrite the whole body (#356)
v1.27.7-patch1
Dependency Bumps
- solo-io/envoy-fork has been upgraded to v1.27.7-fork1.
v1.30.4-patch1
Dependency Bumps
- envoyproxy/envoy has been upgraded to v1.30.4-patch1.
Fixes
- Fix status code and span names not being set correctly by the opentelemetry exporter. Backports ac5dfa0c703787fe9c90be07efa610ec17bd3506 from upstream 1.31 (solo-io/gloo#9313)
v1.23.12-patch5
Fixes
- Fixes a CVE in Envoy where async buffers could overflow. See GHSA-xcj3-h7vf-fw26
Backport onto the 1.23 branch of this fix (solo-io/envoy-gloo-ee#807)
v1.26.8-patch3
Dependency Bumps
- solo-io/envoy-fork has been upgraded to v1.26.8-fork2.
v1.27.6-patch1
Dependency Bumps
- solo-io/envoy-fork has been upgraded to v1.27.6-fork1.
v1.30.2-patch2
This release contained no user-facing changes.
v1.30.2-patch1
Dependency Bumps
- envoyproxy/envoy has been upgraded to v1.30.2-patch1.
v1.30.1-patch2
New Features
- This PR adds 2 major features: 1. The ability to run the transformation_filter as an
upstream_filter
. This means that it can be set either in theupstream_cluster
or therouter_filter
. This is especially useful for perofrming transformations which require running on each retry, or which use endpoint metadata. A new filter was also added called thewait_filter
, this filter allows buffering the request until endpoint_metadata has become available via a callback. This is important for using one of the newly introuced functions. 2. In order to allow using endpoint metadata, 2 new template functions were added to the inja transformer: -host_metadata(key, optional<filter>)
: This function allows you to access the metadata of the upstream host. -dynamic_metadata(key, optional<filter>)
: This function allows accessing the dynamic metadata of the stream. (#342) - Add a new inja template function to count the words in a json message. The new function
word_count
, can handle any json type, including nested json messages and will count all the words in the message. (#343)