Skip to content

Commit 90e63cf

Browse files
committed
Merge branch 'main' into strict-validation-for-external-versions
2 parents 8563286 + 19791c7 commit 90e63cf

Some content is hidden

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

51 files changed

+1671
-325
lines changed

CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
Version 8.4.2
2+
-------------
3+
4+
:Date: August 29, 2022
5+
6+
* `@ericholscher <https://github.com/ericholscher>`__: Proxito redirects: pass full_path instead of re-creating it. (`#9557 <https://github.com/readthedocs/readthedocs.org/pull/9557>`__)
7+
* `@humitos <https://github.com/humitos>`__: Build: cancel old builds (`#9549 <https://github.com/readthedocs/readthedocs.org/pull/9549>`__)
8+
* `@stsewd <https://github.com/stsewd>`__: Embedded js: update docstring (`#9547 <https://github.com/readthedocs/readthedocs.org/pull/9547>`__)
9+
* `@benjaoming <https://github.com/benjaoming>`__: Docs: HTML form for getting in touch with Read the Docs for Science (`#9543 <https://github.com/readthedocs/readthedocs.org/pull/9543>`__)
10+
* `@stsewd <https://github.com/stsewd>`__: Unresolver: port changes from #9540 (`#9542 <https://github.com/readthedocs/readthedocs.org/pull/9542>`__)
11+
* `@stsewd <https://github.com/stsewd>`__: Domains: test tasks with organizations (`#9541 <https://github.com/readthedocs/readthedocs.org/pull/9541>`__)
12+
* `@stsewd <https://github.com/stsewd>`__: Proxito: set logging to debug (`#9540 <https://github.com/readthedocs/readthedocs.org/pull/9540>`__)
13+
* `@humitos <https://github.com/humitos>`__: Dependencies: pin deploy dependencies (`#9537 <https://github.com/readthedocs/readthedocs.org/pull/9537>`__)
14+
* `@humitos <https://github.com/humitos>`__: Release 8.4.1 (`#9536 <https://github.com/readthedocs/readthedocs.org/pull/9536>`__)
15+
* `@humitos <https://github.com/humitos>`__: Dependencies: pin django-structlog to 2.2.1 (`#9535 <https://github.com/readthedocs/readthedocs.org/pull/9535>`__)
16+
* `@humitos <https://github.com/humitos>`__: Code comment (`#9518 <https://github.com/readthedocs/readthedocs.org/pull/9518>`__)
17+
* `@stsewd <https://github.com/stsewd>`__: Embedded js: remove more dependency on jquery (`#9515 <https://github.com/readthedocs/readthedocs.org/pull/9515>`__)
18+
* `@humitos <https://github.com/humitos>`__: Telemetry: collect user's requirements (`#9514 <https://github.com/readthedocs/readthedocs.org/pull/9514>`__)
19+
* `@stsewd <https://github.com/stsewd>`__: Embedded js: remove some dependency from jquery (`#9508 <https://github.com/readthedocs/readthedocs.org/pull/9508>`__)
20+
* `@stsewd <https://github.com/stsewd>`__: New unresolver implementation (`#9500 <https://github.com/readthedocs/readthedocs.org/pull/9500>`__)
21+
* `@stsewd <https://github.com/stsewd>`__: Use djstripe models for organization subscriptions (`#9486 <https://github.com/readthedocs/readthedocs.org/pull/9486>`__)
22+
* `@benjaoming <https://github.com/benjaoming>`__: Park resolutions to common build problems in FAQ (`#9472 <https://github.com/readthedocs/readthedocs.org/pull/9472>`__)
23+
124
Version 8.4.1
225
-------------
326

dockerfiles/nginx/proxito.conf.template

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ server {
33
listen 80 default_server;
44
server_name $NGINX_PROXITO_SERVER_NAME;
55

6+
# Docker Compose's "logging.driver: none" is not working anymore.
7+
# So, we are disabling the logs from NGINX directly.
8+
access_log off;
9+
610
# TODO: serve the favicon.ico from the project/version itself instead
711
location /favicon.ico {
812
proxy_pass http://storage:9000/static/images/favicon.ico;

dockerfiles/nginx/web.conf.template

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ server {
44
# This should match settings.PRODUCTION_DOMAIN
55
server_name $NGINX_WEB_SERVER_NAME;
66

7+
# Docker Compose's "logging.driver: none" is not working anymore.
8+
# So, we are disabling the logs from NGINX directly.
9+
access_log off;
10+
711
location /favicon.ico {
812
proxy_pass http://storage:9000/static/images/favicon.ico;
913
break;

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969

7070
master_doc = "index"
7171
copyright = "2010, Read the Docs, Inc & contributors"
72-
version = "8.4.1"
72+
version = "8.4.2"
7373
release = version
7474
exclude_patterns = ["_build"]
7575
default_role = "obj"

0 commit comments

Comments
 (0)