Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-xss-sanitize for
openSUSE:Factory checked in at 2023-01-18 13:11:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-xss-sanitize (Old)
and /work/SRC/openSUSE:Factory/.ghc-xss-sanitize.new.32243 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-xss-sanitize"
Wed Jan 18 13:11:02 2023 rev:6 rq:1059130 version:0.3.7.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-xss-sanitize/ghc-xss-sanitize.changes
2022-08-01 21:29:11.605448950 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-xss-sanitize.new.32243/ghc-xss-sanitize.changes
2023-01-18 13:11:26.464995346 +0100
@@ -1,0 +2,8 @@
+Tue Nov 29 05:34:18 UTC 2022 - Peter Simons <[email protected]>
+
+- Update xss-sanitize to version 0.3.7.1.
+ # 0.3.7.1
+
+ add max height and max width as valid style attributes
+
+-------------------------------------------------------------------
Old:
----
xss-sanitize-0.3.7.tar.gz
xss-sanitize.cabal
New:
----
xss-sanitize-0.3.7.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-xss-sanitize.spec ++++++
--- /var/tmp/diff_new_pack.GWfeqy/_old 2023-01-18 13:11:26.932997160 +0100
+++ /var/tmp/diff_new_pack.GWfeqy/_new 2023-01-18 13:11:26.940997191 +0100
@@ -19,13 +19,12 @@
%global pkg_name xss-sanitize
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.3.7
+Version: 0.3.7.1
Release: 0
Summary: Sanitize untrusted HTML to prevent XSS attacks
License: BSD-2-Clause
URL: https://hackage.haskell.org/package/%{pkg_name}
Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-attoparsec-devel
BuildRequires: ghc-containers-devel
@@ -58,7 +57,6 @@
%prep
%autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
++++++ xss-sanitize-0.3.7.tar.gz -> xss-sanitize-0.3.7.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/xss-sanitize-0.3.7/ChangeLog.md
new/xss-sanitize-0.3.7.1/ChangeLog.md
--- old/xss-sanitize-0.3.7/ChangeLog.md 2021-09-18 18:42:36.000000000 +0200
+++ new/xss-sanitize-0.3.7.1/ChangeLog.md 2022-11-29 06:33:44.000000000
+0100
@@ -1,3 +1,7 @@
+# 0.3.7.1
+
+add max height and max width as valid style attributes
+
# 0.3.7
clear the contents of style and script tags instead of escaping them
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/xss-sanitize-0.3.7/src/Text/HTML/SanitizeXSS/Css.hs
new/xss-sanitize-0.3.7.1/src/Text/HTML/SanitizeXSS/Css.hs
--- old/xss-sanitize-0.3.7/src/Text/HTML/SanitizeXSS/Css.hs 2021-09-18
18:42:36.000000000 +0200
+++ new/xss-sanitize-0.3.7.1/src/Text/HTML/SanitizeXSS/Css.hs 2022-11-29
06:33:44.000000000 +0100
@@ -114,9 +114,9 @@
"border-left-color", "border-right-color", "border-top-color", "clear",
"color", "cursor", "direction", "display", "elevation", "float", "font",
"font-family", "font-size", "font-style", "font-variant", "font-weight",
- "height", "letter-spacing", "line-height", "overflow", "pause",
- "pause-after", "pause-before", "pitch", "pitch-range", "richness",
- "speak", "speak-header", "speak-numeral", "speak-punctuation",
+ "height", "letter-spacing", "line-height", "max-height", "max-width",
+ "overflow", "pause", "pause-after", "pause-before", "pitch",
"pitch-range",
+ "richness", "speak", "speak-header", "speak-numeral",
"speak-punctuation",
"speech-rate", "stress", "text-align", "text-decoration", "text-indent",
"unicode-bidi", "vertical-align", "voice-family", "volume",
"white-space", "width"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/xss-sanitize-0.3.7/xss-sanitize.cabal
new/xss-sanitize-0.3.7.1/xss-sanitize.cabal
--- old/xss-sanitize-0.3.7/xss-sanitize.cabal 2021-09-18 18:45:16.000000000
+0200
+++ new/xss-sanitize-0.3.7.1/xss-sanitize.cabal 2022-11-29 06:33:47.000000000
+0100
@@ -1,11 +1,11 @@
cabal-version: 1.12
--- This file has been generated from package.yaml by hpack version 0.34.4.
+-- This file has been generated from package.yaml by hpack version 0.35.0.
--
-- see: https://github.com/sol/hpack
name: xss-sanitize
-version: 0.3.7
+version: 0.3.7.1
synopsis: sanitize untrusted HTML to prevent XSS attacks
description: run untrusted HTML through Text.HTML.SanitizeXSS.sanitizeXSS
to prevent XSS attacks. see README.md
<http://github.com/yesodweb/haskell-xss-sanitize> for more details
category: Web
@@ -40,7 +40,7 @@
, css-text >=0.1.1 && <0.2
, network-uri >=2.6
, tagsoup >=0.12.2 && <1
- , text >=0.11 && <2
+ , text >=0.11 && <2.1
, utf8-string >=0.3 && <1.1
default-language: Haskell2010
@@ -64,6 +64,6 @@
, hspec >=1.3
, network-uri >=2.6
, tagsoup >=0.12.2 && <1
- , text >=0.11 && <2
+ , text >=0.11 && <2.1
, utf8-string >=0.3 && <1.1
default-language: Haskell2010