summaryrefslogtreecommitdiffhomepage
path: root/sites
diff options
context:
space:
mode:
Diffstat (limited to 'sites')
-rw-r--r--sites/docs/api/config.rst6
-rw-r--r--sites/www/changelog.rst14
-rw-r--r--sites/www/contributing.rst3
3 files changed, 20 insertions, 3 deletions
diff --git a/sites/docs/api/config.rst b/sites/docs/api/config.rst
index d42de8ac..9015a77c 100644
--- a/sites/docs/api/config.rst
+++ b/sites/docs/api/config.rst
@@ -61,7 +61,9 @@ Paramiko releases) are included. A keyword by itself means no known departures.
- ``Host``
- ``HostName``: used in ``%h`` :ref:`token expansion <TOKENS>`
-- ``Match``: fully supported, with the following caveats:
+- ``Match``: supports the keywords ``all``, ``canonical``, ``exec``, ``final``,
+ ``host``, ``localuser``, ``originalhost``, and ``user``, with the following
+ caveats:
- You must have the optional dependency Invoke installed; see :ref:`the
installation docs <paramiko-itself>` (in brief: install
@@ -72,6 +74,8 @@ Paramiko releases) are included. A keyword by itself means no known departures.
but has no knowledge about connection-time usernames.
.. versionadded:: 2.7
+ .. versionchanged:: 3.3
+ Added support for the ``final`` keyword.
- ``Port``: supplies potential values for ``%p`` :ref:`token expansion
<TOKENS>`.
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst
index 2deb6998..45df830c 100644
--- a/sites/www/changelog.rst
+++ b/sites/www/changelog.rst
@@ -5,6 +5,20 @@ Changelog
- :bug:`-` Tweak ``ext-info-(c|s)`` detection during KEXINIT protocol phase;
the original implementation made assumptions based on an OpenSSH
implementation detail.
+- :release:`3.3.1 <2023-07-28>`
+- :bug:`-` Cleaned up some very old root level files, mostly just to exercise
+ some of our doc build and release machinery. This changelog entry
+ intentionally left blank! ``nothing-to-see-here-move-along.gif``
+- :release:`3.3.0 <2023-07-28>`
+- :feature:`1907` (solves :issue:`1992`) Add support and tests for ``Match
+ final …`` (frequently used in ProxyJump configurations to exclude the jump
+ host) to our :ref:`SSH config parser <ssh-config-support>`. Patch by
+ ``@commonism``.
+- :feature:`2058` (solves :issue:`1587` and possibly others) Add an explicit
+ ``max_concurrent_prefetch_requests`` argument to
+ `paramiko.client.SSHClient.get` and `paramiko.client.SSHClient.getfo`,
+ allowing users to limit the number of concurrent requests used during
+ prefetch. Patch by ``@kschoelhorn``, with a test by ``@bwinston-sdp``.
- :release:`3.2.0 <2023-05-25>`
- :bug:`- major` Fixed a very sneaky bug found at the apparently
rarely-traveled intersection of ``RSA-SHA2`` keys, certificates, SSH agents,
diff --git a/sites/www/contributing.rst b/sites/www/contributing.rst
index a44414e8..9cf0f34b 100644
--- a/sites/www/contributing.rst
+++ b/sites/www/contributing.rst
@@ -18,8 +18,7 @@ Please see `this project-agnostic contribution guide
<http://contribution-guide.org>`_ - we follow it explicitly. Again, our code
repository and bug tracker is `on Github`_.
-Our current changelog is located in ``sites/www/changelog.rst`` - the top
-level files like ``ChangeLog.*`` and ``NEWS`` are historical only.
+Our changelog is located in ``sites/www/changelog.rst``.
.. _paramiko/paramiko: