angular / in-memory-web-api

The code for this project has moved to the angular/angular repo. This repo is now archived.
MIT License
1.18k stars 231 forks source link

Upgrade to v8 - Broken Peer Dependencies #240

Closed damienwebdev closed 4 years ago

damienwebdev commented 5 years ago

@brandonroberts @IgorMinar In the latest v0.8.0 release, the versions are wrong (assuming the intent was support for v8).

https://github.com/angular/in-memory-web-api/blob/b71d39fd48cf189c831603e3ae8fd954216ce2ef/package.json#L31

  "peerDependencies": {
    "@angular/common": ">=6.0.0 <8.0.0",
    "@angular/core": ">=6.0.0 <8.0.0",
  }

should be

  "peerDependencies": {
    "@angular/common": ">=8.0.0",
    "@angular/core": ">=8.0.0",
  }

Given the dropped support for HttpModule, I think dropping the range makes sense.

damienwebdev commented 4 years ago

Fixed in #242