From c877facba28f3e3ac4b8f84ee1e6d34e171317d9 Mon Sep 17 00:00:00 2001 From: Georges Date: Sun, 7 Jan 2024 22:22:09 +0100 Subject: [PATCH] Added exceptional Migration Guide for v9.2 --- docs/migration/MigratingFromV9.1ToV9.2.md | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 docs/migration/MigratingFromV9.1ToV9.2.md diff --git a/docs/migration/MigratingFromV9.1ToV9.2.md b/docs/migration/MigratingFromV9.1ToV9.2.md new file mode 100644 index 00000000..b215336d --- /dev/null +++ b/docs/migration/MigratingFromV9.1ToV9.2.md @@ -0,0 +1,31 @@ +Because the V9.2 is **completely** backward compatible with the V9.1, there's a small guide to help you to migrate your code: + +### :warning: Phpfastcache core drivers has been moved to their own extensions +If you were using one of those drivers: + +`Arangodb` +`Couchdb` +`Dynamodb` +`Firestore` +`Mongodb` +`Solr` + +Your **CODE IS SAFE AND FINE**, you just need to add a new composer dependency, ex: +```bash +composer install phpfastcache/arangodb-extension +``` + +### :new: Couchbasev4 has been as an extension: +```bash +composer install phpfastcache/couchbasev4-extension +``` +However `Couchbasev3` **will stay in the core** for compatibility reasons but will be deprecated. + + +That's it :) +------ +More information in our comprehensive [changelog](./../../CHANGELOG.md). + + + +