1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-23 22:51:35 +00:00
Commit graph

3362 commits

Author SHA1 Message Date
TW
c920a16ecd Merge pull request #1865 from ThomasWaldmann/update-1.0-changes
update CHANGES (1.0-maint)
2016-11-27 02:23:51 +01:00
Thomas Waldmann
91fa568d5e add note about issue #1837 2016-11-27 02:22:33 +01:00
Thomas Waldmann
bd0e14040e move "important notes" to own section 2016-11-27 02:22:28 +01:00
Thomas Waldmann
cc15806766 update CHANGES (1.0-maint) 2016-11-27 02:21:14 +01:00
TW
373d8e8e43 Merge pull request #1884 from ThomasWaldmann/upgrade-osxfuse
upgrade FUSE for macOS to 3.5.3
2016-11-27 02:13:43 +01:00
Thomas Waldmann
9643e64211 upgrade FUSE for macOS to 3.5.3 2016-11-27 02:09:19 +01:00
TW
8465979956 Merge pull request #1882 from ThomasWaldmann/docs-rsrc-usage
add more details about resource usage
2016-11-27 01:31:24 +01:00
TW
b808d952f0 Merge pull request #1883 from ThomasWaldmann/noatime-noctime
implement noatime / noctime, fixes #1853
2016-11-27 00:24:54 +01:00
Thomas Waldmann
9451ab6534 implement noatime / noctime, fixes #1853 2016-11-26 21:24:07 +01:00
Thomas Waldmann
30d1e21e53 fixup: fixes, clarify 2016-11-26 20:49:39 +01:00
enkore
20798df7e3 Merge pull request #1876 from ThomasWaldmann/vagrantfile-cleanup
Vagrantfile cleanup
2016-11-26 19:14:44 +01:00
enkore
5917822735 Merge pull request #1881 from Abogical/cache-progress
Add begin_txn progress message
2016-11-26 19:11:08 +01:00
Abogical
be6341b956 Add begin_txn progress message 2016-11-26 19:38:00 +02:00
Thomas Waldmann
76c5f1a258 add more details about resource usage 2016-11-26 04:34:01 +01:00
TW
cc20c98262 Merge pull request #1875 from ThomasWaldmann/improve-files-cache-docs
improve cache / index docs, esp. files cache docs, fixes #1825
2016-11-26 02:24:50 +01:00
enkore
1250b14ce2 Merge pull request #1874 from Abogical/cache-progress
Add progress display for cache commit
2016-11-26 00:50:16 +01:00
enkore
50b97665c8 Merge pull request #1878 from ThomasWaldmann/borg-new-passphrase
implement BORG_NEW_PASSPHRASE, fixes #1768
2016-11-25 20:39:26 +01:00
enkore
6936526aae Merge pull request #1879 from ThomasWaldmann/cleanup-recreate-tests
remove some unneeded test overriding methods
2016-11-25 14:09:38 +01:00
Thomas Waldmann
d519ae6b6f remove some unneeded test overriding methods
they are not there any more in the base class, so there is nothing to override.
2016-11-25 01:31:28 +01:00
Thomas Waldmann
fa8ce2d977 add test for borg change-passphrase / BORG_NEW_PASSPHRASE 2016-11-25 00:06:35 +01:00
Thomas Waldmann
0a0b913739 implement BORG_NEW_PASSPHRASE, fixes #1768 2016-11-24 23:43:27 +01:00
TW
d56683f2b5 Merge pull request #1877 from anarcat/pypi
display README correctly on PyPI
2016-11-24 16:50:00 +01:00
Antoine Beaupré
fbada18b0d display README correctly on PyPI
I have discovered that PyPI is way more sensitive to RST warnings than
other platforms: warnings and errors will make the document not show
up correctly, which is currently the case here:

https://pypi.python.org/pypi/borgbackup/

the suggested changes remove Sphinx-specific markup from the output,
namely the badges and `|replacement|` patterns, but also the
`higlight` directive. this also requires adding tags to the README to
mark the badges to remove and removal of the `none` argument for the
`.. code-block::` element which was not having any significant in
Sphinx anyways.
2016-11-24 09:09:15 -05:00
Abogical
f9b3d28c19 Add progress messages for cache.commit 2016-11-24 15:44:00 +02:00
Abogical
e999f3ff51 Add ProgressIndicatorMessage and abstract class ProgressIndicatorBase 2016-11-24 15:43:51 +02:00
Thomas Waldmann
1dc51e6df8 Vagrantfile: reduce code duplication 2016-11-24 04:07:21 +01:00
Thomas Waldmann
6bb363c707 Vagrantfile: cosmetic: remove tabs / empty lines 2016-11-24 04:07:21 +01:00
Thomas Waldmann
c8b58e0fd8 improve cache / index docs, esp. files cache docs, fixes #1825 2016-11-24 01:53:23 +01:00
enkore
abe5923866 Merge pull request #1862 from enkore/f/simple-recreate
The Defenestration of recreate's bloat
2016-11-20 19:59:45 +01:00
Marian Beermann
15cefe8dde
recreate/archiver tests: add check_cache tool - lints refcounts 2016-11-20 18:13:53 +01:00
Marian Beermann
93b03ea231 recreate: re-use existing checkpoint functionality 2016-11-20 18:13:51 +01:00
TW
df5482d7fc Merge pull request #1864 from ThomasWaldmann/fix-newest-mtime
fix determination of newest mtime, fixes #1860
2016-11-20 00:22:59 +01:00
Thomas Waldmann
cabcbc5887 fix determination of newest mtime, fixes #1860
bug:
if no files were added/modified, _newest_mtime stayed at its initial 0 value.
when saving the files cache, this killed all age 0 entries.

Now using None as initial value, so we can spot that circumstance.

The 2 ** 63 - 1 value is just so it is MAX_INT on a 64bit platform, for better performance.
It can be easily increased when y2262 is coming.
2016-11-20 00:08:33 +01:00
enkore
1fc368c0e9 Merge pull request #1863 from ThomasWaldmann/doc-updates
doc updates
2016-11-19 23:42:53 +01:00
Thomas Waldmann
5fe5b6b339 docs: different pattern matching for --exclude, fixes #1779 2016-11-19 22:26:07 +01:00
Thomas Waldmann
d8e806aac1 docs: datetime formatting examples for {now} placeholder, fixes #1822 2016-11-19 22:04:13 +01:00
Thomas Waldmann
3d174aef35 docs: clarify passphrase mode attic repo upgrade, fixes #1854 2016-11-19 21:52:11 +01:00
Thomas Waldmann
d7284a92f0 docs: clarify --umask usage, fixes #1859 2016-11-19 21:38:13 +01:00
enkore
dfc6f03649 Merge pull request #1858 from ThomasWaldmann/merge-1.0-maint
Merge 1.0 maint
2016-11-19 19:18:40 +01:00
Marian Beermann
44935aa8ea recreate: remove interruption blah, autocommit blah, resuming blah 2016-11-19 16:49:20 +01:00
Thomas Waldmann
afab1cc9b0 Merge branch '1.0-maint'
# Conflicts:
#	borg/platform.py
#	src/borg/archiver.py
#	src/borg/helpers.py
#	src/borg/platform/darwin.pyx
#	src/borg/platform/freebsd.pyx
#	src/borg/platform/linux.pyx
#	src/borg/testsuite/__init__.py
2016-11-17 23:56:34 +01:00
TW
ea6515d1aa Merge pull request #1856 from ThomasWaldmann/umount
borg umount, fixes #1855
2016-11-17 22:18:20 +01:00
enkore
c14b962bad Merge pull request #1419 from textshell/feature/rpc-named-arguments
RFC: Make rpc protocol more extensible
2016-11-17 22:12:24 +01:00
Thomas Waldmann
e17fe2b295 borg umount, fixes #1855
this refactors umount code we already used for the testsuite into the platform module's namespace.

also, it exposes that functionality via the cli api, so users can use it via "borg umount <mountpoint>",
which is more consistent than using borg to mount and fusermount -u (or umount) to un-mount.
2016-11-17 20:16:28 +01:00
Martin Hostettler
f37109848f remote: Remove unused type variable. 2016-11-17 20:03:33 +01:00
Martin Hostettler
1edff44b3d Repository,remote: Rename argument of get to 'id'. 2016-11-17 20:03:32 +01:00
Martin Hostettler
8955d8bb2a remote: Test that the legacy free rpc bootstrap works. 2016-11-17 20:03:32 +01:00
Martin Hostettler
bd3a4a2f92 Add testing for exception transport. 2016-11-17 20:03:32 +01:00
Martin Hostettler
e14406fdbf remote: Redo exception handling 2016-11-17 20:03:32 +01:00
Martin Hostettler
4854fcef2e remote: Move open to a normal api stub. 2016-11-17 19:56:30 +01:00