Skip to content

Commit

Permalink
Fix plugins for v0.9, update the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
illyaMs committed Feb 21, 2019
1 parent 657825f commit ecf5744
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ and services such as requests routing, authentication, rate limiting, etc.
| 3.0.x | >= 0.9, <0.12 | >= 6.0.0 |
| 3.1.x, 3.2.x | >= 0.9, <0.13 | >= 6.0.0 |
| 3.3.x, 3.4.x | >= 0.9, <0.14 | >= 6.0.0 |
| 3.5.x | >= 0.9, <0.15 | >= 6.0.0 |
| 3.5.x | >= 0.9, <0.15 | >= 6.0.0 |
| 3.6.x | >= 0.9, <1.1.x | >= 6.0.0 |

Notes:
* Kong Dashboard 3.3.0 is only partially compatible with Kong 0.13. It does not support the new Service and Route
Expand Down
2 changes: 1 addition & 1 deletion src/pages/create_or_update_plugin/plugin.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@

function isKong1xVersion(versionStr){
// 0.15 is the replica version for 1.0.0
return versionStr >= "0.15.0"? true : false
return versionStr >= "1.0.0" || versionStr.substring(0, 4) === "0.15"? true : false
}
}
})();

0 comments on commit ecf5744

Please sign in to comment.