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

Lobster-codebeamer supports items without summary #62

Merged
merged 3 commits into from
Aug 5, 2024
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
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,15 @@

### 0.9.18-dev

* The `lobster-codebeamer` tool now allows items without summary
phiwuu marked this conversation as resolved.
Show resolved Hide resolved

* The `lobster-codebeamer` tool now uses codebeamer api v3.
Please note that the api v3 returns the value "Unset" for a codebeamer
item status if the status is actually empty. The api v1 did not return
any value at all for an item with a missing status. This means that the
resulting lobster file will now contain "Unset" as status information,
too, instead of `Null`.

### 0.9.18-dev



### 0.9.17

* The `lobster-python` tool now adds the line number to the function
Expand Down
3 changes: 0 additions & 3 deletions lobster/tools/codebeamer/codebeamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,6 @@ def to_lobster(cb_config, cb_item):
text = None,
status = status)

if "name" not in cb_item:
req.error("Item lacks a summary text")

return req


Expand Down
Loading