Skip to content

Commit

Permalink
Release files for 2.4.22 (#2247)
Browse files Browse the repository at this point in the history
* Release files for 2.4.22
  • Loading branch information
abraunegg authored Dec 5, 2022
1 parent 817656b commit 7289834
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 18 deletions.
35 changes: 32 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,35 @@
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.4.22 - 2022-12-06
### Fixed
* Fix application crash when local file is changed to a symbolic link with non-existent target
* Fix build error with dmd-2.101.0
* Fix build error with LDC 1.28.1 on Alpine
* Fix issue of silent exit when unable to delete local files when using --cleanup-local-files
* Fix application crash due to access permissions on configured path for sync_dir
* Fix potential application crash when exiting due to failure state and unable to cleanly shutdown the database
* Fix creation of parent empty directories when parent is excluded by sync_list

### Added
* Added performance output details for key functions

### Changed
* Switch Docker 'latest' to point at Debian builds rather than Fedora due to ongoing Fedora build failures
* Align application logging events to actual application defaults for --monitor operations
* Performance Improvement: Avoid duplicate costly path calculations and DB operations if not required
* Disable non-working remaining sandboxing options within systemd service files
* Performance Improvement: Only check 'sync_list' if this has been enabled and configured
* Display 'Sync with OneDrive is complete' when using --synchronize
* Change the order of processing between Microsoft OneDrive restrictions and limitations check and skip_file|skip_dir check

### Removed
* Remove building Fedora ARMv7 builds due to ongoing build failures

### Updated
* Update config change detection handling
* Updated documentation (various)

## 2.4.21 - 2022-09-27
### Fixed
* Fix that the download progress bar doesn't always reach 100% when rate_limit is set
Expand All @@ -13,16 +42,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* Fix to resolve segfault when running 'onedrive --display-sync-status' when run as 2nd process
* Fix DMD 2.100.2 depreciation warning

### Changed
* Change the exit code of the application to 126 when a --resync is required

### Added
* Add GitHub Action Test Build Workflow (replacing Travis CI)
* Add option --display-running-config to display the running configuration as used at application startup
* Add 'config' option to request readonly access in oauth authorization step
* Add option --cleanup-local-files to cleanup local files regardless of sync state when using --download-only
* Add option --with-editing-perms to create a read-write shareable link when used with --create-share-link <file>

### Changed
* Change the exit code of the application to 126 when a --resync is required

### Updated
* Updated --get-O365-drive-id implementation for data access
* Update what application options require an argument
Expand Down
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for onedrive v2.4.22-dev.
# Generated by GNU Autoconf 2.71 for onedrive v2.4.22.
#
# Report bugs to <https://github.com/abraunegg/onedrive>.
#
Expand Down Expand Up @@ -610,8 +610,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='onedrive'
PACKAGE_TARNAME='onedrive'
PACKAGE_VERSION='v2.4.22-dev'
PACKAGE_STRING='onedrive v2.4.22-dev'
PACKAGE_VERSION='v2.4.22'
PACKAGE_STRING='onedrive v2.4.22'
PACKAGE_BUGREPORT='https://github.com/abraunegg/onedrive'
PACKAGE_URL=''

Expand Down Expand Up @@ -1259,7 +1259,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.4.22-dev to adapt to many kinds of systems.
\`configure' configures onedrive v2.4.22 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1321,7 +1321,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of onedrive v2.4.22-dev:";;
short | recursive ) echo "Configuration of onedrive v2.4.22:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1435,7 +1435,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
onedrive configure v2.4.22-dev
onedrive configure v2.4.22
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1472,7 +1472,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.4.22-dev, which was
It was created by onedrive $as_me v2.4.22, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
Expand Down Expand Up @@ -2310,7 +2310,7 @@ fi
PACKAGE_DATE="October 2022"
PACKAGE_DATE="December 2022"
Expand Down Expand Up @@ -3326,7 +3326,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.4.22-dev, which was
This file was extended by onedrive $as_me v2.4.22, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -3381,7 +3381,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
onedrive config.status v2.4.22-dev
onedrive config.status v2.4.22
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dnl - commit the changed files (configure.ac, configure)
dnl - tag the release

AC_PREREQ([2.69])
AC_INIT([onedrive],[v2.4.22-dev], [https://github.com/abraunegg/onedrive], [onedrive])
AC_INIT([onedrive],[v2.4.22], [https://github.com/abraunegg/onedrive], [onedrive])
AC_CONFIG_SRCDIR([src/main.d])


Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion contrib/spec/onedrive.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
%endif

Name: onedrive
Version: 2.4.21
Version: 2.4.22
Release: 1%{?dist}
Summary: Microsoft OneDrive Client
Group: System Environment/Network
Expand Down
6 changes: 3 additions & 3 deletions docs/build-rpm-howto.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ mkdir -p ~/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
## Build RPM from spec file
Build the RPM from the provided spec file:
```text
wget https://github.com/abraunegg/onedrive/archive/refs/tags/v2.4.21.tar.gz -O ~/rpmbuild/SOURCES/v2.4.21.tar.gz
wget https://github.com/abraunegg/onedrive/archive/refs/tags/v2.4.22.tar.gz -O ~/rpmbuild/SOURCES/v2.4.22.tar.gz
wget https://raw.githubusercontent.com/abraunegg/onedrive/master/contrib/spec/onedrive.spec.in -O ~/rpmbuild/SPECS/onedrive.spec
rpmbuild -ba ~/rpmbuild/SPECS/onedrive.spec
```

## RPM Build Results
Below are output results of building, installing and running the RPM package on the respective platforms:
## RPM Build Example Results
Below are example output results of building, installing and running the RPM package on the respective platforms:

### CentOS 7
```text
Expand Down

0 comments on commit 7289834

Please sign in to comment.