From cc2ad5174e32d8ddc095e1d8f4907e3fdca7aec3 Mon Sep 17 00:00:00 2001
From: Jamie Magee <jamie.magee@gmail.com>
Date: Thu, 30 Jun 2022 21:57:07 -0700
Subject: [PATCH] fix: switch changelog urls from http to https (#16349)

---
 lib/modules/datasource/metadata-manual.ts | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/modules/datasource/metadata-manual.ts b/lib/modules/datasource/metadata-manual.ts
index fd57efc7d9..f8bb61108b 100644
--- a/lib/modules/datasource/metadata-manual.ts
+++ b/lib/modules/datasource/metadata-manual.ts
@@ -23,7 +23,7 @@ export const manualChangelogUrls: Record<string, Record<string, string>> = {
     django: 'https://github.com/django/django/tree/master/docs/releases',
     djangorestframework:
       'https://www.django-rest-framework.org/community/release-notes/',
-    flake8: 'http://flake8.pycqa.org/en/latest/release-notes/index.html',
+    flake8: 'https://flake8.pycqa.org/en/latest/release-notes/index.html',
     'django-storages':
       'https://github.com/jschneier/django-storages/blob/master/CHANGELOG.rst',
     hypothesis:
@@ -32,8 +32,8 @@ export const manualChangelogUrls: Record<string, Record<string, string>> = {
     mypy: 'https://mypy-lang.blogspot.com/',
     phonenumbers:
       'https://github.com/daviddrysdale/python-phonenumbers/blob/dev/python/HISTORY.md',
-    psycopg2: 'http://initd.org/psycopg/articles/tag/release/',
-    'psycopg2-binary': 'http://initd.org/psycopg/articles/tag/release/',
+    psycopg2: 'https://initd.org/psycopg/articles/tag/release/',
+    'psycopg2-binary': 'https://initd.org/psycopg/articles/tag/release/',
     pycountry:
       'https://github.com/flyingcircusio/pycountry/blob/master/HISTORY.txt',
     'django-debug-toolbar':
-- 
GitLab