Skip to content

Commit 13ff4ce

Browse files
committed
Release v2.2.0
Signed-off-by: Stephen Brennan <[email protected]>
1 parent 5830841 commit 13ff4ce

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

buildrpm/python-drgn-tools.spec

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222
Name: python-drgn-tools
23-
Version: 2.1.0
23+
Version: 2.2.0
2424
Release: 1%{?dist}
2525
Summary: Helper scripts for drgn, containing the corelens utility
2626

@@ -59,7 +59,7 @@ a running kernel image (via /proc/kcore).}
5959
# The drgn dependency can be fulfilled by drgn with, or without, CTF support.
6060
# However, drgn-tools is tied to specific drgn releases.
6161
%global drgn_min 0.0.32
62-
%global drgn_max 0.0.33
62+
%global drgn_max 0.0.34
6363

6464
%package -n drgn-tools
6565
Summary: %{summary}
@@ -135,6 +135,27 @@ rm %{buildroot}/usr/bin/DRGN
135135
%endif
136136

137137
%changelog
138+
* Tue Nov 04 2025 Stephen Brennan <[email protected]> - 2.2.0-1
139+
- Rework drgn-tools debuginfo loading to be based on drgn's Module API (Stephen Brennan)
140+
- Create "oracle" drgn plugin which encapsulates drgn-tools debuginfo logic (Stephen Brennan)
141+
- New corelens module: "pstack" for printing userspace stack traces (Stephen Brennan)
142+
- Corelens module: equivalent to oled memstate [Orabug: 37357348] (Yassine Larhrissi)
143+
- Corelens fails accessing rds_ib_devices [Orabug: 37502613] (Stephen Brennan)
144+
- Print ioeventfd, iobus, vmstat and vcpustat information in kvm corelens module. [Orabug: 37713468] (Siddhi Katage)
145+
- crash in corelens rds module [Orabug: 38225228] (Stephen Brennan)
146+
- test_dump_page_cache_pages_pinning_cgroups produces too much output [Orabug: 37974100] (Stephen Brennan)
147+
- Test failure for module_build_id() in Linux 6.14 [Orabug: 37973187] (Stephen Brennan)
148+
- False negatives in module debuginfo detection [Orabug: 37894875] (Stephen Brennan)
149+
- Make md helper not crash with uninitialized percpu refcount [Orabug: 37968889] (Junxiao Bi)
150+
- UEK8, drgn-tools-2.1.0-1.el9.noarch : Error with corelens binary when run with /proc/kcore or vmcore [Orabug: 37894852] (Stephen Brennan)
151+
- drgn-tools-2.1.0-1.el9: python traceback when ctrl-c done with corelens command [Orabug: 37894865] (Stephen Brennan)
152+
- Mountinfo fails on a (nearly) empty struct mount [Orabug: 37911508] (Stephen Brennan)
153+
- lockup: detect the blocker for process hang in RCU grace period [Orabug: 37899681] (Richard Li)
154+
- Add vectorinfo module to drgn_tools [Orabug: 38383772] (Srivathsa Dara)
155+
- corelens: dump panic bt [Orabug: 38074929] (Richard Li)
156+
- Enhance rds helper to extract rdma resources and RDS QP state [Orabug: 38221449] (Anand Khoje)
157+
- Add sosreport module for collecting corelens reports (Anil Palakunnathu Kunnengeri)
158+
138159
* Thu Apr 17 2025 Stephen Brennan <[email protected]> - 2.1.0-1
139160
- Add helper and module for unsubmitted pending work (Imran Khan)
140161
- Add -V option to display version, and include the version in corelens reports (Stephen Brennan) [Orabug: 37503503]

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
long_description = "drgn helper script repository"
1111

12-
RELEASE_VERSION = "2.1.0"
12+
RELEASE_VERSION = "2.2.0"
1313
PACKAGES = ["drgn_tools"]
1414

1515

@@ -88,7 +88,7 @@ def get_version():
8888
description="drgn helper script repository",
8989
long_description=long_description,
9090
install_requires=[
91-
"drgn>=0.0.32,<0.0.33",
91+
"drgn>=0.0.32,<0.0.34",
9292
],
9393
url="https://github.com/oracle-samples/drgn-tools",
9494
author="Oracle Linux Sustaining Engineering Team",
@@ -105,5 +105,6 @@ def get_version():
105105
"DRGN=drgn_tools.cli:main",
106106
"corelens=drgn_tools.corelens:main",
107107
],
108+
"drgn.plugins": ["oracle=drgn_tools.debuginfo"],
108109
},
109110
)

0 commit comments

Comments
 (0)