Skip to content

Commit

Permalink
Release 3.55.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Jun 18, 2024
1 parent 7029ee4 commit 9018c96
Show file tree
Hide file tree
Showing 20 changed files with 67 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.55.0.dev
current_version = 3.55.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
60 changes: 60 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,66 @@

[//]: # (towncrier release notes start)

## 3.55.0 (2024-06-18) {: #3.55.0 }


### REST API {: #3.55.0-rest-api }

#### Features {: #3.55.0-rest-api-feature }

- Added two new metrics related to Tasks: `pulp_tasks_unblocked_waiting_queue` has the number of unblocked waiting tasks that have been waiting longer than five(5) seconds,
while `pulp_tasks_longest_unblocked_waiting_time` record the time in seconds of the longest waiting time for a task in the queue.
[#3821](https://github.com/pulp/pulpcore/issues/3821)
- Added indices to `object_id` on user and group roles tables.
[#5369](https://github.com/pulp/pulpcore/issues/5369)
- Add `pulpcore-manager openapi` command to help generate `api.json` for bindings.
[#5462](https://github.com/pulp/pulpcore/issues/5462)

#### Bugfixes {: #3.55.0-rest-api-bugfix }

- Added Pulp side batching to fix large exports that were failing due to changes in psycopg.
[#5375](https://github.com/pulp/pulpcore/issues/5375)
- Added a lock to avoid multiple workers sending metrics at the same time.
[#5442](https://github.com/pulp/pulpcore/issues/5442)
- Pulpcore no longer assumes that every plugin implementing the Replication feature supports
Publications.
[#5464](https://github.com/pulp/pulpcore/issues/5464)

#### Removals {: #3.55.0-rest-api-removal }

- Removed ``pulp_hrefs`` from task reserved resources record. Task resource locking will now use Pulp
Resource Names (PRNs) that are immutable with respect to settings changes. A resource's ``pulp_href``
can still be used in task's ``reserved_resources`` filter, Pulp will convert it to the new format
behind the scenes.
[#5148](https://github.com/pulp/pulpcore/issues/5148)
- Removed task's ``reserved_resources_record`` filter. Please use ``reserved_resources`` instead.
[#5415](https://github.com/pulp/pulpcore/issues/5415)
- Removed deprecated `plugin` query string parameter from api doc endpoint.
Please use a list of app labels with the `component` parameter instead.
- Upgrade the version of drf spectacular to 0.27.2.

#### Misc {: #3.55.0-rest-api-misc }

- [#5420](https://github.com/pulp/pulpcore/issues/5420), [#5468](https://github.com/pulp/pulpcore/issues/5468)

### Plugin API {: #3.55.0-plugin-api }

#### Removals {: #3.55.0-plugin-api-removal }

- Removed deprecated functional test fixtures for api clients.
The new `pulpcore_bindings`, `file_bindings`, ... fixtures should be used instead.
[#5417](https://github.com/pulp/pulpcore/issues/5417)

### Pulp File {: #3.55.0-pulp-file }

No significant changes.

### Pulp Cert Guard {: #3.55.0-pulp-cert-guard }

No significant changes.

---

## 3.54.0 (2024-05-22) {: #3.54.0 }

### REST API
Expand Down
2 changes: 0 additions & 2 deletions CHANGES/+apidoc_plugin.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/+spectacular.removal

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/3821.feature

This file was deleted.

4 changes: 0 additions & 4 deletions CHANGES/5148.removal

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5420.misc

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5468.misc

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/plugin_api/5417.removal

This file was deleted.

4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@
# built documents.
#
# The short X.Y version.
version = "3.55.0.dev"
version = "3.55.0"
# The full version, including alpha/beta/rc tags.
release = "3.55.0.dev"
release = "3.55.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pulp_certguard/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ class PulpCertGuardPluginAppConfig(PulpPluginAppConfig):

name = "pulp_certguard.app"
label = "certguard"
version = "3.55.0.dev"
version = "3.55.0"
python_package_name = "pulpcore"
domain_compatible = True
2 changes: 1 addition & 1 deletion pulp_file/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig):

name = "pulp_file.app"
label = "file"
version = "3.55.0.dev"
version = "3.55.0"
python_package_name = "pulpcore"
domain_compatible = True
2 changes: 1 addition & 1 deletion pulpcore/app/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class PulpAppConfig(PulpPluginAppConfig):
label = "core"

# The version of this app
version = "3.55.0.dev"
version = "3.55.0"

# The python package name providing this app
python_package_name = "pulpcore"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

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

0 comments on commit 9018c96

Please sign in to comment.