Category: Fedora Project Community (page 1 of 36)

All articles in this category are relevant to ALL teams and subgroups across the entire Fedora Project community.

Community Update – Week 10 2026

This is a report created by CLE Team, which is a team containing community members working in various Fedora groups for example Infrastructure, Release Engineering, Quality etc. This team is also moving forward some initiatives inside Fedora project.

Week: 02 – 06 March 2026

Continue reading

Fedora Documentation translations not available from March 4th, 2026

Fedora Documentation translations will be put on hold from March 4th as the Fedora Localization Team has started the process of migration from pagure.io to the Fedora Forge. From the date, translation projects of the documentation (with ‘fedora-docs-l10n’ in name) will be gradually locked on the Fedora translation platform. Translation automation of the Docs website will also be stopped in the Fedora infrastructure. Consequently, there will be no translation updates available in the language versions on the Fedora Documentation.

Continue reading

Master Podman 5.8: Join Fedora Test Week

Want to learn the latest container tech? From February 27 to March 6, 2026, you can join the Podman 5.8 Test Day. It is the perfect time to explore new features and see how the future of Fedora is built.

Continue reading

Community Update – Week 07 2026

This is a report created by CLE Team, which is a team containing community members working in various Fedora groups for example Infrastructure, Release Engineering, Quality etc. This team is also moving forward some initiatives inside Fedora project.

Week: 09 – 13 February 2026

Continue reading

Flock CFP Extended to February 8

The deadline for the Flock 2026 CFP has been extended to February 8.

We are returning to the heart of Europe (June 14–16) to define the next era of our operating system. Whether you are a kernel hacker, a community organizer, or an emerging local-first AI enthusiast, Flock is where the roadmap for the next year in Fedora gets written.

If you haven’t submitted yet, here is why you should.

Why Submit to the Flock 2026 CFP?

This year isn’t just about maintenance; it is about architecture. As we look toward Fedora Linux 45 and 46, we are also laying the upstream foundation for Enterprise Linux 11. This includes RHEL 11, CentOS Stream 11, EPEL 11, and the downstream rebuilder ecosystem around the projects. The conversations happening in Prague will play a part in the next decade of modern Linux enterprise computing.

To guide the schedule, we are looking for submissions across our Four Foundations:

1. 🚀 Freedom (The Open Frontier)

How are we pushing the boundaries of what Open Source can do? We are looking for Flock 2026 CFP submissions covering:

  • Open Source AI: PyTorch, vLLM, and the AI supply chain.
  • RISC-V: Enabling Fedora on the next generation of open silicon.
  • Open Hardware: Drivers, firmware, and board support. GPU enablement?

2. 🤝 Friends (Our Fedora Story)

Code is important, but community is critical. We need sessions that focus on the human element:

  • Mentorship: Case studies on moving contributors from “Lurker” to “Leader.”
  • Inclusion: Strategies for building a more globally-inclusive project.
  • Community Ops: The logistics and operations of running a massive global project.

3. ⚙️ Features (Engineering Core)

The “Nitty-Gritty” of the distribution. If you work on the tools that build the OS every six months, we want you on stage:

  • Release Engineering: Improvements to Dist-git, packager tools ecosystem, and the build pipeline. Distribution security. Konflux?
  • Quality Assurance: Automated testing and CI/CD workflows.
  • Packaging: Best practices for RPM, Flatpak, and OCI containers.

4. 🔮 First (Blueprint for the Future)

Fedora is “First.” This track is for the visionaries:

  • Strategy: What does Fedora look like in 2028?
  • Downstream Alignment: How upstream changes flow downstream.
  • New Spins: Atomic Desktops, Cloud Native innovations, and new Editions.

Desktop Test Days: A week for KDE and another for GNOME

Desktop Test Days: A week for KDE and another for GNOME

Two Test Days are planned for upcoming desktop releases: KDE Plasma 6.6 on 2026-02-02 and GNOME 50 on 2026-02-11.

Join the KDE Plasma 6.6 Test Day on February 2nd to help us refine the latest Plasma features: https://fedoraproject.org/wiki/Test_Day:2026-02-02_KDE_Plasma_6.6

Help polish the next generation of the GNOME desktop during the GNOME 50 Test Day on February 11th: https://fedoraproject.org/wiki/Test_Day:2026-02-11_GNOME_50_Desktop

You can contribute to a stable Fedora release by testing these new environments and reporting your results.

Community Update – Week 05 2026

This is a report created by CLE Team, which is a team containing community members working in various Fedora groups for example Infrastructure, Release Engineering, Quality etc. This team is also moving forward some initiatives inside Fedora project.

Week: 26 – 30 January 2026

Continue reading

2 Weeks Left: The Flock 2026 CFP Ends Feb 2

Prague is calling! The deadline for the Flock 2026 CFP (Call for Proposals) is fast approaching. You have until Monday, February 2nd to submit your session ideas for Fedora’s premier contributor conference.

We are returning to the heart of Europe (June 14–16) to define the next era of our operating system. Whether you are a kernel hacker, a community organizer, or an emerging local-first AI enthusiast, Flock is where the roadmap for the next year in Fedora gets written.

If you haven’t submitted yet, here is why you should.

Continue reading

Improve traceability with the tmt web app

The tmt web app is a simple web application that makes it easy to explore and share test and plan metadata without needing to clone repositories or run tmt commands locally.

At the beginning, there was the following user story:

As a tester, I need to be able to link the test case(s) verifying the issue so that anyone can easily find the tests for the verification.

Traceability is an important aspect of the testing process. It is essential to have a bi-directional link between test coverage and issues covered by those tests so that we can easily:

  • identify issues covered by the given test
  • locate tests covering given issues

Link issue from test

Implementing the first direction in tmt was relatively easy: We just defined a standard way to store links with their relations. This is covered by the core link key which holds a list of relation:link pairs. Here’s an example test metadata:

summary: Verify correct escaping of special characters
test: ./test.sh
link:
  - verifies: https://issues.redhat.com/browse/TT-206

Link test from issue

The solution for the second direction was not that straightforward. Thanks to its distributed nature, tmt does not have any central place where a Jira issue could point to. There is no server which keeps information about all tests and stores a unique id number for each which could be used in the link.

Instead of integers, we’re using the fmf id as the unique identifier. It contains url of the git repository and name of the test. Optionally, it can also define ref instead of using the default branch and path to the fmf tree if it’s not in the git root.

The tmt web app accepts an fmf id of the test or plan or both, clones the git repository, extracts the metadata, and returns the data in your preferred format:

  • HTML for human-readable viewing
  • JSON or YAML for programmatic access

The service is currently available at the following location:

Here’s an example of what the parameters would look like when requesting information about a test in the default branch of a git repository:

By default, a human-readable HTML version of the output is provided to the user. Include the format parameter in order to choose your preferred format:

It is possible to link a test, a plan, or both test and plan. The last option can be useful when a single test is executed under several plans. Here’s how the human readable version looks like:

Create new tests

In order to make the linking as smooth as possible, the tmt test create command was extended to allow automated linking to Jira issues.

First make sure you have the .config/tmt/link.fmf config prepared. Check the Link Issues section for more details about the configuration.

issue-tracker:
  - type: jira
    url: https://issues.redhat.com
    tmt-web-url: https://tmt.testing-farm.io/
    token: ***

When creating a new test, use the --link option to provide the issue which is covered by the test:

tmt test create /tests/area/feature --template shell --link verifies:https://issues.redhat.com/browse/TT-206

The link will be added to both test metadata and the Jira issue. Just note that the Jira link will be working once you push the changes to the remote repository.

Link existing objects

It’s also possible to use the tmt link command to link issue with already existing tests or plans:

tmt link --link verifies:https://issues.redhat.com/browse/TT-206 /tests/core/escaping

If both test and plan should be linked to the issue, provide both test and plan as the names:

tmt link --link verifies:https://issues.redhat.com/browse/TT-206 /tests/core/escaping /plans/features/core

This is how the created links would look like in Jira:

Closing notes

As a proof of concept, for now there is only a single public instance of the tmt web app deployed, so be aware that it can only explore git repositories that are publicly available. For the future we consider creating an internal instance in order to be able to access internal repositories as well.

We are looking for early feedback. If you run into any problems or any missing features, please let us know by filing a new issue. Thanks!

Test Day:2025-12-02 FreeIPA-WebUI Test Day

FreeIPA Web UI Test Week

The FreeIPA WebUI became new interface for freeipa

How to Participate during testday

  1. Test the WebUI – Follow the installation instructions on the Test Day wiki page
  2. Explore and experiment – Try different features and workflows
  3. Share your thoughts here – Post your comments, ideas, and UX findings in this discussion
  4. File bugs – If you encounter actual bugs, please file them in the upstream bug tracker

Olderposts

Copyright © 2026 Fedora Community Blog

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.

Theme by Anders NorenUp ↑