Release files for 2.3.8 (#614)

* Release files for 2.3.8
This commit is contained in:
abraunegg 2019-08-04 09:04:28 +10:00 committed by GitHub
parent 4e97f8810d
commit 2ef503f9e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 42 additions and 11 deletions

View file

@ -3,6 +3,37 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## 2.3.8 - 2019-08-04
### Fixed
* Fix unable to download all files when OneDrive fails to return file level details used to validate file integrity
* Included the flag "-m" to create the home directory when creating the user
* Fix entrypoint.sh to work with "sudo docker run"
* Fix docker build error on stretch
* Fix hidden directories in 'root' from having prefix removed
* Fix Sharepoint Document Library handling for .txt & .csv files
* Fix logging for init.d service
* Fix OneDrive response missing required 'id' element when uploading images
* Fix 'Unexpected character '<'. (Line 1:1)' when OneDrive has an exception error
* Fix error when creating the sync dir fails when there is no permission to create the sync dir
### Added
* Add explicit check for hashes to be returned in cases where OneDrive API fails to provide them despite requested to do so
* Add comparison with sha1 if OneDrive provides that rather than quickXor
* Add selinux configuration details for a sync folder outside of the home folder
* Add date tag on docker.hub
* Add back CentOS 6 install & uninstall to Makefile
* Add a check to handle moving items out of sync_list sync scope & delete locally if true
* Implement --get-file-link which will return the weburl of a file which has been synced to OneDrive
### Changed
* Change unauthorized-api exit code to 3
* Update LDC to v1.16.0 for Travis CI testing
* Use replace function for modified Sharepoint Document Library files rather than delete and upload as new file, preserving file history
* Update Sharepoint modified file handling for files > 4Mb in size
### Removed
* Remove -d shorthand for --download-only to avoid confusion with other GNU applications where -d stands for 'debug'
## 2.3.7 - 2019-07-03
### Fixed
* Fix not all files being downloaded due to OneDrive query failure

20
configure vendored
View file

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for onedrive v2.3.8-dev.
# Generated by GNU Autoconf 2.69 for onedrive v2.3.8.
#
# Report bugs to <https://github.com/abraunegg/onedrive>.
#
@ -579,8 +579,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='onedrive'
PACKAGE_TARNAME='onedrive'
PACKAGE_VERSION='v2.3.8-dev'
PACKAGE_STRING='onedrive v2.3.8-dev'
PACKAGE_VERSION='v2.3.8'
PACKAGE_STRING='onedrive v2.3.8'
PACKAGE_BUGREPORT='https://github.com/abraunegg/onedrive'
PACKAGE_URL=''
@ -1217,7 +1217,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures onedrive v2.3.8-dev to adapt to many kinds of systems.
\`configure' configures onedrive v2.3.8 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1278,7 +1278,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of onedrive v2.3.8-dev:";;
short | recursive ) echo "Configuration of onedrive v2.3.8:";;
esac
cat <<\_ACEOF
@ -1389,7 +1389,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
onedrive configure v2.3.8-dev
onedrive configure v2.3.8
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@ -1406,7 +1406,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by onedrive $as_me v2.3.8-dev, which was
It was created by onedrive $as_me v2.3.8, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@ -2158,7 +2158,7 @@ fi
PACKAGE_DATE="July 2019"
PACKAGE_DATE="August 2019"
@ -3138,7 +3138,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by onedrive $as_me v2.3.8-dev, which was
This file was extended by onedrive $as_me v2.3.8, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -3191,7 +3191,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
onedrive config.status v2.3.8-dev
onedrive config.status v2.3.8
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

View file

@ -9,7 +9,7 @@ dnl - commit the changed files (configure.ac, configure)
dnl - tag the release
AC_PREREQ([2.69])
AC_INIT([onedrive],[v2.3.8-dev], [https://github.com/abraunegg/onedrive], [onedrive])
AC_INIT([onedrive],[v2.3.8], [https://github.com/abraunegg/onedrive], [onedrive])
AC_CONFIG_SRCDIR([src/main.d])