File: RELEASE_NOTES.md

package info (click to toggle)
python-webdavclient 3.14.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 644 kB
  • sloc: python: 2,241; xml: 535; makefile: 5; sh: 3
file content (127 lines) | stat: -rw-r--r-- 5,138 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
Release Notes
-------------
**Version 3.14.6**

* Configuring of content downloading chunk size by https://github.com/nuwang
* Ability to use an anonymous login by https://github.com/f100024
* is_dir performance optimization by https://github.com/liuliqiu
* Add support for progress callback in up/download by https://github.com/jorgeajimenezl
* Add content type parsing by https://github.com/foucdeg
* Excluding tests directory from a setup package by https://github.com/a-guzhin
* Doc improvements by https://github.com/mephinet
* Enable testing of Python 3.9 support

**Version 3.14.5**

* An ability to configure a requests timeout
* An ability to get a `list` method result with detailed information by https://github.com/huangganggui

**Version 3.14.4**

* Fixed the issue with gzipped content on `download_from`

**Version 3.14.3**

* Added the etag property in the get info method by https://github.com/huangganggui

**Version 3.14.2**

* Use a content type for determining is the resource a directory or not in the `list` method
* Fixed the issue with duplicated path segments in `download_sync` and `pull` methods by https://github.com/jotbe
* An ability to use certificates for authenticating by https://github.com/ajordanBBN
* Removing of tailing slashes in `web_hostname`
* An ability to use custom `Auth` methods in the `Session` by https://github.com/matrixx567

**Version 3.14.1**

* Fixed issue during coping and moving files with cyrillic names
* Support OAuth2 bearer tokens by https://github.com/danielloader

**Version 3.14**

* Override methods for customizing communication with WebDAV servers
* Support multiple clients simultaneously
* Sync modified files during pull and push by https://github.com/mont5piques

**Version 0.14**

* Fixed an issue with checking resources on Yandex WebDAV server

**Version 0.13 – 27.11.2019**

* Main version of Python is updated up to 3.7
* Switch to use python sessions rather than requests by https://github.com/delrey1
* Stripping suburl from paths in extract_response_for_path by https://github.com/Skeen
* Added Docker Web DAV for CI
* Changed HEAD to GET method for 'check' request due of not all servers support HEAD by request of https://github.com/danieleTrimarchi
* Removed a costy is_dir-check on obvious directories to speed up a pull by https://github.com/jolly-jump
* Added an option to disable check in case WebDAV server is not support it by request of https://github.com/dzhuang

**Version 0.12 - 21.06.2019**

* Added depth argument in copy method in client.py by https://github.com/JesperHakansson
* Added verify attribute to execute_request method by https://github.com/JesperHakansson

**Version 0.11 – 30.03.2019**

* Fixed MemoryError if a large file is downloaded with a 32 bit python by https://github.com/bboehmke
* Fixed argcomplete is required to run wdc but was not included in the requirements by https://github.com/evanhorn
* Fixed wdc tries to import webdav instead of webdav3 by https://github.com/evanhorn

**Version 0.10 – 31.01.2019**

* AssertEquals deprecation warnings by https://github.com/StefanZi
* Problems with byte/UTF strings and xml library by https://github.com/StefanZi
* Add some Eclipse specific files to gitignore by https://github.com/StefanZi
* Remove filesize limit by https://github.com/StefanZi

**Version 0.9 – 10.05.2018**

* Client.mkdir now accepts 201 HTTP-code by https://github.com/a1ezzz
* Tests are updated
* Added Travis-CI

**Version 0.8 – 07.05.2018**

* Fixed issue in extract_response_for_path when a link in "href" attribute is an absolute link by https://github.com/a1ezzz

**Version 0.7 – 16.03.2018**

* Fixed issue with wrong argument for resource creation by https://github.com/janLo

**Version 0.6 – 21.02.2018**

* Fixed issue with in extracting response for path by https://github.com/mightydok

**Version 0.5 – 03.12.2017**

* Added method for setting of WebDAV resource property values in batch

**Version 0.4 - 27.11.2017**

* Refactoring of WebDAV client and making it works in following methods:
  - Checking is remote resource directory
  - Fixed problem when connection lost during request executing and nothing was happened, now it raises an exception

**Version 0.3 - 18.10.2017**

* Refactoring of WebDAV client and making it works in following methods:
  - Getting of WebDAV resource property value
  - Setting of WebDAV resource property value
  - Coping of resource on WebDAV server
  - Moving of resource on WebDAV server
  - Deleting of resource on WebDAV server
  - Getting of information about WebDAV resource

**Version 0.2 - 11.09.2017**

* Refactoring of WebDAV client and making it works in following methods:
  - Constructor with connecting to WebDAV
  - Getting a list of resources on WebDAV
  - Getting an information about free space on WebDAV
  - Checking of existence of resource on WebDAV
  - Making a directory on WebDAV
  - Downloading of files and directories from WebDAV
  - Asynchronously downloading of files and directories from WebDAV
  - Uploading of files and directories to WebDAV
  - Asynchronously uploading of files and directories to WebDAV