obsolete

pdc-client-1.8.0-4.fc25

FEDORA-2017-697b3fa6ad created by lholecek 7 years ago for Fedora 25

Notable Changes

All errors are reported by pdc_client on stderr output and exit code is non-zero if an error occurs.

It possible to override default plugin paths with PDC_CLIENT_PLUGIN_PATH environment variable. E.g.

export PDC_CLIENT_PLUGIN_PATHS="$HOME/pdc-plugins:/usr/share/pdc-client/plugins"
pdc --help

Simpler access to a specific page with pdc --page.

Method PDCClient.get_paged() in Python API is deprecated and can be replaced by results() method. Both methods return iterator simplifying accessing to pages with results.

client = PDCClient(server)

# Old way (deprecated)
for result in client.get_paged(client.products):
    ...

# New way
for result in client.products.results():
    ...

Simpler access to endpoints with dashes in name.

client = PDCClient(server)

# Old way
branches = client['component-branches']

# New way
branches = client.component_branches

Changelog

  • Add the page argument on pdc
  • Get endpoints containing dash as attributes
  • Override plugin paths with PDC_CLIENT_PLUGIN_PATH
  • Update documentation
  • Add documentation link to README file
  • Add description of page_size=-1 in help doc
  • Add PDCClient tests and fix the discovered bugs
  • Close plugin files when not needed
  • Fix printing errors and exit code for pdc_client
  • Install bytecode for plugins only for correct version of Python

This update has been submitted for testing by lholecek.

7 years ago
User Icon chcao provided feedback 7 years ago
karma
User Icon meli commented & provided feedback 7 years ago
karma

looks good for qe

This update has been pushed to testing.

7 years ago

This update has reached 7 days in testing and can be pushed to stable now if the maintainer wishes

7 years ago

Please login to add feedback.

Metadata
Type
enhancement
Karma
2
Signed
Content Type
RPM
Test Gating
Autopush Settings
Unstable by Karma
-3
Stable by Karma
3
Stable by Time
disabled
Thresholds
Minimum Karma
+1
Minimum Testing
7 days
Dates
submitted
7 years ago
in testing
7 years ago

Automated Test Results