Skip to content

Commit d89714b

Browse files
authored
Release fmcsadmin 2.1.0 (#31)
* Update the version string * Fix spelling in help messages * Update README.md * Remove FUNDING.yml * Add "-i" option to specify a private key file for FileMaker Admin API PKI Authentication * Update go.yml and release.yml for GitHub Actions to build with Go 1.19 * Update behavior of "GET CWPCONFIG" command and "SET CWPCONFIG" command on Linux * Drop support for Claris FileMaker Server 19.2 * Release fmcsadmin 2.1.0
1 parent bbbcc41 commit d89714b

File tree

11 files changed

+615
-363
lines changed

11 files changed

+615
-363
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest, macos-latest]
14-
go: ['1.18']
14+
go: ['1.19']
1515
steps:
1616

1717
- uses: actions/setup-go@v2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest]
16-
go: ['1.18']
16+
go: ['1.19']
1717
steps:
1818

1919
- uses: actions/setup-go@v2

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME=fmcsadmin
2-
VERSION=2.0.0
2+
VERSION=2.1.0
33

44
GOCMD=go
55
GOBUILD=$(GOCMD) build
@@ -18,6 +18,7 @@ DIST_WINDOWS_DIR=$(NAME)-$(VERSION)-$(WINDOWS_DIR)
1818
all: test build
1919

2020
deps:
21+
$(GOGET) github.com/golang-jwt/jwt/v4
2122
$(GOINSTALL) github.com/mattn/go-scan
2223
$(GOINSTALL) github.com/olekukonko/tablewriter
2324
$(GOINSTALL) golang.org/x/term

NOTICE.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
fmcsadmin
2-
Copyright 2017-2022 Emic Corporation, https://www.emic.co.jp/
2+
Copyright 2017-2023 Emic Corporation, https://www.emic.co.jp/
33

44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -34,3 +34,14 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
3434
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3535

3636
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
37+
38+
---
39+
40+
Copyright (c) 2012 Dave Grijalva
41+
Copyright (c) 2021 golang-jwt maintainers
42+
43+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44+
45+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
46+
47+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ Features
2626
- View and change the setting for sharing streaming URLs (for FileMaker Server 19.3.2 or later)
2727
- Cancel the currently running backup (for FileMaker Server 19.5.1 or later)
2828
- View and change the setting for parallel backup (for FileMaker Server 19.5.1 or later)
29+
- FileMaker Admin API PKI Authentication (for FileMaker Server 19.6.1 or later)
2930

3031
Supported Servers
3132
-----
32-
- Claris FileMaker Server 19 (19.1, 19.2, 19.3, 19.4, 19.5)
33+
- Claris FileMaker Server 19 (19.3, 19.4, 19.5, 19.6)
3334

3435
Usage
3536
-----
@@ -50,8 +51,8 @@ Note: Handling schedule ID 1 is not supported for FileMaker Server.
5051
System Requirements
5152
-----
5253
- Linux version : Ubuntu 18.04 LTS, Ubuntu 20.04 LTS or CentOS Linux 7
53-
- macOS version : macOS Catalina 10.15.7 or later (tested on macOS Monterey 12)
54-
- Windows version : Windows 10 Version 21H1 or later (tested on Windows 11)
54+
- macOS version : macOS Big Sur 11 or later (tested on macOS Ventura 13)
55+
- Windows version : Windows 10 Version 21H2 or later (tested on Windows 11)
5556

5657
Download
5758
-----

0 commit comments

Comments
 (0)