Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ungoogled-chromium for 
openSUSE:Factory checked in at 2023-10-29 19:40:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ungoogled-chromium (Old)
 and      /work/SRC/openSUSE:Factory/.ungoogled-chromium.new.17445 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ungoogled-chromium"

Sun Oct 29 19:40:00 2023 rev:19 rq:1120801 version:118.0.5993.117

Changes:
--------
--- /work/SRC/openSUSE:Factory/ungoogled-chromium/ungoogled-chromium.changes    
2023-10-20 23:20:04.541762978 +0200
+++ 
/work/SRC/openSUSE:Factory/.ungoogled-chromium.new.17445/ungoogled-chromium.changes
 2023-10-29 19:41:01.589687281 +0100
@@ -1,0 +2,7 @@
+Fri Oct 27 07:52:50 UTC 2023 - Michał Szczepaniak 
<m.szczepaniak....@gmail.com>
+
+- ungoogled-chromium 118.0.5993.117 (boo#1216549)
+  * CVE-2023-5472: Use after free in Profiles
+  * Various fixes from internal audits, fuzzing and other initiatives
+
+-------------------------------------------------------------------

Old:
----
  118.0.5993.88-1.tar.gz
  chromium-118.0.5993.88.tar.xz

New:
----
  118.0.5993.117-1.tar.gz
  chromium-118.0.5993.117.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ungoogled-chromium.spec ++++++
--- /var/tmp/diff_new_pack.6kHcP9/_old  2023-10-29 19:41:26.014575856 +0100
+++ /var/tmp/diff_new_pack.6kHcP9/_new  2023-10-29 19:41:26.018576001 +0100
@@ -79,7 +79,7 @@
 %endif
 # Package names
 Name:           ungoogled-chromium
-Version:        118.0.5993.88
+Version:        118.0.5993.117
 Release:        0
 Summary:        Google's open source browser project
 License:        BSD-3-Clause AND LGPL-2.1-or-later

++++++ 118.0.5993.88-1.tar.gz -> 118.0.5993.117-1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ungoogled-chromium-118.0.5993.88-1/.github/workflows/new_version_check.yml 
new/ungoogled-chromium-118.0.5993.117-1/.github/workflows/new_version_check.yml
--- 
old/ungoogled-chromium-118.0.5993.88-1/.github/workflows/new_version_check.yml  
    2023-10-18 14:05:48.000000000 +0200
+++ 
new/ungoogled-chromium-118.0.5993.117-1/.github/workflows/new_version_check.yml 
    2023-10-26 20:44:15.000000000 +0200
@@ -23,15 +23,20 @@
       - name: Get the latest Chromium version
         id: latest-version
         run: |
-          set -e
-          echo "linux_version=$( curl -s 
'https://versionhistory.googleapis.com/v1/chrome/platforms/linux/channels/stable/versions/all/releases?filter=endtime=none,fraction>=0.5&order_by=version%20desc'
  | jq -re '.releases | first | .version' )" >> $GITHUB_OUTPUT
-          echo "win_version=$( curl -s 
'https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/stable/versions/all/releases?filter=endtime=none,fraction>=0.5&order_by=version%20desc'
  | jq -re '.releases | first | .version' )" >> $GITHUB_OUTPUT
-          echo "mac_version=$( curl -s 
'https://versionhistory.googleapis.com/v1/chrome/platforms/mac/channels/stable/versions/all/releases?filter=endtime=none,fraction>=0.5&order_by=version%20desc'
  | jq -re '.releases | first | .version' )" >> $GITHUB_OUTPUT
+          set -eo pipefail
+          BASE_URL="https://versionhistory.googleapis.com/v1/chrome/platforms";
+          
END_URL="channels/stable/versions/all/releases?filter=endtime=none,fraction>=0.5&order_by=version%20desc"
+          JQ_FILTER='if .releases | select(type=="array") | length > 0 then 
.releases | first | .version else "null" end'
+          for platform in linux win mac; do
+            printf %s "${platform}_version=" >> $GITHUB_OUTPUT
+            curl -sf "${BASE_URL}/${platform}/${END_URL}" | jq -re 
"${JQ_FILTER}" >> $GITHUB_OUTPUT
+          done
       - uses: actions/checkout@v3
       - name: Create Issue for all platforms
         if: |
-          contains( steps.latest-version.outputs.win_version, 
steps.latest-version.outputs.mac_version ) &&
-          contains( steps.latest-version.outputs.mac_version, 
steps.latest-version.outputs.linux_version )   
+          contains(steps.latest-version.outputs.win_version, 
steps.latest-version.outputs.mac_version) &&
+          contains(steps.latest-version.outputs.mac_version, 
steps.latest-version.outputs.linux_version) &&
+          !contains(steps.latest-version.outputs.linux_version, 'null')
         uses: dblock/create-a-github-issue@v3
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -44,8 +49,10 @@
           filename:  
.github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md
       - name: Create Issue for Linux
         if: |
-          ! contains( steps.latest-version.outputs.win_version, 
steps.latest-version.outputs.mac_version ) ||
-          ! contains( steps.latest-version.outputs.mac_version, 
steps.latest-version.outputs.linux_version )
+          (
+            !contains(steps.latest-version.outputs.win_version, 
steps.latest-version.outputs.mac_version) ||
+            !contains(steps.latest-version.outputs.mac_version, 
steps.latest-version.outputs.linux_version)
+          ) && !contains(steps.latest-version.outputs.linux_version, 'null')
         uses: dblock/create-a-github-issue@v3
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -58,8 +65,10 @@
           filename:  
.github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md
       - name: Create Issue for macOS
         if: |
-          ! contains( steps.latest-version.outputs.win_version, 
steps.latest-version.outputs.mac_version ) ||
-          ! contains( steps.latest-version.outputs.mac_version, 
steps.latest-version.outputs.linux_version )
+          (
+            !contains(steps.latest-version.outputs.win_version, 
steps.latest-version.outputs.mac_version) ||
+            !contains(steps.latest-version.outputs.mac_version, 
steps.latest-version.outputs.linux_version)
+          ) && !contains(steps.latest-version.outputs.mac_version, 'null')
         uses: dblock/create-a-github-issue@v3
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -72,8 +81,10 @@
           filename:  
.github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md
       - name: Create Issue for Windows
         if: |
-          ! contains( steps.latest-version.outputs.win_version, 
steps.latest-version.outputs.mac_version ) ||
-          ! contains( steps.latest-version.outputs.mac_version, 
steps.latest-version.outputs.linux_version )
+          (
+            !contains(steps.latest-version.outputs.win_version, 
steps.latest-version.outputs.mac_version) ||
+            !contains(steps.latest-version.outputs.mac_version, 
steps.latest-version.outputs.linux_version)
+          ) && !contains(steps.latest-version.outputs.win_version, 'null')
         uses: dblock/create-a-github-issue@v3
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ungoogled-chromium-118.0.5993.88-1/LICENSE 
new/ungoogled-chromium-118.0.5993.117-1/LICENSE
--- old/ungoogled-chromium-118.0.5993.88-1/LICENSE      2023-10-18 
14:05:48.000000000 +0200
+++ new/ungoogled-chromium-118.0.5993.117-1/LICENSE     2023-10-26 
20:44:15.000000000 +0200
@@ -1,6 +1,6 @@
 BSD 3-Clause License
 
-Copyright (c) 2015-2020, The ungoogled-chromium Authors
+Copyright (c) 2015-2023, The ungoogled-chromium Authors
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ungoogled-chromium-118.0.5993.88-1/README.md 
new/ungoogled-chromium-118.0.5993.117-1/README.md
--- old/ungoogled-chromium-118.0.5993.88-1/README.md    2023-10-18 
14:05:48.000000000 +0200
+++ new/ungoogled-chromium-118.0.5993.117-1/README.md   2023-10-26 
20:44:15.000000000 +0200
@@ -105,6 +105,7 @@
 * Fedora: Available in OBS, by following 
[instructions](https://github.com/ungoogled-software/ungoogled-chromium-fedora) 
in the downloads section. Also available in [RPM 
Fusion](https://rpmfusion.org/Configuration) as `chromium-browser-privacy` 
(outdated).
 * Gentoo: Available in 
[`::pf4public`](https://github.com/PF4Public/gentoo-overlay) overlay as 
[`ungoogled-chromium`](https://github.com/PF4Public/gentoo-overlay/tree/master/www-client/ungoogled-chromium)
 and 
[`ungoogled-chromium-bin`](https://github.com/PF4Public/gentoo-overlay/tree/master/www-client/ungoogled-chromium-bin)
 ebuilds
 * macOS: Available in [Homebrew](https://brew.sh/) as 
[`eloston-chromium`](https://formulae.brew.sh/cask/eloston-chromium). Just run 
`brew install --cask eloston-chromium`. Chromium will appear in your 
`/Applications` directory.
+* openSUSE: Available in [openSUSE 
Tumbleweed](https://get.opensuse.org/tumbleweed/), run `zypper in 
ungoogled-chromium`. See [package 
site](https://software.opensuse.org/package/ungoogled-chromium) for additional 
options.
 
 If your GNU/Linux distribution is not listed, there are distro-independent 
builds available via the following **package managers**:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ungoogled-chromium-118.0.5993.88-1/chromium_version.txt 
new/ungoogled-chromium-118.0.5993.117-1/chromium_version.txt
--- old/ungoogled-chromium-118.0.5993.88-1/chromium_version.txt 2023-10-18 
14:05:48.000000000 +0200
+++ new/ungoogled-chromium-118.0.5993.117-1/chromium_version.txt        
2023-10-26 20:44:15.000000000 +0200
@@ -1 +1 @@
-118.0.5993.88
+118.0.5993.117
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ungoogled-chromium-118.0.5993.88-1/patches/core/ungoogled-chromium/remove-unused-preferences-fields.patch
 
new/ungoogled-chromium-118.0.5993.117-1/patches/core/ungoogled-chromium/remove-unused-preferences-fields.patch
--- 
old/ungoogled-chromium-118.0.5993.88-1/patches/core/ungoogled-chromium/remove-unused-preferences-fields.patch
       2023-10-18 14:05:48.000000000 +0200
+++ 
new/ungoogled-chromium-118.0.5993.117-1/patches/core/ungoogled-chromium/remove-unused-preferences-fields.patch
      2023-10-26 20:44:15.000000000 +0200
@@ -6275,7 +6275,7 @@
  #if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
 --- a/tools/metrics/histograms/enums.xml
 +++ b/tools/metrics/histograms/enums.xml
-@@ -107129,7 +107129,6 @@ Full version information for the fingerp
+@@ -107139,7 +107139,6 @@ Full version information for the fingerp
    <int value="3" label="kRestoreOnStartup"/>
    <int value="4" label="kURLsToRestoreOnStartup"/>
    <int value="5" label="extensions::pref_names::kExtensions"/>
@@ -6283,7 +6283,7 @@
    <int value="7" label="kSearchProviderOverrides"/>
    <int value="8" label="kDefaultSearchProviderSearchURL (Obsolete 12/2016)"/>
    <int value="9" label="kDefaultSearchProviderKeyword (Obsolete 12/2016)"/>
-@@ -107144,10 +107143,7 @@ Full version information for the fingerp
+@@ -107154,10 +107153,7 @@ Full version information for the fingerp
    <int value="18" label="kSafeBrowsingIncidentsSent"/>
    <int value="19" label="kSwReporterPromptVersion"/>
    <int value="20" label="kSwReporterPromptReason"/>

++++++ chromium-118.0.5993.88.tar.xz -> chromium-118.0.5993.117.tar.xz ++++++
/work/SRC/openSUSE:Factory/ungoogled-chromium/chromium-118.0.5993.88.tar.xz 
/work/SRC/openSUSE:Factory/.ungoogled-chromium.new.17445/chromium-118.0.5993.117.tar.xz
 differ: char 15, line 1

Reply via email to