Skip to content

Commit 18c41f1

Browse files
authored
V1.1.0 release notes (#3645)
* update release notes * bump up version * fix release notes
1 parent 9e01961 commit 18c41f1

File tree

9 files changed

+25
-20
lines changed

9 files changed

+25
-20
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ body:
3131
label: Version
3232
description: What version are you running?
3333
options:
34+
- v1.1.0
3435
- v1.0.0
3536
- v0.99.0
3637
- v0.90.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<p align="center">
1818
<a href="https://github.com/gravitl/netmaker/releases">
19-
<img src="https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square" />
19+
<img src="https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square" />
2020
</a>
2121
<a href="https://hub.docker.com/r/gravitl/netmaker/tags">
2222
<img src="https://img.shields.io/docker/pulls/gravitl/netmaker?label=downloads" />

compose/docker-compose.netclient.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.4"
33
services:
44
netclient:
55
container_name: netclient
6-
image: 'gravitl/netclient:v1.0.0'
6+
image: 'gravitl/netclient:v1.1.0'
77
hostname: netmaker-1
88
network_mode: host
99
restart: on-failure

k8s/client/netclient-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
hostNetwork: true
1717
containers:
1818
- name: netclient
19-
image: gravitl/netclient:v1.0.0
19+
image: gravitl/netclient:v1.1.0
2020
env:
2121
- name: TOKEN
2222
value: "TOKEN_VALUE"

k8s/client/netclient.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
# - "<node label value>"
2929
containers:
3030
- name: netclient
31-
image: gravitl/netclient:v1.0.0
31+
image: gravitl/netclient:v1.1.0
3232
env:
3333
- name: TOKEN
3434
value: "TOKEN_VALUE"

k8s/server/netmaker-ui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: netmaker-ui
18-
image: gravitl/netmaker-ui:v1.0.0
18+
image: gravitl/netmaker-ui:v1.1.0
1919
ports:
2020
- containerPort: 443
2121
env:

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ import (
3535
"golang.org/x/exp/slog"
3636
)
3737

38-
var version = "v1.0.0"
38+
var version = "v1.1.0"
3939

4040
// @title NetMaker
41-
// @version 1.0.0
41+
// @version 1.1.0
4242
// @description NetMaker API Docs
4343
// @tag.name APIUsage
4444
// @tag.description.markdown

release.md

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
1-
# Netmaker v1.0.0
1+
## Netmaker v1.1.0 Release Notes 🚀
22

3-
## Whats New ✨
3+
## What’s New ✨
44

5-
- Multi-Factor Authentication (MFA) for user logins – added an extra layer of security to your accounts.
5+
- Okta IDP Integration – Seamless authentication and user provisioning with Okta.
66

7-
- Gateways Unified: Internet Gateways are now merged into the general Gateway feature and available in Community Edition.
7+
- Egress Domain-Based Routing – Route traffic based on domain names, not just network CIDRs.
88

9-
- Improved OAuth & IDP Sync: Simplified and more reliable configuration for identity provider integrations.
9+
- DNS Nameservers with Match Domain Functionality – Fine-grained DNS resolution control per domain.
1010

11-
- Global Map View: Visualize all your endpoints and users across the globe in a unified interface.
11+
- Service User Management – Platform Network Admins can now add service users directly to networks.
1212

13-
- Network Graph Control: Directly control and manage endpoints via the interactive network graph.
13+
- Device Approval Workflow – Require admin approval before devices can join a network.
1414

15-
- Site-to-Site over IPv6: IPv4 site-to-site communication over IPv6 Netmaker overlay tunnels.
15+
- Auto-Created User Group Policies – Automatically generate network access policies for new user groups.
1616

17-
## 🛠 Improvements & Fixes
17+
- User Session Expiry Controls – Set session timeouts for both Dashboard and Client Apps.
1818

19-
- Auto-Sync DNS Configs: Multi-network DNS configurations now sync automatically between server and clients.
19+
## Improvements & Fixes 🛠
2020

21-
- Stability Fixes: Improved connection reliability for nodes using Internet Gateways.
21+
- Access Control Lists (ACLs): Enhanced functionality and flexibility.
2222

23-
- LAN/Private Routing Enhancements: Smarter detection and handling of local/private routes, improving peer-to-peer communication in complex network environments.
23+
- User Management UX: Streamlined workflows for easier administration.
24+
25+
- IDP User/Group Filtering: Improved filtering capabilities for large organizations.
26+
27+
- Stability Enhancements: More reliable connections for nodes using Internet Gateways.
2428

2529
## Known Issues 🐞
2630

swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1511,7 +1511,7 @@ info:
15111511
contact: {}
15121512
description: NetMaker API Docs
15131513
title: NetMaker
1514-
version: 1.0.0
1514+
version: 1.1.0
15151515
paths:
15161516
/api/dns:
15171517
get:

0 commit comments

Comments
 (0)