Skip to content

Commit

Permalink
Merge pull request #1344 from garberg/v0.32.0
Browse files Browse the repository at this point in the history
Release v0.32.0
  • Loading branch information
garberg authored Oct 10, 2023
2 parents 4cd31d0 + f6789db commit cdefc67
Show file tree
Hide file tree
Showing 14 changed files with 76 additions and 6 deletions.
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 0.32.0 - Poseidon
-------------------------
* nipapd, nipap-www and whoisd running on Python 3 (#1316)
* Fix for special characters in passwords in NIPAP CLI

Version 0.31.2 - Persephone
---------------------------
* Removed last bits of Pylons
Expand Down
7 changes: 7 additions & 0 deletions nipap-cli/debian/changelog
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
Expand Down
2 changes: 1 addition & 1 deletion nipap-cli/nipap_cli/__init__.py
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"
Expand Down
7 changes: 7 additions & 0 deletions nipap-www/debian/changelog
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
Expand Down
20 changes: 20 additions & 0 deletions nipap-www/debian/preinst
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
10 changes: 10 additions & 0 deletions nipap-www/debian/templates
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,13 @@ Default: false
Description: Automatically configure randomized secret_key?
The NIPAP web UI requires a secret key to be configured in the www-section
of nipap.conf.

Template: nipap-www/python3-warning
Type: note
Description: The NIPAP web UI is now migrated to Python 3.
Depending on how it is served, some further action might be needed for it to
function after the upgrade. If it is served with Apache httpd and mod_wsgi as
described in the installation guide, the Python 3 version of mod_wsgi needs to
be installed:
.
apt install libapache2-mod-wsgi-py3
2 changes: 1 addition & 1 deletion nipap-www/nipap_www.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: nipap-www
Version: 0.31.2
Version: 0.32.0
Summary: web frontend for NIPAP
Home-page: http://SpriteLink.github.io/NIPAP
Author: Kristian Larsson, Lukas Garberg
Expand Down
2 changes: 1 addition & 1 deletion nipap-www/nipapwww/__init__.py
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"
Expand Down
7 changes: 7 additions & 0 deletions nipap/debian/changelog
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
Expand Down
2 changes: 1 addition & 1 deletion nipap/nipap/__init__.py
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]"
Expand Down
7 changes: 7 additions & 0 deletions pynipap/debian/changelog
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
Expand Down
2 changes: 1 addition & 1 deletion pynipap/pynipap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 7 additions & 0 deletions whoisd/debian/changelog
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
Expand Down
2 changes: 1 addition & 1 deletion whoisd/nipap_whoisd.py
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"
Expand Down

0 comments on commit cdefc67

Please sign in to comment.