Skip to content

Commit

Permalink
Fix exporting code signing certificates with OpenSSL 3.2.+ (#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
priitlatt authored Jul 2, 2024
1 parent a8dfd6e commit 34515b7
Show file tree
Hide file tree
Showing 5 changed files with 168 additions and 97 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Version 0.53.1
-------------

This bugfix release contains changes from [PR #411](https://github.com/codemagic-ci-cd/cli-tools/pull/411).

**Bugfixes**
- Fix saving code signing certificates fetched from App Store Connect if the certificate subject line contains non-ascii characters and export is done using OpenSSL version 3.2+.

**Dependencies**:
- Set lower bound version limit `>= 38.0.0` to [`cryptography`](https://cryptography.io/) dependency.


Version 0.53.0
-------------

Expand Down
68 changes: 34 additions & 34 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "codemagic-cli-tools"
version = "0.53.0"
version = "0.53.1"
description = "CLI tools used in Codemagic builds"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -36,7 +36,7 @@ xcode-project = "codemagic.tools:XcodeProject.invoke_cli"

[tool.poetry.dependencies]
python = "^3.7"
cryptography = ">= 3.3, != 37.0.0"
cryptography = ">= 38.0.0"
google-api-python-client = ">= 2.84.0"
httplib2 = ">= 0.19.0"
oauth2client = ">= 4.1.3"
Expand Down
2 changes: 1 addition & 1 deletion src/codemagic/__version__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = "codemagic-cli-tools"
__description__ = "CLI tools used in Codemagic builds"
__version__ = "0.53.0.dev"
__version__ = "0.53.1.dev"
__url__ = "https://github.com/codemagic-ci-cd/cli-tools"
__licence__ = "GNU General Public License v3.0"
Loading

0 comments on commit 34515b7

Please sign in to comment.