Skip to content

Latest commit

 

History

History
56 lines (46 loc) · 1.57 KB

RELEASENOTES.md

File metadata and controls

56 lines (46 loc) · 1.57 KB

RELEASE NOTES

PAR - Preservation Action Registries

PAR is made available under the Apache v2.0 license, see the file LICENSE for details.

PAR 1.2.0

2023-06-08

  • API definition now written in OpenAPI 3.1 not Swagger 2.x. [#58] [#61] Simple version change and updating of example to examples in the API definition.
  • GitHub actions to replace Travis. [#56]
  • NotImplemented response. [#59] This was achieved by adding a standard response component to the API definition, so:
components:
responses:
NotImplemented:
    description: The method called is currently not implemented by this server.
    content: {}
Unauthorized:
    description: If no Authorization header has been supplied
    content: {}
Forbidden:
    description: If the supplied Authorization header does not reference a user
    with write access to this registry.
    content: {}
  • Format signature encoding support. [#62] Added an enumerated encoding property to the format signature entity:
"encoding": {
    "default": "PRONOM",
    "enum": [
    "PRONOM",
    "ASCII",
    "HEX",
    "REGEX_PERL"
    ],
    "type": "string"
  • API document publication. [#63]
  • Schema versioning and publication. [#68]