Commit 8cb8c4fa authored by Hiro's avatar Hiro 🏄
Browse files

Prepare for version 8.2-1.29.0 release

parent 8a186e9e
Loading
Loading
Loading
Loading
+13 −3
Original line number Diff line number Diff line
# Changes in version 8.0-1.xx.x - 2021-xx-xx
# Changes in version 8.2-1.29.0 - 2021-12-09

# Changes in version 8.0-1.28.0 - 2021-08-30
 * Medium changes
     - Add two new filters to search nodes by first_seen and last_seen dates
     - Add metrics endpoint to /network and /service to export prometheus
       statistics for the onionoo service and the Tor network.

 * Minor changes
     - Add new utilities function in DateTimeHelper class
     - Add a test for status update with a malformed descriptor
     - Add tests to make sure the bandwidth status is updated properly

# Changes in version 8.1-1.28.0 - 2021-08-30

 * Medium changes
     - Reads bridgestrap statistics from CollecTor.
@@ -16,7 +26,7 @@
     - The overload-general server descriptor should be null when
       not present and not 0

# Changes in version 8.0-1.27.0 - 2021-08-23
# Changes in version 8.1-1.27.0 - 2021-08-23

 * Medium changes
     - Add overload-ratelimits and overload-fd-exhausted ExtraInfo
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
  <property name="implementation-title" value="Onionoo" />
  <property name="onionoo.protocol.version" value="8.2"/>
  <property name="release.version"
            value="${onionoo.protocol.version}-1.28.0-dev"/>
            value="${onionoo.protocol.version}-1.29.0"/>
  <property name="metricslibversion" value="2.19.0"/>
  <property name="jetty.version" value="-9.2.21.v20170120" />
  <property name="warfile"
+0 −3
Original line number Diff line number Diff line
@@ -6,15 +6,12 @@ package org.torproject.metrics.onionoo.server;
import org.torproject.metrics.onionoo.docs.DateTimeHelper;
import org.torproject.metrics.onionoo.updater.TorVersion;

import static org.torproject.metrics.onionoo.docs.DateTimeHelper.ONE_DAY;

import org.apache.commons.lang3.StringUtils;

import java.io.IOException;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;