summaryrefslogtreecommitdiff
path: root/palemoon
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-05-08 10:59:45 -0400
committerB Stack <bgstack15@gmail.com>2020-05-08 10:59:45 -0400
commitc7edc56eee202b3c740f0ec805d9635762481bff (patch)
tree44214611bd316738e592abacc01dfbfd8f648c79 /palemoon
parentMerge branch 'pm-experimental' into 'palemoon-bump' (diff)
downloadstackrpms-c7edc56eee202b3c740f0ec805d9635762481bff.tar.gz
stackrpms-c7edc56eee202b3c740f0ec805d9635762481bff.tar.bz2
stackrpms-c7edc56eee202b3c740f0ec805d9635762481bff.zip
pm 28.9.3
Diffstat (limited to 'palemoon')
-rw-r--r--palemoon/debian/changelog12
-rw-r--r--palemoon/debian/palemoon_devuan.dsc2
-rw-r--r--palemoon/palemoon.spec14
3 files changed, 21 insertions, 7 deletions
diff --git a/palemoon/debian/changelog b/palemoon/debian/changelog
index 57de2fb..5aed8ef 100644
--- a/palemoon/debian/changelog
+++ b/palemoon/debian/changelog
@@ -1,3 +1,15 @@
+palemoon (28.9.3-1+devuan) obs; urgency=medium
+
+ * This is a security update.
+ - Fixed a potential vulnerability in the zip file reader. DiD
+ - Fixed a potential vulnerability in the JavaScript JIT compiler related to aliases. DiD
+ - Ported several upstream devtools fixes (addresses CVE-2020-12392 and CVE-2020-12393).
+ - Improved memory safety of some WebAudio calls.
+ - Improved memory safety in the XUL window destructor. DiD
+ - Unified XUL Platform Mozilla Security Patch Summary: 3 fixed, 3 Defense-in-depth, 16 not applicable.
+
+ -- Ben Stack <bgstack15@gmail.com> Fri, 08 May 2020 10:39:55 -0400
+
palemoon (28.9.2-2+devuan) obs; urgency=medium
* testing OBS build optimization and removing animation from about dialog
diff --git a/palemoon/debian/palemoon_devuan.dsc b/palemoon/debian/palemoon_devuan.dsc
index 83380a3..b59295b 100644
--- a/palemoon/debian/palemoon_devuan.dsc
+++ b/palemoon/debian/palemoon_devuan.dsc
@@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: palemoon
Binary: palemoon
Architecture: any
-Version: 28.9.2-2+devuan
+Version: 28.9.3-1+devuan
Maintainer: B Stack <bgstack15@gmail.com>
Homepage: http://www.palemoon.org/
Standards-Version: 4.1.4
diff --git a/palemoon/palemoon.spec b/palemoon/palemoon.spec
index afaa594..347abfd 100644
--- a/palemoon/palemoon.spec
+++ b/palemoon/palemoon.spec
@@ -3,9 +3,9 @@
%global appname palemoon
%global prettyname Pale Moon Web Browser
%global stackrpms_custom 1
-# derive from inside the full source tree:
+# derive from inside the full source tree or from notes at https://github.com/MoonchildProductions/Pale-Moon/releases
# git submodule | awk -v "name=platform" '$2 == name {gsub("-","",$1); print $1}'
-%global submodule_platform_tag RELBASE_20200427
+%global submodule_platform_tag RELBASE_20200506
# additional repos to get python27 and devtoolset-7
# for el6 and el7: Software Collection;, for x86_64 only
@@ -37,14 +37,13 @@
%if 0%{stackrpms_custom}
Name: palemoon-stackrpms
-Summary: Pale Moon web browser
%global prettyname Pale Moon
%else
Name: palemoon
-Summary: Pale Moon web browser
%endif
-Version: 28.9.2
-Release: 2
+Summary: Pale Moon web browser
+Version: 28.9.3
+Release: 1
Group: Networking/Web
License: MPLv2.0
@@ -285,6 +284,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Fri May 08 2020 B Stack <bgstack15@gmail.com> - 28.9.3-1
+- update version
+
* Tue May 05 2020 B Stack <bgstack15@gmail.com> - 28.9.2-2
- Add customization to about dialog
bgstack15