Release v2.5.4

This commit is contained in:
Sukchan Lee 2022-11-01 21:22:09 +09:00
parent 5fd4fe9379
commit 406e3f07dc
8 changed files with 49 additions and 17 deletions

30
debian/changelog vendored
View File

@ -1,3 +1,33 @@
open5gs (2.5.4) unstable; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Tue, 01 Nov 2022 21:14:56 +0900
open5gs (2.5.4~kinetic) kinetic; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Tue, 01 Nov 2022 21:12:25 +0900
open5gs (2.5.4~jammy) jammy; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Tue, 01 Nov 2022 21:11:03 +0900
open5gs (2.5.4~focal) focal; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Tue, 01 Nov 2022 21:09:21 +0900
open5gs (2.5.4~bionic) bionic; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Tue, 01 Nov 2022 21:07:58 +0900
open5gs (2.5.3) unstable; urgency=medium
* New NF - SCP(Service Communication Proxy)

View File

@ -80,19 +80,21 @@ export DEBEMAIL='acetcom@gmail.com'
* Version Change
```
$ vi meson.build
$ ./misc/git-version-gen . > .tarball-version 2>/dev/null
```
* WebUI Version Change
```
$ cat ./meson.build
$ cat ./docker/webui/Dockerfile
$ cat ./webui/package.json
$ cat ./webui/package-lock.json
$ cat ./docs/assets/webui/install
```
* New NF
```
$ cat debian/control
$ cat configs/systemd/open5gs-scpd.service.in
$ cat configs/logrotate/open5gs.in
$ cat configs/newsyslog/open5gs.conf.in
```
* Upload OpenBuildService
```

View File

@ -3,7 +3,7 @@ FROM node:19
MAINTAINER Sukchan Lee <acetcom@gmail.com>
ARG PACKAGE=open5gs
ARG VERSION=2.5.3
ARG VERSION=2.5.4
RUN set -e; \
cd /usr/src; \

View File

@ -1,6 +1,6 @@
---
title: "v2.5.3 - SCP for Indirect Communication"
date: 2022-10-31 07:17:00 +0900
title: "v2.5.4 - SCP for Indirect Communication"
date: 2022-11-01 21:07:00 +0900
categories:
- Release
tags:
@ -92,5 +92,5 @@ scp:
- [PFCP] Do not check qos_flow in PFCP Report message ([#1819](https://github.com/open5gs/open5gs/pull/1819)) -- [ssafaorhan](https://github.com/ssafaorhan)
- [PFCP] Fixed invalid message of Dropped DL Traffic threshold ([#1817](https://github.com/open5gs/open5gs/pull/1817)) -- [ssafaorhan](https://github.com/ssafaorhan)
Download -- [v2.5.2.tar.gz](https://github.com/open5gs/open5gs/archive/v2.5.2.tar.gz)
Download -- [v2.5.4.tar.gz](https://github.com/open5gs/open5gs/archive/v2.5.4.tar.gz)
{: .notice--info}

View File

@ -10,7 +10,7 @@
#
PACKAGE="open5gs"
VERSION="2.5.3"
VERSION="2.5.4"
print_status() {
echo

View File

@ -16,7 +16,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
project('open5gs', 'c', 'cpp',
version : '2.5.3',
version : '2.5.4',
license : 'AGPL-3.0-or-later',
meson_version : '>= 0.43.0',
default_options : [
@ -24,7 +24,7 @@ project('open5gs', 'c', 'cpp',
],
)
libogslib_version = '2.5.3'
libogslib_version = '2.5.4'
prefix = get_option('prefix')
bindir = join_paths(prefix, get_option('bindir'))

View File

@ -1,12 +1,12 @@
{
"name": "open5gs",
"version": "2.5.3",
"version": "2.5.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "open5gs",
"version": "2.5.3",
"version": "2.5.4",
"license": "AGPL-3.0",
"dependencies": {
"axios": "^0.27.2",

View File

@ -1,6 +1,6 @@
{
"name": "open5gs",
"version": "2.5.3",
"version": "2.5.4",
"description": "Open5gs",
"main": "index.js",
"repository": "https://github.com/open5gs/open5gs/webui",