-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCHANGELOG
92 lines (55 loc) · 1.69 KB
/
CHANGELOG
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
2016-03-22 0.0.11:
--------------------
Features:
* ZipFile correctly handles symlinks with permissions different than 0x755
(#35)
2015-09-28 0.0.11:
--------------------
Features:
* ZipFile gets an add_tree method to easily create an archive from recurively
walking into a directory.
2015-08-26 0.0.10:
-------------------
Bug fixes:
* fix uniqueness corner case on windows (#28).
2015-08-02 0.0.9:
-------------------
Bug fixes:
* Fix extract* methods so that overwriting an existing file does not fail
when the overwritten file is a symlink to a RO file.
2015-07-08 0.0.8:
-------------------
Bug fixes:
* Fix permissions handling when symlinks are extracted before their target.
2015-07-02 0.0.7:
-------------------
New feature:
* Add support for writing files with the stored permissions when using
extract/extractall.
2015-05-19 0.0.6:
-------------------
New feature:
* Add the LeanZipFile class to allow querying large zipfiles without using
too much memory.
Bug fixes:
* Fix copyright and change license to PSF license.
2015-05-14 0.0.5:
-------------------
Bug fixes:
* fix the code to run on python [2.7.0, 2.7.3] (#8)
2015-05-14 0.0.4:
-------------------
* fix arcname when writing symlink
2015-05-14 0.0.3:
-------------------
* remove six dependency
2015-05-14 0.0.2:
-------------------
* support for writing symlinks in the write method
* fix writestr when argument is a ZipInfo instance
2015-05-14 0.0.1:
-------------------
First release. Main highlights:
* support for context manager in 2.6
* support for extracting symlinks
* raise an error by default when duplicates members are detected or written