Skip to content

Releases: nette/http

Released version 3.3.0

21 Jan 22:20
@dg dg
Compare
Choose a tag to compare
  • requires PHP 8.1
  • uses PHP 8.1 features

Released version 3.2.4

30 Jan 18:24
@dg dg
Compare
Choose a tag to compare
  • FileUpload: added getSuggestedExtension()
  • RequestFactory: unify and fix host parsing (#229)

Released version 3.2.3

02 Nov 02:42
@dg dg
Compare
Choose a tag to compare
  • support for PHP 8.3
  • FileUpload: detects supported images
  • RequestFactory: fixed port detection when HTTP_HOST & SERVER_PORT are used #223
  • removed fix for IE

Released version 3.2.2

18 Mar 15:05
@dg dg
Compare
Choose a tag to compare
  • SessionExtension: don't set readAndClose if null (#213)
  • Improved https recognition behind load balancer (#221)
  • RequestFactory: fix X-Forwarded-Host mixup with remote host (#222)
  • RequestFactory: performance optimization #220
  • RequestFactory: fixed filter detection
  • Url: host can end with dot #198
  • added Session::getSectionNames(), replacement for getIterator()

Released version 3.1.8

18 Mar 15:03
@dg dg
Compare
Choose a tag to compare
  • SessionExtension: don't set readAndClose if null (#213)
  • Improved https recognition behind load balancer (#221)
  • RequestFactory: fix X-Forwarded-Host mixup with remote host (#222)
  • RequestFactory: performance optimization
  • RequestFactory: fixed filter detection
  • Url: host can end with dot #198

Released version 3.2.0

27 Nov 20:53
@dg dg
Compare
Choose a tag to compare

BC break:

  • RequestFactory: removed HTTP authentication credential from Url to prevent leak it (#211 #215)
$httpRequest->getUrl()->getUser() + getPassword()
// changed to 
[$user, $pass] = $httpRequest->getBasicCredentials();

New features:

  • Request: added getBasicCredentials()
  • Url, UrlImmutable: added getDefaultPort()
  • RequestFactory::getHeaders() recreates Authorization header
  • support for full_path upload (#207 #212)
  • HttpExtension: dynamic options cookiePath, cookieDomain, cookieSecure (#216)
  • constants are PascalCase

Deprecations:

  • IRequest::getRemoteHost() is silently deprecated (#218)
  • SessionSection: magic accessors & ArrayAccess are silently deprecated
  • Session::getIterator() is deprecated

Released version 3.1.7

18 Nov 03:07
@dg dg
Compare
Choose a tag to compare
  • support for PHP 8.2
  • Request::getReferer() is deprecated #210
  • cs

Released version 3.1.6

02 Apr 16:08
@dg dg
Compare
Choose a tag to compare

Released version 3.1.5

17 Sep 14:15
@dg dg
Compare
Choose a tag to compare
  • SessionExtension: added values 'always' & 'never' for option 'autoStart'
  • Session: option 'autoStart' controls auto start on reading or writing (BC break)
  • Session: added autoStart() to prevent session files from being created when the session id is spoofed
  • SessionSection: remove() is not writing operation
  • SessionSection: added methods set(), get(), remove()
  • Session: refactoring
  • Session: cleaning is done in __destruct
  • Session: don't send session cookie twice
  • Session: don't regenerate ID in readAndClose mode
  • Session: added events $onStart & $onBeforeWrite
  • Session: fixed condition in clean()

Released version 3.0.7

17 Sep 14:14
@dg dg
Compare
Choose a tag to compare
  • SessionExtension: default is autoStart = false to avoid creating new session files if the session_id is spoofed (BC break)
  • SessionSection: added methods set(), get(), remove()
  • Session: don't send session cookie twice
  • Session: don't regenerate ID in readAndClose mode
  • Session: fixed condition in clean()