Skip to content

Commit

Permalink
Release v2.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
acetcom committed Apr 30, 2021
1 parent 3b1ebfa commit 0b05308
Show file tree
Hide file tree
Showing 7 changed files with 107 additions and 278 deletions.
18 changes: 18 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
open5gs (2.2.7) unstable; urgency=medium

* Bug Fixed

-- Sukchan Lee <[email protected]> Fri, 30 Apr 2021 14:20:47 +0900

open5gs (2.2.7~focal3) focal; urgency=medium

* Bug Fixed

-- Sukchan Lee <[email protected]> Fri, 30 Apr 2021 14:19:39 +0900

open5gs (2.2.7~bionic3) bionic; urgency=medium

* Bug Fixed

-- Sukchan Lee <[email protected]> Fri, 30 Apr 2021 14:17:11 +0900

open5gs (2.2.6) unstable; urgency=medium

* HSS Cx Added
Expand Down
55 changes: 0 additions & 55 deletions docs/_posts/2021-03-19-release-v2.2.2.md

This file was deleted.

74 changes: 0 additions & 74 deletions docs/_posts/2021-03-29-release-v2.2.3.md

This file was deleted.

77 changes: 0 additions & 77 deletions docs/_posts/2021-04-01-release-v2.2.4.md

This file was deleted.

70 changes: 0 additions & 70 deletions docs/_posts/2021-04-03-release-v2.2.5.md

This file was deleted.

87 changes: 87 additions & 0 deletions docs/_posts/2021-04-30-release-v2.2.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
---
title: "v2.2.7 - Tested with 500 UEs simultaneous connection"
date: 2021-04-30 14:29:00 +0900
categories:
- Release
tags:
- News
- Release
head_inline: "<style> ul { padding-bottom: 1em; } .blue { color: blue; }</style>"
---

#### Bug Fixes
- [ALL] 500 UEs simultaneous connection test with [UERANSIM](https://github.com/aligungr/UERANSIM) ([#949](https://github.com/open5gs/open5gs/issues/949)) -- [chenhao5651](https://github.com/chenhao5651)
- [MME] Fix the Invalid AMBR Unit ([#967](https://github.com/open5gs/open5gs/issues/967)) -- [matt9j](https://github.com/matt9j)
- [PFCP] Fix the DNS delay during PFCP association ([#891](https://github.com/open5gs/open5gs/issues/891)) -- [DendoD96](https://github.com/DendoD96)
- [Cx] Change the order of IMPUs sent in XML ([#921](https://github.com/open5gs/open5gs/issues/921)) -- [herlesupreeth](https://github.com/herlesupreeth)
- [PFCP] Changed the PFCP RR selection method ([#953](https://github.com/open5gs/open5gs/issues/953)) -- [infinitydon](https://github.com/infinitydon)
- [ALL] Changed the terminate sequence to avoid crash when an invalid IP address is configured ([#938](https://github.com/open5gs/open5gs/issues/938)) -- [myonlystarWang](https://github.com/myonlystarWang)
- [Docker] Update WebUI version to latest ([#945](https://github.com/open5gs/open5gs/issues/945)) -- [rriggio](https://github.com/rriggio)

#### Enhancement
- [MME/AMF] Retransmission on timer expiration for Registration accept / Attach accept
- [MME/AMF] GUTI generation changed ([#910](https://github.com/open5gs/open5gs/issues/910)) -- [chliny2016](https://github.com/chliny2016)
- [DB] Update open5gs-dbctl ([#940](https://github.com/open5gs/open5gs/pull/940)) -- [Spectranis](https://github.com/Spectranis)

#### New Features
- [DB] Added DB migration script ([#956](https://github.com/open5gs/open5gs/pull/956), [#968](https://github.com/open5gs/open5gs/pull/968)) -- [matt9j](https://github.com/matt9j)
- [AMF] Added RANConfigurationUpdate ([#943](https://github.com/open5gs/open5gs/issues/943)) -- [navidsol9](https://github.com/navidsol9)


#### 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.7.tar.gz](https://github.com/open5gs/open5gs/archive/v2.2.7.tar.gz)
{: .notice--info}
Loading

0 comments on commit 0b05308

Please sign in to comment.