Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-02-07Really remove old docs link from README (#7758)3907b53bBrad Warren
2020-02-07Remove link to letsencrypt readthedocs (#7757)Brad Warren
After a brief discussion in Mattermost, I shut down letsencrypt.readthedocs.io. Turns out we were linking to it in our README here so let's remove the broken link. I didn't update the link to point to one of the readthedocs projects we still have because are main Certbot docs are self-hosted rather than being on readthedocs.
2020-02-07Remove text that certbot.tests.utils isn't public (#7754)Brad Warren
2020-02-07Don't display todo comments in docs (#7753)Brad Warren
Currently if you go to https://certbot.eff.org/docs/api/certbot.crypto_util.html, there is a todo comment displayed at the top of the page. These todos were written for developers, not users, so I do not think they should be shown from our documentation. This PR makes the quick and easy fix of configuring Sphinx not to show these todo items. I created #7752 to track removing all of these todos from our docstrings and disabling the Sphinx todo extension. * Set todo_include_todos=False in sphinx-quickstart * Remove todos from existing docs.
2020-02-07Merge pull request #7735 from certbot/apache-parser-v2ohemorange
[Apache v2] Merge apache-parser-v2 feature branch back to master
2020-02-07Merge pull request #7738 from osirisinferi/nginx-hostnameschoen
[nginx] Parse $hostname in `server_name`
2020-02-06Fixing existing testsOsirisInferi
2020-02-06Remove todo::OsirisInferi
2020-02-06Add test for $hostname parsingOsirisInferi
2020-02-06Merge pull request #7751 from Pilifer/masterAdrien Ferrand
Don't verify certificate in HTTP01Response.simple_verify (certbot#6614)
2020-02-06restore CHANGELOG in root directoryFilip Lajszczak
2020-02-06Merge branch 'master' of https://github.com/certbot/certbotFilip Lajszczak
2020-02-06Add triggers for only a single CI system (#7748)Brad Warren
* Configure travis-test to only run on Travis. * Configure azure-test to only run on Azure. * Add docs and comments to keep it up-to-date.
2020-02-06Set recreate = true in tox.ini. (#7746)Brad Warren
Fixes #7745.
2020-02-06Windows installer integration tests (#7724)Adrien Ferrand
As discussed in #7539, we need proper tests of the Windows installer itself in order to variety that all the logic contained in a production-grade runtime of Certbot on Windows is correctly setup by each version of the installer, and so for a variety of Windows OSes. This PR handles this requirement. The new `windows_installer_integration_tests` module in `certbot-ci` will: * run the given Windows installer * check that Certbot is properly installed and working * check that the scheduled renew task is set up * check that the scheduled task actually launch the Certbot renew logic The Windows nightly tests are updated accordingly, in order to have the tests run on Windows Server 2012R2, 2016 and 2019. These tests will evolve as we add more logic on the installer. * Configure an integration test testing the windows installer * Write the test module * Configurable installer path, prepare azure pipelines * Fix option * Update test_main.py * Add confirmation for this destructive test * Use regex to validate certbot --version output * Explicit dependency on a log output * Use an exception to ask confirmation * Use --allow-persistent-changes
2020-02-06Merge pull request #7743 from certbot/candidate-1.2.0Brad Warren
Candidate 1.2.0
2020-02-05Merge pull request #7729 from certbot/fix-nginx-typom0namon
Fix a typo in Nginx
2020-02-05Bump version to 1.3.0Erica Portnoy
2020-02-05Add contents to certbot/CHANGELOG.md for next versionErica Portnoy
2020-02-05Release 1.2.0v1.2.01.2.xErica Portnoy
2020-02-05Update changelog for 1.2.0 releaseErica Portnoy
2020-02-03Forgot to remove a `breakpoint()` statementOsirisInferi
2020-02-02Add CHANGELOG entryOsirisInferi
2020-02-02Parse `$hostname` in `server_name`OsirisInferi
2020-01-31Turn off Travis notifications in test branches. (#7733)Brad Warren
When I want to manually run the full test suite to test something, I've been manually deleting our notification setup from `.travis.yml` to avoid spamming IRC with my personal test failures. This PR sets this behavior up to happen automatically by turning off IRC notifications in test branches. You can see this working by noticing the IRC notification section in the bottom of the config for this PR at https://travis-ci.com/certbot/certbot/builds/146827907/config and the fact that it is absent from a `test-` branch based on this one at https://travis-ci.com/certbot/certbot/jobs/282059094/config.
2020-01-30Update instructions about how to build docs (#7605)Brad Warren
2020-01-30Merge pull request #7731 from certbot/master_to_ap2apache-parser-v2Brad Warren
[Apache v2] Merge master to apache-parser-v2
2020-01-30Merge remote-tracking branch 'origin/master' into ap2_to_masterJoona Hoikkala
2020-01-30Add space between words.Brad Warren
2020-01-30Remove SSLCompression off line from all config options (#7726)ohemorange
Based on discussion at https://github.com/certbot/certbot/pull/7712#discussion_r371451761. * Remove SSLCompression off line from all config options * Update changelog
2020-01-28Add backwards compatibility docs (#7611)Brad Warren
Fixes #7463. * Add backwards compatibility docs. * Exclude certbot-auto
2020-01-25dns-cloudflare: Implement limited-scope API Tokens (#7583)Cameron Steel
A while ago Cloudflare added support for limited-scope API Tokens in place of using a global API key, but support for them in cloudflare/python-cloudflare took a while to get through. In summary, this PR: - Implements token functionality through the INI file parameter `dns_cloudflare_api_token` (in addition to the traditional `dns_cloudflare_email` and `dns_cloudflare_api_key`). This needed a more advanced parameter validator than the built in `required_variables` mechanism. - Updates the docs to reflect the new option, needed token permissions, and version details of the `cloudflare` module * Update python-cloudflare version * Add Cloudflare API Token support to certbot-dns-cloudflare * Add token-specific errors to certbot-dns-cloudflare * Tidy up certbot-dns-cloudflare * Implement Cloudflare API Tokens in testing for certbot-dns-cloudflare(needs work) * Further tidying of certbot-dns-cloudflare * Update CHANGELOG with Cloudflare API Tokens implementation * Improve testing of certbot-dns-cloudflare * Improve certbot-dns-cloudflare test formatting * Further improve testing for certbot-dns-cloudflare * Change needed permissions for token * Add documentation regarding python-cloudflare version * Fix changelog, references to python-cloudflare and docs * Fix behaviour when domain does not match cloudflare root domain. Improve error handling. * Improve testing * Improve hints and error handling
2020-01-25Update dns-lexicon version. (#7723)Brad Warren
2020-01-25Unpin Python 3.4 dependencies (#7709)Brad Warren
* Unpin dependencies pinned back for py3.4 support. * update pinned packages * run build.py * Update boto3 and deps to work with requests
2020-01-25Disable old SSL versions and ciphersuites to follow Mozilla recommendations ↵ohemorange
in Apache (#7712) Part of #7204. Makes the smaller changes described at https://github.com/certbot/certbot/issues/7204#issuecomment-571838185 to disable many old ciphersuites and TLS versions < 1.2. Does not add checks for OpenSSL version or modify session tickets. Since Apache uses TLS protocol blacklisting instead of whitelisting (as in NGINX), we additionally may not need to determine if the server supports TLS1.3 and turn it on or off based on Apache version. * Update SSL versions and ciphersuites based on Mozilla intermediate recommendations for apache * Update constants with hashes of new config files * Update changelog
2020-01-24Drop Python 3.4 support (#7721)Brad Warren
Fixes #7393. * Remove Python 3.4 classifiers * Remove unneeded typing dependency * Exclude Python 3.4 in python_requires * Remove Python 3.4 deprecation warning * update changelog
2020-01-24Remove ECDHE-RSA-AES128-SHA from NGINX ciphers list (#7719)ohemorange
As mentioned in https://github.com/certbot/certbot/pull/7712#discussion_r370419867, it's time to remove this ciphersuite now that Windows 2008 R2 and Windows 7 are EOLed. * Remove ECDHE-RSA-AES128-SHA from NGINX ciphers list to celebrate Windows 2008 R2 deprecation * Update changelog
2020-01-24Fix collections.abc imports for Python 3.9 (#7707)Hugo van Kemenade
* Fix collections.abc imports for Python 3.9 * Update AUTHORS.md * No longer ignore collections.abc deprecation warning * Update changelog * Remove outdated comment * Disabling no-name-in-module not needed as linting is on Python 3
2020-01-24Update documentation files to remove claiming support for Python 3.4 (#7395)Amjad Mashaal
2020-01-23fixes #1948 -- MD5 on FIPS systems (#7708)Josh McCullough
* use MD5 in non-security mode to get around FIPS issue * update CHANGELOG * add myself to AUTHORS * ignore hashlib params
2020-01-22unpin macos (#7705)Brad Warren
2020-01-22Don't run Python 3.5 tests twice. (#7704)Brad Warren
2020-01-22Minor release script improvements (#7697)Brad Warren
* Do not use git diff. * Add a warning on exit.
2020-01-22Drop Travis tests for Python 3.4 (#7394)Amjad Mashaal
2020-01-22Downgrade NSIS and upgrade Python (#7702)Brad Warren
* Add --allow-downgrade to chocolatey command. * Upgrade tests to use Python 3.8.1.
2020-01-17Spelling and grammar fixes (#7695)Ville Skyttä
2020-01-17Include added/deleted TXT record name in RFC 2136 debug log (#7696)Ville Skyttä
2020-01-17Don't run some tests multiple times. (#7685)Brad Warren
2020-01-17Fix minimum certbot version in plugins (#7684)Brad Warren
Fixes the problem found at https://github.com/certbot/certbot/pull/7682#discussion_r367140415.
2020-01-17Cleanup disabled warnings list in pytest.ini. (#7690)Brad Warren