From 23c1fee516861c8d46e0bfee5ef88d15d9f3930f Mon Sep 17 00:00:00 2001 From: Sukchan Lee Date: Sat, 3 Apr 2021 14:22:15 +0900 Subject: [PATCH] Update document for v2.2.5 --- docs/_posts/2021-04-01-release-v2.2.4.md | 2 +- docs/_posts/2021-04-03-release-v2.2.5.md | 70 ++++++++++++++++++++++++ 2 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 docs/_posts/2021-04-03-release-v2.2.5.md diff --git a/docs/_posts/2021-04-01-release-v2.2.4.md b/docs/_posts/2021-04-01-release-v2.2.4.md index 5a775e5f24..c95bdb4089 100644 --- a/docs/_posts/2021-04-01-release-v2.2.4.md +++ b/docs/_posts/2021-04-01-release-v2.2.4.md @@ -1,6 +1,6 @@ --- title: "v2.2.4 - Bug Fixed 3" -date: 2021-03-29 23:08:00 +0900 +date: 2021-04-01 23:08:00 +0900 categories: - Release tags: diff --git a/docs/_posts/2021-04-03-release-v2.2.5.md b/docs/_posts/2021-04-03-release-v2.2.5.md new file mode 100644 index 0000000000..bcdcecf6b7 --- /dev/null +++ b/docs/_posts/2021-04-03-release-v2.2.5.md @@ -0,0 +1,70 @@ +--- +title: "v2.2.5 - Bug Fixed 4" +date: 2021-04-03 14:20:00 +0900 +categories: + - Release +tags: + - News + - Release +head_inline: "" +--- + +#### Bug Fixes +- [AMF] Always Include Allow NSSAI in Registration accept ([#910](https://github.com/open5gs/open5gs/issues/910)) -- [chliny2016](https://github.com/chliny2016) +#### 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 +``` + +- 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. +{: .blue} + +``` +$ 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 +``` + + +Download -- [v2.2.5.tar.gz](https://github.com/open5gs/open5gs/archive/v2.2.5.tar.gz) +{: .notice--info}