-
Notifications
You must be signed in to change notification settings - Fork 56
High level helpers #3
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
Closed
Closed
Conversation
This file contains hidden or 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
…nfig and cleaning up class
…ribute actions in place, but do update the attribute actions used with the table info available
… hypothesis scenarios
…esource batch operation tests
This was present in order to maintain consistent behavior if the libary was used with attrs < 17.0, but we are now using features of attrs that were introduced after 17.0. I think we can safely remove these safety barriers to get simpler, cleaner looking code.
The original idea was to have the encoding type centrally defined, but we need to stick to utf-8 for compatibility anyway, so I think it is simpler to just explicitly state it where it is needed.
* fix issues with AWS KMS CMP building KMS encryption context * fix issues with handling decimals
…ot compatible with DYNAMODB_CONTEXT
* add unit tests for all material providers
…t is used for attributes, not items
…cryptedResource integration tests
…tate those it supports
… is necessary because boto3 DDB clients do not always expect DDB JSON
…o generate rather than bytes for symmetric and bits for RSA
…ing to change and they are currently necessary if you are building an EncryptionContext manually
…query paginators that transparently decrypt the resulting items
This PR rather grew out of control...closing to split it up into more manageable pieces. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The primary purpose of this change is to add high-level helper objects that provide friendly abstractions on top of the item encryption functions that behave like boto3 DynamoDB Client, Resource, and Table objects.
Also included here are various ephemera surfaced in #1 such as improving deep type checking with
attrs
.