-
Notifications
You must be signed in to change notification settings - Fork 6
/
CHANGES.txt
120 lines (75 loc) · 2.2 KB
/
CHANGES.txt
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
Changelog
=========
3.0 - (unreleased)
------------------
- Add ``file_exists`` and ``file_path`` functions which know about files
created and removed during the transaction.
[fschulze]
- Throw OSError if src of rename doesn't exist.
[fschulze]
- Dropped backward compatibility stuff for older API.
[fschulze]
- Removed pre Python 2.6 support.
[fschulze]
- Removed testing of Python 3.2, added Python 3.4, 3.5 and 3.6.
[fschulze]
2.2 - (2015-05-01)
------------------
- Add a new ``repoze.filesafe.rename_file`` function to move files.
- Add additional ``recursive`` parameter to allow ``repoze.filesafe.rename_file``
to use ``os.renames``, i.e. recursively create/remove intermediate directories.
2.1 - (2014-05-06)
------------------
- Fix OSError exceptions raised when deleting a non-existing file to have the
right errno value.
2.0 - (2013-12-20)
------------------
- Update dummy datamanger to create BytesIO mock files if the file is
opened in binary mode.
- Update internal function naming to PEP8.
2.0b2 (2013-03-20)
------------------
- Add support for Python 3.2 / 3.3.
- Note explicit support for Python 2.6 / 2.7.
- Drop support for Python < 2.6.
2.0b1 (2011-08-31)
------------------
- Remove the need for a middleware. Instead the current transaction is
automatically joined if needed.
[wichert]
- PEP8.
[wichert]
- Restructure package to faciliate automated testing.
[wichert]
1.1 (2011-01-13)
----------------
- Added deleteFile function/method.
[fschulze]
1.0 (2010-06-29)
----------------
- Made DummyDataManager transaction aware.
[fschulze]
1.0a6 (2009-12-09)
------------------
- Fix packaging error.
[wichert]
1.0a5 (2009-12-09)
------------------
- Add a MockFile class to help with handling of files when using the
DummyDataManager.
[fschulze]
1.0a4 (2009-11-12)
------------------
- Add a new openFile method to facilitate opening of files that have not been
commited yet.
[wichert]
1.0a3 (2009-11-10)
------------------
- Add method to facilitate unit testing of code using repoze.filesafe.
[wichert]
1.0a2 (2009-09-25)
------------------
- Add support for Python 2.4 and 2.5. [wichert]
1.0a1 (2009-09-25)
------------------
- Initial Release