Skip to content

Releases: solo-io/envoy-gloo

v1.30.4-patch3

30 Jul 21:09
bd43246
Compare
Choose a tag to compare

Dependency Bumps

  • solo-io/envoy-fork has been upgraded to ed3a8b9ac0748d9b968e978945fdf930fad46bdf.

v1.30.4-patch2

25 Jul 12:28
f0c260f
Compare
Choose a tag to compare

New Features

  • Create body transformation mechanism to modify keys rather than overwrite the whole body (#356)

v1.27.7-patch1

18 Jul 14:27
73fc296
Compare
Choose a tag to compare

Dependency Bumps

  • solo-io/envoy-fork has been upgraded to v1.27.7-fork1.

v1.30.4-patch1

10 Jul 20:57
9460b8c
Compare
Choose a tag to compare

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

05 Jul 13:36
4632aae
Compare
Choose a tag to compare

Fixes

v1.26.8-patch3

02 Jul 19:59
9f8d012
Compare
Choose a tag to compare

Dependency Bumps

  • solo-io/envoy-fork has been upgraded to v1.26.8-fork2.

v1.27.6-patch1

10 Jun 13:23
11f61d9
Compare
Choose a tag to compare

Dependency Bumps

  • solo-io/envoy-fork has been upgraded to v1.27.6-fork1.

v1.30.2-patch2

07 Jun 20:45
b2a674a
Compare
Choose a tag to compare

This release contained no user-facing changes.

v1.30.2-patch1

05 Jun 16:12
484dedd
Compare
Choose a tag to compare

Dependency Bumps

  • envoyproxy/envoy has been upgraded to v1.30.2-patch1.

v1.30.1-patch2

03 Jun 17:45
4219c2f
Compare
Choose a tag to compare

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 the upstream_cluster or the router_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 the wait_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)