Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Latest commit

 

History

History
104 lines (51 loc) · 3.18 KB

CHANGELOG.md

File metadata and controls

104 lines (51 loc) · 3.18 KB

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

5.0.0 (2023-10-20)

Bug Fixes

BREAKING CHANGES

  • This project now needs Node 18 or greater.

4.1.0 (2018-02-21)

Features

  • Add possibility to define custom response header (ef26157), closes #10

4.0.3 (2018-02-19)

Bug Fixes

4.0.2 (2017-12-06)

Bug Fixes

  • update minimum node version in package.json (131d0ab)

4.0.1 (2017-12-04)

Bug Fixes

  • encoding of binary files send via endpoints (677b572)

4.0.0 (2017-12-04)

Bug Fixes

  • dependencies: Apply changes of boom update (a17f805)
  • dependencies: Update dependencies (ab5974a)
  • dependencies: Update dependencies (f362c9c)
  • update dependencies (bbd445b)

Code Refactoring

  • Refactor existing codebase (3751899)

Documentation

  • Update required minimum Node version in readme (e1c549b)

Features

  • Add support for other response content-types (c9a7d12), closes #7
  • Add support for sending files as response (70d535f), closes #11

BREAKING CHANGES

  • The transitive dependency punycode@2.1.0 needs Node version ">=6".

  • The setup.js is divided to multiple files. Therefore you need to change the import of the setup in your endpoint files like the following:

    // before
    const SetupEndpoint = require('./setup/setup.js');
    
    // now
    const SetupEndpoint = require('./setup/index.js');
    
    // or:
    const SetupEndpoint = require('./setup/');