Release v2.5.2

This commit is contained in:
Sukchan Lee 2022-10-30 14:24:37 +09:00
parent 15e3c1f166
commit 9a7b75eb3b
7 changed files with 40 additions and 9 deletions

30
debian/changelog vendored
View File

@ -1,3 +1,33 @@
open5gs (2.5.2) unstable; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Sun, 30 Oct 2022 14:18:50 +0900
open5gs (2.5.2~kinetic) kinetic; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Sun, 30 Oct 2022 14:15:19 +0900
open5gs (2.5.2~jammy) jammy; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Sun, 30 Oct 2022 14:13:53 +0900
open5gs (2.5.2~focal) focal; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Sun, 30 Oct 2022 14:12:34 +0900
open5gs (2.5.2~bionic) bionic; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Sun, 30 Oct 2022 14:11:04 +0900
open5gs (2.5.1) unstable; urgency=medium
* New NF - SCP(Service Communication Proxy)

View File

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

View File

@ -1,5 +1,5 @@
---
title: "v2.5.1 - SCP for Indirect Communication"
title: "v2.5.2 - SCP for Indirect Communication"
date: 2022-10-29 12:42:00 +0900
categories:
- Release
@ -76,6 +76,7 @@ scp:
#### Enhancements
- [WebUI/DB] Fixed the WebUI to Support MongoDB 6.0 ([#1824](https://github.com/open5gs/open5gs/issues/1824)) -- [bmeglicit](https://github.com/bmeglicit)
- [NAS] Discard NAS message if integrity is failed ([#1848](https://github.com/open5gs/open5gs/pull/1848)) -- [jmasterfunk84](https://github.com/jmasterfunk84)
- [AMF] Support REREGISTRATION_REQUIRED in dereg notify ([#1858](https://github.com/open5gs/open5gs/pull/1858)) -- [mitmitmitm](https://github.com/mitmitmitm)
- [SMF] Support Security Indication IE for 5G-SA UP integrity and confidentiality([#1851](https://github.com/open5gs/open5gs/discussions/1851)) -- [irazairspan](https://github.com/irazairspan)
- [DBI] Disable Changes Streams with mongo Version ([#1833](https://github.com/open5gs/open5gs/pull/1833)) -- [jmasterfunk84](https://github.com/jmasterfunk84)
@ -91,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.1.tar.gz](https://github.com/open5gs/open5gs/archive/v2.5.1.tar.gz)
Download -- [v2.5.2.tar.gz](https://github.com/open5gs/open5gs/archive/v2.5.2.tar.gz)
{: .notice--info}

View File

@ -10,7 +10,7 @@
#
PACKAGE="open5gs"
VERSION="2.5.1"
VERSION="2.5.2"
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.1',
version : '2.5.2',
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.1'
libogslib_version = '2.5.2'
prefix = get_option('prefix')
bindir = join_paths(prefix, get_option('bindir'))

View File

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

View File

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