Skip to content

Commit

Permalink
Merge pull request #233 from bmbouter/rc4-release
Browse files Browse the repository at this point in the history
RC4 release
  • Loading branch information
bmbouter authored Jul 25, 2019
2 parents cf5bada + 64da097 commit dbfee44
Show file tree
Hide file tree
Showing 15 changed files with 53 additions and 15 deletions.
51 changes: 51 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,57 @@ Changelog

.. towncrier release notes start
3.0.0rc4 (2019-07-25)
=====================

Features
--------

- Allow users to pass sha256 with each chunk to have Pulp verify the chunk.
`#4982 <https://pulp.plan.io/issues/4982>`_
- Users can view chunks info for chunked uploads in the API
`#5150 <https://pulp.plan.io/issues/5150>`_


Bugfixes
--------

- Setting missing fields on orphan cleanup tasks.
`#4662 <https://pulp.plan.io/issues/4662>`_
- Allow user to filter created resources without providing _href in a query
`#4722 <https://pulp.plan.io/issues/4722>`_
- GET of a ``Distribution`` without configuring the ``CONTENT_HOST`` setting no longer causes a 500
error.
`#4945 <https://pulp.plan.io/issues/4945>`_
- Increased artifact size field to prevent 500 errors for artifacts > 2GB in size.
`#4998 <https://pulp.plan.io/issues/4998>`_
- Allow artifacts to be created using json
`#5016 <https://pulp.plan.io/issues/5016>`_
- Have the commit endpoint dispatch a task to create artifacts from chunked uploads
`#5087 <https://pulp.plan.io/issues/5087>`_
- Allow user to delete uploaded content from a local file system when the artifact creation fails
`#5092 <https://pulp.plan.io/issues/5092>`_


Improved Documentation
----------------------

- Fix broken urls in the ``/installation/configuration.html#settings`` area.
`#5160 <https://pulp.plan.io/issues/5160>`_


Deprecations and Removals
-------------------------

- Switched the default of the ``CONTENT_HOST`` setting from ``None`` to ``''``.
`#4945 <https://pulp.plan.io/issues/4945>`_
- Removed upload parameter from artifact create endpoint and converted upload commit to return 202.
`#5087 <https://pulp.plan.io/issues/5087>`_


----


3.0.0rc3 (2019-06-28)
=====================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/4662.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4722.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/4945.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4945.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4982.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4998.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5016.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5087.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5087.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5092.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5150.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5160.doc

This file was deleted.

2 changes: 1 addition & 1 deletion pulpcore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '3.0.0rc4.dev'
__version__ = '3.0.0rc4'


from pkgutil import extend_path
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

setup(
name='pulpcore',
version='3.0.0rc4.dev',
version='3.0.0rc4',
description='Pulp Django Application and Related Modules',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit dbfee44

Please sign in to comment.