summaryrefslogtreecommitdiff
path: root/newmoon
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-08-03 14:09:18 -0400
committerB. Stack <bgstack15@gmail.com>2022-08-03 14:09:18 -0400
commita5ffa4a9e1eb9d1a201aac18874087f98be89923 (patch)
tree9f5545ee4680150ccfb064f3454d9d0dd679cc4e /newmoon
parentMerge branch 'xdgmenumaker-bump' into 'master' (diff)
downloadstackrpms-a5ffa4a9e1eb9d1a201aac18874087f98be89923.tar.gz
stackrpms-a5ffa4a9e1eb9d1a201aac18874087f98be89923.tar.bz2
stackrpms-a5ffa4a9e1eb9d1a201aac18874087f98be89923.zip
nm 31.2.0 rc1
Diffstat (limited to 'newmoon')
-rw-r--r--newmoon/_service2
-rw-r--r--newmoon/debian/changelog41
-rw-r--r--newmoon/debian/newmoon+devuan.dsc2
-rw-r--r--newmoon/newmoon.spec7
4 files changed, 48 insertions, 4 deletions
diff --git a/newmoon/_service b/newmoon/_service
index 5931ce3..b813565 100644
--- a/newmoon/_service
+++ b/newmoon/_service
@@ -14,7 +14,7 @@
<service name="tar_scm">
<param name="scm">git</param>
<param name="url">https://repo.palemoon.org/MoonchildProductions/Pale-Moon.git</param>
- <param name="revision">31.1.1_Release</param>
+ <param name="revision">31.2.0_Release</param>
<param name="version">_none_</param>
<param name="submodules">enable</param>
</service>
diff --git a/newmoon/debian/changelog b/newmoon/debian/changelog
index f3d04d8..186727b 100644
--- a/newmoon/debian/changelog
+++ b/newmoon/debian/changelog
@@ -1,3 +1,44 @@
+newmoon (31.2.0-1) obs; urgency=medium
+
+ * Changes/fixes:
+ * Implemented CSS white-space: break-spaces for web compatibility.
+ * Implemented Intl.RelativeTimeFormat for web compatibility.
+ * Implemented "Origin header CSRF mitigation". This is still disabled
+ by default to investigate potential issues with CloudFlare-backed sites.
+ * Implemented support for async generator methods in JavaScript.
+ * Added preliminary support for building on Apple Silicon like M1/M2
+ SoC.
+ * Added support for building with Visual Studio 2022.
+ * Improved the handling of CSS "sticky" elements in tables.
+ * Improved stack size limits on all platforms. See implementation notes.
+ * Updated function.toString handling to align with the updated
+ JavaScript spec. This should improve web compatibility.
+ * Updated Unicode support to Unicode v11, and updated the ICU library
+ accordingly. Building without ICU is no longer supported.
+ * Updated many in-tree third-party libraries to pick up various
+ performance and stability improvements.
+ * Updated site-specific user-agent overrides to work around issues with
+ Google fonts, Citi bank (again!) and MeWe.
+ * Removed some leftover (and unused) telemetry code in the platform and
+ front-end.
+ * Fixed an issue with VP9 video playback on Windows on some systems.
+ * Fixed an issue with the add-ons manager not properly handling empty
+ update URLs.
+ * Fixed a major performance regression on *nix based systems due to
+ incorrect thread handling.
+ * Fixed volume handling when building with the sndio audio back-end.
+ * Pale Moon no longer applies content security policies to documents
+ that are explicitly loaded as data documents or to images. See
+ implementation notes.
+ * Cleaned up some unnecessary code from the source tree for unused
+ build back-ends, Firefox marketplace "apps", and the rather ridiculous
+ moz://a protocol handler.
+ * Updated NSS to 3.52.8 to pick up several defense-in-depth security
+ fixes.
+ * UXP Mozilla security patch summary: 3 DiD, 12 not applicable.
+
+ -- B. Stack <bgstack15@gmail.com> Wed, 03 Aug 2022 14:09:10 -0400
+
newmoon (31.1.1-1) obs; urgency=medium
* Changes/fixes:
diff --git a/newmoon/debian/newmoon+devuan.dsc b/newmoon/debian/newmoon+devuan.dsc
index 00fc105..2302d5e 100644
--- a/newmoon/debian/newmoon+devuan.dsc
+++ b/newmoon/debian/newmoon+devuan.dsc
@@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: newmoon
Binary: newmoon
Architecture: any
-Version: 31.1.1-1+devuan
+Version: 31.2.0-1+devuan
Maintainer: B. Stack <bgstack15@gmail.com>
Homepage: http://www.palemoon.org/
Standards-Version: 4.1.4
diff --git a/newmoon/newmoon.spec b/newmoon/newmoon.spec
index 83454c1..9965084 100644
--- a/newmoon/newmoon.spec
+++ b/newmoon/newmoon.spec
@@ -4,7 +4,7 @@
%global stackrpms_custom 1
# derive from inside the source tree or from https://repo.palemoon.org/MoonchildProductions/Pale-Moon/releases
# git submodule | awk -v "name=platform" '$2 == name {gsub("-","",$1); print $1}'
-%global submodule_platform_tag RB20220707
+%global submodule_platform_tag RB_20220802
%global badname palemoon
%global git_commit db5ee3c1968212742b4ed8b9883069ea7b03f0e1
%global tarballdir pale-moon
@@ -44,7 +44,7 @@ Name: newmoon
Name: newmoon
%endif
Summary: Newmoon web browser
-Version: 31.1.1
+Version: 31.2.0
Release: 1
Group: Networking/Web
@@ -300,6 +300,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Wed Aug 03 2022 B. Stack <bgstack15@gmail.com> - 31.2.0-1
+- update version
+
* Mon Jul 11 2022 B. Stack <bgstack15@gmail.com> - 31.1.1-1
- update version
bgstack15