Skip to content
Commits on Source (5)
version: 2 version: 2
updates: updates:
- package-ecosystem: "github-actions" - package-ecosystem: "github-actions"
directory: "/" directories:
schedule: - "/"
interval: "daily" - "/.github/actions/cache/"
time: "06:00" - "/.github/actions/upload-coverage/"
timezone: "America/New_York" - "/.github/actions/fetch-vectors/"
open-pull-requests-limit: 1024
- package-ecosystem: "github-actions"
directory: "/.github/actions/cache/"
schedule:
interval: "daily"
time: "06:00"
timezone: "America/New_York"
open-pull-requests-limit: 1024
- package-ecosystem: "github-actions"
directory: "/.github/actions/upload-coverage/"
schedule:
interval: "daily"
time: "06:00"
timezone: "America/New_York"
open-pull-requests-limit: 1024
- package-ecosystem: "github-actions"
directory: "/.github/actions/fetch-vectors/"
schedule: schedule:
interval: "daily" interval: "daily"
time: "06:00" time: "06:00"
...@@ -42,18 +24,9 @@ updates: ...@@ -42,18 +24,9 @@ updates:
open-pull-requests-limit: 1024 open-pull-requests-limit: 1024
- package-ecosystem: pip - package-ecosystem: pip
directory: "/" directories:
schedule: - "/"
interval: daily - "/.github/requirements/"
time: "06:00"
timezone: "America/New_York"
allow:
# Also update indirect dependencies
- dependency-type: all
open-pull-requests-limit: 1024
- package-ecosystem: pip
directory: "/.github/requirements/"
schedule: schedule:
interval: daily interval: daily
time: "06:00" time: "06:00"
......
...@@ -43,8 +43,8 @@ jobs: ...@@ -43,8 +43,8 @@ jobs:
- {VERSION: "3.12", NOXSESSION: "rust,tests", OPENSSL: {TYPE: "libressl", VERSION: "3.8.4"}} - {VERSION: "3.12", NOXSESSION: "rust,tests", OPENSSL: {TYPE: "libressl", VERSION: "3.8.4"}}
- {VERSION: "3.12", NOXSESSION: "rust,tests", OPENSSL: {TYPE: "libressl", VERSION: "3.9.1"}} - {VERSION: "3.12", NOXSESSION: "rust,tests", OPENSSL: {TYPE: "libressl", VERSION: "3.9.1"}}
- {VERSION: "3.12", NOXSESSION: "tests-randomorder"} - {VERSION: "3.12", NOXSESSION: "tests-randomorder"}
# Latest commit on the BoringSSL master branch, as of May 03, 2024. # Latest commit on the BoringSSL master branch, as of May 04, 2024.
- {VERSION: "3.12", NOXSESSION: "rust,tests", OPENSSL: {TYPE: "boringssl", VERSION: "d2e3212de29bac1ceed33ca8ab8bbff3f41a2459"}} - {VERSION: "3.12", NOXSESSION: "rust,tests", OPENSSL: {TYPE: "boringssl", VERSION: "3e89a7e8db8139db356b892ca9993172346c80cf"}}
# Latest commit on the OpenSSL master branch, as of May 03, 2024. # Latest commit on the OpenSSL master branch, as of May 03, 2024.
- {VERSION: "3.12", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "067fbc01b9e867b31c71091d62f0f9012dc9e41a"}} - {VERSION: "3.12", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "067fbc01b9e867b31c71091d62f0f9012dc9e41a"}}
# Builds with various Rust versions. Includes MSRV and next # Builds with various Rust versions. Includes MSRV and next
......
...@@ -45,6 +45,13 @@ Changelog ...@@ -45,6 +45,13 @@ Changelog
timezone-aware alternative to the naïve ``datetime`` attribute timezone-aware alternative to the naïve ``datetime`` attribute
:attr:`~cryptography.x509.InvalidityDate.invalidity_date`. :attr:`~cryptography.x509.InvalidityDate.invalidity_date`.
.. _v42-0-6:
42.0.6 - 2024-05-04
~~~~~~~~~~~~~~~~~~~
* Fixed compilation when using LibreSSL 3.9.1.
.. _v42-0-5: .. _v42-0-5:
42.0.5 - 2024-02-23 42.0.5 - 2024-02-23
......
...@@ -24,9 +24,9 @@ dependencies = [ ...@@ -24,9 +24,9 @@ dependencies = [
[[package]] [[package]]
name = "autocfg" name = "autocfg"
version = "1.2.0" version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
[[package]] [[package]]
name = "base64" name = "base64"
...@@ -367,9 +367,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" ...@@ -367,9 +367,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
[[package]] [[package]]
name = "self_cell" name = "self_cell"
version = "1.0.3" version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58bf37232d3bb9a2c4e641ca2a11d83b5062066f88df7fed36c28772046d65ba" checksum = "d369a96f978623eb3dc28807c4852d6cc617fed53da5d3c400feff1ef34a714a"
[[package]] [[package]]
name = "smallvec" name = "smallvec"
......