Zend certified PHP/Magento developer

Upgrading from Magento 2.4.0 to 2.4.5

I’m trying to upgrade Magento 2.4.0 to 2.4.5, i didn’t upgrade PHP version, i’m using 7.4

composer require magento/product-community-edition 2.4.5 --no-update

I got this message

The "magento/inventory-composer-installer" plugin was skipped because it requires a Plugin API version ("^1.1") 
that does not match your Composer installation ("2.3.0"). You may need to run composer update with 
the "--no-plugins" option.
The "laminas/laminas-dependency-plugin" plugin was skipped because it requires a Plugin API version ("^1.1") 
that does not match your Composer installation ("2.3.0"). 
You may need to run composer update with the "--no-plugins" option.

After

composer update --ignore-platform-reqs

Problem 1
- Root composer.json requires magento/product-community-edition 2.4.5 -> satisfiable by magento/product-community-edition[2.4.5].
- magento/product-community-edition 2.4.5 requires guzzlehttp/guzzle ^7.4.2 -> found guzzlehttp/guzzle[7.4.2, ..., 7.5.0] but itconflicts with your root composer.json require (^6.5).

Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.

Should i update composer.json manually?