Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HISTORY.md 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # History
  2. # 7.1.0
  3. - Updates whatwg-fetch to 3.5.0 to address an issue with IE11.
  4. ## 7.0.0
  5. - Drops support for node 8. Adds node 14 to tests.
  6. - Updates whatwg-fetch to ~3.4.1.
  7. - Exposes `DOMException` from whatwg-fetch.
  8. - Tests against webpack 5 and browserify 17.
  9. ## 6.1.0
  10. - Adds a types field to package.json for TypeScript integration.
  11. - Updates node-fetch to 2.6.0
  12. ## 6.0.2
  13. - Fixes WHATWG URL object handling when this module is used in Node.
  14. ## 6.0.1
  15. - Fixes to the TypeScript declaration file.
  16. ## 6.0.0
  17. - Adjusts the way the global object is sniffed for use with Metro.
  18. ## 5.0.0
  19. - Bumps node-fetch from ~1.7.1 to ~2.0.0. This is a potentially breaking
  20. change. Refer to the node-fetch [upgrade guide](https://github.com/bitinn/node-fetch/blob/master/UPGRADE-GUIDE.md)
  21. for details.
  22. ## 4.1.0
  23. - Bumps node fetch from ~1.6.0 to ~1.7.1.
  24. - Bumps whatwg-fetch from ~2.0.1 to ~2.0.3.
  25. ## 4.0.0
  26. This release:
  27. - Bumps whatwg-fetch from ~1.0.0 to ~2.0.1.
  28. - Better handling of self/this for browser fetch (more testing friendly).
  29. ## 3.0.2
  30. Dependencies now use tilde to allow patch versions to be tracked (this was
  31. waiting for whatwg-fetch to reach version 1).
  32. ## 3.0.1
  33. A link was added to the README to point to the ponyfill definition.
  34. ## 3.0.0
  35. Fixes an issue with detection of features like `URLSearchParams`. This is a
  36. major version bump since apparent behaviour could change in a breaking way in
  37. browsers which support detected features.
  38. ## 2.0.0
  39. Now exposes associated constructors along with `fetch` like:
  40. ```javascript
  41. const {fetch, Request, Response, Headers} = require('fetch-ponyfill')(options);
  42. ```