[tor-commits] [stem/master] Missing changelog entry

atagar at torproject.org atagar at torproject.org
Tue Aug 20 00:16:40 UTC 2019


commit acfcc58b011adaa43d19b80869f54404dfd480b6
Author: Damian Johnson <atagar at torproject.org>
Date:   Mon Aug 19 17:16:18 2019 -0700

    Missing changelog entry
---
 cache_fallback_directories.py |  4 ++--
 docs/change_log.rst           | 10 ++++++++--
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/cache_fallback_directories.py b/cache_fallback_directories.py
index 7827f712..05d7f827 100755
--- a/cache_fallback_directories.py
+++ b/cache_fallback_directories.py
@@ -18,12 +18,12 @@ try:
 except ImportError:
   import urllib2 as urllib
 
-GITWEB_MAN_LOG = 'https://gitweb.torproject.org/tor.git/log/src/app/config/fallback_dirs.inc'
+GITWEB_FALLBACK_LOG = 'https://gitweb.torproject.org/tor.git/log/src/app/config/fallback_dirs.inc'
 FALLBACK_DIR_LINK = "href='/tor.git/commit/src/app/config/fallback_dirs.inc\\?id=([^']*)'"
 
 if __name__ == '__main__':
   try:
-    fallback_dir_page = urllib.urlopen(GITWEB_MAN_LOG).read()
+    fallback_dir_page = urllib.urlopen(GITWEB_FALLBACK_LOG).read()
     fallback_dir_commit = re.search(FALLBACK_DIR_LINK, fallback_dir_page).group(1)
   except:
     print("Unable to determine the latest commit to edit tor's fallback directories: %s" % sys.exc_info()[1])
diff --git a/docs/change_log.rst b/docs/change_log.rst
index 9adc7613..c244d7d2 100644
--- a/docs/change_log.rst
+++ b/docs/change_log.rst
@@ -52,14 +52,19 @@ The following are only available within Stem's `git repository
   * Controller events could fail to be delivered in a timely fashion (:trac:`27173`)
   * Adjusted :func:`~stem.control.Controller.get_microdescriptors` fallback to also use '.new' cache files (:trac:`28508`)
   * ExitPolicies could raise TypeError when read concurrently (:trac:`29899`)
+  * **STALE_DESC** :data:`~stem.Flag` (:spec:`d14164d8`)
   * **DORMANT** and **ACTIVE** :data:`~stem.Signal` (:spec:`4421149`)
+  * **QUERY_RATE_LIMITED** :data:`~stem.HSDescReason` (:spec:`bd80679`)
+  * **EXTOR** and **HTTPTUNNEL** :data:`~stem.Listener`
 
  * **Descriptors**
 
-  * Added the `stem.descriptor.collector <api/descriptor/collector.html>`_ module.
+  * Added the `stem.descriptor.collector <api/descriptor/collector.html>`_ module (:trac:`17979`)
   * `Bandwidth file support <api/descriptor/bandwidth_file.html>`_ (:trac:`29056`)
-  * Ed25519 validity checks are now done though the cryptography module rather than PyNaCl (:trac:`22022`)
+  * `stem.descriptor.remote <api/descriptor/remote.html>`_ now raise :class:`stem.DownloadFailed`
+  * Check Ed25519 validity though the cryptography module rather than PyNaCl (:trac:`22022`)
   * Download compressed descriptors by default (:trac:`29186`)
+  * Added :class:`~stem.descriptor.Compression` class
   * Added :func:`stem.descriptor.remote.get_microdescriptors`
   * Added :func:`stem.descriptor.remote.get_bandwidth_file` (:trac:`26902`)
   * Added :class:`~stem.descriptor.networkstatus.DetachedSignature` parsing (:trac:`28495`)
@@ -88,6 +93,7 @@ The following are only available within Stem's `git repository
  * **Website**
 
   * Added NetBSD to our `download page <download.html>`_
+  * Exemplify `manual SAFECOOKIE authentication <faq.html#i-m-using-safe-cookie-authentication>`_
   * `Update PyPI links <https://packaging.python.org/guides/migrating-to-pypi-org/>`_ (:trac:`30137`)
 
  * **Interpreter**



More information about the tor-commits mailing list