Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.19.3 #3722

Merged
merged 3 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)

set(MIR_VERSION_MAJOR 2)
set(MIR_VERSION_MINOR 19)
set(MIR_VERSION_PATCH 2)
set(MIR_VERSION_PATCH 3)

add_compile_definitions(MIR_VERSION_MAJOR=${MIR_VERSION_MAJOR})
add_compile_definitions(MIR_VERSION_MINOR=${MIR_VERSION_MINOR})
Expand Down
10 changes: 10 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
mir (2.19.3) UNRELEASED; urgency=medium

* New upstream release 2.19.3

- Bug fixes:
. Don't leak VirtualInputDevice keyboards (#3720)
. kms: skip `simple-framebuffer` devices (#3721)

-- Michał Sawicz <[email protected]> Thu, 16 Jan 2025 15:07:09 +0100

mir (2.19.2) UNRELEASED; urgency=medium

* New upstream release 2.19.2
Expand Down
6 changes: 5 additions & 1 deletion src/platforms/atomic-kms/server/kms/quirks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,12 @@ class mga::Quirks::Impl
*
* At least as of drivers ≤ version 550, the NVIDIA atomic implementation is buggy in a way that prevents
* Mir from working. Quirk off atomic-kms on NVIDIA.
*
* Simple-framebuffer should be evicted before Mir even gets there.
* https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2084046
* https://github.com/canonical/mir/issues/3710
*/
std::unordered_set<std::string> drivers_to_skip = { "nvidia", "ast" };
std::unordered_set<std::string> drivers_to_skip = { "nvidia", "ast", "simple-framebuffer"};
std::unordered_set<std::string> devnodes_to_skip;
// We know this is currently useful for virtio_gpu, vc4-drm and v3d
std::unordered_set<std::string> skip_modesetting_support = { "virtio_gpu", "vc4-drm", "v3d" };
Expand Down
6 changes: 5 additions & 1 deletion src/platforms/gbm-kms/server/kms/quirks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,12 @@ class mgg::Quirks::Impl
*
* At least as of drivers ≤ version 550, the NVIDIA gbm implementation is buggy in a way that prevents
* Mir from working. Quirk off gbm-kms on NVIDIA.
*
* Simple-framebuffer should be evicted before Mir even gets there.
* https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2084046
* https://github.com/canonical/mir/issues/3710
*/
std::unordered_set<std::string> drivers_to_skip = { "nvidia", "ast" };
std::unordered_set<std::string> drivers_to_skip = { "nvidia", "ast", "simple-framebuffer"};
std::unordered_set<std::string> devnodes_to_skip;
// We know this is currently useful for virtio_gpu, vc4-drm and v3d
std::unordered_set<std::string> skip_modesetting_support = { "virtio_gpu", "vc4-drm", "v3d" };
Expand Down
1 change: 1 addition & 0 deletions src/server/frontend_wayland/text_input_v3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ mf::TextInputV3::TextInputV3(
mf::TextInputV3::~TextInputV3()
{
seat.remove_focus_listener(client, this);
ctx->device_registry->remove_device(keyboard_device);
ctx->text_input_hub->deactivate_handler(handler);
}

Expand Down
Loading