From a76a2503c280e21f108eec97ed67044c503d1478 Mon Sep 17 00:00:00 2001 From: Sukchan Lee Date: Mon, 29 Mar 2021 23:21:11 +0900 Subject: [PATCH] Release v2.2.3 --- debian/changelog | 18 ++++++ docs/_posts/2021-03-29-release-v2.2.3.md | 74 ++++++++++++++++++++++++ meson.build | 4 +- 3 files changed, 94 insertions(+), 2 deletions(-) create mode 100644 docs/_posts/2021-03-29-release-v2.2.3.md diff --git a/debian/changelog b/debian/changelog index c78746e8d..3264851ad 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,21 @@ +open5gs (2.2.3) unstable; urgency=medium + + * Bug Fixed + + -- Sukchan Lee Mon, 29 Mar 2021 22:44:54 +0900 + +open5gs (2.2.3~bionic) bionic; urgency=medium + + * Bug Fixed + + -- Sukchan Lee Mon, 29 Mar 2021 22:43:54 +0900 + +open5gs (2.2.3~focal) focal; urgency=medium + + * Bug Fixed + + -- Sukchan Lee Mon, 29 Mar 2021 22:42:53 +0900 + open5gs (2.2.2) unstable; urgency=medium * Bug Fixed diff --git a/docs/_posts/2021-03-29-release-v2.2.3.md b/docs/_posts/2021-03-29-release-v2.2.3.md new file mode 100644 index 000000000..ae274ec66 --- /dev/null +++ b/docs/_posts/2021-03-29-release-v2.2.3.md @@ -0,0 +1,74 @@ +--- +title: "v2.2.3 - More Bug Fixed" +date: 2021-03-29 23:08:00 +0900 +categories: + - Release +tags: + - News + - Release +head_inline: "" +--- + +#### Bug Fixes +- [MME] Fix an issue where Modify Bearer Request was not sent ([#885](https://github.com/open5gs/open5gs/issues/885)) -- [RafalArciszewski](https://github.com/RafalArciszewski) +- [PFCP/GTP] Fix to be able to ignore unknown TLV type ([#871](https://github.com/open5gs/open5gs/issues/871)) -- [infinitydon](https://github.com/infinitydon) +- [IMS] Fix the problem with managingg multiple calls ([#869](https://github.com/open5gs/open5gs/issues/869)) -- [ngvoice](https://github.com/ngvoice) +- [AMF] Fix creating allowed-NSSAI ([#859](https://github.com/open5gs/open5gs/issues/859)) -- [AniketTiw](https://github.com/AniketTiw) + +#### freeDiameter 1.5.0 + +freeDiameter version has changed from 1.3.2 to 1.5.0. If you want to compile the source code, you need to update meson subprojects as shown below. + +``` +$ cd open5gs +$ git pull +$ meson subprojects update +$ cd build +$ ninja +``` + +Or just use a clean github repository. + +``` +$ rm -Rf open5gs +$ git clone https://github.com/open5gs/open5gs +$ cd open5gs +$ meson build --prefix=`pwd`/install +$ cd build +$ ninja +``` + +#### IMPORTANT Using v2.2.x + +- **DB Schema Changes:** If you are using an existing subscription DB, you should delete the existing DB. Then you can add a new subscription DB. +{: .blue} +``` +$ mongo +> use open5gs +switched to db open5gs +> db.subscribers.drop() +true +``` + +- **The New WebUI:** You have to log out using the old WebUI backend/frontend. Then, you can log back in again using the new WebUI backend/frontend. +{: .blue} +``` +$ git checkout v2.1.7 +$ cd webui +$ rm -Rf ./node_modules +$ npm ci --no-optional +$ npm run dev + +## You should log out + +$ git checkout main +$ cd webui +$ rm -Rf ./node_modules +$ npm ci --no-optional +$ npm run dev + +## You can log back in +``` + +Download -- [v2.2.3.tar.gz](https://github.com/open5gs/open5gs/archive/v2.2.3.tar.gz) +{: .notice--info} diff --git a/meson.build b/meson.build index 7985004eb..5b3c83edc 100644 --- a/meson.build +++ b/meson.build @@ -16,7 +16,7 @@ # along with this program. If not, see . project('open5gs', 'c', - version : '2.2.2', + version : '2.2.3', license : 'AGPL-3.0-or-later', meson_version : '>= 0.43.0', default_options : [ @@ -24,7 +24,7 @@ project('open5gs', 'c', ], ) -libogslib_version = '2.2.2' +libogslib_version = '2.2.3' prefix = get_option('prefix') bindir = join_paths(prefix, get_option('bindir'))