diff --git a/.github_build/Build.alpine.env b/.github_build/Build.alpine.env index ced95107..fb9fe895 100644 --- a/.github_build/Build.alpine.env +++ b/.github_build/Build.alpine.env @@ -2,4 +2,4 @@ OS_NAME=alpine OS_VERSION=3.16 GOLANG_IMAGE=golang:1.20-alpine3.16 -CORE_VERSION=16.12.0 +CORE_VERSION=16.13.0 diff --git a/.github_build/Build.ubuntu.env b/.github_build/Build.ubuntu.env index 4e02a698..7372d1c2 100644 --- a/.github_build/Build.ubuntu.env +++ b/.github_build/Build.ubuntu.env @@ -2,4 +2,4 @@ OS_NAME=ubuntu OS_VERSION=20.04 GOLANG_IMAGE=golang:1.20-alpine3.16 -CORE_VERSION=16.12.0 +CORE_VERSION=16.13.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d6a0985..45d307b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Core -### Core v16.12.0 > v16.?.? +### Core v16.12.0 > v16.13.0 - Add updated_at field in process infos - Add preserve process log history when updating a process diff --git a/app/version.go b/app/version.go index ec718dfd..3278e184 100644 --- a/app/version.go +++ b/app/version.go @@ -29,7 +29,7 @@ func (v versionInfo) MinorString() string { // Version of the app var Version = versionInfo{ Major: 16, - Minor: 12, + Minor: 13, Patch: 0, } diff --git a/http/middleware/session/HLS.go b/http/middleware/session/HLS.go index 9935cb6e..17c719a8 100644 --- a/http/middleware/session/HLS.go +++ b/http/middleware/session/HLS.go @@ -7,7 +7,6 @@ import ( "io" "net/http" "net/url" - "path" urlpath "path" "path/filepath" "regexp" @@ -415,7 +414,7 @@ func (g *sessionRewriter) rewriteHLS(sessionID string, requestURL *url.URL) { // and has to be stopped. file := u.Path if !strings.HasPrefix(file, "/") { - dir := path.Dir(requestURL.Path) + dir := urlpath.Dir(requestURL.Path) file = filepath.Join(dir, file) }