- Set
O_CLOEXEC
on opened files and be sure to close opened files (@MisterDA, @talex5, #83) - OCaml 5.00 support (add a new dependecy
camlp-stream
) (@Sudha247, #84) - Missing padding in LongLing 'L' case (@dra27, #82)
- Bump lower-bound on Cstruct to 6.0.0 (@MisterDA, @djs55, @dinosaure, #74)
- Update to Dune 2.9 and generate opam files (@MisterDA, @djs55, @dinosaure, #74)
- Support only OCaml versions 4.08 and higher. (@MisterDA, @dinosaure, #77)
- Don't print any logging to stdout or stderr (@MisterDA, @djs55, @dinosaure, #74)
- Remove
Tar.Make.Header
,Tar_cstruct.Header
,Tar_unix.Header
, andTar_lwt_unix.Header
to keep only Tar.Header and use it everywhere.Tar.Make.Header.get_next_header
becomesTar.Make.get_next_header
;Tar_cstruct.Header.get_next_header
becomesTar_cstruct.get_next_header
;Tar_lwt_unix.Header.get_next_header
becomesTar_lwt_unix.get_next_header
;Tar_lwt_unix.Header.of_file
becomesTar_lwt_unix.header_of_file
;Tar_unix.Header.get_next_header
becomesTar_unix.get_next_header
;Tar_unix.Header.of_file
becomesTar_unix.header_of_file
;- All the
Tar_*.Header.t
values have to be changed toTar.Header.t
. (@MisterDA, @dinosaure, #77)
- Fix parsing of pax Extended Header File Times with sub-second granularity. (@MisterDA, @dinosaure, #77)
- Add
Tar_unix.transform
andTar_lwt_unix.transform
to help transforming headers of a streamed tar archive between two file descriptors. (@MisterDA, @dinosaure, #77) - Remove
{build}
tag on thedune
dependency (@CraigFe, @hannesm, #72) - Adapt
ocaml-tar
to newer MirageOS interfaces (@hannesm, @dinosaure, #73) - Update gnu.org link (@reynir, @dinosaure, #79)
file_mode
defaults to0o400
(@reynir, @MisterDA, @dinosaure, #78)
- Do not depend on mirage-types, use mirage-kv instead (@hannesm)
- Support mirage-kv 2.0.0 (@hannesm)
- Do not suppress "unused value" warning (@emillon)
- Represent link indicator as a char. This transforms comments into actual code (@emillon)
- fix tar-unix build with modern cstruct.lwt (@avsm)
- port build to dune from builder (@avsm)
- upgrade opam metadata to 2.0 (@avsm)
- remove topkg in favour of dune-release (@avsm)
- use modern
ppx_cstruct
instead ofcstruct.ppx
(#65 @avsm @djs55) - test with OCaml 4.07 as well (@avsm)
- preliminary support for Cstruct.t-backed tar processing (#54 by @hcarty)
- fix build with OCaml 4.06.0 (and
-safe-string
)
- split into 3 packages:
tar
,tar-unix
,tar-mirage
- use jbuilder for building
- add support for reading @LongLink headers
- mark deprecated functions with @@ocaml.deprecated
- fix some warnings
- convert build system to topkg (#43, @hannesm)
- Build against MirageOS version 3, and drop support for earlier versions.
- Support only OCaml versions 4.03 and higher.
- fix a bug in the key=value interface when the archive isn't a multiple of 4KiB in size
- support for pax headers
- removed Tar.Archive.fold: please use HeaderReader instead
- handle EINTR and short writes properly (@ivg)
- avoid a warning catching
Failure
exceptions fromint_of_string
- now requires cstruct >= 1.9.0 and OCaml 4.02+
- test: only run tests if mirage-block-unix is present
- improve the opam file
- travis: simplify the configuration
- fix Tar_mirage when using block devices with < 4096 byte sectors
- add tar.mirage in ocamlfind, containing Tar_mirage which exposes a BLOCK device as a KV_RO
- add Tar.Make functor which allows easier integration with camlzip
- always initialise tar header unused bytes to 0 (previously would use uninitialised data)
- modernise Travis CI scripts to use OPAM 1.2 workflow.
- Re-add some old deprecated functions
- Add 'Tar.Archive.fold' for folding over entries in an archive
- Rename ocamlfind package from 'ocaml-tar' to simply 'tar'
- Initial release