Skip to content

Commit f0d422d

Browse files
author
GitLab Bot
committed
Automatic merge of gitlab-org/omnibus-gitlab master
2 parents a7acd0f + 59b298f commit f0d422d

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

config/patches/exiftool/allowlist-types.patch

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
diff --git a/lib/Image/ExifTool.pm b/lib/Image/ExifTool.pm
2-
index e22e73c5..855c20db 100644
2+
index e9377841..c0d72b2c 100644
33
--- a/lib/Image/ExifTool.pm
44
+++ b/lib/Image/ExifTool.pm
5-
@@ -190,18 +190,10 @@ $defaultLang = 'en'; # default language
5+
@@ -190,19 +190,10 @@ $defaultLang = 'en'; # default language
66
# 2) Put types with weak file signatures at end of list to avoid false matches
77
# 3) PLIST must be in this list for the binary PLIST format, although it may
88
# cause a file to be checked twice for XML
99
-@fileTypes = qw(JPEG EXV CRW DR4 TIFF GIF MRW RAF X3F JP2 PNG MIE MIFF PS PDF
1010
- PSD XMP BMP WPG BPG PPM RIFF AIFF ASF MOV MPEG Real SWF PSP FLV
1111
- OGG FLAC APE MPC MKV MXF DV PMP IND PGF ICC ITC FLIR FLIF FPF
12-
- LFP HTML VRD RTF FITS XCF DSS QTIF FPX PICT ZIP GZIP PLIST RAR
13-
- 7Z BZ2 CZI TAR EXE EXR HDR CHM LNK WMF AVC DEX DPX RAW Font RSRC
14-
- M2TS MacOS PHP PCX DCX DWF DWG DXF WTV Torrent VCard LRI R3D AA
15-
- PDB PFM2 MRC LIF JXL MOI ISO ALIAS JSON MP3 DICOM PCD ICO TXT);
12+
- LFP HTML VRD RTF FITS XISF XCF DSS QTIF FPX PICT ZIP GZIP PLIST
13+
- RAR 7Z BZ2 CZI TAR EXE EXR HDR CHM LNK WMF AVC DEX DPX RAW Font
14+
- RSRC M2TS MacOS PHP PCX DCX DWF DWG DXF WTV Torrent VCard LRI
15+
- R3D AA PDB PFM2 MRC LIF JXL MOI ISO ALIAS JSON MP3 DICOM PCD ICO
16+
- TXT);
1617
+@fileTypes = qw(JPEG TIFF);
1718

1819
# file types that we can write (edit)
@@ -23,7 +24,7 @@ index e22e73c5..855c20db 100644
2324
my %writeTypes; # lookup for writable file types (hash filled if required)
2425

2526
# file extensions that we can't write for various base types
26-
@@ -222,344 +214,9 @@ my %createTypes = map { $_ => 1 } qw(XMP ICC MIE VRD DR4 EXIF EXV);
27+
@@ -223,345 +214,9 @@ my %createTypes = map { $_ => 1 } qw(XMP ICC MIE VRD DR4 EXIF EXV);
2728
# (if extension may be more than one type, the type is a list where
2829
# the writable type should come first if it exists)
2930
%fileTypeLookup = (
@@ -350,6 +351,7 @@ index e22e73c5..855c20db 100644
350351
- X3F => ['X3F', 'Sigma RAW format'],
351352
- XCF => ['XCF', 'GIMP native image format'],
352353
- XHTML=> ['HTML', 'Extensible HyperText Markup Language'],
354+
- XISF => ['XISF', 'Extensible Image Serialization Format'],
353355
- XLA => ['FPX', 'Microsoft Excel Add-in'],
354356
- XLAM => [['ZIP','FPX'], 'Office Open XML Spreadsheet Add-in Macro-enabled'],
355357
- XLS => ['FPX', 'Microsoft Excel Spreadsheet'],

config/software/exiftool.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616

1717
name 'exiftool'
18-
version = Gitlab::Version.new('exiftool', '12.67')
18+
version = Gitlab::Version.new('exiftool', '12.69')
1919
default_version version.print(false)
2020

2121
license 'GPL-1.0 or Artistic'

0 commit comments

Comments
 (0)