Blog RSS Feed

Cordova Fetch 3.0.1 Released!
02 Feb 2021

We are happy to announce that cordova-fetch@3.0.1 was released in February 2021. This module is responsible for installing platforms and plugins from the npm package registry, and this release adds compatibility for npm version 7.

To upgrade:

Because cordova-fetch is a dependency of the cordova command-line tool, you'll need to reinstall the cordova package to update:

npm uninstall -g cordova
npm install -g cordova

Release Highlights

The most notable fix in this patch release is a fix for plugin and platform installation with the newest version of npm. More details can be found in the pull request and original bug ticket. Thanks Raphael for implementing this fix.

Please report any issues you find at issues.cordova.io!

Full Changelog

  • GH-91 fix: cordova-fetch with npm@7
  • GH-89 refactor: use async/await where applicable
  • GH-88 fix: do not pack rejections from resolve in array
  • GH-90 fix: use POSIX-style paths for require.resolve & Co
  • GH-86 ci: add node 14 to workflow