Skip to content

Commit

Permalink
Prepare releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
fschulze committed Apr 20, 2024
1 parent 91d2398 commit be4b057
Show file tree
Hide file tree
Showing 24 changed files with 71 additions and 20 deletions.
18 changes: 18 additions & 0 deletions client/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

.. towncrier release notes start

7.0.3 (2024-04-20)
==================

Bug Fixes
---------

- Require ``build>=0.7.0`` to prevent import error with older versions.

- Fix check for extracted path when testing packages related to PEP 625 changes in setuptools.

- If the server returns a message on toxresult upload, then print it as a warning.

- Provide proper error message if the API request for ``devpi use`` fails.

- Fix #1011: change HTTP status codes >=400 to use self.fatal instead of raw SystemExit, protect 403 and 404 errors from SystemExit



7.0.2 (2023-10-19)
==================

Expand Down
2 changes: 1 addition & 1 deletion client/devpi/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '7.0.3.dev0'
__version__ = '7.0.3'
1 change: 0 additions & 1 deletion client/news/1011.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion client/news/build.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion client/news/pkg_folder.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion client/news/toxresultupload.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion client/news/use.bugfix

This file was deleted.

12 changes: 12 additions & 0 deletions common/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

.. towncrier release notes start

4.0.4 (2024-04-20)
==================

Bug Fixes
---------

- Use ``filter='data'`` for ``extractall`` call on supported Python versions as additional guard to the existing out of path checks against malicious tar files.

- Remove custom ``LegacyVersion`` and use ``packaging-legacy`` instead, which is also used by pypi.org.



4.0.3 (2023-11-23)
==================

Expand Down
2 changes: 1 addition & 1 deletion common/devpi_common/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#
__version__ = '4.0.4.dev0'
__version__ = '4.0.4'
1 change: 0 additions & 1 deletion common/news/extractall.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion common/news/legacy.bugfix

This file was deleted.

21 changes: 21 additions & 0 deletions server/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

.. towncrier release notes start

6.11.0 (2024-04-20)
===================

Features
--------

- The ``devpi-fsck`` script now returns an error code when there have been missing files or checksum errors.

- Fix #983: Add plugin hook for mirror authentication header.



Bug Fixes
---------

- Preserve last modified of docs and toxresults during export/import.

- Fix #1033: Use ``int`` for ``--mirror-cache-expiry`` to fix value of ``proxy_cache_valid`` in nginx caching config.



6.10.0 (2023-12-19)
===================

Expand Down
2 changes: 1 addition & 1 deletion server/devpi_server/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '6.11.0.dev0'
__version__ = '6.11.0'
1 change: 0 additions & 1 deletion server/news/1033.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion server/news/983.feature

This file was deleted.

1 change: 0 additions & 1 deletion server/news/expimplastmod.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion server/news/fsckerror.feature

This file was deleted.

2 changes: 1 addition & 1 deletion server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_changelog():
'Documentation': 'https://doc.devpi.net',
'Source Code': 'https://github.com/devpi/devpi'
},
version='6.11.0.dev0',
version='6.11.0',
maintainer="Florian Schulze",
maintainer_email="mail@pyfidelity.com",
packages=[
Expand Down
14 changes: 14 additions & 0 deletions web/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

.. towncrier release notes start

4.2.2 (2024-04-20)
==================

Bug Fixes
---------

- style.css: Always let content be full browser height. This also gives more height with some documentation themes when content is short.

- style.css: set ``scrollbar-gutter: stable`` on ``body`` to prevent jumping content in documentation iframe.

- Fix #970: overwrite fixed html/body heights like ``100%`` in documentation iframe content.



4.2.1 (2023-07-02)
==================

Expand Down
2 changes: 1 addition & 1 deletion web/devpi_web/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.2.2.dev0'
__version__ = '4.2.2'
1 change: 0 additions & 1 deletion web/news/970.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion web/news/fullheight.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion web/news/scrollbargutter.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion web/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_changelog():
'Documentation': 'https://doc.devpi.net',
'Source Code': 'https://github.com/devpi/devpi'
},
version='4.2.2.dev0',
version='4.2.2',
maintainer="Florian Schulze",
maintainer_email="mail@pyfidelity.com",
license="MIT",
Expand Down

0 comments on commit be4b057

Please sign in to comment.