Skip to content

Commit

Permalink
chore(constants) add PostgreSQL & Cassandra supported versions
Browse files Browse the repository at this point in the history
As of 0.12.3:

PostgreSQL
- current minimum recommended: 9.5
- deprecated: 9.4

Cassandra
- current minimum recommended: 2.2
- deprecated: 2.1

Versions below MIN and DEPRECATED will result in an error.
  • Loading branch information
thibaultcha committed Mar 27, 2018
1 parent a9f5af1 commit eecdf22
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions kong/constants.lua
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,14 @@ return {
"kong_cluster_events",
"kong_healthchecks",
},
DATABASE = {
POSTGRES = {
MIN = "9.5",
DEPRECATED = "9.4",
},
CASSANDRA = {
MIN = "2.2",
DEPRECATED = "2.1",
}
}
}

0 comments on commit eecdf22

Please sign in to comment.