Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-loofah for openSUSE:Factory checked in at 2022-05-16 18:08:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-loofah (Old) and /work/SRC/openSUSE:Factory/.rubygem-loofah.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-loofah" Mon May 16 18:08:33 2022 rev:23 rq:977448 version:2.18.0 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-loofah/rubygem-loofah.changes 2022-04-30 22:52:39.936234625 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-loofah.new.1538/rubygem-loofah.changes 2022-05-16 18:11:00.825397283 +0200 @@ -1,0 +2,15 @@ +Sun May 15 15:40:12 UTC 2022 - Manuel Schnitzer <mschnit...@suse.com> + +- updated to version 2.18.0 + + ### Features + + * Allow CSS property `aspect-ratio`. [[#236](https://github.com/flavorjones/loofah/issues/236)] (Thanks, [@louim](https://github.com/louim)!) + + ## 2.17.0 / 2022-04-28 + + ### Features + + * Allow ARIA attributes. [[#232](https://github.com/flavorjones/loofah/issues/232), [#233](https://github.com/flavorjones/loofah/issues/233)] (Thanks, [@nick-desteffen](https://github.com/nick-desteffen)!) + +------------------------------------------------------------------- Old: ---- loofah-2.16.0.gem New: ---- loofah-2.18.0.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-loofah.spec ++++++ --- /var/tmp/diff_new_pack.W1Hw49/_old 2022-05-16 18:11:01.309397668 +0200 +++ /var/tmp/diff_new_pack.W1Hw49/_new 2022-05-16 18:11:01.309397668 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-loofah -Version: 2.16.0 +Version: 2.18.0 Release: 0 %define mod_name loofah %define mod_full_name %{mod_name}-%{version} ++++++ loofah-2.16.0.gem -> loofah-2.18.0.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 2022-04-01 20:17:15.000000000 +0200 +++ new/CHANGELOG.md 2022-05-11 20:41:50.000000000 +0200 @@ -1,5 +1,19 @@ # Changelog +## 2.18.0 / 2022-05-11 + +### Features + +* Allow CSS property `aspect-ratio`. [[#236](https://github.com/flavorjones/loofah/issues/236)] (Thanks, [@louim](https://github.com/louim)!) + + +## 2.17.0 / 2022-04-28 + +### Features + +* Allow ARIA attributes. [[#232](https://github.com/flavorjones/loofah/issues/232), [#233](https://github.com/flavorjones/loofah/issues/233)] (Thanks, [@nick-desteffen](https://github.com/nick-desteffen)!) + + ## 2.16.0 / 2022-04-01 ### Features diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/README.md new/README.md --- old/README.md 2022-04-01 20:17:15.000000000 +0200 +++ new/README.md 2022-05-11 20:41:50.000000000 +0200 @@ -348,7 +348,7 @@ ## Thank You -The following people have generously donated via the [Pledgie](http://pledgie.com) badge on the [Loofah github page](https://github.com/flavorjones/loofah): +The following people have generously funded Loofah: * Bill Harding Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/loofah/html5/safelist.rb new/lib/loofah/html5/safelist.rb --- old/lib/loofah/html5/safelist.rb 2022-04-01 20:17:15.000000000 +0200 +++ new/lib/loofah/html5/safelist.rb 2022-05-11 20:41:50.000000000 +0200 @@ -512,6 +512,62 @@ "zoomAndPan", ]) + ARIA_ATTRIBUTES = Set.new([ + "aria-activedescendant", + "aria-atomic", + "aria-autocomplete", + "aria-braillelabel", + "aria-brailleroledescription", + "aria-busy", + "aria-checked", + "aria-colcount", + "aria-colindex", + "aria-colindextext", + "aria-colspan", + "aria-controls", + "aria-current", + "aria-describedby", + "aria-description", + "aria-details", + "aria-disabled", + "aria-dropeffect", + "aria-errormessage", + "aria-expanded", + "aria-flowto", + "aria-grabbed", + "aria-haspopup", + "aria-hidden", + "aria-invalid", + "aria-keyshortcuts", + "aria-label", + "aria-labelledby", + "aria-level", + "aria-live", + "aria-multiline", + "aria-multiselectable", + "aria-orientation", + "aria-owns", + "aria-placeholder", + "aria-posinset", + "aria-pressed", + "aria-readonly", + "aria-relevant", + "aria-required", + "aria-roledescription", + "aria-rowcount", + "aria-rowindex", + "aria-rowindextext", + "aria-rowspan", + "aria-selected", + "aria-setsize", + "aria-sort", + "aria-valuemax", + "aria-valuemin", + "aria-valuenow", + "aria-valuetext", + "role", + ]) + ATTR_VAL_IS_URI = Set.new([ "action", "cite", @@ -561,6 +617,7 @@ "align-content", "align-items", "align-self", + "aspect-ratio", "background-color", "border-bottom-color", "border-collapse", @@ -795,7 +852,7 @@ # subclasses may define their own versions of these constants ALLOWED_ELEMENTS = ACCEPTABLE_ELEMENTS + MATHML_ELEMENTS + SVG_ELEMENTS - ALLOWED_ATTRIBUTES = ACCEPTABLE_ATTRIBUTES + MATHML_ATTRIBUTES + SVG_ATTRIBUTES + ALLOWED_ATTRIBUTES = ACCEPTABLE_ATTRIBUTES + MATHML_ATTRIBUTES + SVG_ATTRIBUTES + ARIA_ATTRIBUTES ALLOWED_CSS_PROPERTIES = ACCEPTABLE_CSS_PROPERTIES ALLOWED_CSS_KEYWORDS = ACCEPTABLE_CSS_KEYWORDS ALLOWED_CSS_FUNCTIONS = ACCEPTABLE_CSS_FUNCTIONS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/loofah/version.rb new/lib/loofah/version.rb --- old/lib/loofah/version.rb 2022-04-01 20:17:15.000000000 +0200 +++ new/lib/loofah/version.rb 2022-05-11 20:41:50.000000000 +0200 @@ -1,5 +1,5 @@ # frozen_string_literal: true module Loofah # The version of Loofah you are using - VERSION = "2.16.0" + VERSION = "2.18.0" end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2022-04-01 20:17:15.000000000 +0200 +++ new/metadata 2022-05-11 20:41:50.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: loofah version: !ruby/object:Gem::Version - version: 2.16.0 + version: 2.18.0 platform: ruby authors: - Mike Dalessio @@ -9,7 +9,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2022-04-01 00:00:00.000000000 Z +date: 2022-05-11 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: crass