From cae2200597e9447337ce09acc0d7127b84aa7095 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Mathieu Date: Tue, 27 Oct 2020 17:31:38 +0100 Subject: [PATCH] Release 1.3.1 --- .travis.yml | 2 +- Dockerfile | 2 +- README.md | 8 ++++---- changelog/1.3.1 | 23 +++++++++++++++++++++++ client/test_downgrade.sh | 1 + client/test_upgrade.sh | 1 + server/common/version.go | 2 +- 7 files changed, 32 insertions(+), 7 deletions(-) create mode 100644 changelog/1.3.1 diff --git a/.travis.yml b/.travis.yml index 66ae8ce5..408ad060 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: go sudo: required go: - - 1.15.2 + - 1.15.3 go_import_path: github.com/root-gg/plik diff --git a/Dockerfile b/Dockerfile index 28b1e262..29121fe3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ FROM plik-frontend-builder AS plik-frontend RUN make clean-frontend frontend ################################################################################## -FROM golang:1.15.2-buster AS plik-builder +FROM golang:1.15.3-buster AS plik-builder # Install needed binaries RUN apt-get update && apt-get install -y build-essential crossbuild-essential-armhf crossbuild-essential-armel crossbuild-essential-arm64 crossbuild-essential-i386 diff --git a/README.md b/README.md index 26272cac..4a4890de 100644 --- a/README.md +++ b/README.md @@ -30,16 +30,16 @@ Plik is a scalable & friendly temporary file upload system ( wetransfer like ) i - [Filelink for Plik](https://gitlab.com/joendres/filelink-plik) : Thunderbird Addon to upload attachments to Plik ### Version -1.3 +1.3.1 ### Installation ##### From release To run plik, it's very simple : ```sh -$ wget https://github.com/root-gg/plik/releases/download/1.3/plik-1.3-linux-64bits.tar.gz -$ tar xzvf plik-1.3-linux-64bits.tar.gz -$ cd plik-1.3/server +$ wget https://github.com/root-gg/plik/releases/download/1.3.1/plik-1.3.1-linux-amd64.tar.gz +$ tar xzvf plik-1.3.1-linux-64bits.tar.gz +$ cd plik-1.3.1/server $ ./plikd ``` Et voilĂ  ! You now have a fully functional instance of Plik running on http://127.0.0.1:8080. diff --git a/changelog/1.3.1 b/changelog/1.3.1 new file mode 100644 index 00000000..7d146bf6 --- /dev/null +++ b/changelog/1.3.1 @@ -0,0 +1,23 @@ +Plik 1.3.1 + + Hi, today we're releasing Plik 1.3.1 ! + + Here is the changelog : + + New + - Server Side Encryption support for S3 data backend + - Docker based cross-compilation and release process + + Fixed + - Redirect to login page if not logged in and anonymous upload is disabled + - Fix npe when --info and not --server + - Fix server cmd user list to display all users if --provider is not used + - Fix authentication redirect URL when config.Path is set + - Add confirm dialog to delete upload and files actions + + Misc + - All binaries are now statically linked + - Removed server releases for Windows and MacOS + +Faithfully, +The plik team \ No newline at end of file diff --git a/client/test_downgrade.sh b/client/test_downgrade.sh index c04a04c7..42db7794 100755 --- a/client/test_downgrade.sh +++ b/client/test_downgrade.sh @@ -25,6 +25,7 @@ RELEASES=( 1.2.3 1.2.4 1.3-RC1 + 1.3 ) ### diff --git a/client/test_upgrade.sh b/client/test_upgrade.sh index f4e11bf5..de7da7c3 100755 --- a/client/test_upgrade.sh +++ b/client/test_upgrade.sh @@ -26,6 +26,7 @@ RELEASES=( 1.2.3 1.2.4 1.3-RC1 + 1.3 ) ### diff --git a/server/common/version.go b/server/common/version.go index 155bc3d7..2c39c7d6 100644 --- a/server/common/version.go +++ b/server/common/version.go @@ -10,7 +10,7 @@ import ( "github.com/jinzhu/copier" ) -const version = "1.3" +const version = "1.3.1" // GetVersion return the current package version func GetVersion() string {