[Bug 2089578] Re: [SRU] Backport gvfs 1.56.1

2024-12-06 Thread Sebastien Bacher
** Description changed:

  Impact
  --
+ 
+ This is a new bugfix release from upstream
+ 
+ This component is covered by the GNOME MicroReleaseException
+ https://wiki.ubuntu.com/StableReleaseUpdates/GNOME
  
  From https://gitlab.gnome.org/GNOME/gvfs/-/raw/1.56.1/NEWS:
  
  * udisks2: Increasing reference count when updating volume to fix crashes 
(Ondrej Holy)
  * onedrive: Use names instead of id for events to fix monitoring (Jan-Michael 
Brummer)
  * onedrive: Add missing replace stream to fix crashes (Jan-Michael Brummer)
  * onedrive: Fix double free during cache rebuild to fix crashes (Jan-Michael 
Brummer)
  * dav: Recognize the 409 status to fix creation of parent directories 
(Michael Terry)
  * Translation updates (GNOME Translation Project contributors)
  
  Test case
  -
  
+ Follow the testplan described on
  https://wiki.ubuntu.com/Process/Merges/TestPlans/gvfs
  
- Regression potential
- 
+ Where problems could occur
+ --
  
- The main regression potential is in the usage of Microsoft's One Drive.
+ The main regression potential is in the usage of Microsoft's One Drive,
+ there is a section in the testplan describing how to test that feature.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gvfs in Ubuntu.
https://bugs.launchpad.net/bugs/2089578

Title:
  [SRU] Backport gvfs 1.56.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/2089578/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2089578] Re: [SRU] Backport gvfs 1.56.1

2024-12-06 Thread Sebastien Bacher
Thanks, sponsored now

** Changed in: gvfs (Ubuntu Oracular)
   Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gvfs in Ubuntu.
https://bugs.launchpad.net/bugs/2089578

Title:
  [SRU] Backport gvfs 1.56.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/2089578/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2091159] [NEW] Popups disappear on touch release

2024-12-06 Thread Alessandro Astone
Public bug reported:

[ Impact ]

On Wayland opening a popup by touch results in it disappearing as soon
as the touch release event happens thus making all popups completely
unusable for touchscreens.

[ Test Plan ]

1. Log in to a GNOME Wayland session
2. Launch nautilus
3. Long-press with touch to open the context menu
4. Release finger
5. Verify that the context menu remained open

[ Where problems could occur ]

mutter is the Wayland compositor library that provides graphics and inputs for 
the GNOME desktop, thus is a critical component.
Problems could manifest with touch input not working correctly anymore, or 
sudden log-out if gnome-shell crashes.
The change is limited to touchscreen handling, and won't ever affect a system 
without touchscreen.

** Affects: mutter (Ubuntu)
 Importance: Medium
 Assignee: Alessandro Astone (aleasto)
 Status: In Progress

** Affects: mutter (Ubuntu Oracular)
 Importance: Medium
 Assignee: Alessandro Astone (aleasto)
 Status: In Progress

** Also affects: mutter (Ubuntu Oracular)
   Importance: Undecided
   Status: New

** Changed in: mutter (Ubuntu)
 Assignee: (unassigned) => Alessandro Astone (aleasto)

** Changed in: mutter (Ubuntu)
   Importance: Undecided => Medium

** Changed in: mutter (Ubuntu Oracular)
   Importance: Undecided => Medium

** Changed in: mutter (Ubuntu Oracular)
 Assignee: (unassigned) => Alessandro Astone (aleasto)

** Changed in: mutter (Ubuntu)
   Status: New => In Progress

** Changed in: mutter (Ubuntu Oracular)
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/2091159

Title:
  Popups disappear on touch release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/2091159/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2039340] Re: gnome-shell (login screen) crashes with SIGSEGV in __GI_getenv("EXPAT_ACCOUNTING_DEBUG") from getDebugLevel() from parserInit()

2024-12-06 Thread Alessandro Astone
** Description changed:

- Last time I hacked around a bug like this, it had portions in PAM,
- apparmor, Seahorse, and Gnome so this time I'd like someone more focused
- on broad stability to look at things.
+ [ Impact ]
  
- The problem is simple.  Before the upgrade to 23.10, I could log in
- using the "Ubuntu", "Ubuntu on X.org". "Gnome", and "Gnome on X.org"
- WMs.  Now I can't.  I can still login using XFCE and TTY.
+ gnome-shell may crash on startup due to multiple threads writing and
+ reading environment variables.
+ 
+ gnome-shell adds variables like DISPLAY, XAUTHORITY, WAYLAND_DISPLAY to
+ its own environment. However it might do so while libraries running in
+ other threads are trying to read environment variables that may affect
+ their behaviour. If a call to `getenv` is interrupted by a call to
+ `setenv` that causes re-allocation of memory, it will trigger a crash.
+ 
+ To mitigate the issue, we avoid starting the fontconfig thread right
+ before setting the environment variables.
+ 
+ [ Test Plan ]
+ 
+ There are no reproducer steps that trigger the crash reliably enough to be 
verified.
+ Instead, we are going to verify that the patch does not introduce 
regressions, and will verify the effectiveness of the fix by monitoring 
errors.ubuntu.com after the update has landed.
+ 
+ 1. Install the gnome-shell update
+ 2. Reboot
+ 3. Verify that the log-in screen loaded correctly
+ 4. Log-in
+ 5. Verify that the desktop loaded correctly
+ 6. Verify that the font rendering quality is not degraded
+ 
+ [ Where problems could occur ]
+ 
+ The patch delays the disablement of text mipmapping to the first time a
+ font is rendered, instead of doing so on startup. A mistake in the patch
+ could thus affect font rendering. The test plan asks to verify that that
+ is not the case.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/2039340

Title:
  gnome-shell (login screen) crashes with SIGSEGV in
  __GI_getenv("EXPAT_ACCOUNTING_DEBUG") from getDebugLevel() from
  parserInit()

To manage notifications about this bug go to:
https://bugs.launchpad.net/mutter/+bug/2039340/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2091112] Re: Setting org.gnome.desktop.datetime automatic-timezone to true seems to have no effect

2024-12-06 Thread Sebastien Bacher
Thank you for your bug report.

You mention that it was fixed upstream but the bug you reference is open
and has mention of a fix?

Also is that an issue with the settings interface or only using
gsettings on the cmdline?

** Changed in: gnome-control-center (Ubuntu)
   Importance: Undecided => Low

** Changed in: gnome-control-center (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/2091112

Title:
  Setting org.gnome.desktop.datetime automatic-timezone to true seems to
  have no effect

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/2091112/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2089929] Re: [SRU] Update gnome-settings-daemon to 47.2

2024-12-06 Thread Sebastien Bacher
** Description changed:

  [ Impact ]
  
  This is a new bugfix release from upstream
  https://gitlab.gnome.org/GNOME/gnome-settings-daemon/-/blob/47.2/NEWS
  
  This component is covered by the GNOME MicroReleaseException
  https://wiki.ubuntu.com/StableReleaseUpdates/GNOME
  
  [ Test Plan ]
  
  Complete the "Test Power" test cases from:
  https://wiki.ubuntu.com/DesktopTeam/TestPlans/GnomeSettingsDaemon
  
  The Power component changed in the update.
  
  [ Where problems could occur ]
  
  gnome-settings-daemon provides various functionality to the GNOME Desktop.
  Other components of the desktop rely on gnome-settings-daemon to configure 
the system or react to external events.
  It is comprised of multiple independent system services, where a failure in 
one would not impact the others.
+ 
+ The update has its changes restricted to the power plugin and more
+ specifically the backlight handling, verify that changing the backlight
+ level works as expected

** Changed in: gnome-settings-daemon (Ubuntu)
   Status: In Progress => Fix Committed

** Changed in: gnome-settings-daemon (Ubuntu Oracular)
   Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/2089929

Title:
  [SRU] Update gnome-settings-daemon to 47.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/2089929/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1704492] Re: Prebase vowels not moved to before consonants joined by virama

2024-12-06 Thread Jeremy BĂ­cha
This issue is fixed in Ubuntu 18.04 LTS and newer.

** Changed in: harfbuzz (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to harfbuzz in Ubuntu.
https://bugs.launchpad.net/bugs/1704492

Title:
  Prebase vowels not moved to before consonants joined by virama

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/harfbuzz/+bug/1704492/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs