diff options
author | Batuhan Taskaya <isidentical@gmail.com> | 2022-03-08 01:50:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 01:50:09 +0300 |
commit | 266c6375c6d687c3aad07962cb3f5bef7d39bbbf (patch) | |
tree | 7301d1ac53e83c2369aeaed0746b0f1b72e8d9ec | |
parent | 77af4c7a5cb3d0b3e813c7f678099014c94ff6aa (diff) |
Release prep for 3.1.0 (#1313)3.1.0
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | docs/README.md | 2 | ||||
-rw-r--r-- | httpie/__init__.py | 2 |
3 files changed, 7 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ecf797d..764c1738 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,15 +3,17 @@ This document records all notable changes to [HTTPie](https://httpie.io). This project adheres to [Semantic Versioning](https://semver.org/). -## [3.0.3.dev0](https://github.com/httpie/httpie/compare/3.0.2...HEAD) (Unreleased) +## [3.1.0](https://github.com/httpie/httpie/compare/3.0.2...3.1.0) (2022-03-08) -- Added support for specifying certificate private key passphrases through `--cert-key-pass` and prompts. ([#946](https://github.com/httpie/httpie/issues/946)) +- **SECURITY** Fixed the [vulnerability](https://github.com/httpie/httpie/security/advisories/GHSA-9w4w-cpc8-h2fq) that caused exposure of cookies on redirects to third party hosts. ([#1312](https://github.com/httpie/httpie/pull/1312)) - Fixed escaping of integer indexes with multiple backslashes in the nested JSON builder. ([#1285](https://github.com/httpie/httpie/issues/1285)) - Fixed displaying of status code without a status message on non-`auto` themes. ([#1300](https://github.com/httpie/httpie/issues/1300)) - Fixed redundant issuance of stdin detection warnings on some rare cases due to underlying implementation. ([#1303](https://github.com/httpie/httpie/pull/1303)) +- Fixed double `--quiet` so that it will now suppress all python level warnings. ([#1271](https://github.com/httpie/httpie/issues/1271)) +- Added support for specifying certificate private key passphrases through `--cert-key-pass` and prompts. ([#946](https://github.com/httpie/httpie/issues/946)) +- Added `httpie cli export-args` command for exposing the parser specification for the `http`/`https` commands. ([#1293](https://github.com/httpie/httpie/pull/1293)) - Improved regulation of top-level arrays. ([#1292](https://github.com/httpie/httpie/commit/225dccb2186f14f871695b6c4e0bfbcdb2e3aa28)) - Improved UI layout for standalone invocations. ([#1296](https://github.com/httpie/httpie/pull/1296)) -- Double `--quiet` flags will now suppress all python level warnings. ([#1271](https://github.com/httpie/httpie/issues/1271)) ## [3.0.2](https://github.com/httpie/httpie/compare/3.0.1...3.0.2) (2022-01-24) diff --git a/docs/README.md b/docs/README.md index 1c171bd8..226b87a3 100644 --- a/docs/README.md +++ b/docs/README.md @@ -260,7 +260,7 @@ Verify that now you have the [current development version identifier](https://gi ```bash $ http --version -# 3.0.3.dev0 +# 3.X.X.dev0 ``` ## Usage diff --git a/httpie/__init__.py b/httpie/__init__.py index 683e7b98..90aa2789 100644 --- a/httpie/__init__.py +++ b/httpie/__init__.py @@ -3,6 +3,6 @@ HTTPie: modern, user-friendly command-line HTTP client for the API era. """ -__version__ = '3.0.3.dev0' +__version__ = '3.1.0' __author__ = 'Jakub Roztocil' __licence__ = 'BSD' |