Search is not available for this dataset
hash
string
author
int32
committer_date
string
timezone
int64
parents
string
message
string
changes
string
language
string
4ad71ab5ae78b0a7698d983cc588d91be11c5768
225
2023-01-25 12:00:06+11:00
28,800
['81ff6fcc0d1460d669d516dc4df6d90c39507cfa']
Fix tox environments (#9547) * fix cover tox envs * make test work on all Pythons * Remove unused import Co-authored-by: alexzorin <alex@zorin.id.au> Co-authored-by: alexzorin <alex@zorin.id.au>
[{'old_path': '.azure-pipelines/templates/jobs/standard-tests-jobs.yml', 'new_path': '.azure-pipelines/templates/jobs/standard-tests-jobs.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,10 +7,10 @@ jobs:\n macos-py37-cover:\n IMAGE_NAME: macOS-12\n PYTHON_VERSION: 3.7\n- ...
Python
c79a5d440747a75b3e10ce95e5b4e5b265c67826
225
2023-01-26 08:15:51+11:00
28,800
['4ad71ab5ae78b0a7698d983cc588d91be11c5768']
Start sending coverage data to codecov (#9544) * set up codecov * export coverage data to xml
[{'old_path': '.azure-pipelines/main.yml', 'new_path': '.azure-pipelines/main.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,8 +1,10 @@\n-trigger: none\n+# We run the test suite on commits to master so codecov gets coverage data\n+# about the master branch and can use it to track coverage changes.\n+trigger...
Python
b0748b69e77f7d4058472feb8d61f94ffa8ff7ac
658
2023-01-25 15:59:22-08:00
28,800
['c79a5d440747a75b3e10ce95e5b4e5b265c67826']
Replace probot/stale app with a Github Action (#9466) * Replace probot/stale app with a Github Action This creates a Github Actions workflow which seems to be the supported way of automarking issues as stale. Adds a dry-run flag to test it out. * small fixups * cron typo * disable unnecessary permissions ...
[{'old_path': '.github/stale.yml', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': "@@ -1,35 +0,0 @@\n-# Configuration for https://github.com/marketplace/stale\n-\n-# Number of days of inactivity before an Issue or Pull Request becomes stale\n-daysUntilStale: 365\n-\n-# Number of days of inactivity befo...
Python
2e3cace73947d6b4f89e61571a0aff5d6e83a764
180
2023-01-27 10:38:00+11:00
-39,600
['f3c6f7d46e8ac2b9fdec74bababa5c3375204749']
remove docstring for removed argument
[{'old_path': 'certbot/certbot/_internal/account.py', 'new_path': 'certbot/certbot/_internal/account.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -250,7 +250,6 @@ class AccountFileStorage(interfaces.AccountStorage):\n """Update the registration resource.\n \n :param Account account: account to...
Python
08e008ac54381b07bfeefc8dd72b11577639e758
180
2023-01-27 10:41:45+11:00
-39,600
['2e3cace73947d6b4f89e61571a0aff5d6e83a764']
remove unused attributes from test
[{'old_path': 'certbot/tests/account_test.py', 'new_path': 'certbot/tests/account_test.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -109,7 +109,6 @@ class AccountFileStorageTest(test_util.ConfigTestCase):\n self.storage = AccountFileStorage(self.config)\n \n from certbot._internal.account impo...
Python
f0b6ba072f8be832d02ad7c8d0ca349891b1bb7f
181
2023-01-27 14:44:17+11:00
-39,600
['99fea03c50553db7928f02ce2c75d16db1d7f162']
certbot-ci: boulder only supports port 80 for http-01 (#9548) * certbot-ci: boulder will now only supports port 80 for http-01 * forgot to actually use the http_01_port argument * print the port the proxy listens on * try allow binding to privileged ports
[{'old_path': '.azure-pipelines/templates/steps/tox-steps.yml', 'new_path': '.azure-pipelines/templates/steps/tox-steps.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -21,6 +21,7 @@ steps:\n nginx-light \\\n openssl\n sudo systemctl stop nginx\n+ sudo sysctl net.ipv4.ip_unprivileged_...
Python
8226d30af0f1576d4bca9b411dd5e7b7dc03e773
658
2023-01-28 08:16:15+11:00
28,800
['f0b6ba072f8be832d02ad7c8d0ca349891b1bb7f']
Bump up the number of operations to 30 (#9554) This is the default value, which is sensible since an "operation" basically corresponds to a GH API call, and 1 won't really let us do anything.
[{'old_path': '.github/workflows/stale.yml', 'new_path': '.github/workflows/stale.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -39,4 +39,4 @@ jobs:\n take a look.\n \n # Limit the number of actions per hour, from 1-30. Default is 30\n- operations-per-run: 1\n+ operatio...
Python
00f8d828087eefb4af7ffefee7a8c86f89f637a2
225
2023-02-01 07:05:01+11:00
28,800
['8226d30af0f1576d4bca9b411dd5e7b7dc03e773']
double progressive percentage (#9557)
[{'old_path': 'tools/finish_release.py', 'new_path': 'tools/finish_release.py', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -49,7 +49,7 @@ ALL_SNAPS = ['certbot'] + PLUGIN_SNAPS\n # for sanity checking.\n SNAP_ARCH_COUNT = 3\n # The percentage of users the 2.0 Certbot snap should be deployed to.\n-PROGRESSIVE_REL...
Python
1b1b27df285fc6c76d2c9639f50d2228a64aa2c5
225
2023-02-01 17:08:43+11:00
28,800
['00f8d828087eefb4af7ffefee7a8c86f89f637a2']
Change coverage upload condition (#9552) * change coverage upload condition * fix typo * set uploadCoverage * add comment * change coverage upload condition * verbose version
[{'old_path': '.azure-pipelines/main.yml', 'new_path': '.azure-pipelines/main.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -6,5 +6,13 @@ pr:\n - master\n - '*.x'\n \n+variables:\n+ # We set this here to avoid coverage data being uploaded from things like our\n+ # nightly pipeline. This is done because ...
Python
e75dc1dfd005434f54ee3bbf44fdbb1aebec1c60
181
2023-02-01 10:48:13-08:00
-39,600
['1b1b27df285fc6c76d2c9639f50d2228a64aa2c5']
show_account: display account thumbprint (#9540) In #9127, where @osirisinferi added the `show_account` verb, I made a call not to include the thumbprint in the output of `certbot show_account`. In hindsight, and after a community member asked for this feature, I think it's better to include it. It is useful on...
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -6,7 +6,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n ### Added\n \n-*\n+* `certbot show_account` now displays the [ACME Account Thumbprint](https://datatracker.ietf.org...
Python
cea717db3e5f56f696a08b3dccc488a51bb7278a
181
2023-02-01 10:49:37-08:00
-39,600
['e75dc1dfd005434f54ee3bbf44fdbb1aebec1c60']
docs: update -d flag copy to be CA-agnostic (#9542) Some confusion ensued in [this community thread](https://community.letsencrypt.org/t/connection-between-ios-9-support-and-subject-common-name-or-x509v3-subject-alternative-name-critical/191619) about the Subject CN, which Certbot omits from the CSR, Let's Encrypt inc...
[{'old_path': 'certbot/certbot/_internal/cli/__init__.py', 'new_path': 'certbot/certbot/_internal/cli/__init__.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -115,17 +115,12 @@ def prepare_and_parse_args(plugins: plugins_disco.PluginsRegistry, args: List[st\n "-d", "--domains", "--domain", dest="domains...
Python
71a14f5193722b2f6b01d3a128cedb2575e06fd1
68
2023-02-02 07:59:35+11:00
0
['cea717db3e5f56f696a08b3dccc488a51bb7278a']
Fix docs google permissions (#9556) * include project level IAM requirements * add name to authors.md * Update certbot-dns-google/certbot_dns_google/__init__.py Co-authored-by: alexzorin <alex@zorin.au> * Update certbot-dns-google/certbot_dns_google/__init__.py Co-authored-by: alexzorin <alex@zorin.au> ...
[{'old_path': 'AUTHORS.md', 'new_path': 'AUTHORS.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -68,6 +68,7 @@ Authors\n * [Daniel Convissor](https://github.com/convissor)\n * [Daniel "Drex" Drexler](https://github.com/aeturnum)\n * [Daniel Huang](https://github.com/dhuang)\n+* [Daniel McMahon] (https://github....
Python
724635bbbd7c31a262f5c7b6cc1e8f43907d26c1
181
2023-02-03 11:35:15-08:00
-39,600
['71a14f5193722b2f6b01d3a128cedb2575e06fd1']
docs: generate a man page with a structure (#9561) If you looked at [the Debian man page for Certbot](https://manpages.debian.org/bullseye/certbot/certbot.1.en.html) or [the FreeBSD one](https://man.freebsd.org/cgi/man.cgi?query=certbot&sektion=1&apropos=0&manpath=FreeBSD+13.1-RELEASE+and+Ports), you will notice that ...
[{'old_path': 'certbot/docs/conf.py', 'new_path': 'certbot/docs/conf.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -286,7 +286,7 @@ latex_documents = [\n man_pages = [\n (\'index\', \'certbot\', u\'Certbot Documentation\',\n [project], 7),\n- (\'man/certbot\', \'certbot\', u\'certbot script documen...
Python
23090198bf132704f1c860d5b6b623a2fcb593f8
288
2023-02-04 08:46:08+11:00
28,800
['724635bbbd7c31a262f5c7b6cc1e8f43907d26c1']
Configuration File Update w/o Certificate Issuance (#9355) * Add command to update config files without issuing/renewing cert * toss up a vague untested skeleton * remove duplicated code * set certname in config * consistent name, no zope * import copy * reconsitute is in renewal * import renewal ...
[{'old_path': 'certbot-ci/certbot_integration_tests/certbot_tests/test_main.py', 'new_path': 'certbot-ci/certbot_integration_tests/certbot_tests/test_main.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -808,6 +808,25 @@ def test_revoke_multiple_lineages(context: IntegrationTestsContext) -> None:\n asser...
Python
99184daff632e71ca1fae0298f07b203d5fd7638
181
2023-02-08 11:17:44-08:00
-39,600
['23090198bf132704f1c860d5b6b623a2fcb593f8']
repin cryptography for openssl security update (#9565) * repin cryptography for openssl security update https://www.openssl.org/news/secadv/20230207.txt https://cryptography.io/en/latest/changelog/#v39-0-1 * fix type hints * remove outdated comments
[{'old_path': 'certbot-ci/certbot_integration_tests/certbot_tests/assertions.py', 'new_path': 'certbot-ci/certbot_integration_tests/certbot_tests/assertions.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -22,13 +22,13 @@ SYSTEM_SID = \'S-1-5-18\'\n ADMINS_SID = \'S-1-5-32-544\'\n \n \n-def assert_elliptic_key(k...
Python
cd9ee996a812bc963e5fe1c9ddcafcabfc792059
184
2023-02-09 07:12:15+11:00
28,800
['99184daff632e71ca1fae0298f07b203d5fd7638']
Create SECURITY.md (#9566)
[{'old_path': None, 'new_path': 'SECURITY.md', 'type': <ModificationType.ADD: 1>, 'diff': "@@ -0,0 +1,5 @@\n+# Security Policy\n+\n+## Reporting a Vulnerability\n+\n+Security vulnerabilities can be reported using GitHub's [private vulnerability reporting tool](https://github.com/certbot/certbot/security/advisories/new)...
Python
f5ea5d453e6708eae429a8fc0f4768e73c53c971
225
2023-02-09 09:21:07+11:00
28,800
['cd9ee996a812bc963e5fe1c9ddcafcabfc792059']
fix requests-toolbelt warning (#9569)
[{'old_path': 'pytest.ini', 'new_path': 'pytest.ini', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -15,7 +15,12 @@\n # certbot-dns-rfc2136.\n # 2) pytest-cov uses deprecated functionality in pytest-xdist, to be resolved by\n # https://github.com/pytest-dev/pytest-cov/issues/557.\n+# 3) requests-toolbelt<0.10...
Python
d792d398134f4f8b67debaf82e6e75635409c627
225
2023-02-09 09:24:07+11:00
28,800
['f5ea5d453e6708eae429a8fc0f4768e73c53c971']
reset set_by_cli between each test (#9567)
[{'old_path': None, 'new_path': 'certbot/tests/conftest.py', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,7 @@\n+import pytest\n+\n+from certbot._internal import cli\n+\n+@pytest.fixture(autouse=True)\n+def reset_cli_global():\n+ cli.set_by_cli.detector = None\n'}, {'old_path': 'certbot/tests/main_test.py'...
Python
99956ecab9c948f32fe41262b0f88f996c9556f4
288
2023-02-08 16:16:28-08:00
28,800
['d792d398134f4f8b67debaf82e6e75635409c627']
Fix typo direcory --> directory in --run-deploy-hooks help (#9568)
[{'old_path': 'certbot/certbot/_internal/cli/__init__.py', 'new_path': 'certbot/certbot/_internal/cli/__init__.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -164,7 +164,7 @@ def prepare_and_parse_args(plugins: plugins_disco.PluginsRegistry, args: List[st\n help="When performing a test run using `--dry-...
Python
cbb4c871c2074460e288b792b3ede4ad8a172a8d
181
2023-02-09 13:14:32+11:00
-39,600
['99956ecab9c948f32fe41262b0f88f996c9556f4']
docs: document reconfigure verb (#9563) * docs: document reconfigure verb * expand on the flags relevant to reconfigure * Update phrasing Co-authored-by: ohemorange <ebportnoy@gmail.com> --------- Co-authored-by: ohemorange <ebportnoy@gmail.com>
[{'old_path': 'certbot/docs/using.rst', 'new_path': 'certbot/docs/using.rst', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -751,6 +751,26 @@ time, Certbot will remember these options and apply them once again.\n Sometimes, you may encounter the need to change some of these options for future certificate renewals. ...
Python
aac02bef35ecadda978d067319fbd88f6f249eeb
224
2023-02-08 20:55:59-08:00
28,800
['cbb4c871c2074460e288b792b3ede4ad8a172a8d']
Remove code testing testing code
[{'old_path': 'certbot-compatibility-test/certbot_compatibility_test/validator_test.py', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': '@@ -1,129 +0,0 @@\n-"""Tests for certbot_compatibility_test.validator."""\n-from typing import cast\n-from typing import Mapping\n-from typing import Optional\n-impor...
Python
3512d15dff99e8b76bd97245cfba9a5122a4171c
224
2023-02-09 18:41:16-08:00
28,800
['caad4d93d048d77ede6508dd42da1d23cde524eb']
Remove most progressive release tooling
[{'old_path': 'tools/finish_release.py', 'new_path': 'tools/finish_release.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,7 +4,7 @@ Post-release script to publish artifacts created from Azure Pipelines.\n \n This currently includes:\n \n-* Moving snaps from the candidate/beta channel to the stable channel\n+...
Python
c32da71e8abe90bb7ee7418edd3d351290e2fa58
224
2023-02-09 18:56:43-08:00
28,800
['ca5f13d0e39f069a49861a1a060fed2eac6f6e5f']
fail faster if we try to use candidate
[{'old_path': '.azure-pipelines/templates/jobs/snap-deploy-job.yml', 'new_path': '.azure-pipelines/templates/jobs/snap-deploy-job.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -12,7 +12,6 @@ parameters:\n values:\n - edge\n - beta\n- - candidate\n \n jobs:\n # This job relies on credentials used to p...
Python
1bb09da2705323f4a790657d8f80e4d1db3cf103
225
2023-02-10 10:51:20-08:00
28,800
['d8d177ce723b07b5db652f0ad53531c3b3f465f4']
Update and run isort (#9573) I want to use isort as part of https://github.com/certbot/certbot/issues/9572 because I want to do it programmatically, however, I felt like the config needed to be tweaked a bit due to it not understanding what is and is not our own code. This PR updates the isort config so it recogniz...
[{'old_path': '.isort.cfg', 'new_path': '.isort.cfg', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,3 +4,4 @@ force_sort_within_sections=True\n force_single_line=True\n order_by_type=False\n line_length=400\n+src_paths=acme/acme,acme/tests,certbot*/certbot*,certbot*/tests\n'}, {'old_path': 'acme/acme/challenges....
Python
057524aa52fce8a300e48fcdaa04ea41acac9e09
181
2023-02-10 11:15:42-08:00
-39,600
['1bb09da2705323f4a790657d8f80e4d1db3cf103']
certbot-ci: fix crash in and simplify manual_http_hooks (#9570) There is a typo (`request` instead of `requests`) in the `auth.py` generated by this function: https://github.com/certbot/certbot/blob/d792d398134f4f8b67debaf82e6e75635409c627/certbot-ci/certbot_integration_tests/utils/misc.py#L184-L191 that has [ne...
[{'old_path': 'certbot-ci/certbot_integration_tests/certbot_tests/test_main.py', 'new_path': 'certbot-ci/certbot_integration_tests/certbot_tests/test_main.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -118,7 +118,7 @@ def test_http_01(context: IntegrationTestsContext) -> None:\n def test_manual_http_auth(conte...
Python
dc07dfd07b2c137630b931cc10f69ec0c41c1150
225
2023-02-14 06:44:42+11:00
28,800
['057524aa52fce8a300e48fcdaa04ea41acac9e09']
Automatically run test files with pytest (#9576) * Switch to pytest git grep -l unittest.main | xargs sed -i 's/unittest.main()/sys.exit(pytest.main([__file__]))/g' git ls-files -m | xargs -I {} sh -c "echo 'import sys\nimport pytest' >> '{}'" isort --float-to-top . * add pytest dep * use sys.argv
[{'old_path': 'acme/tests/challenges_test.py', 'new_path': 'acme/tests/challenges_test.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,5 @@\n """Tests for acme.challenges."""\n+import sys\n import unittest\n from unittest import mock\n import urllib.parse as urllib_parse\n@@ -6,6 +7,7 @@ import urllib.pa...
Python
1fe2d671cb401808995b66db165ef62d9e7ca94f
658
2023-02-14 12:42:21-08:00
28,800
['9960c1907b53ec97b03255a813f83a0f9982acd9']
Update changelog for 2.3.0 release
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,7 @@\n \n Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n-## 2.3.0 - master\n+## 2.3.0 - 2023-02-14\n \n ### Added\n \n'}]
Python
5d34a4d982a1046e6794143ed9a63f3e05dd082b
658
2023-02-14 12:44:32-08:00
28,800
['d4b2d3202bb7cb58d3e24bcc95b104b102600005']
Add contents to certbot/CHANGELOG.md for next version
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,6 +2,22 @@\n \n Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n+## 2.4.0 - master\n+\n+### Added\n+\n+*\n+\n+### Changed\n+\n+*\n+\n+### Fixed\n+\n+*\n+\n+More details about...
Python
1b904b62c9e82f4e457709c7534657eceb15e98d
658
2023-02-14 15:13:13-08:00
28,800
['9960c1907b53ec97b03255a813f83a0f9982acd9']
Enable stale issue tracker (#9580)
[{'old_path': '.github/workflows/stale.yml', 'new_path': '.github/workflows/stale.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,9 +11,6 @@ jobs:\n steps:\n - uses: actions/stale@v6\n with:\n- # REMOVEME: dry run to see if this works\n- debug-only: true\n-\n # ...
Python
a3c9371dc5d3f51b1382da84acc3bb42bea8426b
225
2023-02-16 16:02:02+11:00
28,800
['fedb0b5f9d5bfdd560ab65cf556f1695047a5c47']
Use pytest assertions (#9585) * run unittest2pytest The command used here was `unittest2pytest -nw acme/tests certbot*/tests`. * fix with pytest.raises * add parens to fix refactoring * <= not <
[{'old_path': 'acme/tests/challenges_test.py', 'new_path': 'acme/tests/challenges_test.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,7 +23,7 @@ class ChallengeTest(unittest.TestCase):\n from acme.challenges import Challenge\n from acme.challenges import UnrecognizedChallenge\n chall...
Python
2a7eeef17643526cd5ee32d8ae23850c96e3c33e
225
2023-02-16 11:17:47-08:00
28,800
['a3c9371dc5d3f51b1382da84acc3bb42bea8426b']
Polish snap_build.py (#9584) I wanted to try to make our tooling's messaging about it a little clearer. While fixing my typo/bad English, we happened to hit a "Chroot problem" failure! See the logs for the CI first attempt at https://dev.azure.com/certbot/certbot/_build/results?buildId=6416&view=results. Looking...
[{'old_path': 'tools/snap/build_remote.py', 'new_path': 'tools/snap/build_remote.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -48,7 +48,7 @@ def _snap_log_name(target: str, arch: str):\n \n def _execute_build(\n target: str, archs: Set[str], status: Dict[str, Dict[str, str]],\n- workspace: str)...
Python
1cb48eca58c2e3133edd6230ac39c10ee78916f7
288
2023-02-22 12:16:28-08:00
28,800
['2a7eeef17643526cd5ee32d8ae23850c96e3c33e']
Remove update symlinks (#9592) * Add deprecation warning when update_symlinks is run * Remove information about update_symlinks from help * ignore our own warning and remove unused imports * Update changelog
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -6,7 +6,8 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n ### Added\n \n-*\n+* We deprecated support for the update_symlinks command. Support will be removed in a following\...
Python
a42cffc3517776e53df3750ce8c981db67f029e5
16
2023-02-22 17:53:45-08:00
18,000
['1cb48eca58c2e3133edd6230ac39c10ee78916f7']
generate multiarch images for non-architecture tags (#9586) * generate multiarch images for non-architecture tags * lock docker build to legacy docker buider, and bugfix * rename deploy.sh to deploy_by_arch.sh * Update documentation related to multiarch Docker * Consistent IFS value with respect to other s...
[{'old_path': '.azure-pipelines/templates/stages/deploy-stage.yml', 'new_path': '.azure-pipelines/templates/stages/deploy-stage.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,7 +11,23 @@ stages:\n - template: ../jobs/snap-deploy-job.yml\n parameters:\n snapReleaseChannel: ${{ parame...
Python
1cb8c389b70de2d7f1c83bdf99286eb61b535e93
180
2023-02-25 09:32:38+11:00
-39,600
['7c840a7dfdef2500f45999cc33c4544a4a822385']
note the issue in the CHANGELOG
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -15,7 +15,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n ### Fixed\n \n-*\n+* Reverted [#9475](https://github.com/certbot/certbot/pull/9475) due to a performance regressi...
Python
34e6b1e74db1f0af21224208cc7a3507d8cbf301
491
2023-02-27 15:45:19-08:00
-3,600
['72be7999ed66b3e42475d97281f972c8cde8415e']
Remove redundant OCSPTestOpenSSL.tearDown (#9599)
[{'old_path': 'certbot/tests/ocsp_test.py', 'new_path': 'certbot/tests/ocsp_test.py', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -37,9 +37,6 @@ class OCSPTestOpenSSL(unittest.TestCase):\n mock_exists.return_value = True\n self.checker = ocsp.RevocationChecker(enforce_openssl_binar...
Python
173b832a8fc27eaa80bae6629d446367349f9572
184
2023-02-28 12:38:53-08:00
28,800
['34e6b1e74db1f0af21224208cc7a3507d8cbf301']
Create Weekly Notification Message for Certbot Team Composes Mattermost message to team channel
[{'old_path': None, 'new_path': '.github/workflows/notify_weekly.yaml', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,25 @@\n+name: Weekly Github Update\n+\n+on:\n+ schedule:\n+ # Every week on Thursday @ 1:00\n+ - cron: "0 1 * * 4"\n+jobs:\n+ send-mattermost-message:\n+ runs-on: ubuntu-latest\n+\n+...
Python
676863760a710edd29c5d8fdba2eced10e5edd0d
184
2023-02-28 13:15:41-08:00
28,800
['34e6b1e74db1f0af21224208cc7a3507d8cbf301']
Create Workflow for Merge Notifications Sent to Mattermost Channel for Certbot Team to check and be generally aware of more granular merge events.
[{'old_path': None, 'new_path': '.github/workflows/merged.yaml', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,24 @@\n+name: Merge Event\n+\n+on:\n+ pull_request:\n+ types:\n+ - closed\n+\n+jobs:\n+ if_merged:\n+ if: github.event.pull_request.merged == true\n+ runs-on: ubuntu-latest\n+ steps...
Python
87f8eca03347ad84103b8fc8804161b02edec230
184
2023-02-28 17:39:17-08:00
28,800
['10b0fb6da0edb0002b9e2bfd62c3a4c3a80ac589']
Update .github/workflows/notify_weekly.yaml Remove trailing char
[{'old_path': '.github/workflows/notify_weekly.yaml', 'new_path': '.github/workflows/notify_weekly.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -12,8 +12,8 @@ jobs:\n - name: Create Mattermost Message\n run: |\n DATE=$(date --date="7 days ago" +"%Y-%m-%d")\n- MERGED_URL="https://gi...
Python
bdd81a5961624dd3eb904adece9a363a04a38908
181
2023-03-01 22:41:00+00:00
-39,600
['34e6b1e74db1f0af21224208cc7a3507d8cbf301']
google: ignore declare_namespace deprecation warnings (#9604) Fixes the nopin build on master. --------- Co-authored-by: Brad Warren <bmw@users.noreply.github.com>
[{'old_path': 'pytest.ini', 'new_path': 'pytest.ini', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -21,9 +21,12 @@\n # updated.\n # 4) Ignore our own PendingDeprecationWarning about update_symlinks soon to be dropped.\n # See https://github.com/certbot/certbot/issues/6284.\n+# 5) Ignore pkg_resources.declare...
Python
cd467f2ce163710b475363ee7f4cb96a65ddebab
225
2023-03-02 10:28:20+11:00
28,800
['bdd81a5961624dd3eb904adece9a363a04a38908']
remove nose cruft (#9603)
[{'old_path': 'certbot-apache/tests/centos_test.py', 'new_path': 'certbot-apache/tests/centos_test.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -136,8 +136,6 @@ class UseCorrectApacheExecutableTest(util.ApacheTest):\n class MultipleVhostsTestCentOS(util.ApacheTest):\n """Multiple vhost tests for CentOS / ...
Python
da01846d34ba564934d0164b47ba65b0c646506b
225
2023-03-02 06:48:40-08:00
28,800
['cd467f2ce163710b475363ee7f4cb96a65ddebab']
Remove unnecessary unittest (#9596) Now that we're using pytest more aggressively, I think we should start transitioning our tests to that style rather than continuing to use unittest. This PR removes some unnecessary uses of unittest I found. I kept the test classes (while removing the inheritance from unittest.Te...
[{'old_path': 'acme/tests/jose_test.py', 'new_path': 'acme/tests/jose_test.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -6,10 +6,7 @@ import unittest\n import pytest\n \n \n-class JoseTest(unittest.TestCase):\n- """Tests for acme.jose shim."""\n-\n- def _test_it(self, submodule, attribute):\n+def _test_...
Python
077cfb7861a80eb161a38f2394686136263e44d5
184
2023-03-03 11:06:27-08:00
28,800
['bd3e3d1af1d1fbd65ed90a362cef86db59a2b62a']
Update .github/workflows/merged.yaml Escape any double quotes in the Title that may come in
[{'old_path': '.github/workflows/merged.yaml', 'new_path': '.github/workflows/merged.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,7 +19,7 @@ jobs:\n USER: ${{ github.actor }}\n TITLE: ${{ github.event.pull_request.title }}\n run: |\n- echo "{\\"text\\":\\"[$REPO] | [$TITLE #...
Python
9f5e6667028a912f59307ba0c0ab4a7586630f99
184
2023-03-03 11:09:56-08:00
28,800
['077cfb7861a80eb161a38f2394686136263e44d5']
Add a space for link selection
[]
Python
397f6bc20ae28ef666fa8fc63be3b144a881e8a3
181
2023-03-07 05:40:39-08:00
-39,600
['48b499a38f9b39c238ede5baa2edb23e16a8b8df']
docs: link for certbot-standalone-nfq plugin (#9607)
[{'old_path': 'certbot/docs/using.rst', 'new_path': 'certbot/docs/using.rst', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -323,6 +323,7 @@ Porkbun_ Y N DNS Authentication for Porkbun\n Infomaniak_ Y N DNS Authentication using Infomaniak Domains API\n dns-multi_ Y N DNS a...
Python
6c22e29875883cd54a60df8818dfdd0a2d47e9a3
184
2023-03-07 12:42:39-08:00
28,800
['9f5e6667028a912f59307ba0c0ab4a7586630f99']
Update to include sanitization for JSON file
[{'old_path': '.github/workflows/merged.yaml', 'new_path': '.github/workflows/merged.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,7 +19,13 @@ jobs:\n USER: ${{ github.actor }}\n TITLE: ${{ github.event.pull_request.title }}\n run: |\n- echo "{\\"text\\":\\"[$REPO] | [${TIT...
Python
b586672f78c43897bcc3c7faf3f5ba2d8eada16f
658
2023-03-07 13:17:25-08:00
28,800
['397f6bc20ae28ef666fa8fc63be3b144a881e8a3']
Update changelog for 2.4.0 release
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,7 @@\n \n Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n-## 2.4.0 - master\n+## 2.4.0 - 2023-03-07\n \n ### Added\n \n'}]
Python
336ca91c26a8baf4fa7f785c69176914466d6b7e
658
2023-03-07 13:18:07-08:00
28,800
['eeb88c085557a5db5713d5e95446d4a0a932b7ca']
Add contents to certbot/CHANGELOG.md for next version
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,6 +2,22 @@\n \n Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n+## 2.5.0 - master\n+\n+### Added\n+\n+*\n+\n+### Changed\n+\n+*\n+\n+### Fixed\n+\n+*\n+\n+More details about...
Python
5d5dc429c477a308a23764a3bd19659b1c5b169e
165
2023-03-21 10:49:39-07:00
14,400
['c07b5efb7f522a7c7f5a5eac8754c6f527d8ef9e']
acme.messages.OrderResource: Make roundtrippable through JSON (#9617) Right now if you to_json() an `OrderResource` and later deserialize it, the `AuthorizationResource` objects don't come back through the round-trip (they just get de-jsonified as frozendicts and worse, they can't even be passed to `AuthorizationRe...
[{'old_path': 'AUTHORS.md', 'new_path': 'AUTHORS.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,6 +23,7 @@ Authors\n * [amplifi](https://github.com/amplifi)\n * [Andrew Murray](https://github.com/radarhere)\n * [Andrzej Górski](https://github.com/andrzej3393)\n+* [Anna Glasgall](https://github.com/aglasgall...
Python
8e28e36178ec6092ddbdc5f507c23452e01d3146
331
2023-03-23 11:09:14+11:00
14,400
['5d5dc429c477a308a23764a3bd19659b1c5b169e']
Add async interface for finalization to acme.client.ClientV2 (#9622) * Add async interface for finalization to acme.client.ClientV2 Add `begin_order_finalization()`/`poll_finalization()` to `acme.client.ClientV2`, which are directly analogous to `answer_challenge()`/`poll_authorizations()`. This allows us to fin...
[{'old_path': 'acme/acme/client.py', 'new_path': 'acme/acme/client.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -210,23 +210,35 @@ class ClientV2:\n raise errors.ValidationError(failed)\n return orderr.update(authorizations=responses)\n \n- def finalize_order(self, orderr: messages.Orde...
Python
7ce1f1789e6e0a14453548b1928c7f1c86ca84cb
236
2023-03-23 07:28:26-07:00
-3,600
['8e28e36178ec6092ddbdc5f507c23452e01d3146']
improve documentation about shell commands in hooks (#9612) Fixes #9611. Signed-off-by: Christoph Anton Mitterer <mail@christoph.anton.mitterer.name>
[{'old_path': 'certbot/certbot/_internal/cli/__init__.py', 'new_path': 'certbot/certbot/_internal/cli/__init__.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -387,6 +387,9 @@ def prepare_and_parse_args(plugins: plugins_disco.PluginsRegistry, args: List[st\n helpful.add(\n ["renew", "reconfigure"], "...
Python
8037321ad772ff1031cb1b599d81922c28e5b984
181
2023-03-24 07:28:13+11:00
-39,600
['7ce1f1789e6e0a14453548b1928c7f1c86ca84cb']
dns-route53: deprecate --dns-route53-propagation-seconds (#9619)
[{'old_path': 'certbot-dns-route53/certbot_dns_route53/__init__.py', 'new_path': 'certbot-dns-route53/certbot_dns_route53/__init__.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -8,17 +8,6 @@ subsequently removing, TXT records using the Amazon Web Services Route 53 API.\n `certbot.eff.org <https://certbot.ef...
Python
a16f316b8fe32366543dc4abb8e043dc1ba7a537
181
2023-03-27 11:12:18-07:00
-39,600
['8037321ad772ff1031cb1b599d81922c28e5b984']
logging: increase pre-argparse logging level to WARNING (#9629)
[{'old_path': 'certbot/certbot/_internal/log.py', 'new_path': 'certbot/certbot/_internal/log.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -75,7 +75,10 @@ def pre_arg_parse_setup() -> None:\n \n stream_handler = ColoredStreamHandler()\n stream_handler.setFormatter(logging.Formatter(CLI_FMT))\n- stre...
Python
fbf7f1f4d17a528330d8a1de7da390515c8741ea
181
2023-03-27 11:13:16-07:00
-39,600
['a16f316b8fe32366543dc4abb8e043dc1ba7a537']
logging: use logger.warning for DeprecatedArgumentAction (#9630)
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -21,7 +21,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n ### Fixed\n \n-*\n+* Deprecated flags were inadvertently not printing warnings since v1.16.0. This is now fixed.\...
Python
f004383582d5c0b3b21f95fed40f20cdf808a9d2
181
2023-03-27 11:27:48-07:00
-39,600
['fbf7f1f4d17a528330d8a1de7da390515c8741ea']
avoid pyOpenSSL 23.1.0 (#9631) Our `NO_PIN` test [fails](https://dev.azure.com/certbot/certbot/_build/results?buildId=6542&view=logs&j=ce03f7c1-1e3f-5d55-28be-f084e7c62a50&t=597fea95-d44e-53a2-5b71-76ed20bd4dde) due to https://github.com/pyca/pyopenssl/issues/1199. This PR might strictly not be necessary once a new...
[{'old_path': 'acme/setup.py', 'new_path': 'acme/setup.py', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -8,7 +8,8 @@ version = '2.5.0.dev0'\n install_requires = [\n 'cryptography>=2.5.0',\n 'josepy>=1.13.0',\n- 'PyOpenSSL>=17.5.0',\n+ # pyOpenSSL 23.1.0 is a bad release: https://github.com/pyca/pyop...
Python
208ef4eb942c7129dd265632de740ed1fab53c98
225
2023-03-27 17:01:27-07:00
25,200
['f004383582d5c0b3b21f95fed40f20cdf808a9d2']
remove CERTBOT_NO_PIN (#9634) Adrien and I added this is in https://github.com/certbot/certbot/pull/6590 in response to https://github.com/certbot/certbot/issues/6582 which I wrote. I now personally think these tests are way more trouble than they're worth. In almost all cases, the versions pinned in `tools/require...
[{'old_path': '.azure-pipelines/templates/jobs/extended-tests-jobs.yml', 'new_path': '.azure-pipelines/templates/jobs/extended-tests-jobs.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -17,10 +17,6 @@ jobs:\n linux-py310:\n PYTHON_VERSION: 3.10\n TOXENV: py310\n- linux-py37-n...
Python
e10e549a95a3a3ca9af66f3eeb1ae5e1797546d5
181
2023-03-28 08:44:19-07:00
-39,600
['208ef4eb942c7129dd265632de740ed1fab53c98']
renewal: fix key_type not being preserved on <v1.25.0 renewal configs (#9636) Fixes #9635.
[{'old_path': 'certbot-ci/certbot_integration_tests/certbot_tests/test_main.py', 'new_path': 'certbot-ci/certbot_integration_tests/certbot_tests/test_main.py', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -936,3 +936,24 @@ def test_preferred_chain(context: IntegrationTestsContext) -> None:\n with open(conf...
Python
6832521272126f61038fcacbf84eeb7eff46cc5f
225
2023-03-28 14:02:33-07:00
25,200
['e10e549a95a3a3ca9af66f3eeb1ae5e1797546d5']
Make acme tests internal (#9625) This is a first step towards implementing the plan I described at https://github.com/certbot/certbot/issues/7909#issuecomment-1448675456 which got a +1 from both Erica and Will. Similar changes for our other packages will be made in followup PRs to try and make this easier to review. ...
[{'old_path': '.pylintrc', 'new_path': '.pylintrc', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -48,7 +48,10 @@ ignore=CVS\n # ignore-list. The regex matches against paths and can be in Posix or Windows\n # format. Because '\\' represents the directory delimiter on Windows systems, it\n # can't be used as an esca...
Python
16cc1a74be67d3afc0f3aab16e831afbf1be0c02
225
2023-03-28 14:44:55-07:00
25,200
['6832521272126f61038fcacbf84eeb7eff46cc5f']
make certbot tests internal (#9627) This is the Certbot version of https://github.com/certbot/certbot/pull/9625.
[{'old_path': 'certbot/MANIFEST.in', 'new_path': 'certbot/MANIFEST.in', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,7 +4,6 @@ include LICENSE.txt\n recursive-include docs *\n recursive-include examples *\n recursive-include certbot/tests/testdata *\n-recursive-include tests *.py\n include certbot/ssl-dhparams....
Python
ed6bbde38fc94bcce0dfd797187b1efe801b274d
225
2023-03-28 14:55:44-07:00
25,200
['16cc1a74be67d3afc0f3aab16e831afbf1be0c02']
Make apache tests internal (#9637) This is the certbot-apache version of #9625.
[{'old_path': 'certbot-apache/MANIFEST.in', 'new_path': 'certbot-apache/MANIFEST.in', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,8 +1,8 @@\n include LICENSE.txt\n include README.rst\n-recursive-include tests *\n recursive-include certbot_apache/_internal/augeas_lens *.aug\n recursive-include certbot_apache/_i...
Python
9e30e8afa9fafe0db96e3683b9dec682d03a99b3
225
2023-03-28 15:01:31-07:00
25,200
['ed6bbde38fc94bcce0dfd797187b1efe801b274d']
make tests internal (#9638) This is the certbot-nginx version of #9625.
[{'old_path': 'certbot-nginx/MANIFEST.in', 'new_path': 'certbot-nginx/MANIFEST.in', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,7 @@\n include LICENSE.txt\n include README.rst\n-recursive-include tests *\n recursive-include certbot_nginx/_internal/tls_configs *.conf\n+recursive-include certbot_nginx/_inte...
Python
ba3dde938459ca3ab7983a6eb812da4034d2d25c
225
2023-03-29 09:10:34+11:00
25,200
['9e30e8afa9fafe0db96e3683b9dec682d03a99b3']
make dns tests internal (#9639)
[{'old_path': 'certbot-dns-cloudflare/MANIFEST.in', 'new_path': 'certbot-dns-cloudflare/MANIFEST.in', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,6 @@\n include LICENSE.txt\n include README.rst\n recursive-include docs *\n-recursive-include tests *\n include certbot_dns_cloudflare/py.typed\n global-exclud...
Python
c987c3f3aae14231063770e978399f8689c59309
225
2023-03-28 22:23:16+00:00
25,200
['ba3dde938459ca3ab7983a6eb812da4034d2d25c']
remove boulder-integration.conf.sh (#9640)
[{'old_path': 'certbot-nginx/certbot_nginx/_internal/tests/boulder-integration.conf.sh', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': '@@ -1,107 +0,0 @@\n-#!/usr/bin/env bash\n-# Based on\n-# https://www.exratione.com/2014/03/running-nginx-as-a-non-root-user/\n-# https://github.com/exratione/non-root...
Python
63fb97d8dea73ba63964f69fac0b15acfed02b3e
225
2023-03-28 22:29:08+00:00
25,200
['c987c3f3aae14231063770e978399f8689c59309']
add changelog entry (#9641)
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -18,6 +18,8 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).\n [GetChange API](https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html)\n to determine if a ...
Python
608d731e2b1cbb621cfe6d13ed0c2e72ec3a2de5
225
2023-03-31 09:20:44+11:00
25,200
['63fb97d8dea73ba63964f69fac0b15acfed02b3e']
Make mypy pass on our tests (#9648) * make mypy pass on our tests * fix grammar
[{'old_path': 'certbot-apache/certbot_apache/_internal/tests/apache-conf-files/apache-conf-test-pebble.py', 'new_path': 'certbot-apache/certbot_apache/_internal/tests/apache-conf-files/apache-conf-test-pebble.py', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -12,8 +12,7 @@ from certbot_integration_tests.utils impo...
Python
097af18417020d9108bda4f09685dddac26a0039
225
2023-03-31 10:02:12+11:00
25,200
['608d731e2b1cbb621cfe6d13ed0c2e72ec3a2de5']
remove readlink (#9649)
[{'old_path': 'tools/pip_install.py', 'new_path': 'tools/pip_install.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,11 +11,9 @@ import subprocess\n import sys\n import tempfile\n \n-import readlink\n-\n \n def find_tools_path():\n- return os.path.dirname(readlink.main(__file__))\n+ return os.path.dirn...
Python
1bd6bef42f2a1f245bdcccd899c975f96d52673f
223
2023-04-02 11:15:08+10:00
25,200
['097af18417020d9108bda4f09685dddac26a0039']
Update __init__.py (#9653) Removed two en_US meta-commas to cure the spliced sentences.
[{'old_path': 'certbot-dns-rfc2136/certbot_dns_rfc2136/__init__.py', 'new_path': 'certbot-dns-rfc2136/certbot_dns_rfc2136/__init__.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -161,8 +161,8 @@ queries to, with an\n zone option. The zone will be then visible in both zones with exactly the same content.\n \n ....
Python
df85c25da824ffd284a0d0b83ff4d9e2f60f4c82
181
2023-04-03 10:20:22-07:00
-36,000
['1bd6bef42f2a1f245bdcccd899c975f96d52673f']
add dns_route53_propagation_seconds to DEPRECATED_OPTIONS (#9652) Fixes #9651.
[{'old_path': 'certbot/certbot/_internal/cli/cli_constants.py', 'new_path': 'certbot/certbot/_internal/cli/cli_constants.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -93,4 +93,6 @@ DEPRECATED_OPTIONS = {\n "no_self_upgrade",\n "no_bootstrap",\n "no_permissions_check",\n+ "dns_route53_propagatio...
Python
10ba4ea349f745c0530f7949bb36c6b57bd7c0db
224
2023-04-04 08:06:41-07:00
25,200
['df85c25da824ffd284a0d0b83ff4d9e2f60f4c82']
Update changelog for 2.5.0 release
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,7 @@\n \n Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n-## 2.5.0 - master\n+## 2.5.0 - 2023-04-04\n \n ### Added\n \n'}]
Python
86c51acb91611cb1ef73a27878f930768b4b68d4
224
2023-04-04 08:07:50-07:00
25,200
['3c667e8fffc2f6f4304f284ea52531bbf750a6c4']
Add contents to certbot/CHANGELOG.md for next version
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,6 +2,22 @@\n \n Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n+## 2.6.0 - master\n+\n+### Added\n+\n+*\n+\n+### Changed\n+\n+*\n+\n+### Fixed\n+\n+*\n+\n+More details about...
Python
a78073812cd414a90fdd10af127b92cd52fd3ab8
225
2023-04-05 16:43:26-07:00
25,200
['45327d00c4a4b7829a7bbaa53471cfb0b9266db2']
Always "pipstrap" when running pip_install.py (#9658) Fixes https://github.com/certbot/certbot/issues/7921. In all cases when we run `pip_install.py`, we first run `pipstrap.py`. This PR combines these two steps for convenience and to make always doing that less error prone. This will also help me with some of the ...
[{'old_path': '.azure-pipelines/templates/jobs/packaging-jobs.yml', 'new_path': '.azure-pipelines/templates/jobs/packaging-jobs.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -62,7 +62,6 @@ jobs:\n addToPath: true\n - script: |\n python -m venv venv\n- venv\\Scripts\\python t...
Python
7a68b2914007133ca517b0e5d945a45db7f5212b
225
2023-04-07 10:28:17+10:00
25,200
['a78073812cd414a90fdd10af127b92cd52fd3ab8']
update min cryptography (#9663)
[{'old_path': 'acme/setup.py', 'new_path': 'acme/setup.py', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -6,7 +6,7 @@ from setuptools import setup\n version = '2.6.0.dev0'\n \n install_requires = [\n- 'cryptography>=2.5.0',\n+ 'cryptography>=3.2.1',\n 'josepy>=1.13.0',\n # pyOpenSSL 23.1.0 is a bad r...
Python
9ee1eee21944bb0e857b8f6ce395ea617d41099a
16
2023-04-08 12:22:16-07:00
14,400
['7a68b2914007133ca517b0e5d945a45db7f5212b']
Build with buildkit (#9628) * generate multiarch images for non-architecture tags * Update documentation related to multiarch Docker * Remove qemu and switch to build via buildkit * Move to multistage Dockerfile * refactor docker script arg parsing and fix merge bugs * removed unnecessary testing script...
[{'old_path': '.azure-pipelines/templates/jobs/packaging-jobs.yml', 'new_path': '.azure-pipelines/templates/jobs/packaging-jobs.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,12 +4,12 @@ jobs:\n vmImage: ubuntu-22.04\n strategy:\n matrix:\n- amd64:\n- DOCKER_ARCH: amd64\n ...
Python
5149dfd96e9b57b98551670c203d7b5f986a9c32
225
2023-04-09 11:49:08+10:00
25,200
['9ee1eee21944bb0e857b8f6ce395ea617d41099a']
Add some missing type libraries for mypy (#9657) * add some missing types * install pkg-config * install pkg-config for docker too * add pkg-config to plugins * pkg-config when cryptography may need to be built * deps cleanup * more comments * more tweaks
[{'old_path': '.azure-pipelines/templates/steps/tox-steps.yml', 'new_path': '.azure-pipelines/templates/steps/tox-steps.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,3 +1,5 @@\n+# This does not include the dependencies needed to build cryptography. See\n+# https://cryptography.io/en/latest/installation/\n ...
Python
dc05b4da7a79bf33622ffb9d6b571c59b4415688
225
2023-04-13 09:18:24+10:00
25,200
['5149dfd96e9b57b98551670c203d7b5f986a9c32']
Increase stale operations per run (#9668) * increase operations per run * update comment
[{'old_path': '.github/workflows/stale.yml', 'new_path': '.github/workflows/stale.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,8 +1,8 @@\n name: Update Stale Issues\n on:\n schedule:\n- # Run 24 minutes past the hour 4 times a day.\n- - cron: '24 */6 * * *'\n+ # Run 1:24AM every night\n+ - c...
Python
4740e20725af5a8639d8bce08b1d25241922deca
225
2023-04-16 10:30:59+10:00
25,200
['dc05b4da7a79bf33622ffb9d6b571c59b4415688']
Rewrite tox config (#9666) * rewrite tox config * fix apacheconftest-with-pebble deps * more fixes * more fixes * move comment up * fix mock location * bump cffi * update oldest constraints * Revert "fix mock location" This reverts commit 561037bfadd1f19675d03cefaf1214a52c433816. * fix ap...
[{'old_path': '.azure-pipelines/templates/jobs/extended-tests-jobs.yml', 'new_path': '.azure-pipelines/templates/jobs/extended-tests-jobs.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -17,6 +17,8 @@ jobs:\n linux-py310:\n PYTHON_VERSION: 3.10\n TOXENV: py310\n+ linux-isolate...
Python
5503d123951b8251ac1954b1890b14d508a7bec2
180
2023-04-16 10:43:00+10:00
-36,000
['4740e20725af5a8639d8bce08b1d25241922deca']
types: CredentialsConfiguration.conf can return None
[{'old_path': 'certbot-dns-digitalocean/certbot_dns_digitalocean/_internal/dns_digitalocean.py', 'new_path': 'certbot-dns-digitalocean/certbot_dns_digitalocean/_internal/dns_digitalocean.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,6 +2,7 @@\n import logging\n from typing import Any\n from typing import Ca...
Python
20ccf8c9c90ab59596b3bf9125c4feb238f98a74
225
2023-04-17 12:14:25+10:00
25,200
['4740e20725af5a8639d8bce08b1d25241922deca']
remove development dockerfile (#9676)
[{'old_path': '.azure-pipelines/templates/jobs/extended-tests-jobs.yml', 'new_path': '.azure-pipelines/templates/jobs/extended-tests-jobs.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -53,8 +53,6 @@ jobs:\n IMAGE_NAME: ubuntu-22.04\n PYTHON_VERSION: 3.8\n TOXENV: integration-dns-...
Python
996cc20cd7c13196a5bcd43e3cdee88535bb1143
225
2023-04-17 02:17:55+00:00
25,200
['20ccf8c9c90ab59596b3bf9125c4feb238f98a74']
remove unused envrc (#9677)
[{'old_path': '.envrc', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': "@@ -1,12 +0,0 @@\n-# This file is just a nicety for developers who use direnv. When you cd under\n-# the Certbot repo, Certbot's virtual environment will be automatically\n-# activated and then deactivated when you cd elsewhere. De...
Python
f41673982dbff3868f3daf0f5af80bf1fa2b9da1
8
2023-04-17 12:55:20-07:00
-7,200
['996cc20cd7c13196a5bcd43e3cdee88535bb1143']
validate lineage name (#9644) Fixes #6127. * Added lineage name validity check * Verify lineage name validity before obtaining certificate * Added linage name limitation to cli help * Update documentation on certificate name * Added lineage name validation to changelog * Use filepath seperators to de...
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -10,7 +10,8 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n ### Changed\n \n-*\n+* Lineage name validity is performed for new lineages. `--cert-name` may no longer contain\n...
Python
31094bc5478d72ab078f5da7ea8b604aaeced1a2
225
2023-04-17 13:01:00-07:00
25,200
['f41673982dbff3868f3daf0f5af80bf1fa2b9da1']
rewrite coverage tests (#9669) In addition to the speed improvements in CI, the speed improvements locally with both this https://github.com/certbot/certbot/pull/9666 which this builds on is even more significant. After it's been run once so it's had a chance to set up the different virtual environments, `tox` locally...
[{'old_path': '.coveragerc', 'new_path': '.coveragerc', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,24 @@\n [run]\n omit = */setup.py\n+source =\n+ acme\n+ certbot\n+ certbot-apache\n+ certbot-dns-cloudflare\n+ certbot-dns-digitalocean\n+ certbot-dns-dnsimple\n+ certbot-dns-dnsmadeeas...
Python
b0d0a832772bc7747f65c2c2c90d0f790fa40f8a
143
2023-04-22 07:58:18+10:00
-3,600
['399b932a869403b142fb0271aec510614085d6ed']
google: use Application Default Credentials where available (#9670) * google: use Application Default Credentials where available * Updated custom role documentation
[{'old_path': 'AUTHORS.md', 'new_path': 'AUTHORS.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -123,6 +123,7 @@ Authors\n * [James Balazs](https://github.com/jamesbalazs)\n * [James Kasten](https://github.com/jdkasten)\n * [Jason Grinblat](https://github.com/ptychomancer)\n+* [Jawshua](https://github.com/jawsh...
Python
f378ec4a0f749c04e35eb925b255d8ef251c1c5c
567
2023-04-25 11:25:57+10:00
-3,600
['b0d0a832772bc7747f65c2c2c90d0f790fa40f8a']
Optionally sign initial SOA query (#9672) * Optionally sign initial SOA query Added configuration file option to enable signing of the initial SOA query when determining the authoritative nameserver for the zone. Default is disabled. * Better handling of sign_query configuration and fix lint issues * Update s...
[{'old_path': 'AUTHORS.md', 'new_path': 'AUTHORS.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -227,6 +227,7 @@ Authors\n * [Rémy HUBSCHER](https://github.com/Natim)\n * [Rémy Léone](https://github.com/sieben)\n * [Richard Barnes](https://github.com/r-barnes)\n+* [Richard Harman](https://github.com/warewolf)\n...
Python
67f14f177b53d264d9eb582d8524362afbb4d8f3
181
2023-04-25 11:27:32+10:00
-36,000
['f378ec4a0f749c04e35eb925b255d8ef251c1c5c']
ignore invalid plugin selection choices (#9665) * plugins: ensure --installer/--authenticator is properly filtered * fix windows failure in test
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -32,11 +32,13 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).\n * `--dns-google-credentials` now supports additional types of file-based credential, such as\n [External Account...
Python
10fba2ee3fbaf025ba87eb8aaeb5b5e53b12312a
181
2023-04-25 16:43:18-07:00
-36,000
['67f14f177b53d264d9eb582d8524362afbb4d8f3']
docs: clarify --dry-run documentation (#9683) * remove pointless paragraph about --server and wildcards * docs: update help text for --dry-run and --staging * docs: update "Changing the ACME Server" for --dry-run * add note about webserver reloads
[{'old_path': 'certbot/certbot/_internal/cli/__init__.py', 'new_path': 'certbot/certbot/_internal/cli/__init__.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -149,16 +149,13 @@ def prepare_and_parse_args(plugins: plugins_disco.PluginsRegistry, args: List[st\n [None, "testing", "renew", "certonly"],\n ...
Python
8a0b0f63de10aa2dd2f53adc6b0f47e53d97b64f
547
2023-04-26 08:23:11-07:00
-3,600
['10fba2ee3fbaf025ba87eb8aaeb5b5e53b12312a']
Support unknown ACME challenge types (#9680) This is, to my knowledge, an entirely inconsequential PR to add support for entirely novel challenge types. Presently in the [`challb_to_achall` function](https://github.com/certbot/certbot/blob/399b932a869403b142fb0271aec510614085d6ed/certbot/certbot/_internal/auth_hand...
[{'old_path': 'AUTHORS.md', 'new_path': 'AUTHORS.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -221,6 +221,7 @@ Authors\n * [Piotr Kasprzyk](https://github.com/kwadrat)\n * [Prayag Verma](https://github.com/pra85)\n * [Preston Locke](https://github.com/Preston12321)\n+* [Q Misell][https://magicalcodewit.ch]\n ...
Python
5b5a2efdc9d53492fa1d9c04b845fc5d5415cce3
225
2023-05-04 10:42:49-07:00
25,200
['8a0b0f63de10aa2dd2f53adc6b0f47e53d97b64f']
squelch warnings (#9689)
[{'old_path': 'pytest.ini', 'new_path': 'pytest.ini', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -23,10 +23,13 @@\n # See https://github.com/certbot/certbot/issues/6284.\n # 5) Ignore pkg_resources.declare_namespace used in a large number of Google's Python\n # libs. e.g. https://github.com/googleapis/goog...
Python
6e52695faa354f634f87f74cdfb6dcfb26013635
181
2023-05-08 14:34:40-07:00
-36,000
['5b5a2efdc9d53492fa1d9c04b845fc5d5415cce3']
dns-rfc2136: add test coverage for PR #9672 (#9684) * dns-rfc2136: add test coverage for PR #9672 * fix compatibility with oldest dnspython * rename test to be more descriptive Co-authored-by: ohemorange <ebportnoy@gmail.com> --------- Co-authored-by: ohemorange <ebportnoy@gmail.com>
[{'old_path': 'certbot-dns-rfc2136/certbot_dns_rfc2136/_internal/tests/dns_rfc2136_test.py', 'new_path': 'certbot-dns-rfc2136/certbot_dns_rfc2136/_internal/tests/dns_rfc2136_test.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -40,8 +40,19 @@ class AuthenticatorTest(test_util.TempDirTestCase, dns_test_common.Bas...
Python
d2e2a92cdd8100e9bb4745d54265aa4f4020b9f3
181
2023-05-08 14:37:14-07:00
-36,000
['6e52695faa354f634f87f74cdfb6dcfb26013635']
update farm tests (#9687) * letstest: -ubuntu18.04 +centos9stream +debian11 * letstest: username for centos 9 stream is ec2-user This is mentioned on https://centos.org/download/aws-images/ * ensure mod_ssl is installed in centos 9 stream, apache has to be restarted after mod_ssl is installed, or the snak...
[{'old_path': 'letstest/scripts/test_apache2.sh', 'new_path': 'letstest/scripts/test_apache2.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -15,8 +15,7 @@ elif [ "$OS_TYPE" = "centos" ]\n then\n CONFFILE=/etc/httpd/conf/httpd.conf\n sudo setenforce 0 || true #disable selinux\n- sudo yum -y install ht...
Python
e0e2bfe13a34f6f1343c4ae41cefc572bb7c2363
288
2023-05-09 12:44:36-07:00
25,200
['d2e2a92cdd8100e9bb4745d54265aa4f4020b9f3']
Update changelog for 2.6.0 release
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,7 @@\n \n Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n-## 2.6.0 - master\n+## 2.6.0 - 2023-05-09\n \n ### Added\n \n'}]
Python
721c4665e6333dd53ed3ab777c14d3b2b40ac1db
288
2023-05-09 12:45:29-07:00
25,200
['013621d04ed26377cf6616448b21a4c050683719']
Add contents to certbot/CHANGELOG.md for next version
[{'old_path': 'certbot/CHANGELOG.md', 'new_path': 'certbot/CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,6 +2,22 @@\n \n Certbot adheres to [Semantic Versioning](https://semver.org/).\n \n+## 2.7.0 - master\n+\n+### Added\n+\n+*\n+\n+### Changed\n+\n+*\n+\n+### Fixed\n+\n+*\n+\n+More details about...
Python
35209d921df2d6a5418141814fb0a26a7dc06f33
225
2023-05-09 17:06:47-07:00
25,200
['0ac8e10c856aa529549e377b4b6b53eb4cb4e005']
bump stale limit (#9691)
[{'old_path': '.github/workflows/stale.yml', 'new_path': '.github/workflows/stale.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -44,4 +44,4 @@ jobs:\n # Limit the number of actions per run. As of writing this, GitHub's\n # rate limit is 1000 requests per hour so we're still a ways off. See...
Python
aa270b37a23d83b812b444cfae52f64e95e4a9dd
181
2023-05-12 07:52:02+10:00
-36,000
['35209d921df2d6a5418141814fb0a26a7dc06f33']
docs: add "Choosing dependency versions" to contributing.rst (#9681) * docs: add "Choosing dependency versions" to contributing.rst * change a word
[{'old_path': 'certbot/docs/contributing.rst', 'new_path': 'certbot/docs/contributing.rst', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -621,3 +621,29 @@ https://python-poetry.org/docs/dependency-specification/.\n \n If you want to learn more about the design used here, see\n ``tools/pinning/DESIGN.md`` in the Ce...
Python
b5661e84e81a64bedb8c8d89d6d8cd3b76de5817
184
2023-05-23 10:58:40+10:00
25,200
['aa270b37a23d83b812b444cfae52f64e95e4a9dd']
Update README.rst (#9693) * Update README.rst Updating with newer info about keys and server support and removing redundant wording * Adjust from feedback
[{'old_path': 'certbot/README.rst', 'new_path': 'certbot/README.rst', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,22 +1,26 @@\n .. This file contains a series of comments that are used to include sections of this README in other files. Do not modify these comments unless you know what you are doing. tag:intro-...
Python
a5d223d1e55ce47067b64545bcecbf06bc53eb7e
658
2023-05-30 17:12:51-07:00
25,200
['b5661e84e81a64bedb8c8d89d6d8cd3b76de5817']
Replace (most) global state in cli/__init__.py (#9678) * Rewrite helpful_test to appease the linter * Use public interface to access argparse sources dict * HelpfulParser builds ArgumentSources dict, stores it in NamespaceConfig After arguments/config files/user prompted input have been parsed, we build a ma...
[{'old_path': 'certbot-compatibility-test/certbot_compatibility_test/configurators/apache/common.py', 'new_path': 'certbot-compatibility-test/certbot_compatibility_test/configurators/apache/common.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -58,7 +58,7 @@ class Proxy(configurators_common.Proxy):\n ...
Python
ff8afe827b217573866a39e685f8d21af9ecb011
551
2023-06-08 10:27:28+10:00
14,400
['468f4749b84a5f038eb5f4135b806926a6194d0c']
Update GitHub repo location letsencrypt -> certbot (#9713) * Update GitHub repo location letsencrypt -> certbot * Revert changes to CHANGELOG
[{'old_path': 'acme/setup.py', 'new_path': 'acme/setup.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -31,7 +31,7 @@ setup(\n name=\'acme\',\n version=version,\n description=\'ACME protocol implementation in Python\',\n- url=\'https://github.com/letsencrypt/letsencrypt\',\n+ url=\'https://gith...
Python
2d8a274eb52ae67f01d71238579202591d802c0c
43
2023-06-08 18:40:58+10:00
-7,200
['ff8afe827b217573866a39e685f8d21af9ecb011']
Update using.rst (#9714) Add a link to the third-party DNS authentication plugin using SOLIDserver
[{'old_path': 'certbot/docs/using.rst', 'new_path': 'certbot/docs/using.rst', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -324,6 +324,7 @@ Infomaniak_ Y N DNS Authentication using Infomaniak Domains API\n dns-multi_ Y N DNS authentication of 100+ providers using go-acme/lego\n dns-dnsma...
Python
ae6268ea3c258df415a6453c8dd4c25b93bf6b2e
177
2023-06-11 06:44:58+10:00
14,400
['2d8a274eb52ae67f01d71238579202591d802c0c']
Remove workaround that's not relevant since py2 isn't supported (#9716)
[{'old_path': 'certbot/setup.py', 'new_path': 'certbot/setup.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -14,14 +14,6 @@ min_setuptools_version=\'41.6.0\'\n if parse_version(setuptools_version) < parse_version(min_setuptools_version):\n raise RuntimeError(f\'setuptools {min_setuptools_version}+ is requir...
Python
539d48d438c0bc389a43b6490d5f899f297d20b1
181
2023-06-12 06:56:53-07:00
-36,000
['ae6268ea3c258df415a6453c8dd4c25b93bf6b2e']
letstest: replace buster with bullseye (#9718)
[{'old_path': 'letstest/targets/targets.yaml', 'new_path': 'letstest/targets/targets.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -18,13 +18,13 @@ targets:\n user: ubuntu\n #-----------------------------------------------------------------------------\n # Debian\n- - ami: ami-01db78123b2b99496\n- ...
Python
b1e5efac3cbc787234f9a52d2cd91802195e6ac1
181
2023-06-16 08:26:15-07:00
-36,000
['539d48d438c0bc389a43b6490d5f899f297d20b1']
disco: print the name of the plugin if it fails to load (#9719)
[{'old_path': 'certbot/certbot/_internal/plugins/disco.py', 'new_path': 'certbot/certbot/_internal/plugins/disco.py', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -189,8 +189,14 @@ class PluginsRegistry(Mapping):\n pkg_resources.iter_entry_points(\n constants.OLD_SETUPTOOLS_PLUGINS_ENTR...
Python
4fc4d536c1acc65646189c5b5aaf02aaa88c3f4a
441
2023-06-21 07:57:50-07:00
-7,200
['b1e5efac3cbc787234f9a52d2cd91802195e6ac1']
Add LooseVersion class with risky comparison, deprecate parse_loose_version (#9646) * Replace parse_loose_version with LooseVersion * Fix LooseVersion docstring * Strengthen LooseVersion comparison * Update changelog
[{'old_path': 'AUTHORS.md', 'new_path': 'AUTHORS.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -154,6 +154,7 @@ Authors\n * [LeCoyote](https://github.com/LeCoyote)\n * [Lee Watson](https://github.com/TheReverend403)\n * [Leo Famulari](https://github.com/lfam)\n+* [Leon G](https://github.com/LeonGr)\n * [lf](ht...
Python