From 68b5de3cdb717ee6b3fde188c0fda27a573d6fa4 Mon Sep 17 00:00:00 2001 From: Dylan Pulver Date: Fri, 9 Aug 2024 13:32:35 -0400 Subject: [PATCH] chore:release 3.2.5 --- CHANGELOG.md | 18 ++++++++++++++++++ safety/VERSION | 2 +- safety/cli.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2404f6ae..deb3ba81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file. The format is partly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [PEP 440](https://peps.python.org/pep-0440/) +## [3.2.5] - 2024-08-09 +- fix: increment schemas version (#567) +- Add SLA Document (#565) +- Add Table of Contents to README.md (#564) +- docs: code of conduct (#559) +- Add More Badges (#558) +- feat: fixed issue responder (#561) +- feat(logger): config.ini, proxy, network stats (#547) +- refactor: replace private typer functions with rich module equivalents (#556) +- feat(safety_cli): docstrings, type hints, comments (#549) +- feat: add GitHub Action to automatically respond to new issues (#554) +- readme: add download badge to readme (#557) +- fix(debug): fix --debug flag and associated tests (#552) +- chore: release 3.2.4 (#545) +- fix(cache): handle get_from_cache=None and ensure directory exists (#544) +- REQUEST_TIMEOUT Env Var (#541) +- Update URLs, Lint (#540) + ## [3.2.4] - 2024-07-04 - Handle `get_from_cache=None` and ensure directory exists (#538) - Switch filelock package to compatible release clause (#538) diff --git a/safety/VERSION b/safety/VERSION index 351227fc..5ae69bd5 100644 --- a/safety/VERSION +++ b/safety/VERSION @@ -1 +1 @@ -3.2.4 +3.2.5 diff --git a/safety/cli.py b/safety/cli.py index b1103984..a8e55ee6 100644 --- a/safety/cli.py +++ b/safety/cli.py @@ -63,7 +63,7 @@ def get_network_telemetry(): network_info['packets_recv'] = net_io.packets_recv # Test network speed (download speed) - test_url = "http://example.com" # A URL to test the download speed + test_url = "https://data.safetycli.com/api/v1/safety/announcements/" # Test the download speed start_time = time.perf_counter() try: response = requests.get(test_url, timeout=10)