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 open5gs (2.5.3) unstable; urgency=medium
* New NF - SCP(Service Communication Proxy) * New NF - SCP(Service Communication Proxy)

View File

@ -80,19 +80,21 @@ export DEBEMAIL='acetcom@gmail.com'
* Version Change * Version Change
``` ```
$ vi meson.build $ cat ./meson.build
$ ./misc/git-version-gen . > .tarball-version 2>/dev/null
```
* WebUI Version Change
```
$ cat ./docker/webui/Dockerfile $ cat ./docker/webui/Dockerfile
$ cat ./webui/package.json $ cat ./webui/package.json
$ cat ./webui/package-lock.json $ cat ./webui/package-lock.json
$ cat ./docs/assets/webui/install $ 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 * Upload OpenBuildService
``` ```

View File

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

View File

@ -1,6 +1,6 @@
--- ---
title: "v2.5.3 - SCP for Indirect Communication" title: "v2.5.4 - SCP for Indirect Communication"
date: 2022-10-31 07:17:00 +0900 date: 2022-11-01 21:07:00 +0900
categories: categories:
- Release - Release
tags: 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] 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) - [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} {: .notice--info}

View File

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

View File

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

View File

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

View File

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