Skip to content

Releases: dadrus/heimdall

v0.15.2

10 Nov 10:41
4b53d6d
Compare
Choose a tag to compare

0.15.2 (2024-11-10)

This is just a regular monthly patch release with updated dependencies.

Dependencies

  • update github.com/dadrus/httpsig digest to e11d675 (#1936) (926aaa2)
  • update golang to v1.23.3 (#1943) (821606b)
  • update golang.org/x/exp digest to 2d47ceb (#1949) (d677013)
  • update google.golang.org/genproto/googleapis/rpc digest to dd2ea8e (#1938) (01a6c75)
  • update kubernetes packages to v0.31.2 (#1921) (21919a9)
  • update module github.com/envoyproxy/go-control-plane to v0.13.1 (#1904) (dcb88fb)
  • update module github.com/fsnotify/fsnotify to v1.8.0 (#1932) (b8a8c05)
  • update module github.com/go-co-op/gocron/v2 to v2.12.3 (#1933) (0a9185b)
  • update module github.com/google/cel-go to v0.22.0 (#1942) (0583e0e)
  • update module github.com/knadh/koanf/v2 to v2.1.2 (#1940) (cc31181)
  • update module github.com/redis/rueidis to v1.0.49 (#1947) (19d38cf)
  • update module github.com/redis/rueidis/rueidisotel to v1.0.49 (#1947) (19d38cf)
  • update module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc to v0.57.0 (#1950) (798b2fe)
  • update module go.opentelemetry.io/contrib/instrumentation/host to v0.57.0 (#1951) (ea21fb0)
  • update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.57.0 (#1952) (435cfdb)
  • update module go.opentelemetry.io/contrib/instrumentation/runtime to v0.57.0 (#1953) (3a4fdf1)
  • update module go.opentelemetry.io/contrib/propagators/autoprop to v0.57.0 (#1954) (e1659c6)
  • update module google.golang.org/grpc to v1.68.0 (#1945) (c0d5d9a)
  • update opentelemetry-go monorepo to v1.32.0 (#1948) (6e42038)

v0.15.1

16 Oct 10:00
2ed11a1
Compare
Choose a tag to compare

0.15.1 (2024-10-16)

Bug Fixes

  • Certificate validation error in JWT finalizer for CA-issued certificates resolved (#1900) (56eefa6)

Dependencies

  • update github.com/dadrus/httpsig digest to ae64249 (#1895) (8d2f45c)
  • update golang to v1.23.2 (#1855) (4726671)
  • update golang.org/x/exp digest to f66d83c (#1877) (32580a3)
  • update google.golang.org/genproto/googleapis/rpc digest to 796eee8 (#1893) (e7af4b4)
  • update module github.com/go-co-op/gocron/v2 to v2.12.1 (#1824) (6b76f53)
  • update module github.com/go-viper/mapstructure/v2 to v2.2.1 (#1826) (9202320)
  • update module github.com/knadh/koanf/providers/env to v1 (#1834) (33f0eb3)
  • update module github.com/prometheus/client_golang to v1.20.5 (#1891) (9e65501)
  • update module github.com/redis/rueidis to v1.0.47 (#1850) (e2f355c)
  • update module github.com/redis/rueidis/rueidisotel to v1.0.47 (#1851) (05c1fcd)
  • update module github.com/tidwall/gjson to v1.18.0 (#1856) (9c75554)
  • update module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc to v0.56.0 (#1886) (f7ef870)
  • update module go.opentelemetry.io/contrib/instrumentation/host to v0.56.0 (#1887) (d332b7a)
  • update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.56.0 (#1888) (d28b36d)
  • update module go.opentelemetry.io/contrib/instrumentation/runtime to v0.56.0 (#1889) (af86443)
  • update module go.opentelemetry.io/contrib/propagators/autoprop to v0.56.0 (#1890) (3928568)
  • update module go.uber.org/fx to v1.23.0 (#1883) (b5a728c)
  • update module gocloud.dev to v0.40.0 (#1881) (6c1aef7)
  • update module google.golang.org/grpc to v1.67.1 (#1852) (e6314aa)
  • update module google.golang.org/protobuf to v1.35.1 (#1866) (6c39d92)
  • update opentelemetry-go monorepo to v1.31.0 (#1884) (0730f13)

v0.15.0

16 Sep 12:34
b18e93d
Compare
Choose a tag to compare

0.15.0 (2024-09-16)

This release marks a significant milestone for the project as it is our first version without the alpha suffix in the version. I want to extend a heartfelt thank you to everyone who supported the project and me through ideas, insights, and valuable discussions.

A special thanks goes to @davidspek for the preparation work related to the new matching API for the rules. Many of the new features and improvements in this release are a direct result of that effort.

⚠ BREAKING CHANGES

  • Made the usage of if clauses in authentication & authorization, and error pipelines consistent (#1784)
  • Deprecated OTEL attributes replaced (#1669)
  • Configuration of signer moved into jwt finalizer (#1534)
  • Demo installation removed from the helm chart (#1544)
  • Subject has been made immutable (#1487)
  • Rule matching configuration API redesigned (#1358)
  • Default rule rejects requests with encoded slashes in the path of the URL with 400 Bad Request (#1358)
  • Support for rule_path_match_prefix on endpoint configurations for http_endpoint and cloud_blob providers has been dropped (#1358)

Features

  • Glob expressions are context aware and use . for host related expressions and / for path related ones as separators (#1358) (f2f6867)
  • Multiple rules can be defined for the same path, e.g. to have separate rules for read and write requests (#1358) (f2f6867)
  • New endpoint auth type to create http message signatures for outbound requests according to RFC 9421 (#1507) (672988d)
  • Route based matching of rules (#1766) (8ef379d)
  • Support for backtracking while matching rules (#1358) (f2f6867)
  • Support for free and single (named) wildcards for request path matching and access of the captured values from the pipeline (#1358) (f2f6867)

Code Refactorings

  • Configuration of signer moved into jwt finalizer (#1534) (4475745)
  • Default rule rejects requests with encoded slashes in the path of the URL with 400 Bad Request (#1358) (f2f6867)
  • Demo installation removed from the helm chart (#1544) (f8770b3)
  • Deprecated OTEL attributes replaced (#1669) (e5ed3a5)
  • Made the usage of if clauses in authentication & authorization, and error pipelines consistent (#1784) (2577f56)
  • Rule matching configuration API redesigned (#1358) (f2f6867)
  • Subject has been made immutable (#1487) (6c4957f)
  • Support for rule_path_match_prefix on endpoint configurations for http_endpoint and cloud_blob providers has been dropped (#1358) (f2f6867)

Performance Improvements

  • O(log(n)) time complexity for lookup of rules (#1358) (f2f6867)

Bug Fixes

  • Corrected the placement of namespace selector properties in the Helm chart's admission controller configuration (#1752). (4c059b3)
  • Fixed a nil pointer error in the Helm chart that occurred when a deployment was configured with custom annotations due to an incorrect reference in the deployment template (#1752). (4c059b3)
  • Taking updates of certificates into account while collecting metrics (#1534) (4475745)
  • Updated the admission controller configuration in the Helm chart to align with the redesigned structure done in v0.12.0-alpha release of heimdall (#1752). (4c059b3)

Documentation

  • Guide for First-Party Authentication with OpenID Connect (#1789) (8c6b9c3)
  • New integration guide for Envoy Gateway (#1412) (526f381)
  • NGING Ingress Controller guide updated to cover global integration options (#1469) (a710a64)
  • Traefik guide updated to cover Ingress, IngressRoute and HTTPRoute based integration options (#1420) (303095e)

Dependencies

  • update golang to v1.23.1 (#1793) (54e6cad)
  • update golang.org/x/exp digest to 701f63a (#1793) (54e6cad)
  • update google.golang.org/genproto/googleapis/rpc digest to 8af14fe (#1793) (54e6cad)
  • update module github.com/go-playground/validator/v10 to v10.22.1 (#1793) (54e6cad)
  • update module github.com/jellydator/ttlcache/v3 to v3.3.0 (#1793) (54e6cad)
  • update module github.com/masterminds/sprig/v3 to v3.3.0 (#1793) (54e6cad)
  • update module github.com/prometheus/client_golang to v1.20.3 (#1793) (54e6cad)
  • update module github.com/redis/rueidis to v1.0.45 (#1793) (54e6cad)
  • update module github.com/redis/rueidis/rueidisotel to v1.0.45 (#1793) (54e6cad)
  • update module github.com/rs/cors to v1.11.1 (#1793) (54e6cad)
  • update module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc to v0.55.0 (#1793) (54e6cad)
  • update module go.opentelemetry.io/contrib/instrumentation/host to v0.55.0 (#1793) (54e6cad)
  • update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.55.0 (#1793) (...
Read more

v0.14.5-alpha

25 Aug 11:42
beed6d3
Compare
Choose a tag to compare

0.14.5-alpha (2024-08-25)

This is just a regular monthly patch release with updated dependencies.

Dependencies

  • update github.com/youmark/pkcs8 digest to a2c0da2 (#1671) (ad37b99)
  • update golang to v1.23.0 (#1711) (0a67326)
  • update golang.org/x/exp digest to 9b4947d (#1724) (c9bf5dc)
  • update google.golang.org/genproto/googleapis/rpc digest to 4ba0660 (#1725) (661716a)
  • update kubernetes packages to v0.31.0 (#1708) (49a7b18)
  • update module github.com/dlclark/regexp2 to v1.11.4 (#1686) (e4827de)
  • update module github.com/envoyproxy/go-control-plane to v0.13.0 (#1716) (a06cb40)
  • update module github.com/go-jose/go-jose/v4 to v4.0.4 (#1673) (2dfb142)
  • update module github.com/go-viper/mapstructure/v2 to v2.1.0 (#1702) (0115fe8)
  • update module github.com/google/cel-go to v0.21.0 (#1684) (0601589)
  • update module github.com/jellydator/ttlcache/v3 to v3.2.1 (#1734) (161689d)
  • update module github.com/prometheus/client_golang to v1.20.2 (#1727) (6194d6d)
  • update module github.com/redis/rueidis to v1.0.44 (#1700) (9b7c43b)
  • update module github.com/redis/rueidis/rueidisotel to v1.0.44 (#1701) (02731bd)
  • update module github.com/tidwall/gjson to v1.17.3 (#1681) (f5e1707)
  • update module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc to v0.54.0 (#1728) (c66e903)
  • update module go.opentelemetry.io/contrib/instrumentation/host to v0.54.0 (#1729) (eef6b6e)
  • update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.54.0 (#1730) (01865ed)
  • update module go.opentelemetry.io/contrib/instrumentation/runtime to v0.54.0 (#1731) (415953d)
  • update module go.opentelemetry.io/contrib/propagators/autoprop to v0.54.0 (#1732) (3f6edea)
  • update module go.uber.org/fx to v1.22.2 (#1694) (810d995)
  • update module gocloud.dev to v0.38.0 (#1735) (b32d5c0)
  • update opentelemetry-go monorepo to v1.29.0 (#1733) (e093267)

v0.14.4-alpha

25 Jul 17:47
b1ca7a7
Compare
Choose a tag to compare

0.14.4-alpha (2024-07-25)

Bug Fixes

  • OAuth2 iss claim verification in JWT/OIDC authenticators when used with metadata_endpoint (#1660) by @martin31821 (a9947f2)
  • Trailing useless bytes ignored while parsing PEM content (#1564) (0c52bd3)

Dependencies

  • update golang to v1.22.5 (#1592) (1d4de85)
  • update golang.org/x/exp digest to 8a7402a (#1644) (6fbbf15)
  • update google.golang.org/genproto/googleapis/rpc digest to e6d459c (#1654) (103c1ac)
  • update kubernetes packages to v0.30.2 (#1540) (70fdd62)
  • update module github.com/dlclark/regexp2 to v1.11.2 (#1630) (afd7c92)
  • update module github.com/go-co-op/gocron/v2 to v2.11.0 (#1645) (42688aa)
  • update module github.com/go-jose/go-jose/v4 to v4.0.3 (#1625) (59caff8)
  • update module github.com/go-playground/validator/v10 to v10.22.0 (#1537) (1f6eeaa)
  • update module github.com/redis/rueidis to v1.0.41 (#1617) (3919aaf)
  • update module github.com/redis/rueidis/rueidisotel to v1.0.41 (#1619) (69bc2aa)
  • update module github.com/spf13/cobra to v1.8.1 (#1551) (871ee91)
  • update module github.com/tonglil/opentelemetry-go-datadog-propagator to v0.1.3 (#1579) (27c1026)
  • update module github.com/wi2l/jsondiff to v0.6.0 (#1558) (c4cfd07)
  • update module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc to v0.53.0 (#1600) (84b330f)
  • update module go.opentelemetry.io/contrib/instrumentation/host to v0.53.0 (#1601) (31834e0)
  • update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.53.0 (#1602) (d3d2328)
  • update module go.opentelemetry.io/contrib/instrumentation/runtime to v0.53.0 (#1603) (b23bc0b)
  • update module go.opentelemetry.io/contrib/propagators/autoprop to v0.53.0 (#1604) (f8679e9)
  • update module go.uber.org/fx to v1.22.1 (#1577) (49ab1c2)
  • update module google.golang.org/grpc to v1.65.0 (#1589) (dad8e53)
  • update module google.golang.org/protobuf to v1.34.2 (#1535) (12aa205)
  • update module k8s.io/api to v0.30.3 (#1640) (9b2e072)
  • update module k8s.io/client-go to v0.30.3 (#1641) (333c81f)
  • update module k8s.io/klog/v2 to v2.130.1 (#1567) (d16ecbe)
  • update opentelemetry-go monorepo to v1.28.0 (#1591) (a33f586)

v0.14.3-alpha

09 Jun 13:31
f788faf
Compare
Choose a tag to compare

0.14.3-alpha (2024-06-09)

This is just a regular monthly patch release with updated dependencies.

Dependencies

  • update golang to v1.22.4 (#1517) (a86784a)
  • update golang.org/x/exp digest to fc45aab (#1515) (f07ae39)
  • update google.golang.org/genproto/googleapis/rpc digest to ef581f9 (#1516) (acc5740)
  • update kubernetes packages to v0.30.1 (#1466) (dc68e5e)
  • update module github.com/go-jose/go-jose/v4 to v4.0.2 (#1450) (1aba621)
  • update module github.com/go-playground/validator/v10 to v10.21.0 (#1509) (0c9167e)
  • update module github.com/go-viper/mapstructure/v2 to v2.0.0 (#1510) (d7224ff)
  • update module github.com/goccy/go-json to v0.10.3 (#1476) (32f5eca)
  • update module github.com/redis/rueidis to v1.0.38 (#1502) (91569ee)
  • update module github.com/redis/rueidis/rueidisotel to v1.0.38 (#1503) (63dec15)
  • update module github.com/rs/zerolog to v1.33.0 (#1490) (9579381)
  • update module github.com/santhosh-tekuri/jsonschema/v6 to v6.0.1 (#1520) (3648c59)
  • update module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc to v0.52.0 (#1478) (535aa2f)
  • update module go.opentelemetry.io/contrib/instrumentation/host to v0.52.0 (#1480) (509d4b3)
  • update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.52.0 (#1482) (b112767)
  • update module go.opentelemetry.io/contrib/instrumentation/runtime to v0.52.0 (#1483) (4c8707c)
  • update module go.opentelemetry.io/contrib/propagators/autoprop to v0.52.0 (#1484) (57c5a6a)
  • update module go.opentelemetry.io/otel to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/bridge/opentracing to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttpto to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/exporters/prometheus to v0.49.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/exporters/zipkin to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/metric to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/sdk to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/sdk/metric to v1.27.0 (#1481) (384612e)
  • update module go.opentelemetry.io/otel/trace to v1.27.0 (#1481) (384612e)
  • update module go.uber.org/fx to v1.22.0 (#1501) (37ddf79)
  • update module google.golang.org/grpc to v1.64.0 (#1462) (9d5e47c)

v0.14.2-alpha

12 May 08:48
0bfa1f4
Compare
Choose a tag to compare

0.14.2-alpha (2024-05-12)

This is just a regular monthly patch release with updated dependencies.

Dependencies

  • update golang to v1.22.3 (#1428) (524a3d4)
  • update kubernetes packages to v0.30.0 (#1368) (04cba69)
  • update module github.com/go-co-op/gocron/v2 to v2.5.0 (#1424) (c3449a0)
  • update module github.com/go-playground/validator/v10 to v10.20.0 (#1402) (a965ef0)
  • update module github.com/prometheus/client_golang to v1.19.1 (#1434) (d778e9c)
  • update module github.com/redis/rueidis to v1.0.37 (#1440) (ce2e65b)
  • update module github.com/redis/rueidis/rueidisotel to v1.0.37 (#1441) (5c163b5)
  • update module github.com/rs/cors to v1.11.0 (#1383) (b44b9c0)
  • update module github.com/wi2l/jsondiff to v0.5.2 (#1370) (fd0cb04)
  • update module github.com/youmark/pkcs8 to v0.0.0-20240424034433-3c2c7870ae76 (#1407) (587f073)
  • update module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc to v0.51.0 (#1387) (ce65b02)
  • update module go.opentelemetry.io/contrib/instrumentation/host to v0.51.0 (#1389) (5688d8f)
  • update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.51.0 (#1390) (2357888)
  • update module go.opentelemetry.io/contrib/instrumentation/runtime to v0.51.0 (#1391) (a58f629)
  • update module go.opentelemetry.io/contrib/propagators/autoprop to v0.51.0 (#1392) (fc87ef5)
  • update module go.opentelemetry.io/otel to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/bridge/opentracing to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/exporters/prometheus to v0.48.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/exporters/zipkin to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/metric to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/sdk to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/sdk/metric to v1.26.0 (#1385) (3c531d7)
  • update module go.opentelemetry.io/otel/trace to v1.26.0 (#1385) (3c531d7)
  • update module go.uber.org/fx to v1.21.1 (#1384) (614117f)
  • update module golang.org/x/exp to v0.0.0-20240506185415-9bf2ced13842 (#1422) (561ee65)
  • update module google.golang.org/genproto/googleapis/rpc to v0.0.0-20240509183442-62759503f434 (#1436) (508e22b)
  • update module google.golang.org/protobuf to v1.34.1 (#1421) (e25b077)

v0.14.1-alpha

09 Apr 01:01
2466645
Compare
Choose a tag to compare

0.14.1-alpha (2024-04-09)

The main reason for this patch release is GO-2024-2687, which has been fixed in go v1.22.2 and golang.org/x/net v0.23.0.

Dependencies

  • update golang to v1.22.2 (#1313) (7c37100)
  • update golang.org/x/exp digest to c0f41cb (#1318) (723ad16)
  • update module github.com/knadh/koanf/v2 to v2.1.1 (#1308) (502cdcb)
  • update module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc to v0.50.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/contrib/instrumentation/host to v0.50.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.50.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/contrib/instrumentation/runtime to v0.50.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/contrib/propagators/autoprop to v0.50.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/bridge/opentracing to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/exporters/prometheus to v0.47.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/exporters/zipkin to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/metric to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/sdk to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/sdk/metric to v1.25.0 (#1329) (dbb40bd)
  • update module go.opentelemetry.io/otel/trace to v1.25.0 (#1329) (dbb40bd)
  • update module google.golang.org/grpc to v1.63.2 (#1339) (8ee3942)

v0.14.0-alpha

02 Apr 09:47
f0a265f
Compare
Choose a tag to compare

0.14.0-alpha (2024-04-02)

Features

Bug Fixes

  • audience assertion adheres to RFC-7519, section 4.1.3 (#1237) (560a470)
  • Rule set, the rule is loaded from, is considered while updating or deleting rules (#1298) (e571248)

Documentation

  • Contour integration guide updated to cover global configuration in addition to the route based one (#1253) (74bcebd)
  • Documentation restructured to make it more comprehensive (#1075) by @godrin, @REABMAX, @Ebano and @KieronWiltshire (6612633)
  • HAProxy guide updated to cover global integration with the Ingress Controller (#1240) (ed27797)
  • Integration guide for OpenFGA (#1299) (1d8bea2)
  • Traefik integration guide updated to cover global configuration in addition to the route based one (#1269) (73b1d4c)

Dependencies

  • update golang to 1.22.1 (#1219) (4449cb7)
  • update golang.org/x/exp digest to a685a6e (#1245) (41ba4a2)
  • update google.golang.org/genproto/googleapis/rpc digest to c3f9821 (#1301) (4ccf593)
  • update kubernetes packages to v0.29.3 (#1249) (43f3233)
  • update module github.com/dlclark/regexp2 to v1.11.0 (#1209) (c51eda9)
  • update module github.com/evanphx/json-patch/v5 to v5.9.0 (#1156) (3770509)
  • update module github.com/go-co-op/gocron/v2 to v2.2.9 (#1292) (3555329)
  • update module github.com/go-jose/go-jose/v4 to v4.0.1 [security] (#1225) (45e5a46)
  • update module github.com/go-playground/validator/v10 to v10.19.0 (#1217) (564d256)
  • update module github.com/google/cel-go to v0.20.1 (#1224) (a0669a8)
  • update module github.com/google/uuid to v1.6.0 (#1151) (5f9dc9c)
  • update module github.com/grpc-ecosystem/go-grpc-middleware/v2 to v2.1.0 (#1241) (bff3874)
  • update module github.com/jellydator/ttlcache/v3 to v3.2.0 (#1198) (7c560d2)
  • update module github.com/knadh/koanf/v2 to v2.1.0 (#1178) (1e344d3)
  • update module github.com/ory/ladon to v1.3.0 (#1222) (3ca9ec4)
  • update module github.com/prometheus/client_golang to v1.19.0 (#1212) (256932f)
  • update module github.com/rs/zerolog to v1.32.0 (#1165) (d4678f6)
  • update module github.com/tidwall/gjson to v1.17.1 (#1187) (a1680a1)
  • update module github.com/tonglil/opentelemetry-go-datadog-propagator to v0.1.2 (#1215) (0d2a6ce)
  • update module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc to v0.49.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/contrib/instrumentation/host to v0.49.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.49.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/contrib/instrumentation/runtime to v0.49.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/contrib/propagators/autoprop to v0.49.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/otel to v1.24.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/otel/bridge/opentracing to v1.24.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc to v1.24.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.24.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace to v1.24.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc to v1.24.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.24.0 (#1209) (c51eda9)
  • update module go.opentelemetry.io/otel/exporters/prometheus to v0.46.0 (#1209) ([c51ed...
Read more

v0.13.0-alpha

03 Jan 14:00
0a89ca3
Compare
Choose a tag to compare

0.13.0-alpha (2024-01-03)

⚠ BREAKING CHANGES

  • Endpoint specific HTTP cache settings refactored to allow HTTP cache ttl definition (#1043)

Features

Code Refactorings

  • Endpoint specific HTTP cache settings refactored to allow HTTP cache ttl definition (#1043) (2dbfa5f)

Bug Fixes

Dependencies

  • update golang to 1.21.5 (#1082) (a996ce7)
  • update golang.org/x/exp digest to 02704c9 (#1111) (1e18000)
  • update google.golang.org/genproto/googleapis/rpc digest to 50ed04b (#1115) (eda1d2d)
  • update kubernetes packages to v0.29.0 (#1100) (65b3619)
  • update module github.com/envoyproxy/go-control-plane to v0.12.0 (#1117) (7fbb737)
  • update module github.com/go-co-op/gocron/v2 to v2.1.2 (#1116) (13505da)
  • update module github.com/google/uuid to v1.5.0 (#1097) (5273ac8)
  • update module github.com/jellydator/ttlcache/v3 to v3.1.1 (#1102) (90dcc4d)
  • update module github.com/prometheus/client_golang to v1.18.0 (#1112) (57da7ec)
  • update module gocloud.dev to v0.36.0 (#1113) (584d51f)
  • update module google.golang.org/grpc to v1.60.1 (#1105) (329f647)
  • update module google.golang.org/protobuf to v1.32.0 (#1109) (47d7785)

New Contributors