diff --git a/manifests/nodejs.yml b/manifests/nodejs.yml index 9d5e38f6a33..b6aac6b7a6a 100644 --- a/manifests/nodejs.yml +++ b/manifests/nodejs.yml @@ -83,6 +83,7 @@ refs: - &ref_5_80_0 '>=5.80.0' - &ref_5_81_0 '>=5.81.0' - &ref_5_83_0 '>=5.83.0' + - &ref_5_85_0 '>=5.85.0' - &ref_5_87_0 '>=5.87.0' # Debugger: Capture expressions support - &ref_5_88_0 '>=5.88.0' - &ref_5_89_0 '>=5.89.0' @@ -1572,8 +1573,14 @@ manifest: tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_default_max_length: bug (DEBUG-4611) tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_default_max_reference_depth: bug (DEBUG-4611) tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_log_line_snapshot: bug (DEBUG-4611) - tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_log_line_snapshot_debug_track: missing_feature (DEBUG-4345) - tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_log_line_snapshot_new_destination: missing_feature (DEBUG-4345) + tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_log_line_snapshot_debug_track: + - weblog_declaration: + "*": *ref_5_85_0 + nextjs: irrelevant + tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_log_line_snapshot_new_destination: + - weblog_declaration: + "*": *ref_5_85_0 + nextjs: irrelevant tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_process_tags_snapshot: missing_feature (Not yet implemented) tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_process_tags_snapshot_svc: missing_feature tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_span_decoration_line_snapshot: missing_feature (Not yet implemented) diff --git a/manifests/ruby.yml b/manifests/ruby.yml index 60419b1103e..f488cf36de8 100644 --- a/manifests/ruby.yml +++ b/manifests/ruby.yml @@ -1058,8 +1058,6 @@ manifest: - declaration: bug (DEBUG-3747) component_version: <2.28.0 weblog: [rails72, uds-rails, rails80] - - declaration: bug (DEBUG-3747) - excluded_weblog: [rails72, uds-rails, rails80] tests/debugger/test_debugger_probe_budgets.py::Test_Debugger_Probe_Budgets: - weblog_declaration: "*": irrelevant @@ -1074,18 +1072,14 @@ manifest: rails80: v2.8.0 uds-rails: v2.12.0 tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_default_max_reference_depth: bug (DEBUG-4675) - tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_log_line_snapshot_debug_track: # Modified by easy win activation script + tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_log_line_snapshot_debug_track: - declaration: missing_feature (DEBUG-4343) - component_version: <2.27.0 + component_version: <2.24.0 weblog: [rails80, rails72, uds-rails] + tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_log_line_snapshot_new_destination: - declaration: missing_feature (DEBUG-4343) - excluded_weblog: [rails80, rails72, uds-rails] - tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_log_line_snapshot_new_destination: # Modified by easy win activation script - - declaration: missing_feature (DEBUG-4343) - component_version: <2.27.0 + component_version: <2.24.0 weblog: [rails80, rails72, uds-rails] - - declaration: missing_feature (DEBUG-4343) - excluded_weblog: [rails80, rails72, uds-rails] tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_process_tags_snapshot_svc: missing_feature tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots::test_span_decoration_line_snapshot: missing_feature (Not yet implemented) tests/debugger/test_debugger_probe_snapshot.py::Test_Debugger_Line_Probe_Snaphots_With_SCM: diff --git a/tests/schemas/test_schemas.py b/tests/schemas/test_schemas.py index 025b8994d7e..96e61a0aae3 100644 --- a/tests/schemas/test_schemas.py +++ b/tests/schemas/test_schemas.py @@ -68,6 +68,12 @@ def test_library(self): condition=context.library == "dotnet", ticket="DEBUG-3734", ), + SchemaBug( + endpoint="/debugger/v2/input", + data_path="$[].debugger.snapshot.probe.location.method", + condition=context.library == "dotnet", + ticket="DEBUG-3734", + ), SchemaBug( endpoint="/symdb/v1/input", data_path=None, diff --git a/tests/schemas/utils/library/debugger/v2/input-request.json b/tests/schemas/utils/library/debugger/v2/input-request.json new file mode 100644 index 00000000000..8bdd049a9d8 --- /dev/null +++ b/tests/schemas/utils/library/debugger/v2/input-request.json @@ -0,0 +1,4 @@ +{ + "$id": "/library/debugger/v2/input-request.json", + "$ref": "/library/debugger/v1/input-request.json" +}