Skip to content

Commit 008a43e

Browse files
committed
Introduction of PyFunceble v3.3.9 (Teal Blauwbok: Termite)
New: * EOL information in the documentation. * EOL information in the README. * Usage of GitHub action for deployment. * 2021 in LICENSE. Improved: * Known issues section of the documentation. * The RPZ and wildcard decoding implementation. * The way we process a transaction with the database. * The way we handle errors when something was already deleted from the database. * The way we handle auto-continue under a CI engine. * The way we handle the comparison against alpha or beta version while checking for deprecation notice. Fixed: * Issue with the error handling while using multiple processes. * python-box requirement declaration. * dnspython requirement declaration. * Issue with the configuration location which is not found when the platform is unknown. * Startup issue since the beta version of PyFunceble 4.0.0. Backported: * From 4.0.0, the version comparison. Contributors: * @@AvinashReddy3108 * @DandelionSprout * @spirillen
1 parent f6474b4 commit 008a43e

File tree

160 files changed

+201
-201
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+201
-201
lines changed

.PyFunceble_production.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,11 +284,11 @@ http_codes:
284284
links:
285285
api_date_format: "https://pyfunceble.funilrys.com/api/date-format"
286286
api_no_referer: "https://pyfunceble.funilrys.com/api/no-referer"
287-
config: "https://raw.githubusercontent.com/funilrys/PyFunceble/dev/.PyFunceble_production.yaml"
288-
dir_structure: "https://raw.githubusercontent.com/funilrys/PyFunceble/dev/dir_structure_production.json"
287+
config: "https://raw.githubusercontent.com/funilrys/PyFunceble/master/.PyFunceble_production.yaml"
288+
dir_structure: "https://raw.githubusercontent.com/funilrys/PyFunceble/master/dir_structure_production.json"
289289
iana: "https://raw.githubusercontent.com/PyFunceble/iana/master/iana-domains-db.json"
290290
ipv4_reputation: "https://reputation.alienvault.com/reputation.data"
291291
psl: "https://raw.githubusercontent.com/PyFunceble/public-suffix/master/public-suffix.json"
292292
repo: "https://github.com/funilrys/PyFunceble"
293-
requirements: "https://raw.githubusercontent.com/funilrys/PyFunceble/dev/requirements.txt"
293+
requirements: "https://raw.githubusercontent.com/funilrys/PyFunceble/master/requirements.txt"
294294
user_agents: "https://raw.githubusercontent.com/PyFunceble/user_agents/master/user_agents.json"

PyFunceble/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
https://github.com/funilrys/PyFunceble
2626
2727
Project documentation:
28-
https://pyfunceble.readthedocs.io/en/dev/
28+
https://pyfunceble.readthedocs.io/en/master/
2929
3030
Project homepage:
3131
https://pyfunceble.github.io/

PyFunceble/abstracts/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
https://github.com/funilrys/PyFunceble
2727
2828
Project documentation:
29-
https://pyfunceble.readthedocs.io/en/dev/
29+
https://pyfunceble.readthedocs.io/en/master/
3030
3131
Project homepage:
3232
https://pyfunceble.github.io/

PyFunceble/abstracts/infrastructure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
https://github.com/funilrys/PyFunceble
2727
2828
Project documentation:
29-
https://pyfunceble.readthedocs.io/en/dev/
29+
https://pyfunceble.readthedocs.io/en/master/
3030
3131
Project homepage:
3232
https://pyfunceble.github.io/
@@ -103,7 +103,7 @@ class Infrastructure:
103103
:type: str
104104
"""
105105

106-
PROD_CONFIG_LINK = "https://raw.githubusercontent.com/funilrys/PyFunceble/dev/.PyFunceble_production.yaml" # pylint: disable=line-too-long
106+
PROD_CONFIG_LINK = "https://raw.githubusercontent.com/funilrys/PyFunceble/master/.PyFunceble_production.yaml" # pylint: disable=line-too-long
107107
"""
108108
Sets the link to the production configuration file.
109109

PyFunceble/abstracts/package.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
https://github.com/funilrys/PyFunceble
2727
2828
Project documentation:
29-
https://pyfunceble.readthedocs.io/en/dev/
29+
https://pyfunceble.readthedocs.io/en/master/
3030
3131
Project homepage:
3232
https://pyfunceble.github.io/
@@ -64,7 +64,7 @@ class Package:
6464
:type: str
6565
"""
6666

67-
VERSION = "3.3.9.dev (Teal Blauwbok: Termite)"
67+
VERSION = "3.3.9. (Teal Blauwbok: Termite)"
6868
"""
6969
Sets the package version.
7070

PyFunceble/abstracts/platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
https://github.com/funilrys/PyFunceble
2727
2828
Project documentation:
29-
https://pyfunceble.readthedocs.io/en/dev/
29+
https://pyfunceble.readthedocs.io/en/master/
3030
3131
Project homepage:
3232
https://pyfunceble.github.io/

PyFunceble/check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
https://github.com/funilrys/PyFunceble
2727
2828
Project documentation:
29-
https://pyfunceble.readthedocs.io/en/dev/
29+
https://pyfunceble.readthedocs.io/en/master/
3030
3131
Project homepage:
3232
https://pyfunceble.github.io/

PyFunceble/cli/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
https://github.com/funilrys/PyFunceble
2828
2929
Project documentation:
30-
https://pyfunceble.readthedocs.io/en/dev/
30+
https://pyfunceble.readthedocs.io/en/master/
3131
3232
Project homepage:
3333
https://pyfunceble.github.io/
@@ -97,7 +97,7 @@ def tool(): # pragma: no cover pylint: disable=too-many-branches,too-many-state
9797

9898
epilog = (
9999
f"{Style.BRIGHT}{Fore.YELLOW}For an in-depth usage, explanation and examples of the arguments, "
100-
f"you should read the documentation at{Fore.GREEN} https://pyfunceble.readthedocs.io/en/dev/"
100+
f"you should read the documentation at{Fore.GREEN} https://pyfunceble.readthedocs.io/en/master/"
101101
f"{Style.RESET_ALL}\n\n"
102102
f"Crafted with {Fore.RED}{Fore.RESET} by "
103103
f"{Style.BRIGHT}{Fore.CYAN}Nissar Chababy (@funilrys){Style.RESET_ALL} "

PyFunceble/cli/dispatcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
https://github.com/funilrys/PyFunceble
2727
2828
Project documentation:
29-
https://pyfunceble.readthedocs.io/en/dev/
29+
https://pyfunceble.readthedocs.io/en/master/
3030
3131
Project homepage:
3232
https://pyfunceble.github.io/

PyFunceble/cli/execution_time.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
https://github.com/funilrys/PyFunceble
2727
2828
Project documentation:
29-
https://pyfunceble.readthedocs.io/en/dev/
29+
https://pyfunceble.readthedocs.io/en/master/
3030
3131
Project homepage:
3232
https://pyfunceble.github.io/

0 commit comments

Comments
 (0)