Skip to content

Commit

Permalink
1.5.40
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaeno committed Mar 13, 2023
1 parent 4008728 commit c823b40
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
** Release Notes

1.5.40
* fixed delete_secret with file secrets

1.5.39
* fixed --official in pchain

Expand Down
2 changes: 1 addition & 1 deletion pandaclient/PBookCore.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def set_secret(self, key, value, is_file=False):
tmpLog = PLogger.getPandaLogger()
if is_file:
with open(value, 'rb') as f:
value = base64.b64encode(f.read()).encode()
value = base64.b64encode(f.read()).decode()
# add prefix
key = '___file___:'+format(key)
size_limit = 1000
Expand Down
2 changes: 1 addition & 1 deletion pandaclient/PandaToolsPkgInfo.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = "1.5.39"
release_version = "1.5.40"

0 comments on commit c823b40

Please sign in to comment.