./sysutils/restic-rest-server, REST server for restic

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.12.1nb6, Package name: restic-rest-server-0.12.1nb6, Maintainer: pkgsrc-users

Rest Server is a high performance HTTP server that implements restic's
REST backend API. It provides secure and efficient way to backup data
remotely, using restic backup client via the rest: URL.


Master sites:

Filesize: 274.642 KB

Version history: (Expand)


CVS history: (Expand)


   2024-04-05 21:14:14 by Benny Siegert | Files touched by this commit (161) | Package updated
Log message:
Revbump all Go packages after go121 update
   2024-02-07 15:51:04 by Benny Siegert | Files touched by this commit (156) | Package updated
Log message:
Revbump all Go packages after go121 update
   2024-01-10 20:14:43 by Benny Siegert | Files touched by this commit (152) | Package updated
Log message:
Revbump all Go packages after go121 update
   2023-12-05 20:46:19 by Benny Siegert | Files touched by this commit (146) | Package updated
Log message:
Revbump all Go packages after go121 update
   2023-11-10 16:45:25 by Benny Siegert | Files touched by this commit (152) | Package updated
Log message:
Revbump all Go packages after go121 update
   2023-10-29 15:48:24 by Benny Siegert | Files touched by this commit (152)
Log message:
Revbump all Go packages because go121 is now the default
   2023-10-19 14:57:29 by Thomas Klausner | Files touched by this commit (3) | Package updated
Log message:
restic-rest-server: update to 0.12.1.

Fix PKGNAME while here.

Changelog for rest-server 0.12.1 (2023-07-09)
============================================

The following sections list the changes in rest-server 0.12.1 relevant
to users. The changes are ordered by importance.

Summary
-------

 * Fix #230: Fix erroneous warnings about unsupported fsync
 * Fix #238: API: Return empty array when listing empty folders
 * Enh #217: Log to stdout using the `--log -` option

Details
-------

 * Bugfix #230: Fix erroneous warnings about unsupported fsync

   Due to a regression in rest-server 0.12.0, it continuously printed `WARNING: \ 
fsync is not
   supported by the data storage. This can lead to data loss, if the system \ 
crashes or the storage is
   unexpectedly disconnected.` for systems that support fsync. We have fixed the \ 
warning.

   https://github.com/restic/rest-server/issues/230
   https://github.com/restic/rest-server/pull/231

 * Bugfix #238: API: Return empty array when listing empty folders

   Rest-server returned `null` when listing an empty folder. This has been \ 
changed to returning
   an empty array in accordance with the REST protocol specification. This \ 
change has no impact on
   restic users.

   https://github.com/restic/rest-server/issues/238
   https://github.com/restic/rest-server/pull/239

 * Enhancement #217: Log to stdout using the `--log -` option

   Logging to stdout was possible using `--log /dev/stdout`. However, when the \ 
rest server is run
   as a different user, for example, using

   `sudo -u restic rest-server [...] --log /dev/stdout`

   This did not work due to permission issues.

   For logging to stdout, the `--log` option now supports the special filename \ 
`-` which also
   works in these cases.

   https://github.com/restic/rest-server/pull/217
   2023-10-15 14:04:35 by Benny Siegert | Files touched by this commit (155) | Package updated
Log message:
Revbump all Go packages after go120 security update