Skip to content

Releases: libexif/libexif

libexif 0.6.24 release

25 Nov 10:36
Compare
Choose a tag to compare

libexif-0.6.24 (2021-11-25):

  • Translation updates: sr, vi, pl, uk, french
  • fixed regression in exif_data_load_data which could not load EXIF in JPEG data anymore
  • Decode lots of Canon tag names
  • removed empty strings from translation (empty string would translate to the PO info header)
  • various warning removals and code improvements
  • added sample "persistent" afl fuzzer (100x faster than normal afl fuzzer)

(i tried adding xz and gz tarballs, but github did not like it.)

libexif 0.6.23 release

12 Sep 13:33
Compare
Choose a tag to compare

libexif-0.6.23 (2021-09-12):

  • Translation updates: es, pl, uk, fr
  • EXIF_TAG_SENSITIVITY_TYPE decoder added, added some more Exif 2.3 tags:
    • EXIF_TAG_STANDARD_OUTPUT_SENSITIVITY
    • EXIF_TAG_RECOMMENDED_EXPOSURE_INDEX
    • EXIF_TAG_ISO_SPEED
    • EXIF_TAG_ISO_SPEEDLatitudeYYY
    • EXIF_TAG_ISO_SPEEDLatitudeZZZ
    • EXIF_TAG_OFFSET_TIME
    • EXIF_TAG_OFFSET_TIME_ORIGINAL
    • EXIF_TAG_OFFSET_TIME_DIGITIZED
    • EXIF_TAG_IMAGE_DEPTH
  • be more relaxed to out of order JPG / EXIF dataheaders in files generated by some tools
  • default GPS IFD table added
  • Decode more Nikon Makernote tag names
  • Added Apple iOS Makernote
  • Security fixes:
    • CVE-2020-0198: unsigned integer overflow in exif_data_load_data_content
    • CVE-2020-0452: compiler optimization could remove an a
      bufferoverflow check, making a buffer overflow possible with some
      EXIF tags
    • some more denial of service (compute time or stack exhaustion) counter-measures
      added that avoid minutes of decoding time with malformed files found
      by OSS-Fuzz

0.6.22 release

18 May 16:01
Compare
Choose a tag to compare

This is the 0.6.22 release of libexif.

It largely contains stability, security and bugfixes.

Some EXIF 2.3 tags have been added.

It is ABI compatible to 0.6.21 release.

  • New translations: ms
  • Updated translations for most languages
  • Fixed C89 compatibility
  • Fixed warnings on recent versions of autoconf
  • Some useful EXIF 2.3 tag added:
    • EXIF_TAG_GAMMA
    • EXIF_TAG_COMPOSITE_IMAGE
    • EXIF_TAG_SOURCE_IMAGE_NUMBER_OF_COMPOSITE_IMAGE
    • EXIF_TAG_SOURCE_EXPOSURE_TIMES_OF_COMPOSITE_IMAGE
    • EXIF_TAG_GPS_H_POSITIONING_ERROR
    • EXIF_TAG_CAMERA_OWNER_NAME
    • EXIF_TAG_BODY_SERIAL_NUMBER
    • EXIF_TAG_LENS_SPECIFICATION
    • EXIF_TAG_LENS_MAKE
    • EXIF_TAG_LENS_MODEL
    • EXIF_TAG_LENS_SERIAL_NUMBER
  • Lots of fixes exposed by fuzzers like AFL, ClusterFuzz, OSSFuzz and others.