bug_info: Get Information about Selected Bugs

View source: R/bug_info.R

bug_infoR Documentation

Get Information about Selected Bugs

Description

Returns more detailed bug information than list_bugs. By default, the R bug tracker is queried.

Usage

bug_info(bug_ids, base_url = "https://bugs.r-project.org/bugzilla3/rest/bug/")

Arguments

bug_ids

One or more numeric (or coercible to numeric) bug IDs

base_url

URL to Bugzilla REST API (get bug). Defaults to R Bugzilla.

Value

a tibble, with rows representing bugs (in the order specified by the bug_ids argument) and the following columns representing their properties:

id

Unique bug ID (integer).

summary

Short description of bug (character).

creator

Who created the bug report? (name, character)

is_open

Is the bug open? (logical)

product

Product where the bug occurs (character).

component

Which part of the product is affected? (character)

assignee

To whom is the bug assigned? (name, character)

status

Status of bug (character): "UNCONFIRMED", "NEW", "CLOSED", ...

is_confirmed

Has the bug been confirmed? (logical)

resolution

Together with "status", defines the current state of the bug: "FIXED", "WONTFIX", "WORKSFORME", "INVALID", ...

created

Date and time of creation (POSIXct).

changed

Date and time of last change (POSIXct).

alias

Any aliases the bug may have, separated by ";" (character).

version

Version of product related to bug (character).

os

Operating system where the bug occurs (character).

hardware

Type of hardware exhibiting the bug (character).

priority

Priority of the bug (character). Typically "P1" means the highest priority and "P5" the lowest priority.

severity

Severity of the bug (character): "Blocker", "Critical", "Major", "Normal", "Minor", "Trivial", "Enhancement".

url

URL related to bug (character, possibly empty "").

depends_on

A list of bugs (numeric ID as character) which have to be solved before this one. Uses ";" as separator. Possibly empty "".

blocks

A list of bugs which cannot be solved before this one. Formatted like "depends_on".

cc

List of interested parties subscribed to updates about the bug report. A character string, with people (names only) separated by ";". Possibly empty "".

see_also

List of URLs pointing to related bug reports. Uses the space " " as separator. Possibly empty "".

dupe_of

If the bug report is a duplicate of a previous issue, this contains the bug ID of the earlier report as a character string. Otherwise an empty string: "".

Examples

## Not run: 
info1 <- bug_info(1)

## End(Not run)

mvkorpel/bugtractr documentation built on Aug. 31, 2022, 1:16 p.m.