Skip to content

Commit

Permalink
Feat/allow encryption (#42)
Browse files Browse the repository at this point in the history
* Add encryption to schemas

* bump version v24.25.0 -> v24.25.1
  • Loading branch information
adammcdonagh authored Jun 20, 2024
1 parent 3fd3c61 commit 9f5c398
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v24.25.1

- Add possibility for encryption to the s3 schemas

## v24.25.0

- Added new cacheable plugin equivalent to the SSM one, but for Secrets Manager
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "otf-addons-aws"
version = "v24.25.0"
version = "v24.25.1"
authors = [{ name = "Adam McDonagh", email = "adam@elitemonkey.net" }]
license = { text = "GPLv3" }
classifiers = [
Expand Down Expand Up @@ -53,7 +53,7 @@ dev = [
profile = 'black'

[tool.bumpver]
current_version = "v24.25.0"
current_version = "v24.25.1"
version_pattern = "vYY.WW.PATCH[-TAG]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"flags": {
"$ref": "s3_destination/flags.json"
},
"encryption": {
"$ref": "http://localhost/transfer/encryption.json"
},
"transferType": {
"type": "string",
"enum": ["proxy", "push"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
"postCopyAction": {
"$ref": "s3_source/postCopyAction.json"
},
"encryption": {
"$ref": "http://localhost/transfer/encryption.json"
},
"protocol": {
"$ref": "s3_source/protocol.json"
}
Expand Down

0 comments on commit 9f5c398

Please sign in to comment.