FAQ | This is a LIVE service | Changelog

Skip to content
Commits on Source (4)
......@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.3.0] - 2023-03-30
### Added
- Card API /card-identifiers filter by is_highest_primary_identifier
### Changed
- Card API /card-identifiers delete operation returns 200
## [1.2.0] - 2023-03-16
### Added
......
......@@ -8,7 +8,7 @@ PACKAGE_DESCRIPTION = (
"A module containing helpers and shared code related to identity systems within UIS, "
"University of Cambridge."
)
PACKAGE_VERSION = "1.2.0"
PACKAGE_VERSION = "1.3.0"
PACKAGE_URL = "https://gitlab.developers.cam.ac.uk/uis/devops/iam/identity-lib"
......
280115a1f264f2a3a5b61d16046c57e1fc9fd0ef
\ No newline at end of file
6a7f39b11c79b2a4b777e282d4e67083ad5c88d3
\ No newline at end of file
......@@ -1122,6 +1122,11 @@ paths:
in: query
name: scheme
type: string
- description: Filter is_highest_primary_identifier
format: boolean
in: query
name: is_highest_primary_identifier
type: boolean
- description: The pagination cursor value.
in: query
name: cursor
......@@ -1193,10 +1198,14 @@ paths:
operationId: v1beta1_card-identifiers_delete
parameters: []
responses:
"204":
"200":
description: ""
schema:
properties: {}
properties:
detail:
description: string
type: string
title: CardIdentifierDestroyResponseType
type: object
"400":
description: Invalid input.
......