Content versioning cant be change to older version

I have upgrade my strapi to 4.17.1 once upgraded it seems that I have a new problem. I cant actually change my content versions in my Contents. Im using @notum-cz/strapi-plugin-content-versioning”. Below is my snippet from my package json :

“dependencies”: {
@notum-cz/strapi-plugin-content-versioning”: “^1.0.1”,
@strapi/plugin-cloud”: “4.17.1”,
@strapi/plugin-i18n”: “4.17.1”,
@strapi/plugin-users-permissions”: “4.17.1”,
@strapi/provider-upload-aws-s3”: “^4.4.7”,
@strapi/strapi”: “4.17.1”,
“axios”: “^1.4.0”,
“better-sqlite3”: “8.6.0”,
“mysql”: “^2.18.1”,
“react”: “^18.0.0”,
“react-dom”: “^18.0.0”,
“react-router-dom”: “5.3.4”,
“styled-components”: “5.3.3”
},

The previous version i was using was 4.7.1, and the content versioning works fine.

I have done the checking in @notum-cz/strapi-plugin-content-versioning as well. Below is the snippet of the code :

const getLatestValueByDB = (latest) => {
const db = env(“DATABASE_CLIENT”);
switch (db) {
case “postgres”:
return latest.rows;
case “mysql”:
return latest[0];
case “mysql2”:
return latest[0];
default:
return latest;
}
};

was playing the dependencies and found out i needed to downgrade both the strapi version and plugin-i18n inorder for the content versioning plug ins to work.

@notum-cz/strapi-plugin-content-versioning”: “^1.0.1”,
@strapi/plugin-cloud”: “4.17.1”,
@strapi/plugin-i18n”: “4.4.7”,
@strapi/plugin-users-permissions”: “4.7.1”,
@strapi/provider-upload-aws-s3”: “^4.4.7”,
@strapi/strapi”: “4.10.1”,
“axios”: “^1.4.0”,
“better-sqlite3”: “8.6.0”,
“koa-session2”: “^2.2.10”,
“mysql”: “^2.18.1”,
“react”: “^18.0.0”,
“react-dom”: “^18.0.0”,
“react-router-dom”: “5.3.4”,
“strapi-plugin-versioning”: “^0.3.0”,
“styled-components”: “5.3.3”,

i believe this would only be some temporary fixes from my end.