Skip to content
Snippets Groups Projects
  1. Dec 03, 2019
  2. Nov 26, 2019
  3. Nov 22, 2019
  4. Nov 19, 2019
    • Jaime Pérez Crespo's avatar
      bugfix: set AllowCreate in NameIDPolicy to true by default · 588f544a
      Jaime Pérez Crespo authored
      This was previously the case. However, when we introduced the new way to configure NameIDPolicy by using arrays, the default for old-style string configurations changed so AllowCreate was then unset. When unset, the SAML standard sets its default to false, effectively creating interoperability issues when uses upgraded SimpleSAMLphp without changing the configuration.
      
      This resolves #1230.
  5. Nov 18, 2019
  6. Nov 09, 2019
  7. Oct 31, 2019
  8. Oct 26, 2019
  9. Oct 18, 2019
  10. Oct 07, 2019
  11. Oct 03, 2019
  12. Oct 02, 2019
    • Tim van Dijen's avatar
      Fix PHPdoc · 89e88678
      Tim van Dijen authored
      89e88678
    • wimhaan's avatar
      Sql sessions for mssql (#1212) · 5abff1ea
      wimhaan authored
      * SQL: changed init session table so it will work on MSSQL Databases
      
      * SQL: changed rowCount by count of fetchAll
      rowCount does not always returns number of rows on SELECT queries, i.e. MSSQL returns -1
      5abff1ea
  13. Oct 01, 2019
  14. Sep 26, 2019
  15. Sep 24, 2019
  16. Sep 16, 2019
    • Tim van Dijen's avatar
      Add deprecation note · 5f264d4d
      Tim van Dijen authored
    • Jaime Pérez Crespo's avatar
      Do not attempt to set the session ID for transient sessions · 8b4b2138
      Jaime Pérez Crespo authored
      It just doesn't make any sense. If we managed to get it from an existing cookie, it serves no purpose, as at this point we couldn't load the session anyway, and what we use to track users is the track ID, not the session ID. Additionally, since this is a transient session, we're not going to push the cookie to the browser (we might not even can do that), so it's really pointless to set the session ID.
      
      This, additionally, was causing that the Session class would be unable to initialize and register a transient session if the issue that forced us to use a transient in the first place was an issue with the session handler (e.g. missing PHP extensions or dependencies, or connection failure to the backend, etc). Under such circumstances, the code removed here will not work either, since the session handler will continue to fail to initialize. This would cause the exception handler to jump in, completely losing control of the execution, and making it impossible to display the error to the user (since the transient session creation is never completed, it cannot be used later where it is needed in the SimpleSAML\Error\Error class).
      
      This resolves #914.
    • Jaime Pérez Crespo's avatar
      Make it explicit that fetching or creating a session handler could throw an exception · e968169e
      Jaime Pérez Crespo authored
      This could happen when the handler is depending on a PHP extension, or connection to a database fails, or any other circumstance that may trigger an exception in the constructor of the session handler itself. We should be aware of this when using the session handler, therefore we update the phpdoc here to reflect that.
    • Jaime Pérez Crespo's avatar
      Fix broken web server aliases / rewritten URLs · 29b63583
      Jaime Pérez Crespo authored
      This resolves #1023, resolves #1093 and closes #1095.
    • Jaime Pérez Crespo's avatar
      Fix header warnings from log flushing · b278b2b4
      Jaime Pérez Crespo authored
      This resolves #1176
    • Jaime Pérez Crespo's avatar
      Remove misleading phpdoc · 2748d2da
      Jaime Pérez Crespo authored
      This comment used to be true, but the behaviour was changed in 3c52b289 in order to purge old data more often.
      2748d2da
Loading