Please note that this mail was generated by a script.
The described changes are computed based on the x86_64 DVD.
The full online repo contains too many changes to be listed here.
Please check the known defects of this snapshot before upgrading:
https://openqa.opensuse.org/tests/overview?distri=opensuse&groupid=1&versio…
Please do not reply to this email to report issues, rather file a bug
on bugzilla.opensuse.org. For more information on filing bugs please
see https://en.opensuse.org/openSUSE:Submitting_bug_reports
Packages changed:
autofs
brltty
grub2
gzip
libnetfilter_conntrack (1.0.8 -> 1.0.9)
libqt5-qtbase
lzip (1.22 -> 1.23)
openssl-1_1
python-openpyxl (3.0.7 -> 3.0.9)
python-pandas (1.4.0 -> 1.4.1)
rubygem-faraday (1.3.0 -> 2.1.0)
rubygem-faraday-net_http (1.0.1 -> 2.0.1)
rubygem-pdf-reader (2.9.0 -> 2.9.1)
spice-gtk (0.39 -> 0.40)
sushi
vim (8.2.4286 -> 8.2.4375)
yast2-packager (4.4.22 -> 4.4.23)
yast2-trans (84.87.20220206.a953ff83bc -> 84.87.20220211.620fde21a3)
=== Details ===
==== autofs ====
- Add autofs-Test-TCP-request-correctly-in-nfs_get_info.patch
Fix bug when rpcbind not visible
(bsc#1195587 bsc#1195595)
==== brltty ====
Subpackages: brltty-driver-at-spi2 brltty-driver-brlapi brltty-driver-speech-dispatcher brltty-driver-xwindow brltty-lang libbrlapi0_8 python3-brlapi system-user-brltty xbrlapi
- Pass --with-tables-directory=%{_datadir}/%{name} to configure: do
not install the tables to /etc, as they are not supposed to be
modified by local admins.
==== grub2 ====
Subpackages: grub2-i386-pc grub2-snapper-plugin grub2-systemd-sleep-plugin grub2-x86_64-efi grub2-x86_64-xen
- Set grub2-check-default shebang to "#!/bin/bash", as the the code
uses many instructions which are undefined for a POSIX sh.
(boo#1195794).
==== gzip ====
- add conflicts/provides for alternative(gzip)
- modernize spec file
==== libnetfilter_conntrack ====
Version update (1.0.8 -> 1.0.9)
- Update to release 1.0.9
* This release comes with the new nfct_nlmsg_build_filter()
function that allows to add metadata for kernel-side
filtering of conntrack entries during conntrack table dump.
* The nfct_query() API supports the new NFCT_Q_FLUSH_FILTER
argument, it allows to flush only IPv6 or IPv4 entries from
the connection tracking table.
==== libqt5-qtbase ====
Subpackages: libQt5Concurrent5 libQt5Core5 libQt5DBus5 libQt5Gui5 libQt5Network5 libQt5OpenGL5 libQt5PrintSupport5 libQt5Sql5 libQt5Sql5-mysql libQt5Sql5-sqlite libQt5Test5 libQt5Widgets5 libQt5Xml5 libqt5-qtbase-platformtheme-gtk3
- Update patch after it was merged to dev upstream and fix another
place missed in the first version (boo#1195386, CVE-2022-23853):
* 0001-QProcess-Unix-ensure-we-don-t-accidentally-execute-s.patch
==== lzip ====
Version update (1.22 -> 1.23)
- Update to release 1.23
* Decompression time has been reduced by 5-12% depending on the
file.
* In case of error in a numerical argument to a command line
option, lzip now shows the name of the option and the range
of valid values.
==== openssl-1_1 ====
Subpackages: libopenssl1_1 libopenssl1_1-32bit libopenssl1_1-hmac
- Pull libopenssl-1_1 when updating openssl-1_1 with the same
version. [bsc#1195792]
- FIPS: Fix function and reason error codes [bsc#1182959]
* Add openssl-1_1-FIPS-fix-error-reason-codes.patch
==== python-openpyxl ====
Version update (3.0.7 -> 3.0.9)
- specfile:
* update copyright year
* be a bit more specific in the %files section
- update to version 3.0.9:
* Bugfixes
+ #1284 Ignore blank ignored in existing Data Validations
+ #1539 Add support for cell protection for merged cell ranges
+ #1645 Timezone-aware datetimes raise an Exception
+ #1666 Improved normalisation of chart series
+ #1670 Catch OverflowError for out of range datetimes
+ #1708 Alignment.relativeIndent can be negative
+ #1736 Incorrect default value groupBy attribute
- changes from version 3.0.8:
* Deleted because it contained breaking changes from 3.1
==== python-pandas ====
Version update (1.4.0 -> 1.4.1)
- update to version 1.4.1:
* Fixed regressions
+ Regression in Series.mask() with inplace=True and PeriodDtype
and an incompatible other coercing to a common dtype instead of
raising (GH45546)
+ Regression in assert_frame_equal() not respecting
check_flags=False (GH45554)
+ Regression in DataFrame.loc() raising ValueError when indexing
(getting values) on a MultiIndex with one level (GH45779)
+ Regression in Series.fillna() with downcast=False incorrectly
downcasting object dtype (GH45603)
+ Regression in api.types.is_bool_dtype() raising an
AttributeError when evaluating a categorical Series (GH45615)
+ Regression in DataFrame.iat() setting values leading to not
propagating correctly in subsequent lookups (GH45684)
+ Regression when setting values with DataFrame.loc() losing Index
name if DataFrame was empty before (GH45621)
+ Regression in join() with overlapping IntervalIndex raising an
InvalidIndexError (GH45661)
+ Regression when setting values with Series.loc() raising with
all False indexer and Series on the right hand side (GH45778)
+ Regression in read_sql() with a DBAPI2 connection that is not an
instance of sqlite3.Connection incorrectly requiring SQLAlchemy
be installed (GH45660)
+ Regression in DateOffset when constructing with an integer
argument with no keywords (e.g. pd.DateOffset(n)) would behave
like datetime.timedelta(days=0) (GH45643, GH45890)
* Bug fixes
+ Fixed segfault in DataFrame.to_json() when dumping tz-aware
datetimes in Python 3.10 (GH42130)
+ Stopped emitting unnecessary FutureWarning in
DataFrame.sort_values() with sparse columns (GH45618)
+ Fixed window aggregations in DataFrame.rolling() and
Series.rolling() to skip over unused elements (GH45647)
+ Fixed builtin highlighters in Styler to be responsive to NA with
nullable dtypes (GH45804)
+ Bug in apply() with axis=1 raising an erroneous ValueError
(GH45912)
* Other
+ Reverted performance speedup of DataFrame.corr() for
method=pearson to fix precision regression (GH45640, GH42761)
==== rubygem-faraday ====
Version update (1.3.0 -> 2.1.0)
updated to version 2.1.0
see installed CHANGELOG.md
[#]# [1.8.0](https://github.com/lostisland/faraday/releases/tag/v1.8.0) (2021-09-18)
[#]## Features
* Backport authorization procs (#1322, @jarl-dk)
[#]# [v1.7.0](https://github.com/lostisland/faraday/releases/tag/v1.7.0) (2021-08-09)
[#]## Features
* Add strict_mode to Test::Stubs (#1298, @yykamei)
[#]# [v1.6.0](https://github.com/lostisland/faraday/releases/tag/v1.6.0) (2021-08-01)
[#]## Misc
* Use external Rack adapter (#1296, @iMacTia)
[#]# [v1.5.1](https://github.com/lostisland/faraday/releases/tag/v1.5.1) (2021-07-11)
[#]## Fixes
* Fix JRuby incompatibility after moving out EM adapters (#1294, @ahorek)
[#]## Documentation
* Update YARD to follow RackBuilder (#1292, @kachick)
[#]# [v1.5.0](https://github.com/lostisland/faraday/releases/tag/v1.5.0) (2021-07-04)
[#]## Misc
* Use external httpclient adapter (#1289, @iMacTia)
* Use external patron adapter (#1290, @iMacTia)
[#]# [v1.4.3](https://github.com/lostisland/faraday/releases/tag/v1.4.3) (2021-06-24)
[#]## Fixes
* Silence warning (#1286, @gurgeous)
* Always dup url_prefix in Connection#build_exclusive_url (#1288, @alexeyds)
[#]# [v1.4.2](https://github.com/lostisland/faraday/releases/tag/v1.4.2) (2021-05-22)
[#]## Fixes
* Add proxy setting when url_prefix is changed (#1276, @ci)
* Default proxy scheme to http:// if necessary, fixes #1282 (#1283, @gurgeous)
[#]## Documentation
* Improve introduction page (#1273, @gurgeous)
* Docs: add more middleware examples (#1277, @gurgeous)
[#]## Misc
* Use external `em_http` and `em_synchrony` adapters (#1274, @iMacTia)
[#]# [v1.4.1](https://github.com/lostisland/faraday/releases/tag/v1.4.1) (2021-04-18)
[#]## Fixes
* Fix dependencies from external adapter gems (#1269, @iMacTia)
[#]# [v1.4.0](https://github.com/lostisland/faraday/releases/tag/v1.4.0) (2021-04-16)
[#]## Highlights
With this release, we continue the work of gradually moving out adapters into their own gems ?
Thanks to @MikeRogers0 for helping the Faraday team in progressing with this quest ?
And thanks to @olleolleolle efforts, Faraday is becoming more inclusive than ever ?
Faraday's `master` branch has been renamed into `main`, we have an official policy on inclusive language and even a rubocop plugin to check for non-inclusive words ??!
Checkout the "Misc" section below for more details ? !
[#]## Fixes
* Fix NoMethodError undefined method 'coverage' (#1255, @Maroo-b)
[#]## Documentation
* Some docs on EventMachine adapters. (#1232, @damau)
* CONTRIBUTING: Fix grammar and layout (#1261, @olleolleolle)
[#]## Misc
* Replacing Net::HTTP::Persistent with faraday-net_http_persistent (#1250, @MikeRogers0)
* CI: Configure the regenerated Coveralls token (#1256, @olleolleolle)
* Replace Excon adapter with Faraday::Excon gem, and fix autoloading issue with Faraday::NetHttpPersistent (#1257, @iMacTia)
* Drop CodeClimate (#1259, @olleolleolle)
* CI: Rename default branch to main (#1263, @olleolleolle)
* Drop RDoc support file .document (#1264, @olleolleolle, @iMacTia)
* CONTRIBUTING: add a policy on inclusive language (#1262, @olleolleolle)
* Add rubocop-inclusivity (#1267, @olleolleolle, @iMacTia)
[#]# [v1.3.1](https://github.com/lostisland/faraday/releases/tag/v1.3.1) (2021-04-16)
[#]## Fixes
* Escape colon in path segment (#1237, @yarafan)
* Handle IPv6 address String on Faraday::Connection#proxy_from_env (#1252, @cosmo0920)
[#]## Documentation
* Fix broken Rubydoc.info links (#1236, @nickcampbell18)
* Add httpx to list of external adapters (#1246, @HoneyryderChuck)
[#]## Misc
* Refactor CI to remove duplicated line (#1230, @tricknotes)
* Gemspec: Pick a good ruby2_keywords release (#1241, @olleolleolle)
- updated to version 1.8.0
* Backport authorization procs (#1322, @jarl-dk)
- updated to version 1.7.0
[#]# [v1.7.0](https://github.com/lostisland/faraday/releases/tag/v1.7.0) (2021-08-09)
[#]## Features
* Add strict_mode to Test::Stubs (#1298, @yykamei)
[#]# [v1.6.0](https://github.com/lostisland/faraday/releases/tag/v1.6.0) (2021-08-01)
[#]## Misc
* Use external Rack adapter (#1296, @iMacTia)
- updated to version 1.5.1
[#] Fixes
* Fix JRuby incompatibility after moving out EM adapters (#1294, @ahorek)
[#] Documentation
* Update YARD to follow RackBuilder (#1292, @kachick)
- updated to version 1.5.0
[#] Misc
* Use external httpclient adapter (#1289, @iMacTia)
* Use external patron adapter (#1290, @iMacTia)
updated to version 1.4.3
see installed CHANGELOG.md
[#]# [v1.3.0](https://github.com/lostisland/faraday/releases/tag/v1.3.0) (2020-12-31)
[#]## Highlights
Faraday v1.3.0 is the first release to officially support Ruby 3.0 in the CI pipeline ? ?!
This is also the first release with a previously "included" adapter (Net::HTTP) being isolated into a [separate gem](https://github.com/lostisland/faraday-net_http) ?!
The new adapter is added to Faraday as a dependency for now, so that means full backwards-compatibility, but just to be safe be careful when upgrading!
This is a huge step towards are Faraday v2.0 objective of pushing adapters and middleware into separate gems.
Many thanks to the Faraday Team, @JanDintel and everyone who attended the [ROSS Conf remote event](https://www.rossconf.io/event/remote/)
[#]## Features
* Improves consistency with Faraday::Error and Faraday::RaiseError (#1229, @qsona, @iMacTia)
[#]## Fixes
* Don't assign to global ::Timer (#1227, @bpo)
[#]## Documentation
* CHANGELOG: add releases after 1.0 (#1225, @olleolleolle)
* Improves retry middleware documentation. (#1228, @iMacTia)
[#]## Misc
* Move out Net::HTTP adapter (#1222, @JanDintel, @iMacTia)
* Adds Ruby 3.0 to CI Matrix (#1226, @iMacTia)
==== rubygem-faraday-net_http ====
Version update (1.0.1 -> 2.0.1)
updated to version 2.0.1
no changelog found
==== rubygem-pdf-reader ====
Version update (2.9.0 -> 2.9.1)
updated to version 2.9.1
see installed CHANGELOG
v2.9.1 (4th February 2022)
- Fix exception in Page#walk introduced in 2.9.0 (http://github.com/yob/pdf-reader/pull/442)
- Other small bug fixes
==== spice-gtk ====
Version update (0.39 -> 0.40)
Subpackages: libspice-client-glib-2_0-8 libspice-client-glib-helper libspice-client-gtk-3_0-5 typelib-1_0-SpiceClientGlib-2_0 typelib-1_0-SpiceClientGtk-3_0
- Update to version 0.40. Features and Issues addressed:
* Fix usbid parsing regression introduced in !78 (v0.39)
* !91 - Fix crash with division by 0 [rhbz#1941627]
* !97 - #157 - Fix detecting pyparsing module
* Add API to allocate SpiceUsbDevice (for Android)
spice_usb_device_manager_allocate_device_for_file_descriptor()
* !93 - #137 - add support for TLS-SNI
* !92 - Support USB emulation for MacOS
* !96 - Support side mouse buttons
* !85 - #75 - add spice_display_keyboard_ungrab()
* !81 - GL fix warning fix and improve scanout logic
* !84 - Fix leak and warnings in gstaudio and spicy
* !86, !87, !90 - Several introspection fixes and improvements
- Drop patches contained in new tarball
support-new-pyparsing.patch
==== sushi ====
Subpackages: sushi-lang
- Add typelib\\(LOKDocView\\) global requires exclude: We do not
want to mandate libreoffice install just for the file preview
funtion. If libreoffice is installed, the preview in will
function as expected.
- Following the above, add (typelib(LOKDocView) if libreoffice)
Requires: Pull in the needed libreoffice glue if libreoffice is
installed.
- Pass explicit wayland=enabled and X11=enabled to meson, ensure we
build support for both (we already have dependencies in place).
==== vim ====
Version update (8.2.4286 -> 8.2.4375)
Subpackages: gvim vim-data vim-data-common
- Updated to version 8.2.4375, fixes the following problems
* Vim9: strict type checking after copy() and deepcopy().
* Cannot assign empty list with any list type to variable with specific
list type.
* Preprocessor indents are inconsistent.
* Warnings reported by MSVC.
* Error number used twice.
* Test fails.
* Vim9: when copying a list it gets type list<any> even when the original
list did not have a type.
* Vim9: concatenating two lists may result in wrong type.
* Vim9: not all code covered by tests.
* Vim9: not all code covered by tests.
* Divide by zero with huge tabstop value.
* SafeState autocommand interferes with debugging.
* Cannot build tiny version. (Tony Mechelynck)
* Vim9: type error for copy of dict.
* Vim9: return type of getline() is too strict.
* A few messages should not be translated.
* Vim9: slice() makes a copy but doesn't change the type.
* Tex filetype detection fails.
* No test for fixed perl filetype check.
* A few more messages should not be translated.
* Vim9: cannot list autoload function.
* Vim9: crash when using a partial in the wrong context.
* Vim9: constant list and dict get a declaration type other than "any".
* Vim9: changing script variable type not caught at compile time.
* No error for using :vim9script in a :def function.
* Vim9: cannot change type of list after making a slice.
* Test fails where lines are skipped.
* Put in Visual mode not fully tested.
* Various comment and indent mistakes, returning wrong zero.
* :put does not work properly in compiled function. (John Beckett)
* Athena and Motif: when maximized scrollbar position is wrong.
* Vim9: crash when using a funcref to a closure.
* Vim9: crash when using funcref with closure.
* Vim9: nested function name can start with "_".
* Vim9: script-local function name can start with "_".
* 'wildmenu' only shows few matches.
* "o" and "O" copying comment not sufficiently tested.
* May end up with no current buffer.
* Command line complete matches cleard when typing character. (Dominique
Pellé)
* No support for end line number and column in 'errorformat'.
* Vim9: no error if script imports itself.
* Vim9: no test for existing script variable in block.
* Vim9: incomplete test for existing script variable in block.
* cstack not always passed to where it is needed.
* Command line popup menu not positioned correctly.
* No autocommand event triggered before changing directory. (Ronnie Magatti)
* Using :filter for :scriptnames does not work. (Ben Jackson)
* Part of condition is always true.
* An error from an expression mapping messes up the display.
* CTRL-A does not work properly with the cmdline popup menu.
* Command line not redrawn when finishing popup menu and the screen has
scrolled up.
* CI will soon switch to other windows version.
* When reloading not all properties are detected.
* <amatch> is expanded like a file name for DirChangedPre.
* A custom statusline may cause Esc to work like Enter on the command line
when the popup menu is displayed.
* In some build setups UNUSED is not defined.
* "legacy exe cmd" does not do what one would expect.
* FEAT_GUI_ENABLED defined but never used.
* No coverage is measured on MS-Windows CI.
* ReScript files are not recognized.
* CI does not use the latest Lua and Python.
* Dynamic loading of libsodium not handled properly.
* Unnecessary call to check_colorcolumn().
* Command line completion functions are very long.
* sticky command modifiers are too sticky.
* Vim9: line number of exception is not set.
* crash when repeatedly using :retab.
* Vim9: allowing use of "s:" leads to inconsistencies.
* Vim9: some tests fail.
* :retab may allocate too much memory.
* sticky command modifiers are too sticky.
* Not enough tests for command line completion.
* Calling in_vim9script() multiple times.
* Amiga: a few compiler warnings.
* Redundant #ifdef argument.
* MS-Windows: libsodium.dll not included with the installer.
* Vim9: can create a script variable from a legacy function.
* Filetype detection from file contents is in legacy script.
* Expression test fails.
* Unreachable code.
* ctx_imports is not used.
==== yast2-packager ====
Version update (4.4.22 -> 4.4.23)
- Remove duplicate repositories created at the end of installation
(repositories which are stored in the *.repo_1 files, bsc#1194546)
- 4.4.23
==== yast2-trans ====
Version update (84.87.20220206.a953ff83bc -> 84.87.20220211.620fde21a3)
Subpackages: yast2-trans-af yast2-trans-ar yast2-trans-bg yast2-trans-bn yast2-trans-bs yast2-trans-ca yast2-trans-cs yast2-trans-cy yast2-trans-da yast2-trans-de yast2-trans-el yast2-trans-en_GB yast2-trans-es yast2-trans-et yast2-trans-fa yast2-trans-fi yast2-trans-fr yast2-trans-gl yast2-trans-gu yast2-trans-hi yast2-trans-hr yast2-trans-hu yast2-trans-id yast2-trans-it yast2-trans-ja yast2-trans-jv yast2-trans-ka yast2-trans-km yast2-trans-ko yast2-trans-lo yast2-trans-lt yast2-trans-mk yast2-trans-mr yast2-trans-nb yast2-trans-nl yast2-trans-pa yast2-trans-pl yast2-trans-pt yast2-trans-pt_BR yast2-trans-ro yast2-trans-ru yast2-trans-si yast2-trans-sk yast2-trans-sl yast2-trans-sr yast2-trans-sv yast2-trans-ta yast2-trans-th yast2-trans-tr yast2-trans-uk yast2-trans-vi yast2-trans-wa yast2-trans-xh yast2-trans-zh_CN yast2-trans-zh_TW yast2-trans-zu
- Update to version 84.87.20220211.620fde21a3:
* Translated using Weblate (Slovak)
* Translated using Weblate (Slovak)
* Translated using Weblate (Dutch)
* Translated using Weblate (Catalan)
* Translated using Weblate (Dutch)
* Translated using Weblate (Catalan)
* Translated using Weblate (Japanese)
* Translated using Weblate (Japanese)
* New POT for text domain 'storage'.
* New POT for text domain 's390'.
* New POT for text domain 'dns-server'.
* Translated using Weblate (Turkish)
* New POT for text domain 'packager'.
* Translated using Weblate (Slovak)
* Translated using Weblate (Dutch)
* Translated using Weblate (Catalan)
* Translated using Weblate (Japanese)
* New POT for text domain 'nfs'.
* New POT for text domain 'network'.
Hello openSUSE!
according to the https://en.opensuse.org/openSUSE:Roadmap, today 15:00
CEST is the submission check-in Deadline for Leap 15.4 Beta. It's also
a deadline for any package drops from Leap 15.4.
**Late features**
If you have a must-have feature that should land in Leap 15.4 and
perhaps upstream release did not happen yet, then please report it here
https://code.opensuse.org/leap/features/issues
As an example Axel already told me about the upcoming GNU Health
update. But in general, we'd love to track all late features larger
than a breadbox and if necessary talk to SLE (dependencies in SLE etc)
to see if we can make it happen in 15.4.
**Leap 15.4 availability will be delayed**
The original date was 23rd February, expect something like the end of
this month. The main reason is being behind SLES in producing builds
and as of today networking issues in pkglistgen botmaster pipeline.
SUSE IT is already on it (SD-77220).
**One update on Leap build availability**
We were not doing great for past month, mostly because we were not able
to keep up with incoming changes to SLES, and also for hangs on s390x.
After discussion we've added a snapshot for changes from SLES 15 SP4,
aside from the existing snapshot of SLES maintenance updates to be able
to be more in control of incoming changes from SLES and provide 1 build
per week which is our current target for the Beta phase.
Stay tuned!
--
Best regards
Lubos Kocman
openSUSE Leap Release Manager
All meeting minutes can be found here:
https://etherpad.opensuse.org/p/ReleaseEngineering-meeting
Meeting is hosted here
https://meet.opensuse.org/ReleaseEngineeringMeeting
## Attendees
lkocman, DimStar, DocB, Marcus, deneb_alpha, Sarah
## Leap
pkglistgen is failing on network issues. Issue was escalated to IT
Infra,
WARNING SUSE-INTERNAL-LINK:
https://sd.suse.com/servicedesk/customer/portal/1/SD-77220
Checkin deadline for Beta is today 15:00 CEST
https://en.opensuse.org/openSUSE:Roadmap
Recent issues might result into delayed Beta avaialbility
What about the backlog of SR?
Related discussion with autobuild about making our builds faster. So
far the only suggestion/quick solution was to increase priority of job-
picking by OBS workers.
We have now a snapshot in place for SUSE:SLE-15-SP4 changes. That
should allow us safely finish our builds, before SLE changes retrigger
it. Plan is to update it once a week.
Bugzilla policy Leap related update prior Beta
https://lists.opensuse.org/archives/list/factory@lists.opensuse.org/thread/…
No additional feedback aside from priority definitions, I consider
changes sufficient for Beta itself.
Overlap in between SLE and Leap (forking WE packages)
https://github.com/openSUSE/openSUSE-release-process/issues/71
Plan with maintenance team
https://etherpad.opensuse.org/p/ReleaseEngineering-20220210-maintenance
When will Qt 5.15 hit Leap 15.4?
https://code.opensuse.org/leap/features/issue/7 let's keep QT related
discussion
Leap Micro 5.2 - No update yet, aside from setup being done.
https://build.opensuse.org/project/show/openSUSE:Leap:Micro:5.2
Discussion with Alex Osthof regarding volunteer interested in Cloud. We
came up with idea that he could start a
Public Cloud testsuite for Leap, there seems to a blank space where we
could benefit from additional testing.
Dirk: wouldn't that be redundant after CtLG? Pehaps then test it only
in Leap
Gerald: What about some targetted smoke test, to ensure it works,
branding,...? Dirk agrees.
Tasks were given, now it's on Zack.
Doug: https://github.com/cisco/openh264/issues/3480
Just needed clarification on the PR as needing to be hosted by cisco.
Looks like 3rd party is what is needed, correct?
It will be streamlined in 15.4, just not sure if it will be a cisco
repository or another, correct?
it will be a cisco repo for openh264, rest will be streamlined.
Waiting for feedback.
libksane blocker is being processed here
https://bugzilla.opensuse.org/show_bug.cgi?id=1195978
## openSUSE Tumbleweed
* Kernel 5.16.8 in Tumbleweed with simple drm enabled; NVidia and AMD
users reported some bugs, like boo#1195885 and boo#1195887
* Python 3.6 being EOL, removal of python36-FOO modules ongoing. Last
week: 80 left, now 73
* glibc 2.35 is staged, passed QA. checkin planned for Feb 16
* KDE Frameworks 5.91 in staging - breaks LibreOffice
* GCC 12 pre-integration tests started (Staging:Gcc7); Scheduled for
actual merge in April/May
## Richard (Kubic/TW MicroOS)
Not available
Working on MicroOS images for WSL, using a unique approach of bundling
the image inside the TW WSL image, which ends up acting like our usual
patched bootloader for MicroOS.
ongoing experiments with with kiwi-less, container-first VM image
building/adding nerdctl support to Toolbox/buildkit and its limits as a
container builder/TW-to-MicroOS converter
## Max
Not available
llvm13 will be the new default in Leap
https://code.opensuse.org/leap/features/issue/55
## Guillaume - Arm
Not available
Tumbleweed:
* No blocker
* Upcoming GCC 12 tested for aarch64:
https://build.opensuse.org/project/show/home:dirkmueller:branches:openSUSE:…
* Tests of openSUSE Tumbleweed on The Pinebook Pro showed some
issues. Most of them are now fixed. Tracked on
https://bugzilla.opensuse.org/show_bug.cgi?id=1194491
Leap 15.3:
* Issue with installation media (net installation) for devices w/o
Real-Time-Clock. Workaround: Trigger rebuild of installation media.
https://bugzilla.opensuse.org/show_bug.cgi?id=1194660
lkocman: to update the bug with installmedia refresh.
lkocman: respin done waiting for final s390x task to finish and then
let's republish it
https://build.opensuse.org/project/show/openSUSE:Leap:15.3:Update:Respin
Leap 15.4:
* opencl-headers updated and armnn:opencl is built properly now.
* aarch64:
* Go compiler from SLE still lacks ld.gold which is still
required. This make some packages to fail to build (e.g.
openSUSE:Backports:SLE-15-SP4/rclone). Bug opened since Leap 15.3:
https://bugzilla.opensuse.org/show_bug.cgi?id=1183043
* armv7:
* armv7 images are not tested in openQA yet, because JeOS-efi
image does not build properly due to an armv7 kernel bug with btrfs and
lzo compression: https://bugzilla.opensuse.org/show_bug.cgi?id=1193852
=> kernel overlay with a possible fix added. Need to wait for a new
build to check if the fix is ok.
## Sarah - s390x
Tumbleweed:
* Reboot does not work:
https://bugzilla.opensuse.org/show_bug.cgi?id=1193889
(forwarded to IBM for all Linux distributions on s390x - escalated by
Distinguished Engineer because of a well known issue related to new gcc
versions in combination with the kernel)
*Bug in s390-tools:
https://bugzilla.opensuse.org/show_bug.cgi?id=1195914
Builds for Tumbleweed are working again
Progress in kernel debugging:
https://bugzilla.suse.com/show_bug.cgi?id=1188896
## Doug
* openSUSE Conference
* keynotes
* Emil Ivov is a yes
* TensorFlow/OSS DevInfra's Mihai Maruseac working on approval from
Google Brain to provide keynote
Hotels are fully booked. (Rock im Park, biggest rockfestival Nuernberg)
* Venueless set up ready
* Visa and TSP requests starting
* Google Summer of Code
* Application Complete & Submitted
* Projects listed at https://101.opensuse.org/
* Leap 15.4
* Beta annoucement article ready
* Debate on including paragraph about muiltimedia codecs
* Progressing with release annoucement
* Editing wiki describing features
## Dirk
chasing a file read data corruption in 15.4 kernel due to transparent
hugepages, kernel team
developed a workaround
A few further fixes for /bin/sh == dash, remaining are kernel,
kubernetes and python macros
## Gerald / Board
[All good]
## Wolfgang (Package Hub), Scott Bahling
Not available
Need a confirmation from Wolfgang/Scott whether proposal in
https://github.com/openSUSE/openSUSE-release-process/issues/71 will fix
the issue.
## Maintenance team (Marina or Marcus, Maurizio (m4u))
Marina: S:M:22734:264499 -> rpmlint released on 2022-02-14
Marina: SLE-PackageHub issues
(https://github.com/openSUSE/openSUSE-release-process/issues/71) we had
a meeting
(https://etherpad.opensuse.org/p/ReleaseEngineering-20220210-maintenance
).
Thank you, this has unblocked us on the Qt side. Now we're blocked on
botmaster network connectivity :-)
- Marcus: 15.4 is set up channel wise, updates will go in testing
occasionaly, if you need more ping me, no openqa setup yet
## Adrian - OBS
Rudi is fighting with host kernel issues in IBS. There are quite some
issues with the SP4 kernel.
x86_64 - seems like the issue not caused by SP4/numa.
Discussion about the Leap build pace.
Seems like switching the rebuild strategy would only result into more
issues.
Adrian: could be caused by numa. Let's focus on this once we'll have
stable workers again.
Please note that this mail was generated by a script.
The described changes are computed based on the x86_64 DVD.
The full online repo contains too many changes to be listed here.
Please check the known defects of this snapshot before upgrading:
https://openqa.opensuse.org/tests/overview?distri=opensuse&groupid=1&versio…
Please do not reply to this email to report issues, rather file a bug
on bugzilla.opensuse.org. For more information on filing bugs please
see https://en.opensuse.org/openSUSE:Submitting_bug_reports
Packages changed:
NetworkManager (1.32.12 -> 1.34.0)
edict
flatpak (1.12.4 -> 1.12.5)
gnome-maps (41.2 -> 41.4)
grep
kwin5
libuv (1.42.0 -> 1.43.0)
mutt
python-httpcore
python-httpx
rubygem-puma (5.5.2 -> 5.6.2)
xdg-dbus-proxy (0.1.2 -> 0.1.3)
xorg-x11-server
=== Details ===
==== NetworkManager ====
Version update (1.32.12 -> 1.34.0)
Subpackages: NetworkManager-lang libnm0 typelib-1_0-NM-1_0
- Packaging additions with Autotools replacement:
+ Add Meson build requirement and replace Automake macros with
Meson equivalent ones as autotools will be deprecated in the
future.
+ Options passed to Meson to mimmic our default preferences:
systemdsystemunitdir=%{_unitdir}, udev_dir=%{_udevdir},
dbus_conf_dir=%{_dbusconfdir}, iptables=%{_sbindir}/iptables,
dnsmasq=%{_sbindir}/dnsmasq, dnssec_trigger=%{_libexecdir}\
/dnssec-trigger-script, dist_version=%{version},
polkit_agent_helper_1=%{_libexecdir}/polkit-1\
/polkit-agent-helper-1, hostname_persist=suse, switchable
libaudit=%{libaudit_meson_opt}, iwd=true, pppd=%{_sbindir}\
/pppd, pppd_plugin_dir=%{_pppddir}, nm_cloud_setup=true,
bluez5_dun=true, netconfig=%{_sbindir}/netconfig,
dhclient=%{_sbindir}/dhclient, docs=true, switchable
tests=%{tests_meson_opt}, more_asserts=0, more_logging=false,
qt=false, and switchable teamdctl=true (teamctl is about to be
deprecated).
+ Add conditionalized audit pkgconfig module build requirement to
allow easier feature testing, and pass
'yes-disabled-by-default' to 'libaudit' Meson option. As an
observation: Meson defaults passing 'yes' to this feature.
+ Add explicit c++_compiler build requirement to avoid build
abortion.
+ Add explicit libselinux pkgconfig module build requirement
checked by Meson and was already being pulled in by some other
package.
+ Add polkit-gobject-1 pkgconfig module build requirement checked
by Meson and needed for user auth-polkit support.
+ Add mobile-broadband-provider-info pkgconfig module build
requirement checked by Meson and needed for ModemManager1
interface support.
+ Add sed command to fix server.conf config file location from
defaultdocdir/NetworkManager/examples to
defaultdocdir/NetworkManager.
+ Add useful %{_pppddir} and %{_dbusconfdir} macros to spec file,
while dropping no longed needed pppddir shell variable
definition and 'test -n "$pppddir" || exit 1' construct.
+ Add "< 1.21" version to libnm-glib-vpn1, libnm-glib4, and
libnm-util2 < 1.21 to main package's Obsoletes tags, following
packaging good practices to avoid future unwated behavior
regarding versioning schemes.
+ Replace %version macro with hardcoded "0.9.1" version to the
devel subpackage's %name-doc Obsoletes tag following packaging
good practices to avoid future unwanted behaviors regarding
versioning schemes (the doc subpackage was merged with the
devel one in the 0.9.0 release).
+ Pass "%{?no_lang_C}" to %find_lang macro to avoid stripping
any English translations (the default language) from main
package.
- Packaging deletions with Autotools replacement:
+ Remove data/server.conf from %doc macro in files section as it
no longer works with Meson.
+ Remove "rm" command on server.conf file following sed command
addition to fix the right location of the file.
+ Remove no longer useful conditional build abortion depending
whether or not netconfig support was found
'grep "with_netconfig='no'" config.log' since this file isn't
generated by Meson.
+ Remove no longer needed "find" command for GNU Libtool LA files
deletion.
+ Drop no longer needed libtool build requirement as Meson does
not use it.
+ Drop redundant sysconfig-netconfig build requirement as it does
not add anything to the build anymore.
+ Drop comment about suse-release build requirement not being
needed anymore, it's been deprecated for almost a decade now.
+ Drop setBadness for 'dbus-file-unauthorized' in the rpmlintrc:
the new dbus file has been whitelisted already (bsc#1194799).
- Split out NetworkManager-pppoe, needed to configure regular PPPoE
connections (Not very common, as most users have PPPoE routers
for the DSL connections).
- Update to version 1.34.0:
+ initrd: wait for both IPv4 and IPv6 with "ip=dhcp,dhcp6"
+ core: better handle sd-resolved errors when resolving hostnames
+ nmcli: fix import WireGuard profile with DNS domain and address
family disabled
+ ndisc: send router solicitations before expiry
+ policy: send earlier the ip configs to the DNS manager
+ core: support linking with LLD 13
+ wireguard: importing wg-quick configuration files with nmcli
no longer sets a negative, exclusive "dns-priority". This plays
better with common split DNS setups that use systemd-resolved.
Adjust the "dns-priority" to your liking after import yourself.
+ NetworkManager no longer listens for netlink events for traffic
control objects (qdiscs and filters).
+ core: add internal nm-priv-helper service for separating
privileges and have a way to drop capabilities from
NetworkManager daemon.
+ bond: add support for setting queue-id of bond port.
+ dns: support configuring DNS over TLS (DoT) with
systemd-resolved.
+ nmtui: add support for WireGuard profiles.
+ nmcli: add aliases `nmcli device up|down` beside
connect|disconnect.
+ conscious language: Deprecate 'Device.Slaves' D-Bus property in
favor of new 'Device.Ports' property. Depracate
'nm_device_*_get_slaves()' in favor of 'nm_device_get_ports()'
in libnm.
+ nmcli: invoking nmcli command without arguments will now show
'default' instead of null address in route4 or route6 section.
- Refresh patches with quilt.
- Replace addFilter("suse-branding-unversioned-requires*") from
rpmlintrc, with the current branding-requires-unversioned.
- Update our Supplements to current standard.
- Add the new internal nm-priv-helper.service to pre(un)/post(un)
handling.
==== edict ====
Subpackages: edict2 jmdict
- Update to snapshot 20220214
* No changelog recorded.
==== flatpak ====
Version update (1.12.4 -> 1.12.5)
Subpackages: libflatpak0 system-user-flatpak
- Update to version 1.12.5:
+ Detect and remove left-over data from
/var/lib/flatpak/appstream
+ Fix display bugs in flatpak history
+ Don't set up an unnecessary polkit agent for flatpak history
+ Don't propagate GStreamer-related environment variables into
sandbox
+ Updated translations.
==== gnome-maps ====
Version update (41.2 -> 41.4)
Subpackages: gnome-maps-lang
- Update to version 41.4:
+ Fix build with Meson 0.60+
+ Updated translations.
- Drop def20cbb26e59e5023fe157e691de48d7afe7210.patch: Fixed
upstream.
==== grep ====
Subpackages: grep-lang
- use glibc-locale to reenable less common locale tests (bsc#1195390)
==== kwin5 ====
Subpackages: kwin5-lang
- Add 43caf2539357a1f9d5b2668a8eff151517377a7e.patch: Fix mouse
pointer disappearing after using zoom effect on X11 (kde#448537,
boo#1195865)
==== libuv ====
Version update (1.42.0 -> 1.43.0)
- update to 1.43.0:
* protect fork in uv_spawn from signals
* drop only successfully sent packets post sendmmsg
* adjust stalebot deadline
* work around CIFS EPERM bug
* documentation fixes
* developer visible code fixes
==== mutt ====
Subpackages: mutt-doc mutt-lang
- For iconv glibc-locale should be installed
==== python-httpcore ====
- Only recommend and not require the installation of python-h2 because it is
seriously broken and prevents any other Python software to run correctly with -bb.
(See also: https://github.com/python-hyper/h2/issues/1236)
This also matches upstream's setup.py which lists h2 as optional
dependency in extra_requires.
==== python-httpx ====
- Only recommend and not require the installation of python-h2 because it is
seriously broken and prevents any other Python software to run correctly with -bb.
(See also: https://github.com/python-hyper/h2/issues/1236)
This also matches upstream's setup.py which lists h2 as optional
dependency in extra_requires.
==== rubygem-puma ====
Version update (5.5.2 -> 5.6.2)
- Update to version 5.6.2
https://github.com/advisories/GHSA-rmj8-8hhh-gv5hhttps://rubysec.com/advisories/CVE-2022-23634/
other changes:
https://github.com/puma/puma/releases/tag/v5.6.1https://github.com/puma/puma/releases/tag/v5.6.0
==== xdg-dbus-proxy ====
Version update (0.1.2 -> 0.1.3)
- Update to version 0.1.3:
+ Silence compiler warnings.
+ Fix build with musl.
==== xorg-x11-server ====
Subpackages: xorg-x11-server-Xvfb xorg-x11-server-extra xorg-x11-server-sdk
- U_xephyr-Don-t-check-for-SeatId-anymore.patch
* fix mouse/keyboard focus in Xephyr (boo#1194658,
github issue#1289)
Dear Package maintainers and hackers.
Below package(s) in openSUSE:Factory have been failing to build for at
least 4 weeks. We tried to send out notifications to the
configured bugowner/maintainers of the package(s), but so far no
fix has been submitted. This probably means that the
maintainer/bugowner did not yet find the time to look into the
matter and he/she would certainly appreciate help to get this
sorted.
- python-cirq
Unless somebody is stepping up and submitting fixes, the listed
package(s) are going to be removed from openSUSE:Factory.
Kind regards,
DimStar / Dominique Leuenberger <dimstar(a)opensuse.org>
Hi,
I had to rollback zu my snapshot 741, because beginning from 742 my setup with
three screens (laptop 4k, external 4k, external HD) stopped working. System
only supported two screens then and crashed any minute.
The update to version 20220212 broke the working system with wayland and kde.
This ist the product diff from snapper:
--- /.snapshots/741/snapshot/etc/products.d/openSUSE.prod 2022-02-11
09:42:32.000000000 +0100
+++ /.snapshots/742/snapshot/etc/products.d/openSUSE.prod 2022-02-13
07:37:56.000000000 +0100
@@ -2,10 +2,10 @@
<product schemeversion="0">
<vendor>openSUSE</vendor>
<name>openSUSE</name>
- <version>20220210</version>
+ <version>20220212</version>
<release>0</release>
<arch>x86_64</arch>
- <cpeid>cpe:/o:opensuse:opensuse:20220210</cpeid>
+ <cpeid>cpe:/o:opensuse:opensuse:20220212</cpeid>
<productline>openSUSE</productline>
<register>
<pool>
@@ -56,7 +56,7 @@
<defaultlang>en_US</defaultlang>
<default_obs_repository_name>openSUSE_Tumbleweed</
default_obs_repository_name>
<default_obs_download_url>https://download.opensuse.org/repositories</
default_obs_download_url>
- <releasepackage name="openSUSE-release" flag="EQ" version="20220210"
release="1435.1"/>
+ <releasepackage name="openSUSE-release" flag="EQ" version="20220212"
release="1440.1"/>
<distribution>openSUSE</distribution>
</installconfig>
<runtimeconfig/>
Operating System: openSUSE Tumbleweed 20220210
KDE Plasma Version: 5.24.0
KDE Frameworks Version: 5.90.0
Qt Version: 5.15.2
Kernel Version: 5.16.5-1-default (64-bit)
Graphics Platform: Wayland
Processors: 8 × 11th Gen Intel® Core™ i7-1165G7 @ 2.80GHz
Memory: 31.1 GiB of RAM
Graphics Processor: Mesa Intel® Xe Graphics
And no, using "initcall_blacklist=simpledrm_platform_driver_init" did not
help.
Regards,
Alexander
Please note that this mail was generated by a script.
The described changes are computed based on the x86_64 DVD.
The full online repo contains too many changes to be listed here.
Please check the known defects of this snapshot before upgrading:
https://openqa.opensuse.org/tests/overview?distri=opensuse&groupid=1&versio…
Please do not reply to this email to report issues, rather file a bug
on bugzilla.opensuse.org. For more information on filing bugs please
see https://en.opensuse.org/openSUSE:Submitting_bug_reports
Packages changed:
CoreFreq (1.87.4_k5.16.8_1 -> 1.89.3_k5.16.8_1)
dhcp
folks
gdb
glib2 (2.70.3 -> 2.70.4)
gtk4 (4.6.0 -> 4.6.1)
hexchat (2.16.0 -> 2.16.1)
libnvme (1.0~2 -> 1.0~3)
mozc
nvme-cli (2.0~2 -> 2.0~3)
python-dnspython
yast2-installation (4.4.39 -> 4.4.40)
=== Details ===
==== CoreFreq ====
Version update (1.87.4_k5.16.8_1 -> 1.89.3_k5.16.8_1)
- Update to version 1.89.3
* No changelog was made available by upstream
==== dhcp ====
Subpackages: dhcp-client dhcp-relay dhcp-server
- modify source if-up.d.dhcpd-restart-hook:
* fix option parsing
* do not call /usr/libexec/dhcp/dhcpd directly, use systemd for it
==== folks ====
Subpackages: folks-data folks-lang libfolks-eds26 libfolks26
- Add c44d8e323affd7f1043f300f3325b358cd5b5f0b.patch:
folks-generics: Add missing generic type argument.
- Update our Supplements to current standard.
- Use ldconfig_scriptlets macro for post(un) handling.
==== gdb ====
- Maintenance script qa.sh:
* Add KFAILs for PR28667.
- Patches added (jsc#SLE-22287):
* ibm-z-add-another-arch14-instruction.patch
* ibm-z-remove-lpswey-parameter.patch
- Fedora fixup patch added:
* fixup-gdb-6.5-bz243845-stale-testing-zombie-test.patch
==== glib2 ====
Version update (2.70.3 -> 2.70.4)
Subpackages: glib2-lang glib2-tools libgio-2_0-0 libgio-2_0-0-32bit libglib-2_0-0 libglib-2_0-0-32bit libgmodule-2_0-0 libgmodule-2_0-0-32bit libgobject-2_0-0 libgobject-2_0-0-32bit libgthread-2_0-0 libgthread-2_0-0-32bit
- Update to version 2.70.4:
+ Bugs fixed: glgo#GNOME/GLib!2462 ?Fix memory leak in
gio/gdbusauthmechanismsha1.c? to glib-2-70.
+ Updated translations.
==== gtk4 ====
Version update (4.6.0 -> 4.6.1)
Subpackages: gtk4-lang gtk4-schema libgtk-4-1 typelib-1_0-Gtk-4_0
- Update to version 4.6.1:
+ GtkFontChooser:
- Stop using PangoFc api
- Fix a crash
- Use new HarfBuzz api
+ GtkMenuButton: Update accessible description
+ GtkTextView: Fix intra-widget dnd
+ Printing: Fix an fd leak
+ Input:
- Make sure input methods get focus-in events
- Always flush events to avoid scroll event pileup
- Support hold events
- Update keysyms from libxkbcommon
+ Theme: Improve text selection legibility
+ Introspection: Add missing nullable annotations everywhere
+ Build:
- Make stack noexec again
- Avoid symbol leaks
- Drop unneeded script data
+ Wayland:
- Fix support for the new high-contrast setting
- Avoid redundant scale changes
- Fix DND hotspot handling
- Don't always restore the saved size when floating
+ Updated translations.
- Drop gtk4-make-our-stack-noexec.patch: Fixed upstream.
==== hexchat ====
Version update (2.16.0 -> 2.16.1)
Subpackages: hexchat-lang
- update to 2.16.1
* add -NOOVERRIDE flag to the GUI COLOR command
* add -q (quiet) flag to EXECWRITE command
* rename installed icon on Linux to match app-id (Fixes notification icon)
* fix escaping already escaped URLs when opening them
* fix Python scripts not being opened as UTF-8
* fix TIMER command supporting decimals regardless of locale
* fishlim: fix building with OpenSSL 3
==== libnvme ====
Version update (1.0~2 -> 1.0~3)
- Update to version v1.0-rc3:
* Properly create manuals/documentation
* Fix memleaks in __nvme_free_ns() and nvme_scan_subsystem()
* nvme: get log domain id included in Log Specific Identifier
* nvme: Add nulbaf(Number of Unique Capability LBA Formats) field on nvmd_id_ns
* ioctl: Add identify ioctl for CNS 09h, 0Ah
* nvme: Add Enhanced Controller Meta Data(FID: 0x7D)
* nvme: Add Supported Capacity Configuration List log page(LID: 0x11)
* tree: do not set dhchap_key to 'none'
* tree: restart controller lookup
* tree: fixup memory leak in nvme_scan_ctrl()
* Rename nvme_path_get_subsystem()
* Remove nvme_reset_topology()
- Use precompiled documentation instead regenerating it
==== mozc ====
Subpackages: fcitx-mozc ibus-mozc ibus-mozc-candidate-window mozc-gui-tools
- Remove /usr/share/pixmaps from filelist of fcitx5-mozc as zypper
complains the conflict with filesystems
- Enable fcitx5 build with _muiltibuild, as fcitx5 is included now
in FACTORY
==== nvme-cli ====
Version update (2.0~2 -> 2.0~3)
Subpackages: nvme-cli-bash-completion nvme-cli-zsh-completion
- Update to version v2.0-rc3:
* nvme-print: Fix json output for list-subsys
* nvme: Allow --verbose flag to increase log level
* Added telemetry log fetch support for SN810, SN530 and SN740 series NVMe SSDs through wdc vs-internal-log command
* nvmf: Remove --matching from systemd service file (bsc#1195665)
* nvme: Fix --force flag inversion (bsc#1195637)
* nvme: Add support for data area 4 to get-telemetry-log
* nvme: Add Supported Capacity Configuration List log page(LID: 0x11)
* nvme: Add Enhanced Controller Meta Data(FID: 0x7D)
* nvme-print: Add NVME_FEAT_FID_ENH_CTRL_METADATA to nvme_feature_to_string
* nvme-print: remove unused nvme_show_id_ctrl function
* nvme: Add nvm-id-ns-lba-format(CNS 0Ah) command from TP4095
* nvme: Add NVM Command Set specific identify namespace command
* nvme: Add id-ns-lba-format(CNS 09h) command from TP4095
* nvme: Add nulbaf(Number of Unique Capability LBA Formats) field on nvmd_id_ns
- Include precompiled documentation
==== python-dnspython ====
- Only recommend and not require the installation of python-h2 because it is
seriously broken and prevents any other Python software to run correctly with -bb.
(See also: https://github.com/python-hyper/h2/issues/1236)
This also matches upstream's setup.py which lists h2 as optional
dependency in extra_requires.
==== yast2-installation ====
Version update (4.4.39 -> 4.4.40)
- Set the Xft.dpi resource after running the X server,
before running yast to fix hidpi issues with Qt 5.15
(boo#1173451)
- 4.4.40
Dears,
I just upgraded to 20220212 kernel 5.16.8 and my screen remains black.
CRTL+ALT F1 move on TTY1 but my monitor goes out of sync.
I can blindly login into KDE using SSDM, invoke konsole via KRunner
and reboot, but I cannot give useful info cause I can't see anything
on the screen.
Now I'm working with the previous kernel 5.16.5.
NVIDIA 1660 + 470.103
I'm going to fire a bug ASAP.
Regards
--
Daniele
Hello!
Excuse this offtopic in factory mailing list.
But this feb 14th I want to endorse the FSFE campaing #Ilovefs [1]
sending a BIG thank you to everyone who makes possible openSUSE!!
Packagers, testers, translators, etc... and whole the people who help to
maintain this GNU/Linux distro! That way people with less technichal
knowledge like me, can enjoy using free software everyday!
Thanks a lot community!! And have a lot of fun!
[1] https://fsfe.org/activities/ilovefs/index.es.html
--
-------------------
GPG Key: 0xcc742e8dc9b7e22a
Fingerprint = 6FE2 3B1F AAC8 E5B7 63EA 88A9 CC74 2E8D C9B7 E22A
Aprende a proteger la privacidad de tu correo:
https://emailselfdefense.fsf.org/es/
Mi blog sobre openSUSE, GNU/Linux y software libre:
https://victorhckinthefreeworld.com/
Herramientas para proteger tu privacidad
https://victorhck.gitlab.io/privacytools-es/