-
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 #1344 from garberg/v0.32.0
Release v0.32.0
- Loading branch information
Showing
14 changed files
with
76 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,10 @@ | ||
nipap-cli (0.32.0-1) stable; urgency=medium | ||
|
||
* nipapd, nipap-www and whoisd running on Python 3 (#1316) | ||
* Fix for special characters in passwords in NIPAP CLI | ||
|
||
-- Lukas Garberg <[email protected]> Sat, 07 Oct 2023 22:03:37 +0200 | ||
|
||
nipap-cli (0.31.2-1) stable; urgency=medium | ||
|
||
* Removed last bits of Pylons | ||
|
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.31.2" | ||
__version__ = "0.32.0" | ||
__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,10 @@ | ||
nipap-www (0.32.0-1) stable; urgency=medium | ||
|
||
* nipapd, nipap-www and whoisd running on Python 3 (#1316) | ||
* Fix for special characters in passwords in NIPAP CLI | ||
|
||
-- Lukas Garberg <[email protected]> Sat, 07 Oct 2023 22:03:37 +0200 | ||
|
||
nipap-www (0.31.2-1) stable; urgency=medium | ||
|
||
* Removed last bits of Pylons | ||
|
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/sh | ||
|
||
# Source debconf library. | ||
. /usr/share/debconf/confmodule | ||
|
||
ACTION=$1 | ||
OLD_VERSION=$2 | ||
NEW_VERSION=$3 | ||
|
||
# Notify the user that actions needs to be taken when upgrading from a version | ||
# pre 0.32.0 to a version post 0.32.0 | ||
if [ -n "$OLD_VERSION" ]; then | ||
OLD_MAJOR=`echo $OLD_VERSION | cut -d . -f 1` | ||
OLD_MINOR=`echo $OLD_VERSION | cut -d . -f 2` | ||
|
||
if [ \( $OLD_MAJOR -le 0 \) -a \( $OLD_MINOR -lt 32 \) ]; then | ||
db_input high nipap-www/python3-warning || true | ||
db_go | ||
fi | ||
fi |
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
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.31.2" | ||
__version__ = "0.32.0" | ||
__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,10 @@ | ||
nipap (0.32.0-1) stable; urgency=medium | ||
|
||
* nipapd, nipap-www and whoisd running on Python 3 (#1316) | ||
* Fix for special characters in passwords in NIPAP CLI | ||
|
||
-- Lukas Garberg <[email protected]> Sat, 07 Oct 2023 22:03:36 +0200 | ||
|
||
nipap (0.31.2-1) stable; urgency=medium | ||
|
||
* Removed last bits of Pylons | ||
|
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.31.2" | ||
__version__ = "0.32.0" | ||
__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,10 @@ | ||
pynipap (0.32.0-1) stable; urgency=medium | ||
|
||
* nipapd, nipap-www and whoisd running on Python 3 (#1316) | ||
* Fix for special characters in passwords in NIPAP CLI | ||
|
||
-- Lukas Garberg <[email protected]> Sat, 07 Oct 2023 22:03:37 +0200 | ||
|
||
pynipap (0.31.2-1) stable; urgency=medium | ||
|
||
* Removed last bits of Pylons | ||
|
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 |
---|---|---|
|
@@ -212,7 +212,7 @@ | |
else: | ||
import xmlrpc.client as xmlrpclib | ||
|
||
__version__ = "0.31.2" | ||
__version__ = "0.32.0" | ||
__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,10 @@ | ||
nipap-whoisd (0.32.0-1) stable; urgency=medium | ||
|
||
* nipapd, nipap-www and whoisd running on Python 3 (#1316) | ||
* Fix for special characters in passwords in NIPAP CLI | ||
|
||
-- Lukas Garberg <[email protected]> Sat, 07 Oct 2023 22:03:37 +0200 | ||
|
||
nipap-whoisd (0.31.2-1) stable; urgency=medium | ||
|
||
* Removed last bits of Pylons | ||
|
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.31.2" | ||
__version__ = "0.32.0" | ||
__author__ = "Kristian Larsson, Lukas Garberg" | ||
__author_email__ = "[email protected], [email protected]" | ||
__copyright__ = "Copyright 2011-2014, Kristian Larsson, Lukas Garberg" | ||
|