Skip to content

Commit

Permalink
allow newer pgsql versions (#51)
Browse files Browse the repository at this point in the history
* feat: support for PostgreSQL 15

* feat: psql 15 integration

---------

Co-authored-by: Nedim Akar <[email protected]>
  • Loading branch information
2 people authored and mafolz committed Nov 10, 2023
1 parent 61e3c00 commit 10cc7ab
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stratos",
"version": "4.4.0",
"version": "4.5.0",
"description": "Stratos Console",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/jetstream/plugins/monocular/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/jetstream/plugins/monocular/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down

0 comments on commit 10cc7ab

Please sign in to comment.