Skip to content
Snippets Groups Projects
  1. Feb 21, 2022
  2. Feb 06, 2022
    • Thijs Kinkhorst's avatar
      Change logging date formatting string from strftime() to date(). · dfbb7e65
      Thijs Kinkhorst authored
      strftime is deprecated and will be removed in PHP 9. SSP 2.0 is our
      chance to change this format as it's exposed to installers of SSP.
      
      The approch is to keep it simple and just change the format to PHP's
      built in date() function which remains supported. Also we do not try
      to localize the logging date/timestamps anymore. This matches the syslog
      approach that this format tried to mimic. We are using the day without
      leading zeroes now also to be a bit closer to how syslog does it.
      dfbb7e65
  3. Jan 30, 2022
  4. Jan 14, 2022
  5. Sep 08, 2021
  6. Sep 05, 2021
  7. Sep 04, 2021
  8. Aug 27, 2021
  9. Aug 16, 2021
  10. Jun 28, 2021
    • Nathaniel Hoag's avatar
      Replace LC_CTYPE with LC_ALL (#1474) · ee5491e0
      Nathaniel Hoag authored
      Additionally allows generating a password on current gen Macbook.
      
      Before:
      LC_CTYPE=C tr -c -d '0123456789abcdefghijklmnopqrstuvwxyz' </dev/urandom | dd bs=32 count=1 2>/dev/null;echo
      tr: Illegal byte sequence
      
      After:
      LC_ALL=C tr -c -d '0123456789abcdefghijklmnopqrstuvwxyz' </dev/urandom | dd bs=32 count=1 2>/dev/null;echo
      nhq2bu42k0iox5svm9rnmmon3oc2i55g
  11. Jun 09, 2021
  12. Mar 24, 2021
  13. Mar 14, 2021
    • Tim van Dijen's avatar
      Migrate utility-classes to non-static (part 2) (#1441) · 0b861789
      Tim van Dijen authored
      * Migrate email utils to non-static
      
      * Migrate http utils to non-static
      
      * Migrate net utils to non-static
      
      * Migrate random utils to non-static
      
      * Migrate system utils to non-static
      
      * Migrate time utils to non-static
      
      * Migrate xml utils to non-static
      
      * Upgrade notes
      
      * Update test-framework
      
      * Fix tests
  14. Feb 27, 2021
    • Thijs Kinkhorst's avatar
      Make config.php template ASCII text. · 12ae6870
      Thijs Kinkhorst authored
      There's little to no added value for UTF-8 in this file, while some
      editors do cause trouble when editing those files (e.g. adding BOM
      on Windows). This just avoids that hassle where we can.
      
      Closes: #1432
      12ae6870
  15. Jan 25, 2021
  16. Dec 15, 2020
  17. Aug 08, 2020
    • Thijs Kinkhorst's avatar
      Improve backtraces configuration. · 61453e96
      Thijs Kinkhorst authored
      The previous situation was confusing with various contradicting
      (staments of) defaults, mixed with old style and new style
      configuration.
      
      Simplify by deciding that having backtraces is so
      useful that it is the defaut, both old and new style configurations.
      (It was already default on in the config template,
      which seems 'canonical'.)
      61453e96
  18. Jul 01, 2020
  19. Mar 18, 2020
  20. Feb 25, 2020
  21. Feb 24, 2020
  22. Feb 15, 2020
    • Tim van Dijen's avatar
      Remove 2.0 deprecations (#1281) · 2c8aa8a6
      Tim van Dijen authored
      * Remove deprecated classes
      
      * Remove support for certificate fingerprints
      
      * Remove many deprecated methods and pieces of code
      
      * Remove SAML1.1/Shib1.3 support
      
      * Remove many superfluous annotations
      
      * Update unit test to work with new PHPunit
      
      Closes #1268 
      Closes #1020 
      Closes #431 
      Closes #167 
      Closes #151 
  23. Feb 10, 2020
    • Thijs Kinkhorst's avatar
      Config-template: remove default null for metadata.sign-algorithm · 3534658a
      Thijs Kinkhorst authored
      Different from the other options, setting it to null does not use
      a default but throws an error if you enable metadata signing, so
      enabling metadata signing in the default config will throw an
      exception. Better to just leave it out, the option is documented
      but should not be necessary for most installs, so needs not be
      in the template.
      3534658a
  24. Feb 02, 2020
  25. Dec 13, 2019
  26. Sep 06, 2019
  27. Aug 21, 2019
  28. Aug 18, 2019
  29. Jul 24, 2019
  30. Jul 15, 2019
  31. May 13, 2019
Loading