diff options
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | go.sum | 4 | ||||
| -rw-r--r-- | vendor/golang.org/x/image/tiff/lzw/reader.go | 4 | ||||
| -rw-r--r-- | vendor/golang.org/x/image/tiff/writer.go | 2 | ||||
| -rw-r--r-- | vendor/modules.txt | 2 | 
5 files changed, 7 insertions, 7 deletions
@@ -55,7 +55,7 @@ require (  	go.uber.org/automaxprocs v1.5.1  	golang.org/x/crypto v0.7.0  	golang.org/x/exp v0.0.0-20220613132600-b0d781184e0d -	golang.org/x/image v0.5.0 +	golang.org/x/image v0.6.0  	golang.org/x/net v0.8.0  	golang.org/x/oauth2 v0.6.0  	golang.org/x/text v0.8.0 @@ -684,8 +684,8 @@ golang.org/x/exp v0.0.0-20220613132600-b0d781184e0d/go.mod h1:Kr81I6Kryrl9sr8s2F  golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=  golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=  golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.5.0 h1:5JMiNunQeQw++mMOz48/ISeNu3Iweh/JaZU8ZLqHRrI= -golang.org/x/image v0.5.0/go.mod h1:FVC7BI/5Ym8R25iw5OLsgshdUBbT1h5jZTpA+mvAdZ4= +golang.org/x/image v0.6.0 h1:bR8b5okrPI3g/gyZakLZHeWxAR8Dn5CyxXv1hLH5g/4= +golang.org/x/image v0.6.0/go.mod h1:MXLdDR43H7cDJq5GEGXEVeeNhPgi+YYEQ2pC1byI1x0=  golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=  golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=  golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= diff --git a/vendor/golang.org/x/image/tiff/lzw/reader.go b/vendor/golang.org/x/image/tiff/lzw/reader.go index 1ccf5858a..0aae475ab 100644 --- a/vendor/golang.org/x/image/tiff/lzw/reader.go +++ b/vendor/golang.org/x/image/tiff/lzw/reader.go @@ -18,11 +18,11 @@ The tif_lzw.c file in the libtiff C library has this comment:  ----  The 5.0 spec describes a different algorithm than Aldus -implements.  Specifically, Aldus does code length transitions +implements. Specifically, Aldus does code length transitions  one code earlier than should be done (for real LZW).  Earlier versions of this library implemented the correct  LZW algorithm, but emitted codes in a bit order opposite -to the TIFF spec.  Thus, to maintain compatibility w/ Aldus +to the TIFF spec. Thus, to maintain compatibility w/ Aldus  we interpret MSB-LSB ordered codes to be images written w/  old versions of this library, but otherwise adhere to the  Aldus "off by one" algorithm. diff --git a/vendor/golang.org/x/image/tiff/writer.go b/vendor/golang.org/x/image/tiff/writer.go index 4272c5aa0..5d461841c 100644 --- a/vendor/golang.org/x/image/tiff/writer.go +++ b/vendor/golang.org/x/image/tiff/writer.go @@ -280,7 +280,7 @@ type Options struct {  	Compression CompressionType  	// Predictor determines whether a differencing predictor is used;  	// if true, instead of each pixel's color, the color difference to the -	// preceding one is saved.  This improves the compression for certain +	// preceding one is saved. This improves the compression for certain  	// types of images and compressors. For example, it works well for  	// photos with Deflate compression.  	Predictor bool diff --git a/vendor/modules.txt b/vendor/modules.txt index 7aa4b6a46..792602dd5 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -762,7 +762,7 @@ golang.org/x/crypto/ssh/internal/bcrypt_pbkdf  ## explicit; go 1.18  golang.org/x/exp/constraints  golang.org/x/exp/slices -# golang.org/x/image v0.5.0 +# golang.org/x/image v0.6.0  ## explicit; go 1.12  golang.org/x/image/bmp  golang.org/x/image/ccitt  | 
