Philipp Horstenkamp 6f5729c12a
Some checks failed
Lint / pre-commit Linting (push) Has been cancelled
First development of the deploy action (#6)
Deploy js code to an instance of screeps.
Some debugging tools are implemented.

Reviewed-on: #6
Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de>
Co-committed-by: Philipp Horstenkamp <philipp@horstenkamp.de>
2023-11-26 18:31:49 +01:00

60 lines
1.4 KiB
Markdown

# History
## 6.1.0
- Adds a types field to package.json for TypeScript integration.
- Updates node-fetch to 2.6.0
## 6.0.2
- Fixes WHATWG URL object handling when this module is used in Node.
## 6.0.1
- Fixes to the TypeScript declaration file.
## 6.0.0
- Adjusts the way the global object is sniffed for use with Metro.
## 5.0.0
- Bumps node-fetch from ~1.7.1 to ~2.0.0. This is a potentially breaking
change. Refer to the node-fetch [upgrade guide](https://github.com/bitinn/node-fetch/blob/master/UPGRADE-GUIDE.md)
for details.
## 4.1.0
- Bumps node fetch from ~1.6.0 to ~1.7.1.
- Bumps whatwg-fetch from ~2.0.1 to ~2.0.3.
## 4.0.0
This release:
- Bumps whatwg-fetch from ~1.0.0 to ~2.0.1.
- Better handling of self/this for browser fetch (more testing friendly).
## 3.0.2
Dependencies now use tilde to allow patch versions to be tracked (this was
waiting for whatwg-fetch to reach version 1).
## 3.0.1
A link was added to the README to point to the ponyfill definition.
## 3.0.0
Fixes an issue with detection of features like `URLSearchParams`. This is a
major version bump since apparent behaviour could change in a breaking way in
browsers which support detected features.
## 2.0.0
Now exposes associated constructors along with `fetch` like:
```javascript
const {fetch, Request, Response, Headers} = require('fetch-ponyfill')(options);
```