diff --git a/CHANGELOG.md b/CHANGELOG.md index 622d5f1057..d6b20f640c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +### 4.5.0 - 2023-11-10 +* Make builds work and abstract away architecture (#1) +* Improvements in vulnerability checking (#8) +* Fix the CVEs in the jetstream backend (#12) +* Fix backend unit tests (also code quality improvements) (#15) +* Theme Builder: Cast types (#16) +* Update required disk space (#17) +* Migrate to github.com/pressly/goose (#18) +* Move repository/interfaces to its own submodule: api (#19) +* Build and push base images on push to develop (#11) +* Add Helm support for local repos in desktop mode (#14) +* Fix dependency for database migrations (#20) +* Adapt https://github.com/cloudfoundry/stratos/pull/4580: Update store references in core package to refer to @stratosui/store (#26) +* Fix database migrations by casting dialect correctly (#22) +* add Github Actions for Backend and Frontend Tests (#29) +* Add script to help with building as packages and fix devkit and package info +* Fix typo (#31) +* Code quality improvements via `staticcheck` (#24) +* tidy up github action workflow for backend tests to resolve wrong golang version during tests (#32) +* Update to node v20 (#34) +* Remove sass-lint and stratos-protractor-reporter (#37) +* Apply changes from https://github.com/cloudfoundry/stratos/pull/4583 (#33) +* Upgrade code.cloudfoundry.org/cli to v8 (#42) +* Cherry pick commit 69ac7dc from other branch; now works without any restrictions; original commit message: (#45) +* fix gogoproto related panic when retrieving logs upgrade github.com/cloudfoundry/noaa/consumer to 2.3.0 (#46) +* Fix frontend CVEs (#40) +* feat: add errorz package to combine errors as enum in there (#47) +* allow newer pgsql versions (#51) + # Change Log ## 4.4.0 diff --git a/package.json b/package.json index 81c4ab5367..d97a77b060 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stratos", - "version": "4.4.0", + "version": "4.5.0", "description": "Stratos Console", "main": "index.js", "scripts": { diff --git a/src/jetstream/plugins/monocular/go.mod b/src/jetstream/plugins/monocular/go.mod index f5fbc702dc..6e8f6eb213 100644 --- a/src/jetstream/plugins/monocular/go.mod +++ b/src/jetstream/plugins/monocular/go.mod @@ -10,7 +10,7 @@ require ( github.com/kylelemons/go-gypsy v0.0.0-20160905020020-08cad365cd28 // indirect github.com/labstack/echo v3.3.10+incompatible github.com/labstack/gommon v0.3.0 // indirect - github.com/lib/pq v1.0.0 // indirect + github.com/lib/pq v1.10.9 // indirect github.com/mattn/go-sqlite3 v1.10.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pressly/goose v2.7.0+incompatible // indirect diff --git a/src/jetstream/plugins/monocular/go.sum b/src/jetstream/plugins/monocular/go.sum index b0994918b4..220a21a2fc 100644 --- a/src/jetstream/plugins/monocular/go.sum +++ b/src/jetstream/plugins/monocular/go.sum @@ -137,6 +137,8 @@ github.com/labstack/gommon v0.3.0 h1:JEeO0bvc78PKdyHxloTKiF8BD5iGrH8T6MSeGvSgob0 github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= github.com/lib/pq v1.0.0 h1:X5PMW56eZitiTeO7tKzZxFCSpbFZJtkMMooicw2us9A= github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw= +github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mattn/go-colorable v0.1.1 h1:G1f5SKeVxmagw/IyvzvtZE4Gybcc4Tr1tf7I8z0XgOg=