]> git.proxmox.com Git - pxar.git/blame - debian/changelog
d/changelog: fix typo
[pxar.git] / debian / changelog
CommitLineData
29cbeed3
WB
1rust-pxar (0.10.2-1) unstable; urgency=medium
2
de472e82 3 * don't hold a temporary buffer mutex across await point
29cbeed3
WB
4
5 * fix EntryKind for fifo and sockets in the random accessor
6
7 * derive PartialEq on various archive metadata structs
8
9 * clippy fixups
10
11 -- Proxmox Support Team <support@proxmox.com> Thu, 27 Oct 2022 15:26:54 +0200
12
b203d38b
WB
13rust-pxar (0.10.1-1) unstable; urgency=medium
14
15 * add 'contents' and 'content_size' to aio decoder interface
16
17 * flush the output in Encoder::finish
18
19 -- Proxmox Support Team <support@proxmox.com> Wed, 31 Mar 2021 13:54:38 +0200
20
64f8857c
WB
21rust-pxar (0.10.0-1) unstable; urgency=medium
22
23 * StatxTimestamp is now explicitly padded with zeroes to avoid situations
24 where uninitialized bytes could end up being written out along with it
25
26 -- Proxmox Support Team <support@proxmox.com> Fri, 12 Mar 2021 10:37:18 +0100
27
82608859
WB
28rust-pxar (0.9.0-1) unstable; urgency=medium
29
30 * Nesting now doesn't use trait objects but non-stacking borrows, therefore
31 they get the type parameter passed along, which is a major API change.
32
33 -- Proxmox Support Team <support@proxmox.com> Wed, 17 Feb 2021 09:53:21 +0100
34
f4b10369
WB
35rust-pxar (0.8.0-1) unstable; urgency=medium
36
37 * fix method naming: `from_futures` -> `from_tokio`
38
39 * ensure `Encoder` is `Send`
40
41 -- Proxmox Support Team <support@proxmox.com> Tue, 02 Feb 2021 10:49:50 +0100
42
5db2e175
FG
43rust-pxar (0.7.0-1) unstable; urgency=medium
44
45 * update to tokio 1.0
46
47 * remove futures-io feature
48
49 -- Proxmox Support Team <support@proxmox.com> Thu, 14 Jan 2021 15:21:54 +0100
50
379043a0
WB
51rust-pxar (0.6.2-1) unstable; urgency=medium
52
53 * fix error trying decode "special files" (fifos, sockets) using the random
54 access decoder
55
56 -- Proxmox Support Team <support@proxmox.com> Tue, 15 Dec 2020 13:08:34 +0100
57
4f2d271a
DM
58rust-pxar (0.6.1-1) unstable; urgency=medium
59
60 * Decoder<StandardReader<T>>: allow access to input
61
62 -- Proxmox Support Team <support@proxmox.com> Fri, 18 Sep 2020 11:34:55 +0200
63
aef2fafe
WB
64rust-pxar (0.6.0-1) pve; urgency=medium
65
66 * let the encoder's finish() method return the inner writer
67
68 * add `into_writer()` encoder method to "cancel" a directory and get the
69 writer without finishing up the goodbye table
70
71 -- Proxmox Support Team <support@proxmox.com> Thu, 27 Aug 2020 12:11:39 +0200
72
e18ccaa0
WB
73rust-pxar (0.5.0-2) pve; urgency=medium
74
75 * packaging fixup
76
77 -- Proxmox Support Team <support@proxmox.com> Tue, 25 Aug 2020 12:45:27 +0200
78
93a98da4
WB
79rust-pxar (0.5.0-1) pve; urgency=medium
80
81 * finally completely rename format::Entry to format::Stat, also Entry_V1 to
82 Stat_V1
83
84 * add Metadata::builder_from_stat
85
86 * add MetadataBuilder::fill_from_stat
87
88 -- Proxmox Support Team <support@proxmox.com> Tue, 25 Aug 2020 12:25:32 +0200
89
37cb1826
WB
90rust-pxar (0.4.0-1) pve; urgency=medium
91
92 * remove poll_close and poll_position from SeqWrite trait
93
94 -- Proxmox Support Team <support@proxmox.com> Mon, 24 Aug 2020 11:54:19 +0200
95
10086ac5
WB
96rust-pxar (0.3.0-1) pve; urgency=medium
97
98 * introduce 96 bit time stamp type with support for negative timestamps
99
100 * introduce PXAR_ENTRY version 2 header type
101
102 -- Proxmox Support Team <support@proxmox.com> Tue, 28 Jul 2020 11:56:47 +0200
103
cbf1b17b
WB
104rust-pxar (0.2.1-1) pve; urgency=medium
105
106 * sync encoder: fix metadata lifetime leaking into encoder
107
108 * add builder for metadata
109
110 * add initial data testsuite
111
112 * minor rustc version compatibility improvement
113
114 * implement ReadAt for byte slices
115
116 * fix maximum allowed size check for acl group objects (found via a clippy lint)
117
118 * fix various clippy lints
119
120 -- Proxmox Support Team <support@proxmox.com> Thu, 16 Jul 2020 11:41:49 +0200
121
284b53eb
WB
122rust-pxar (0.2.0-1) pve; urgency=medium
123
124 * Archive format compatibility breakage:
125
126 * All constants used in the pxar format have now been recomputed from
127 strings of the form `__PROXMOX_FORMAT_<header-type>__`, the hash keys used
128 for the sip hasher come from the sha1sum of `PROXMOX ARCHIVE FORMAT`.
129
130 * This is a clear cut from the catar format now, since we're not really
131 using just a subset anymore, but also slightly different (due to hardlink
132 support and thereby also dropped composability of the format).
133
134 -- Proxmox Support Team <support@proxmox.com> Thu, 25 Jun 2020 09:39:15 +0200
135
8029a6e7
WB
136rust-pxar (0.1.9-1) pve; urgency=medium
137
138 * more useful/correct ReadAt trait definition
139
140 -- Proxmox Support Team <support@proxmox.com> Wed, 24 Jun 2020 11:55:50 +0200
141
515cdc4b
WB
142rust-pxar (0.1.8-1) pve; urgency=medium
143
144 * fix a bug with encoding device files
145
146 -- Proxmox Support Team <support@proxmox.com> Mon, 22 Jun 2020 11:05:52 +0200
147
05884608
WB
148rust-pxar (0.1.7-1) pve; urgency=medium
149
150 * add some safety checks
151
152 * fix search for Entry header in hardlinks (don't mess with internal decoder
153 state for this)
154
155 -- Proxmox Support Team <support@proxmox.com> Mon, 15 Jun 2020 10:35:27 +0200
156
3c8ca95c
WB
157rust-pxar (0.1.6-1) pve; urgency=medium
158
159 * refuse illegal file names in encoder/decoder/accessor
160
161 * use a shared 1M file copy buffer
162
163 -- Proxmox Support Team <support@proxmox.com> Mon, 08 Jun 2020 13:55:14 +0200
164
37f52caf
WB
165rust-pxar (0.1.5-1) pve; urgency=medium
166
167 * fixup hardlink encoding
168
169 -- Proxmox Support Team <support@proxmox.com> Mon, 08 Jun 2020 10:08:06 +0200
170
72f36709
WB
171rust-pxar (0.1.4-1) pve; urgency=medium
172
173 * remove LinkOffset from some file types
174 * change API for hardlink following
175 * properly interpret hardlink offsets relative in the decoder
176
177 -- Proxmox Support Team <support@proxmox.com> Fri, 05 Jun 2020 16:23:21 +0200
178
5d283b7e
WB
179rust-pxar (0.1.3-1) pve; urgency=medium
180
181 * introduce LinkOffset which is used to create hardlinks
182
183 -- Proxmox Support Team <support@proxmox.com> Fri, 05 Jun 2020 14:00:51 +0200
184
500440c8
WB
185rust-pxar (0.1.2-1) pve; urgency=medium
186
187 * update hardlink format
188
189 -- Proxmox Support Team <support@proxmox.com> Fri, 05 Jun 2020 12:20:44 +0200
190
96da0e0d
WB
191rust-pxar (0.1.1-1) pve; urgency=medium
192
193 * change acl Permissions to be just a u64 instead of a bitfield
194
195 -- Proxmox Support Team <support@proxmox.com> Thu, 04 Jun 2020 11:26:19 +0200
196
707bad0d
WB
197rust-pxar (0.1.0-1) pve; urgency=medium
198
199 * initial release
200
201 -- Proxmox Support Team <support@proxmox.com> Wed, 03 Jun 2020 12:34:49 +0200