Skip to content

Commit

Permalink
📦 release: v16.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
slint committed Dec 2, 2024
1 parent e9c2704 commit a736fb5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@
Changes
=======

Version v16.3.1 (released 2024-12-02)

- deposit-ui: make sure we handle null/undefined for SchemaField
- deposit-ui: skip unecessary removal of empty values in serialization
* This initial removal of empty values can be dangerous, since the
`record` at this point is a UI object representation that could
potentially include circular references or very deeply nested objects.
Since `_removeEmptyValues` is recursive this can lead to stack
overflow errors.
- deposit-ui: log errors on all deposit form actions
* This can help with debugging unexpected non-network related errors
that might occur in the logic before/after a REST API requests.

Version v16.3.0 (released 2024-11-27)

- github: added default license from Github API
Expand Down
2 changes: 1 addition & 1 deletion invenio_rdm_records/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@

from .ext import InvenioRDMRecords

__version__ = "16.3.0"
__version__ = "16.3.1"

__all__ = ("__version__", "InvenioRDMRecords")
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is part of Invenio-RDM-Records
// Copyright (C) 2020-2023 CERN.
// Copyright (C) 2020-2024 CERN.
// Copyright (C) 2020-2022 Northwestern University.
//
// Invenio-RDM-Records is free software; you can redistribute it and/or modify it
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is part of Invenio-RDM-Records
// Copyright (C) 2020-2023 CERN.
// Copyright (C) 2020-2024 CERN.
// Copyright (C) 2020-2022 Northwestern University.
//
// Invenio-RDM-Records is free software; you can redistribute it and/or modify it
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is part of Invenio-RDM-Records
// Copyright (C) 2020-2023 CERN.
// Copyright (C) 2020-2024 CERN.
// Copyright (C) 2020-2022 Northwestern University.
//
// Invenio-RDM-Records is free software; you can redistribute it and/or modify it
Expand Down

0 comments on commit a736fb5

Please sign in to comment.