Skip to content

v5.7.0

Compare
Choose a tag to compare
@elrayle elrayle released this 04 Nov 15:49
· 102 commits to main since this release

Steps to update

bundle update qa

No additional steps are required.

New features

Include URI in results

You can include a URI as part of the term attributes in yml defined local authorities.

:terms:
    - :id: A1
      :term: My Term Label
      :uri: http://my.domain/terms/a1

Search for q=My Term will return results...

[ { "id": "A1", "term": "My Term Label", "uri": "http://my.domain/terms/a1" } ]

Use fetch for IDs that are URIs

You can find a term by URI when the term ID is a URI.

If config/authorities/my_terms.yml has...

:terms:
    - :id: http://my.domain/terms/a1
      :term: My Term Label
      :uri: http://my.domain/terms/a1

You can fetch a term using...

http://localhost/qa/fetch/local/my_terms?uri=http://my.domain/terms/a1

Changelog

Full Changelog

Closed issues:

  • RENAME: Update CONTRIBUTING.md to match the maintenance template #340
  • RENAME: Add language to README about branch naming #337
  • RENAME: Add Circle CI step that fails if branch name is master #336
  • RENAME master branch to main #335
  • Rails 6.0? #287

Merged pull requests:

  • add fetch action allowing for uri parameter #343 (elrayle)
  • add optional URI to locally defined yml file authorities #342 (elrayle)
  • Update CONTRIBUTING.md to match the maintenance template #341 (elrayle)
  • prevent master branch; provide info on branch naming in README #339 (elrayle)