Skip to content

Releases: auraphp/Aura.Web

2.2.1

04 Mar 06:41
Compare
Choose a tag to compare

2.2.1

  • Fixed making sure only arrays are passed in foreach() by @zkwbbr in #65

  • Added missing charset property to Aura\Web\Request\Content class by @harikt.

Full Changelog: 2.2.0...2.2.1

2.2.0

21 Jun 04:58
Compare
Choose a tag to compare

2.2.0

  • Added allowing dot notation to gain access to arrays in Values objects by @proggeler in #59

Full Changelog: 2.1.2...2.2.0

2.1.2

19 Jun 01:23
51d3340
Compare
Choose a tag to compare

2.1.2

  • Fixed : Passing null to parameter type string is deprecated for strtolower by @zkwbbr in #60

  • Continous Itegration moved from Travis to Github actions. Tests are running from PHP 5.4 - 8.1.

Full Changelog: 2.1.1...2.1.2

2.1.1

05 Feb 02:50
Compare
Choose a tag to compare

Add support for setting, and sending, multiple Response header values.

2.1.0

09 Feb 17:05
Compare
Choose a tag to compare

Add support for setting, and sending, multiple Response header values.

2.0.4

03 Oct 21:33
Compare
Choose a tag to compare

Hygiene release: update license year, and remove branch alias.

2.0.3

27 Mar 19:00
Compare
Choose a tag to compare

This release modifies the testing structure and updates other support files.

2.0.2

15 Mar 19:13
Compare
Choose a tag to compare

This is a hygiene release to update support files. In particular, composer.json now adds tests/ to "autoload-dev" so that Aura\Web\FakeResponse is available for bundle, kernel, and project tests.

2.0.1

07 Nov 16:42
Compare
Choose a tag to compare
  • DOC: Update README and docblocks.
  • ADD: Request\Content::getCharset() functionality; fixes #45
  • CHG: Disable auto-resolve for container tests and make config more explicit

2.0.0

04 Oct 19:55
Compare
Choose a tag to compare
  • Convert to PSR-4 autoloading.
  • Add back PHP 5.3 compatibility.
  • Honor host from 'HTTP_HOST' and 'SERVER_NAME'.
  • Converted to class-based configuration for Aura projects, and use the updated
    service naming rules.
  • Add a ResponseSender class for easy sending of Response objects: after sending
    headers and cookies, if the content is a callable, the callable is invoked and
    echoed, otherwise the content is just echoed.
  • Deal with a bug in the PHP built-in server to determine content type and
    length.
  • Use the proper content-type for the .csv extension.
  • The Request Values object now has getBool(), getInt(), and getFloat(); these
    cast the request value appropriately.
  • Extract Accept-related functionality to Aura.Accept package.
  • README and docblock updates.