Skip to content

Commit

Permalink
Revert "Contact projects with a build in the last 3 years" (#10618)
Browse files Browse the repository at this point in the history
We wanted to contact more users with the first email and then only contact those
projects with a build in the last year only.

This reverts commit 3d99b0b.
  • Loading branch information
humitos authored Aug 15, 2023
1 parent e3246d7 commit de0c6ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion readthedocs/projects/tasks/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def deprecated_build_image_notification():
)
if version:
# Use a fixed date here to avoid changing the date on each run
years_ago = timezone.datetime(2020, 8, 1)
years_ago = timezone.datetime(2022, 8, 1)
build = (
version.builds.filter(success=True, date__gt=years_ago)
.only("_config")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<li><strong>Monday, September 25, 2023</strong>: Fully remove support for building documentation without configuration file v2.</li>
</ul>

We have identified that the following projects which you maintain, and were built in the last 3 years, are impacted by this deprecation:
We have identified that the following projects which you maintain, and were built in the last year, are impacted by this deprecation:

<ul>
{% for project in projects|slice:":15" %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The timeline for this deprecation is as follows:
* Monday, September 4, 2023: Do a third and final brownout (temporarily enforce this deprecation) for 48 hours: 00:01 PST to September 5, 2023 23:59 PST (midnight)
* Monday, September 25, 2023: Fully remove support for building documentation without configuration file v2.

We have identified that the following projects which you maintain, and were built in the last 3 years, are impacted by this deprecation:
We have identified that the following projects which you maintain, and were built in the last year, are impacted by this deprecation:

{% for project in projects|slice:":15" %}
* {{ project.slug }} ({{ production_uri }}{{ project.get_absolute_url }})
Expand Down

0 comments on commit de0c6ab

Please sign in to comment.