Skip to content

Commit

Permalink
Release 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Jan 22, 2025
1 parent 79c2a0d commit ee775b7
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 9 deletions.
24 changes: 24 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,30 @@

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

## 3.5.0 (2025-01-22) {: #3.5.0 }

#### Features {: #3.5.0-feature }

- Added initial RBAC support.
[#860](https://github.com/pulp/pulp_deb/issues/860)
- Exposed the plain component when retrieving ReleaseComponent content via the API.
[#1167](https://github.com/pulp/pulp_deb/issues/1167)
- Expose a sha256 column for source packages that contains the digest of the dsc file.

#### Bugfixes {: #3.5.0-bugfix }

- Fixed an issue where the signing service did not properly clean up temporary files after completion.
[#1141](https://github.com/pulp/pulp_deb/issues/1141)
- Removing packages from a repository using the modify API endpoint now also removes all associated PackageReleaseComponents.
[#1190](https://github.com/pulp/pulp_deb/issues/1190)

#### Misc {: #3.5.0-misc }

- Rebase migrations to prepare for pulpcore 3.70.
[#1204](https://github.com/pulp/pulp_deb/issues/1204)

---

## 3.4.0 (2024-10-02) {: #3.4.0 }

#### Features {: #3.4.0-feature }
Expand Down
1 change: 0 additions & 1 deletion CHANGES/+add-dsc-sha256.feature

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion pulp_deb/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ class PulpDebPluginAppConfig(PulpPluginAppConfig):

name = "pulp_deb.app"
label = "deb"
version = "3.5.0.dev"
version = "3.5.0"
python_package_name = "pulp_deb"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = "pulp-deb"
version = "3.5.0.dev"
version = "3.5.0"
description = "pulp-deb plugin for the Pulp Project"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -121,7 +121,7 @@ exclude = '''
[tool.bumpversion]
# This section is managed by the plugin template. Do not edit manually.

current_version = "3.5.0.dev"
current_version = "3.5.0"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
Expand Down

0 comments on commit ee775b7

Please sign in to comment.