Skip to content

Releases: netbirdio/netbird

v0.25.6

05 Feb 16:33
62bacee
Compare
Choose a tag to compare

What's Changed

  • Update bug-issue-report and feature request templates by @mlsmaycon in #1499
  • Fix data dir creation permissions by @lixmal in #1503
  • Fix iOS DNS timeout by @lixmal in #1504
  • Restore dns on unclean shutdown by @lixmal in #1494
  • getFirstListenerAvailable(): adjust logging levels and add success message by @nazarewk in #1513
  • Extract peer real IP from Load Balancer when possible by @surik in #1510
  • Export info log level setter for Android by @pappz in #1518
  • Update port, ip choice logic in DNS service by @pappz in #1514
  • Fix/resolv parser by @pappz in #1520
  • Remove query parameter from policy endpoints by @surik in #1527
  • Update grpc-middleware to bring changes related to realip by @surik in #1526
  • Use dashboard v2 for getting started scripts by @mlsmaycon in #1530

Full Changelog: v0.25.5...v0.25.6

v0.25.5

25 Jan 12:02
399493a
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.25.4...v0.25.5

v0.25.4

16 Jan 09:14
9fa0fbd
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.25.3...v0.25.4

v0.25.3

04 Jan 16:23
1f3a12d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.25.2...v0.25.3

v0.25.2

22 Dec 10:26
bc3d647
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.25.1...v0.25.2

v0.25.1

20 Dec 19:23
7060b63
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.25.0...v0.25.1

v0.25.0

18 Dec 11:30
3168b80
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.24.4...v0.24.5

v0.24.4

08 Dec 12:18
a1c4846
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.24.3...v0.24.4

v0.24.3

24 Nov 10:52
fdd23d4
Compare
Choose a tag to compare

Release notes

New features

Client update notification

Now, GUI clients will notify users of the new version available to download:
image

The client will redirect Linux and homebrew users to the installation doc.

Enhancements

Network routes default gateway handling

Network routes now handle ranges that contain the IP address of the local system's default gateway. Instead of not configuring the route, the client checks if the range is smaller than the existing one and adds a backup route to the default gateway using the local range.

What's Changed

Big thanks to our new contributors

v0.24.2

25 Oct 16:12
a8d03d8
Compare
Choose a tag to compare

Release notes

These release notes summarize what happened in the previous, 0.23, and now with the 0.24 release. There are cool new features and long-awaited enhancements that we want to share.

New features

Mark match domains as search domains

We added support to mark a match domain as a search domain in your peers' systems. See the configuration option below:

image

The client support was added as part of the release v0.24.0.

This option makes ping or accessing internal nodes easier by simply using their hostname. See example below:

ping -c 4 server

PING server.corporate.internal (10.75.251.48): 56 data bytes
64 bytes from 10.75.251.48: icmp_seq=0 ttl=64 time=239.124 ms
64 bytes from 10.75.251.48: icmp_seq=1 ttl=64 time=240.239 ms
64 bytes from 10.75.251.48: icmp_seq=2 ttl=64 time=238.940 ms
64 bytes from 10.75.251.48: icmp_seq=3 ttl=64 time=235.171 ms

--- server.corporate.internal ping statistics ---
4 packets transmitted, 4 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 235.171/238.368/240.239/1.912 ms

Ephemeral peers

When creating a setup key, you can enable an option to make all peers activated by the setup key ephemeral peer. See the option below:

image

Ephemeral peers will be deleted from the management system after 10 minutes of disconnection. This feature allows for use cases like running agents on containers, auto-scaling groups, and even CI/CD; checkout this great contribution from @Alemiz112: https://github.com/marketplace/actions/netbird-connect

Routing groups

We have added support to routing group in the network routes feature; it allows administrators to configure groups, combined with setup keys auto-groups to automatically assign new peers as routers for a specific network range. Combine this with ephemeral peers to have stateless routers:

routing groups 1 routing groups 2

SQLite store

We added experimental support to SQLite for the Management service store. See docs at https://docs.netbird.io/selfhosted/sqlite-store

This store is note recommended for production

JWT group sync

For self-hosted deployments, we made available an option to synchronize user groups from their JWT tokens. See image below:

image

Each IDP has its way of configuring JWT claims, but the only requirement from our side is to send the list of groups in a single claim. We are looking for contributions to update our documentation for the various IDPs that can be integrated with NetBird.

Talking about that, we added support to JumpCloud IDP; see docs here: https://docs.netbird.io/selfhosted/identity-providers#jump-cloud

Enhancements:

Refresh button

Now you can refresh the list of resources in your account by using a refresh button:
refresh button

User deletion

Account administrators can now delete users. See example below:

user deletion

Be aware that the peers that belong to the deleted user will be removed from the account.

4

User group propagation

We now support group propagation from users to the peers they own:

user group propagation > After enabling this option, you must trigger a group update for the user for this to take effect.

What's Changed

  • Implement SQLite Store using gorm and relational approach by @surik in (#1065)
  • Move StoreKind under own StoreConfig configuration and rename to Engine by @surik in (#1219)
  • chore: pkg import only once by @testwill in (#1222)
  • Update contribution guide with go version and Windows driver by @mlsmaycon in (#1226)
  • Use account creator as inviter as a fallback by @mlsmaycon in (#1225)
  • Add management-integrations by @surik in (#1227)
  • Make possible set IdpSignKeyRefreshEnabled from setup.env by @Fantu in (#1230)
  • Contribution guide - Explicitly disable CGO for client by @mlsmaycon in (#1228)
  • Update grpc clients' keepalive interval by @mlsmaycon in (#1231)
  • Fix update script's failure to update netbird-ui in binary installation by @bcmmbaga in (#1218)
  • Add search domains support by @mlsmaycon in (#1224)
  • Update management.json template with all existing configuration parameters by @pascal-fischer in (#1182)
  • Log store engine type by @mlsmaycon in (#1234)
  • Fix SaveUserLastLogin in SQLite store by @surik in #1241
  • Fix GetAccountByPrivateDomain for SQLite by @surik in #1242
  • Support pinning version during binary install by @glemsom in #1237
  • Bump golang.org/x/net from 0.10.0 to 0.17.0 by @dependabot in #1214
  • Log client version on startup by @mlsmaycon in #1240
  • Fix redirect urls template processing by @mlsmaycon in #1251

New Contributors

Full Changelog: v0.23.9...v0.24.0