1
0

CHANGELOG.md 5.3 KB

Changelog

All notable changes to this project will be documented in this file. Changes notes typically follow this pattern:

Fixed

Changed

  • Something was changed. (#pr-number) by @pr-author

Added

Removed

  • Something was removed. (#pr-number) by @pr-author

Deprecated

  • Something was deprecated. (#pr-number) by @pr-author

Unreleased

  • Nothing yet.

1.4.7

Added

  • A new CHANGELOG.md to keep track of changes in the project. (#385) by @Vkt0r
  • Added Danger and Swiftlint to the project. (#398) by @Vkt0r
  • Added the following to Scopes: manifest, ontouchstart, dataText. (#410) by @apocolipse
  • Added htmlBody(String) to HttpResonse as a compability case for the changed html(String) case.

Fixed

  • An issue causing a crash regarding a thread race condition. (#399) by @Vkt0r
  • An issue in the HttpRouter causing issues to handle routes with overlapping in the tail. (#379, #382) by @Vkt0r

  • Fixes build errors by excluding XC(UI)Test files from regular targets #397) by @ChristianSteffens

  • Fixes HttpRequest.path value to be parsed without query parameters #404) by @mazyod

  • Fixes the issue of missing Content-Length header item when shareFilesFromDirectory is being used to share files #406 by @nichbar

Changed

  • Performance: Batch reads of websocket payloads rather than reading byte-by-byte. (#387) by @lynaghk
  • Podspec source_files updated to match source file directory changes. (#400) by @welsonpan
  • Refactor: Use Foundation API for Base64 encoding. (#403) by @mazyod
  • Refactor: Use URLComponents for HttpRequest path and query parameters parsing #404) by @mazyod
  • HttpResponse functions statusCode() and reasonPhrase changed to computed variables instead of functions, and made public (No impact on existing usage as it was previously internal). (#410) by @apocolipse
  • Adjusted the associated type of enum case HttpResponseBody.json from AnyObject to Any to allow Swift dictionaries/arrays without converting to their Objective-C counterparts. (#393) by @edwinveger
  • HttpResponse: html requires now a complete html-string, not only the body-part.
  • Include the CHANGELOG.md and README.md in the Xcode-Project for easy access / changes.

Removed

1.4.6

Added

  • The .movedTemporarily case (HTTP 307) to possibles HTTP responses. (#352) by @csch
  • An example to the README for "How to load HTML by string?". (#352) by @IvanovDeveloper
  • CircleCI for Continous Integration in the project. (#364) by @Vkt0r
  • Support for the Swift 5. (#370) by @alanzeino

Changed

  • The syntax to support Swift 3 and Swift 4. (#347) by @fandyfyf
  • Set to NO the ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES in the tvOS target to avoid App Store checks due to the Frameworks directory. (#361) by @Vkt0r
  • The process of reading of request body and headers. (#362) by @adamkaplan

Fixed

  • An issue in the HttpRouter causing issues to handle routes with overlapping. (#359) by @Vkt0r