---
title: "What’s new in Calico v3.26"
source: "https://www.tigera.io/blog/whats-new-in-calico-v3-26/"
description: "Calico v3.26 is here! This latest milestone brings exciting updates and enhancements that we're excited to share with the Calico community."
---

[Technical Blog](https://www.tigera.io/category/technical-blog/)

# What’s new in Calico v3.26

By [Reza Ramezanpour](https://www.tigera.io/blog/author/rezar/) on Jun 05, 2023 • 5 min read

We are excited to announce the release of Calico v3.26! This latest milestone brings a range of enhancements and new features to the Calico ecosystem, delivering an optimized and secure networking solution. This release has a strong emphasis on product performance, with strengthened security measures, expanded compatibility with Windows Server 2022 and OpenStack Yoga, and notable improvements to the Calico eBPF data plane.

As always, let’s begin by thanking our awesome community members who helped us in this release.

## Community shoutout

Big thanks to our GitHub users [afshin-deriv](https://github.com/projectcalico/calico/pull/6731), [blue-troy](https://github.com/projectcalico/calico/pull/7195), and [winstonu](https://github.com/projectcalico/calico/pull/7559) for their valuable contributions in enhancing the Kind installation and VXLAN documentation, as well as improving the code comments.

Additionally, we would like to extend our appreciation to [laibe](https://github.com/projectcalico/calico/pull/7464) and [yankay](https://github.com/projectcalico/calico/pull/7111) for their efforts in updating the flannel version and improving the IPtables detection mechanism. Their contributions have been instrumental in improving the overall functionality and reliability of our project.

Finally, a huge thank-you to [dilyevsky](https://github.com/projectcalico/calico/pull/7433), [detailyang](https://github.com/projectcalico/calico/pull/7421), [mayurjadhavibm](https://github.com/projectcalico/calico/pull/7343), and [olljanat](https://github.com/projectcalico/calico/pull/5735) for going above and beyond in pushing Calico beyond its original scope and for generously sharing their solutions with the rest of the community.

## Community-driven enhancement request: Fine-grained BGP route control

The primary responsibility of a routing protocol is to facilitate the exchange of local route information with remote peers, ensuring an updated and comprehensive route map for efficient traffic management. The BGPFilter added to this release allows you to limit the amount of information that you would like to share with your BGP peers, and it also allows you to block routes that might be harmful or not necessary for your setup.

The BGPFilter resource has two primary specifications: “import,” which influences imported routes from BGP peers, and “export,” which impacts routes to be exported to peers. It is important to highlight that these specifications encompass both IPv4 and IPv6 CIDRs, which is why each specification should include the version of the desired IP protocol name at the end. For instance, “importV4” is the appropriate expression for an IPv4 import BGP rule.

```
`kind: BGPFilter apiVersion: projectcalico.org/v3 metadata: name: first-bgp-filter spec: exportV4: - action: Accept matchOperator: In cidr: 77.0.0.0/16 importV4: - action: Accept matchOperator: NotIn cidr: 44.0.0.0/16`
```

***Learn more about BGP filters by reading our docs: [Configure a BGP filter](https://docs.tigera.io/calico-enterprise/latest/networking/configuring/bgp#configure-a-bgp-filter)***

## Increased scalability across all data planes

This release also provides a couple of performance improvements for Felix, the brain of Calico. One significant enhancement is the complete offloading of route filtering processes to the Linux kernel, resulting in a remarkable reduction in CPU usage (including garbage collection) on systems that handle numerous interfaces, pods, and routes.

To view the data on these improvements, read this blog: [Calico’s 3.26.0 update unlocks high density vertical scaling in Kubernetes](https://www.tigera.io/blog/calicos-3-26-0-update-unlocks-high-density-vertical-scaling-in-kubernetes/). The blog also comes with a step-by-step guide to help you test the improvements in your local environment.

## eBPF data plane improvements

With the goal of improving cloud networking and security for everyone, the Calico v3.26 release brings many improvements and enhancements to our eBPF-based data plane.

### Azure Kubernetes Service

The Calico eBPF data plane direct service return (DSR) mode is a feature that eliminates the intermediate network hop for external traffic to services such as node ports. DSR reduces latency for forwarded nodeport connections. However, it’s important to note that in public cloud providers, custom configurations are required for DSR to function properly.

For example, in an AKS cluster, load balancer health probes originate from a specific IP address, 168.63.129.16. This can cause a problem in DSR mode. To prevent this issue from happening, you can set the newly added “BPFDSROptoutCIDRs” value to “168.63.129.16/32” in the Calico-Felix configuration to prevent DSR mode from affecting the health probe.

Use the following command to prevent the health check from failing in DSR mode:

```
`kubectl patch felixconfiguration default --type merge --patch='{"spec": {"BPFDSROptoutCIDRs": "168.63.129.16/32"}}'`
```

### Topology-aware hints

Topology Aware Routing is a routing mechanism that intelligently adjusts the behavior of routes to prioritize keeping traffic within the zone it originated from. This approach is beneficial in certain scenarios, as it has the potential to reduce costs and enhance network performance by optimizing traffic flow within specific zones. The Calico eBPF data plane now supports these hints and can select service backends based on these hints.

As always, you can find the full list of changes in our [release notes](https://docs.tigera.io/calico/3.26/release-notes/).

## Join our community

If you like to work on the next anticipated Calico Open Source feature, join our [contributor’s Slack channel](https://slack.projectcalico.org/). Feel free to tell us about your vision and the community will help you achieve it.

You’re also welcome to take part in our next [virtual community meeting](https://www.tigera.io/project-calico/) event, where we discuss the future of Calico Open Source and spotlight community members who might have made some of the favorite features you are currently using.

Did you know we have an ambassador program? [Join Calico Big Cats](https://www.tigera.io/project-calico/calico-big-cats-ambassador-program/) today and help us grow our Calico Open Source community.

[Open Source](https://www.tigera.io/tags/open-source/)[Project Calico](https://www.tigera.io/tags/project-calico/)

## Related posts

[![What’s new in Calico: Spring 2026 Release](https://www.tigera.io/app/uploads/2026/06/Whats-New-in-Calico-NEW-TEMPLATE-2026.png)](https://www.tigera.io/blog/whats-new-in-calico-spring-2026-release/)

[Company Blog](https://www.tigera.io/category/company-blog/)

#### [What’s new in Calico: Spring 2026 Release](https://www.tigera.io/blog/whats-new-in-calico-spring-2026-release/)

By [Veronika Smolik](https://www.tigera.io/blog/author/veronika-smolik/)
on Jun 2, 2026

Kubernetes has come a long way since its debut in 2014. It’s gone from running a couple of containerized microservices to orchestrating fleets of production workloads spanning everything from AI agents to full scale VMs...

[Read more](https://www.tigera.io/blog/whats-new-in-calico-spring-2026-release/)

[![Kubernetes Operational Maturity: Secure and Resilient Cluster Federation with Cluster Mesh](https://www.tigera.io/app/uploads/2026/05/Kubernetes-Operational-Maturity-Secure-and-Resilient-Cluster-Federation-with-Cluster-Mesh.png)](https://www.tigera.io/blog/kubernetes-operational-maturity-secure-and-resilient-cluster-federation-with-cluster-mesh/)

#### [Kubernetes Operational Maturity: Secure and Resilient Cluster Federation with Cluster Mesh](https://www.tigera.io/blog/kubernetes-operational-maturity-secure-and-resilient-cluster-federation-with-cluster-mesh/)

By [Veronika Smolik](https://www.tigera.io/blog/author/veronika-smolik/)
on May 25, 2026

Practically no one runs a single Kubernetes cluster in production these days. Maybe that’s how it started but data sovereignty requirements, acquisitions, AI initiatives and the need for edge servers, among other considerations, have pulled...

[Read more](https://www.tigera.io/blog/kubernetes-operational-maturity-secure-and-resilient-cluster-federation-with-cluster-mesh/)

[![What’s New in Calico v3.32](https://www.tigera.io/app/uploads/2026/05/Green-Please-use-a-different-background-color-alternately-1.png)](https://www.tigera.io/blog/whats-new-in-calico-v3-32/)

#### [What’s New in Calico v3.32](https://www.tigera.io/blog/whats-new-in-calico-v3-32/)

By [Reza Ramezanpour](https://www.tigera.io/blog/author/rezar/)
on May 13, 2026

We’re excited to announce the release of Calico Open Source v3.32! 🎉 This release corresponds with Kubernetes v1.36 (Codename Haru) and it goes beyond just sharing a cat as the mascot of the release, it...

[Read more](https://www.tigera.io/blog/whats-new-in-calico-v3-32/)

<!-- plugin=object-cache-pro client=phpredis metric#hits=3215 metric#misses=35 metric#hit-ratio=98.9 metric#bytes=1540885 metric#prefetches=0 metric#store-reads=173 metric#store-writes=14 metric#store-hits=162 metric#store-misses=24 metric#sql-queries=29 metric#ms-total=587.58 metric#ms-cache=33.93 metric#ms-cache-avg=0.1824 metric#ms-cache-ratio=5.8 sample#redis-hits=50883351 sample#redis-misses=14662584 sample#redis-hit-ratio=77.6 sample#redis-ops-per-sec=111 sample#redis-evicted-keys=0 sample#redis-used-memory=113118920 sample#redis-used-memory-rss=104534016 sample#redis-memory-fragmentation-ratio=0.9 sample#redis-connected-clients=2 sample#redis-tracking-clients=0 sample#redis-rejected-connections=0 sample#redis-keys=70274 -->
