-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1362 from garberg/v0.32.2
Release v0.32.2
- Loading branch information
Showing
12 changed files
with
52 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
nipap-cli (0.32.2-1) stable; urgency=medium | ||
|
||
* Add pagination to the REST API (#1361) | ||
* Add OpenTelemetry tracing (#1355) | ||
* Drop Python 2 support in pynipap (#1356) | ||
|
||
-- Lukas Garberg <[email protected]> Mon, 04 Dec 2023 09:07:39 +0100 | ||
|
||
nipap-cli (0.32.1-1) stable; urgency=medium | ||
|
||
* Fix bug where data fetched from LDAP caused a crash (#1347) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.32.1" | ||
__version__ = "0.32.2" | ||
__author__ = "Kristian Larsson, Lukas Garberg" | ||
__author_email__ = "[email protected], [email protected]" | ||
__license__ = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
nipap-www (0.32.2-1) stable; urgency=medium | ||
|
||
* Add pagination to the REST API (#1361) | ||
* Add OpenTelemetry tracing (#1355) | ||
* Drop Python 2 support in pynipap (#1356) | ||
|
||
-- Lukas Garberg <[email protected]> Mon, 04 Dec 2023 09:07:39 +0100 | ||
|
||
nipap-www (0.32.1-1) stable; urgency=medium | ||
|
||
* Fix bug where data fetched from LDAP caused a crash (#1347) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.32.1" | ||
__version__ = "0.32.2" | ||
__author__ = "Kristian Larsson, Lukas Garberg" | ||
__author_email__ = "[email protected], [email protected]" | ||
__license__ = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
nipap (0.32.2-1) stable; urgency=medium | ||
|
||
* Add pagination to the REST API (#1361) | ||
* Add OpenTelemetry tracing (#1355) | ||
* Drop Python 2 support in pynipap (#1356) | ||
|
||
-- Lukas Garberg <[email protected]> Mon, 04 Dec 2023 09:07:38 +0100 | ||
|
||
nipap (0.32.1-1) stable; urgency=medium | ||
|
||
* Fix bug where data fetched from LDAP caused a crash (#1347) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.32.1" | ||
__version__ = "0.32.2" | ||
__db_version__ = 7 | ||
__author__ = "Kristian Larsson, Lukas Garberg" | ||
__author_email__ = "[email protected], [email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
pynipap (0.32.2-1) stable; urgency=medium | ||
|
||
* Add pagination to the REST API (#1361) | ||
* Add OpenTelemetry tracing (#1355) | ||
* Drop Python 2 support in pynipap (#1356) | ||
|
||
-- Lukas Garberg <[email protected]> Mon, 04 Dec 2023 09:07:38 +0100 | ||
|
||
pynipap (0.32.1-1) stable; urgency=medium | ||
|
||
* Fix bug where data fetched from LDAP caused a crash (#1347) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -208,7 +208,7 @@ | |
import logging | ||
import xmlrpc.client as xmlrpclib | ||
|
||
__version__ = "0.32.1" | ||
__version__ = "0.32.2" | ||
__author__ = "Kristian Larsson, Lukas Garberg" | ||
__author_email__= "[email protected], [email protected]" | ||
__copyright__ = "Copyright 2011, Kristian Larsson, Lukas Garberg" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
nipap-whoisd (0.32.2-1) stable; urgency=medium | ||
|
||
* Add pagination to the REST API (#1361) | ||
* Add OpenTelemetry tracing (#1355) | ||
* Drop Python 2 support in pynipap (#1356) | ||
|
||
-- Lukas Garberg <[email protected]> Mon, 04 Dec 2023 09:07:40 +0100 | ||
|
||
nipap-whoisd (0.32.1-1) stable; urgency=medium | ||
|
||
* Fix bug where data fetched from LDAP caused a crash (#1347) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import os | ||
|
||
__version__ = "0.32.1" | ||
__version__ = "0.32.2" | ||
__author__ = "Kristian Larsson, Lukas Garberg" | ||
__author_email__ = "[email protected], [email protected]" | ||
__copyright__ = "Copyright 2011-2014, Kristian Larsson, Lukas Garberg" | ||
|