dependabot[bot]
|
3b9cbc9a53
|
Bump k8s.io/api from 0.36.1 to 0.36.2 (#1598)
Bumps [k8s.io/api](https://github.com/kubernetes/api) from 0.36.1 to 0.36.2.
- [Commits](https://github.com/kubernetes/api/compare/v0.36.1...v0.36.2)
---
updated-dependencies:
- dependency-name: k8s.io/api
dependency-version: 0.36.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-06-22 10:26:17 +02:00 |
|
dependabot[bot]
|
c45a3e5c99
|
Bump alpine from 3.23.4 to 3.24.1 (#1607)
Bumps alpine from 3.23.4 to 3.24.1.
---
updated-dependencies:
- dependency-name: alpine
dependency-version: 3.24.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-06-22 10:25:19 +02:00 |
|
dependabot[bot]
|
6eff71b135
|
Bump actions/checkout from 6 to 7 (#1606)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-06-22 10:22:37 +02:00 |
|
Matt Carpenter
|
0a35e11038
|
initial commit (#1602)
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com>
|
2026-06-19 17:28:15 +02:00 |
|
Patryk Strusiewicz-Surmacki
|
23b68a4f50
|
Fix control-plane leaderelection restart in etcd mode (#1603)
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
|
2026-06-19 17:26:34 +02:00 |
|
Patryk Strusiewicz-Surmacki
|
7b76191604
|
Added debouncer for watch events
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
|
2026-06-17 18:18:12 +02:00 |
|
ichaytay
|
77123591e0
|
Added support in ipoib interfaces in ARP mode. Fixes #694
Signed-off-by: ichaytay <itay.hay@gmail.com>
|
2026-06-11 20:39:04 +02:00 |
|
Daniel Finneran
|
1753a02cbe
|
Merge pull request #1593 from p-strusiewiczsurmacki-mobica/fix/ListAdvertisedRoutes
Fix ListAdvertisedRoutes
|
2026-06-11 19:35:09 +01:00 |
|
Patryk Strusiewicz-Surmacki
|
be80c3e875
|
Fix ListAdvertisedRoutes
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
|
2026-06-11 13:12:28 +02:00 |
|
Daniel Finneran
|
8397945d0d
|
Merge pull request #1585 from mattcarp12/feat/bgp-route-dump
Feat: Dump BGP Routes
|
2026-06-11 09:50:06 +01:00 |
|
Daniel Finneran
|
3642d9390b
|
Merge pull request #1584 from kavirakesh14/upgrade-gobgp-v4
feat(bgp): upgrade gobgp from v3 to v4.6.0 (part 1)
|
2026-06-11 09:49:23 +01:00 |
|
Matthew Carpenter
|
807b148be6
|
initial commit
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com>
|
2026-06-10 11:51:27 +00:00 |
|
Patryk Strusiewicz-Surmacki
|
de90154825
|
Bump Go to 1.26.4 (#1591)
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
|
2026-06-09 17:36:32 +02:00 |
|
Kavirakesh
|
ec8f631938
|
upgrade gobgp from v3 to v4.6.0 (part 1)
- Bump github.com/osrg/gobgp/v3 to github.com/osrg/gobgp/v4 v4.6.0
- Update all import paths from v3 to v4
- Fix AddPath/DeletePath: now take apiutil.AddPathRequest/DeletePathRequest
with []*apiutil.Path instead of *api.AddPathRequest
- Fix getPath: rewritten using native bgp.* types (bgp.NewIPAddrPrefix,
bgp.NewPathAttributeNextHop, bgp.NewPathAttributeMpReachNLRI)
instead of anypb.Any wrappers
- Fix WatchEvent: now takes WatchEventMessageCallbacks{OnPeerUpdate}
with WatchPeer() option instead of api.WatchEventRequest
- Fix callback type: WatchEventResponse_PeerEvent replaced by
apiutil.WatchEventMessage_PeerEvent with direct struct field access
- Fix renamed constants:
DefinedType_NEIGHBOR -> DefinedType_DEFINED_TYPE_NEIGHBOR
MatchSet_ANY -> MatchSet_TYPE_ANY
RouteAction_ACCEPT -> RouteAction_ROUTE_ACTION_ACCEPT
PolicyDirection_EXPORT -> PolicyDirection_POLICY_DIRECTION_EXPORT
Closes #1581
Signed-off-by: Kavirakesh <kavirakesh007@gmail.com>
|
2026-06-04 22:28:55 +05:30 |
|
Daniel Finneran
|
29d8b53dc4
|
Merge pull request #1578 from Nabsku/feature/add-endpointless-reconciliation
Add endpointless reconciliation after service refactor
|
2026-06-01 16:21:49 +01:00 |
|
Daniel Finneran
|
22bdfd50d1
|
Merge pull request #1576 from DavideRutigliano/dhcp-broadcast
Add dhcp-broadcast annotation
|
2026-06-01 16:21:08 +01:00 |
|
Daniel Finneran
|
b822be6a52
|
Merge pull request #1573 from mattcarp12/fix/duplicate-vip-cleanup
Tidy - Extract duplicate code to remove VIP
|
2026-06-01 14:03:55 +03:00 |
|
Daniel Finneran
|
5431ec48ad
|
Merge pull request #1580 from mattcarp12/fix/ipv6-check-dup
Remove duplicate IPv6 check functions
|
2026-06-01 14:02:13 +03:00 |
|
Matthew Carpenter
|
38578894b6
|
initial commit
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com>
|
2026-05-29 20:07:38 +00:00 |
|
Matthew Carpenter
|
43fe97938e
|
initial commit
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com>
|
2026-05-29 16:54:40 +00:00 |
|
Yannick Wahner
|
5080b82fa0
|
chore: Fixed lint issues and updated CONTRIBUTING docs to reflect actual make entries
Signed-off-by: Yannick Wahner <thenabsku@gmail.com>
|
2026-05-29 11:36:06 +02:00 |
|
Yannick Wahner
|
faa14bce23
|
chore: update changelog for endpointless Cluster opt-in
Signed-off-by: Yannick Wahner <thenabsku@gmail.com>
|
2026-05-29 11:23:37 +02:00 |
|
Yannick Wahner
|
db5297f958
|
endpoints: start opted-in endpointless Cluster services
Signed-off-by: Yannick Wahner <thenabsku@gmail.com>
|
2026-05-29 11:23:37 +02:00 |
|
Yannick Wahner
|
69a1d2baa5
|
services: add opt-in support for endpointless Cluster LB services
Signed-off-by: Yannick Wahner <thenabsku@gmail.com>
|
2026-05-29 11:23:37 +02:00 |
|
Davide Rutigliano
|
59e8df5e80
|
Add dhcp-broadcast annotation
Signed-off-by: Davide Rutigliano <davide.rutigliano@suse.com>
|
2026-05-29 09:44:16 +02:00 |
|
Daniel Finneran
|
e2a0e815fe
|
Merge pull request #1575 from kube-vip/thebsdbox-patch-1
Update Makefile for new release
v1.2.0
|
2026-05-28 16:33:23 +03:00 |
|
Daniel Finneran
|
7bc7083351
|
Merge pull request #1574 from p-strusiewiczsurmacki-mobica/feat/macvlan-annotation
Added macvlan annotation for DHCP
|
2026-05-28 16:32:49 +03:00 |
|
Daniel Finneran
|
a362e26f1a
|
Update Makefile for new release
|
2026-05-28 13:20:34 +03:00 |
|
Patryk Strusiewicz-Surmacki
|
cd4782eeda
|
Added macvlan annotation for DHCP
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
|
2026-05-27 13:58:07 +02:00 |
|
Matt Carpenter
|
2e0ffc0122
|
initial commit for prometheus metrics (#1549)
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com>
|
2026-05-26 18:53:52 +02:00 |
|
Matt Carpenter
|
a7c3565be2
|
Fix - Backend Watch Ticker (#1565)
* initial commit
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com>
* refactor watch() function signature
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com>
---------
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com>
|
2026-05-26 11:15:44 +02:00 |
|
Patryk Strusiewicz-Surmacki
|
af467f29fa
|
Fix and E2E tests for endpoints deletion - ARP and RT (#1572)
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
|
2026-05-26 11:09:30 +02:00 |
|
Bohdan Leshchenko
|
523d1c464a
|
fix: refactor labeler interface, enable labeling with cp_enabled=true (#1566)
Signed-off-by: Bohdan Leshchenko <bohdan.leshchenko1@gmail.com>
|
2026-05-26 11:08:21 +02:00 |
|
dependabot[bot]
|
e74368b08e
|
Bump go.uber.org/zap from 1.27.1 to 1.28.0 (#1570)
Bumps [go.uber.org/zap](https://github.com/uber-go/zap) from 1.27.1 to 1.28.0.
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/uber-go/zap/compare/v1.27.1...v1.28.0)
---
updated-dependencies:
- dependency-name: go.uber.org/zap
dependency-version: 1.28.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-05-26 11:05:30 +02:00 |
|
dependabot[bot]
|
9b0630b006
|
Bump docker/metadata-action from 6.0.0 to 6.1.0 (#1571)
Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 6.0.0 to 6.1.0.
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Commits](https://github.com/docker/metadata-action/compare/v6.0.0...v6.1.0)
---
updated-dependencies:
- dependency-name: docker/metadata-action
dependency-version: 6.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-05-25 09:46:36 +02:00 |
|
dependabot[bot]
|
2424c56760
|
Bump github.com/onsi/gomega from 1.40.0 to 1.41.0 (#1568)
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.40.0 to 1.41.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.40.0...v1.41.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-version: 1.41.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-05-25 09:45:18 +02:00 |
|
dependabot[bot]
|
7cedfbaf22
|
Bump github.com/google/go-containerregistry from 0.21.5 to 0.21.6 (#1569)
Bumps [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry) from 0.21.5 to 0.21.6.
- [Release notes](https://github.com/google/go-containerregistry/releases)
- [Commits](https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6)
---
updated-dependencies:
- dependency-name: github.com/google/go-containerregistry
dependency-version: 0.21.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-05-25 09:44:24 +02:00 |
|
dependabot[bot]
|
8ed4e233cb
|
Bump golang.org/x/sys from 0.44.0 to 0.45.0 (#1567)
Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.44.0 to 0.45.0.
- [Commits](https://github.com/golang/sys/compare/v0.44.0...v0.45.0)
---
updated-dependencies:
- dependency-name: golang.org/x/sys
dependency-version: 0.45.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-05-25 09:42:15 +02:00 |
|
Daniel Finneran
|
e6b4175cca
|
Merge pull request #1554 from lbohdanl/feat/vlan-support
|
2026-05-22 18:28:57 +01:00 |
|
Marcel Fest
|
800c026f59
|
Update VERSION to v1.2.0-rc.1
|
2026-05-22 07:05:22 +02:00 |
|
dependabot[bot]
|
00de295105
|
Bump github.com/onsi/ginkgo/v2 from 2.28.3 to 2.29.0 (#1555)
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.28.3 to 2.29.0.
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v2.28.3...v2.29.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo/v2
dependency-version: 2.29.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-05-22 07:00:40 +02:00 |
|
Patryk Strusiewicz-Surmacki
|
7400eb2a59
|
Fixed deletion in ARP and RT modes when global leader election for services is used in 1.2.0-rc.0 (#1561)
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
|
2026-05-22 06:58:15 +02:00 |
|
Bohdan Leshchenko
|
326a18a4ff
|
feat(svc): add vlan support
Signed-off-by: Bohdan Leshchenko <bohdan.leshchenko1@gmail.com>
|
2026-05-21 19:53:26 +02:00 |
|
Maximilian Rink
|
a189f15c30
|
fix(bgp): improve IPv6 peer parsing robustness and fix MultiHop error message (#1551)
Signed-off-by: Max Rink <github@maxrink.de>
Signed-off-by: Maximilian Rink <maximilian.rink@telekom.de>
|
2026-05-20 16:54:50 +02:00 |
|
dependabot[bot]
|
c82268d5dd
|
Bump k8s.io/client-go from 0.36.0 to 0.36.1 (#1556)
Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.36.0 to 0.36.1.
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](https://github.com/kubernetes/client-go/compare/v0.36.0...v0.36.1)
---
updated-dependencies:
- dependency-name: k8s.io/client-go
dependency-version: 0.36.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-05-19 17:11:14 +02:00 |
|
dependabot[bot]
|
1e68553535
|
Bump k8s.io/api from 0.36.0 to 0.36.1 (#1558)
Bumps [k8s.io/api](https://github.com/kubernetes/api) from 0.36.0 to 0.36.1.
- [Commits](https://github.com/kubernetes/api/compare/v0.36.0...v0.36.1)
---
updated-dependencies:
- dependency-name: k8s.io/api
dependency-version: 0.36.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-05-19 15:38:23 +02:00 |
|
dependabot[bot]
|
74221d806e
|
Bump google.golang.org/grpc from 1.81.0 to 1.81.1 (#1559)
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.81.0 to 1.81.1.
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](https://github.com/grpc/grpc-go/compare/v1.81.0...v1.81.1)
---
updated-dependencies:
- dependency-name: google.golang.org/grpc
dependency-version: 1.81.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
2026-05-19 15:37:54 +02:00 |
|
Patryk Strusiewicz-Surmacki
|
f345729b6b
|
Fixed ARP mode with cluster policy in rc.0 (#1553)
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
|
2026-05-19 15:25:22 +02:00 |
|
Patryk Strusiewicz-Surmacki
|
72cc8c19cd
|
Fixed services test logs (#1552)
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de>
|
2026-05-19 15:24:06 +02:00 |
|
Bohdan Leshchenko
|
339e7cccad
|
fix: the comments for env vars (#1560)
Signed-off-by: Bohdan Leshchenko <bohdan.leshchenko1@gmail.com>
|
2026-05-18 15:14:07 +02:00 |
|