Skip to content

Commit 36f81ff

Browse files
committed
changelog
1 parent 7543e87 commit 36f81ff

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.changes/v0.22.1.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
## v0.22.1: 2025-07-22

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# GoATAK changelog
22

3+
## v0.22.1: 2025-07-22
4+
35
## v0.22.0: 2025-07-08
46
### Added
57
* Provisioning via device profiles - you can create profile for any login/uid combination

cmd/goatak_server/http_server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func NewHttp(app *App) *HttpServer {
4949
tokenKey: mac.Sum(nil),
5050
tokenMaxAge: time.Hour * 48,
5151
loginUrl: "/login",
52-
noAuth: nil,
52+
noAuth: []string{"/cot_xml"},
5353
}
5454

5555
if addr := app.config.String("admin_addr"); addr != "" {

make_release.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ git_tag=$(git describe --tags --abbrev=0)
1616
rev=$(git rev-list --tags --max-count=1)
1717
tag=$(changie latest)
1818

19-
if [[ "${git_tag}" != "${tag}" ]]; then
20-
echo "last git tag is ${git_tag}, but changie reports ${tag}"
21-
exit 1
22-
fi
19+
#if [[ "${git_tag}" != "${tag}" ]]; then
20+
# echo "last git tag is ${git_tag}, but changie reports ${tag}"
21+
# exit 1
22+
#fi
2323

2424
if [[ -n "${rev}" ]]; then
2525
prev_tag=$(git describe --tags ${rev})

0 commit comments

Comments
 (0)