Skip to content

Releases: birdofpreyru/react-native-static-server

v0.11.0

26 Feb 13:10
Compare
Choose a tag to compare

Important

  • Updates dependencies, in particular [#100] Lighttpd v1.4.73 ⇒ v1.4.74.

Misc Changes

  • [#96] Windows: Improves a few native error messages, including server ID into them.
  • [#99] Enables support of SetEnv module (allows to modify request and response headers).

v0.10.5

31 Jan 18:14
Compare
Choose a tag to compare

Important

Misc

  • [#98] Improves an error message.

v0.10.4

24 Jan 15:50
Compare
Choose a tag to compare
  • [#65] Updates dependencies + Minor improvements.

v0.10.3

19 Jan 22:32
Compare
Choose a tag to compare
  • [#97] Patches the "Stop in background" feature (see the stopInBackground option of Sever.constructor()) to avoid unhandled promise rejections if server crashes during such auto-stop (auto-restart), and there are state listeners connected to the server (we assume they are handling such errors). It still leaves such promise rejections unhandled if no state listeners are connected (e.g. that allows optional instrumentation, like Sentry, to detect and report these unhandled rejections, attracting attention to possible issues with the host app).
  • Updates dependencies.

v0.10.2

05 Jan 01:33
Compare
Choose a tag to compare
  • [#96] Android, iOS, macOS: Improved native error messages.
  • Updates dependencies.

v0.10.1

27 Dec 00:00
Compare
Choose a tag to compare

v0.10.0

15 Dec 12:51
Compare
Choose a tag to compare

v0.9.2

17 Nov 18:12
Compare
Choose a tag to compare
  • [#88] mod_rewrite support.
  • [#84] iOS: Fixes library build in project configurations named differently from «Debug» or «Release».
  • [#74] README improvement.
  • Updates dependencies.

v0.9.1

08 Nov 16:12
Compare
Choose a tag to compare
  • [#83] Updates dependency, including Lighttpd v1.4.72 ⇒ v1.4.73.
  • [#67][#84] Corrections in PRCE2 linking during the build on all systems, presumably it may fix issues with library builds for iOS / macOS.
  • [#77][#86] Minor README improvements.

v0.9.0

09 Oct 19:11
Compare
Choose a tag to compare
  • [#13][#72] Adds extraConfig option to Server constructor() — it allows to add arbitrary additional Lighttpd configuration to the base one generated by the library.
  • [#73] iOS: Corrects the declared minimal target platform version to match that declared by RN.
  • [#75] Upraded to Lighttpd v1.4.72 (changelog).
  • Removes MIME type definitions for file extensions from the base config generated by the library, and thus it now relies on the default MIME type definitions by Lighttpd (see here). There are some differences from the removed definitions, if it is a problem, you can use the new extraConfig option to specify MIME types explicitly.
  • Inits Lighttpd's mod_alias during the build, thus allowing to use it in the config (see Enabling Alias Module).
  • Deprecates webdav option of Server constructor() — if necessary, use extraConfig to configure WebDAV (see Enabling WebDAV module).