-
Notifications
You must be signed in to change notification settings - Fork 496
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
Auxiliary File API Enhancements #8237
Merged
kcondon
merged 19 commits into
IQSS:develop
from
QualitativeDataRepository:IQSS/8235-auxfile_enhancements
Nov 24, 2021
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
1941b14
add list/delete, remove tabular restriction, improve error handling
qqmyers d179fa4
document
qqmyers db9e08a
release note draft
qqmyers 7464a1d
adding major use cases reminder
djbrooke dedd9f8
Merge branch 'develop' into IQSS/8235-auxfile_enhancements #8235
pdurbin 871c83c
link to OpenDP website #8235
pdurbin 59d0cbb
re-add "list aux files by origin" method dropped by dedd9f8 merge #8235
qqmyers b66fb55
add tests for "delete aux file" and "list aux by origin" #8235
pdurbin 90c94b5
doc tweaks #8235
pdurbin 081a6a1
updates per review of #8237
qqmyers d089499
Merge remote-tracking branch
qqmyers c4599e6
fix tests
qqmyers 6df3875
add tests of new functionality
qqmyers 2f06d0d
remove unnecessary cast
qqmyers 008914d
fix checksum, only delete file for server errors
qqmyers 194ef8a
test fixes
qqmyers b06657f
update notes
qqmyers 5c6e8fa
Merge branch 'develop' into IQSS/8235-auxfile_enhancements #8235
pdurbin 52ee0f6
Merge branch 'develop' into IQSS/8235-auxfile_enhancements #8235
pdurbin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
### Auxiliary File API Enhancements | ||
|
||
This release includes updates to the Auxiliary File API: | ||
- Auxiliary files can now also be associated with non-tabular files | ||
- Improved error reporting | ||
- The API will block attempts to create a duplicate auxiliary file | ||
- Delete and list-by-original calls have been added | ||
- Bug fix: correct checksum recorded for aux file | ||
|
||
Please note that the auxiliary files feature is experimental and is designed to support integration with tools from the [OpenDP Project](https://opendp.org). If the API endpoints are not needed they can be blocked. | ||
|
||
### Major Use Cases | ||
|
||
(note for release time - expand on the items above, as use cases) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
409 (Conflict) seems slightly exotic for our code base but I guess it's fine.
"For example, you may get a 409 response when uploading a file which is older than the one already on the server resulting in a version control conflict." https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/409