Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Second DRS Fix #297

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0f83a11
selective access types and defaulting
willronchetti Aug 25, 2023
a7bcaae
small changes, take schema filename
willronchetti Aug 28, 2023
54eb15a
continue drs
willronchetti Jun 6, 2024
67f883c
add fix for drs json renderer
willronchetti Jun 6, 2024
0d2f3ce
add back cl
willronchetti Jun 6, 2024
81824b5
add test
willronchetti Jun 7, 2024
2d128d1
fix static checks
willronchetti Jun 7, 2024
54253c9
Merge branch 'master' into drs
willronchetti Jun 7, 2024
0ce2041
remove auth check on route
willronchetti Jun 7, 2024
feb13fe
remove unused import
willronchetti Jun 7, 2024
1738c10
Merge branch 'master' into drs
willronchetti Jun 26, 2024
dc0a67a
remove drs_id validation
willronchetti Jun 26, 2024
a406fc9
Merge branch 'master' into drs
willronchetti Jun 26, 2024
1b0e6d5
refactor unique key usage for base compatibility with drs
willronchetti Jun 27, 2024
bd53c1c
Merge branch 'drs' of https://github.com/4dn-dcic/snovault into drs
willronchetti Jun 27, 2024
d190218
push beta
willronchetti Jun 27, 2024
8ecbe8e
merge master
willronchetti Aug 14, 2024
b3dbb8d
repair drs for 1.3
willronchetti Aug 16, 2024
814e2e0
version
willronchetti Aug 16, 2024
b83041f
always reference drs id (accession) in uri
willronchetti Aug 27, 2024
79f0606
allow object_id for options
willronchetti Aug 28, 2024
d8036a6
fix options path
willronchetti Aug 28, 2024
03092f1
do not check content type for options since unused
willronchetti Aug 29, 2024
d4c8d96
merged in master
dmichaels-harvard Oct 10, 2024
4420556
lint fix
dmichaels-harvard Oct 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ snovault
Change Log
----------

11.16.1
=======

* Update ``drs`` validation to remove drs_uri


11.16.0
=======

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dcicsnovault"
version = "11.16.0"
version = "11.16.1"
description = "Storage support for 4DN Data Portals."
authors = ["4DN-DCIC Team <[email protected]>"]
license = "MIT"
Expand Down
1 change: 0 additions & 1 deletion snovault/drs.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
REQUIRED_FIELDS = [
'id',
'created_time',
'drs_id',
'self_uri',
'size',
'checksums'
Expand Down
Loading