Skip to content
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

Tls regression #1418

Merged
merged 5 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# FOSSA CLI Changelog

## v3.9.15
- Change TLS to a version that takes advantage of but does not require 1.2 with EMS.
This will be reverted in six months.
On-prem users should upgrade their servers to support either TLS 1.2 with EMS or TLS 1.3.
SAAS customers are unaffected. ([#1418](https://github.com/fossas/fossa-cli/pull/1418)).

## v3.9.14
- Update cargo strategy to parse new `cargo metadata` format for cargo >= 1.77.0 ([#1416](https://github.com/fossas/fossa-cli/pull/1416)).
- `fossa release-group`: Add command to create a FOSSA release group release (`fossa release-group create-release`) [#1409](https://github.com/fossas/fossa-cli/pull/1409).
Expand Down
7 changes: 5 additions & 2 deletions spectrometer.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,10 @@ common lang

-- TODO: Switch `semver` back to `versions` since https://github.com/fosskers/versions/issues/47 is fixed. This package maintainer seems much more responsive. Contrast https://github.com/brendanhay/semver/issues/12.
-- codec-rpm is installed via cabal.project, so this number is an expected future version.
-- Upgrade text and mtl after codec-rpm conflict is fixed, probably as part of 9.4 upgrade.
-- Upgrade zip after text is upgraded
-- TODO: Upgrade text and mtl after codec-rpm conflict is fixed, probably as part of 9.4 upgrade.
-- TODO: Upgrade zip after text is upgraded.
-- TODO: TLS isn't used directly but is pinned here while customers upgrade their servers to support TLS 1.2 with EMS or TLS 1.3.
-- They've been warned about future support breaking. Upgrade to tls-2.* after 10/25/2024.
common deps
build-depends:
, aeson ^>=2.2
Expand Down Expand Up @@ -146,6 +148,7 @@ common deps
, text ^>=2.0.0
, th-lift-instances ^>=0.1.17
, time >=1.9 && <1.13
, tls >=1.9 && <2.0
, tomland ^>=1.3.3.0
, transformers
, typed-process ^>=0.2.6
Expand Down