From 157ce33657db83e9447d5c92f45c86e3aae27ad6 Mon Sep 17 00:00:00 2001 From: Brian Scholer <1260690+briantist@users.noreply.github.com> Date: Sun, 8 Oct 2023 21:26:14 -0400 Subject: [PATCH] Release/v0.11.1 (#117) * bump version * release v0.11.1 --- CHANGELOG.rst | 9 +++++++++ .../{fragments => archive/0.11.1}/114-bugfixes.yml | 0 changelogs/changelog.yaml | 12 ++++++++++++ pyproject.toml | 2 +- 4 files changed, 22 insertions(+), 1 deletion(-) rename changelogs/{fragments => archive/0.11.1}/114-bugfixes.yml (100%) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cb3a4d4..9d55f8f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,15 @@ galactory Release Notes .. contents:: Topics +v0.11.1 +======= + +Bugfixes +-------- + +- Requests for collections that were not already present in artifactory resulted in a 500 internal server error (https://github.com/briantist/galactory/issues/112, https://github.com/briantist/galactory/pull/116). +- Requests proxied to a v2 upstream endpoint that supports pagination caused a 400 error from the upstream due to the inclusion of the v3 ``limit`` query string parameter (https://github.com/briantist/galactory/issues/113). + v0.11.0 ======= diff --git a/changelogs/fragments/114-bugfixes.yml b/changelogs/archive/0.11.1/114-bugfixes.yml similarity index 100% rename from changelogs/fragments/114-bugfixes.yml rename to changelogs/archive/0.11.1/114-bugfixes.yml diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 224f2e7..579ee76 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -123,6 +123,18 @@ releases: - 108-auth-deprecation-extension.yml - 109-upload-format.yml release_date: '2023-10-08' + 0.11.1: + changes: + bugfixes: + - Requests for collections that were not already present in artifactory resulted + in a 500 internal server error (https://github.com/briantist/galactory/issues/112, + https://github.com/briantist/galactory/pull/116). + - Requests proxied to a v2 upstream endpoint that supports pagination caused + a 400 error from the upstream due to the inclusion of the v3 ``limit`` query + string parameter (https://github.com/briantist/galactory/issues/113). + fragments: + - 114-bugfixes.yml + release_date: '2023-10-08' 0.2.0: changes: minor_changes: diff --git a/pyproject.toml b/pyproject.toml index 48e72a4..883a090 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "galactory" -version = "0.11.0" +version = "0.11.1" authors = [ {name = "Brian Scholer"}, ]