Skip to content

Commit

Permalink
Merge pull request #208 from silinternational/develop
Browse files Browse the repository at this point in the history
Release 5.3.1
  • Loading branch information
briskt authored Oct 6, 2020
2 parents fc2c562 + 7535302 commit eb9bb41
Show file tree
Hide file tree
Showing 7 changed files with 788 additions and 424 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ phpinfo.php
# generated files
application/tests/_support/_generated/
api.html

dockercfg
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [5.3.1]
### Changed
- No caching of log messages. Helps to ensure messages are sent to log in the event
of a crash, e.g. out of memory situation.

## [5.3.0]
### Changed
- Changed logging from syslog to stdout/stderr
Expand Down Expand Up @@ -120,7 +125,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Initial version of Password Manager Backend.

[Unreleased]: https://github.com/silinternational/idp-pw-api/compare/5.3.0...HEAD
[Unreleased]: https://github.com/silinternational/idp-pw-api/compare/5.3.1...HEAD
[5.3.1]: https://github.com/silinternational/idp-pw-api/compare/5.3.0..5.3.1
[5.3.0]: https://github.com/silinternational/idp-pw-api/compare/5.2.2...5.3.0
[5.2.2]: https://github.com/silinternational/idp-pw-api/compare/5.2.1...5.2.2
[5.2.1]: https://github.com/silinternational/idp-pw-api/compare/5.2.0...5.2.1
Expand Down
3 changes: 3 additions & 0 deletions application/common/config/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
'logVars' => [],
'categories' => ['application'],
'prefix' => $logPrefix,
'exportInterval' => 1,
],
[
'class' => JsonStreamTarget::class,
Expand All @@ -112,6 +113,7 @@
],
'logVars' => [],
'prefix' => $logPrefix,
'exportInterval' => 1,
],
[
'class' => EmailServiceTarget::class,
Expand Down Expand Up @@ -162,6 +164,7 @@

return $prefixData;
},
'exportInterval' => 1,
],
],
],
Expand Down
5 changes: 3 additions & 2 deletions application/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"yiisoft/yii2-gii": "*",
"silinternational/email-service-php-client": "^2.0.1",
"silinternational/php-env": "^2.1.1",
"silinternational/yii2-json-log-targets": "^1.1.0",
"silinternational/yii2-json-log-targets": "^2.0",
"silinternational/yii2-email-log-target": "^1.0.1",
"silinternational/idp-id-broker-php-client": "^3.1.0",
"silinternational/zxcvbn-api-client-php": "^2.0",
Expand All @@ -27,7 +27,8 @@
"google/recaptcha": "^1.1.2",
"adldap2/adldap2": "^9.0",
"fillup/fake-bower-assets": "2.0.9",
"icawebdesign/hibp-php": "3.1.0"
"icawebdesign/hibp-php": "3.1.0",
"codemix/yii2-streamlog": "^1.3"
},
"require-dev": {
"yiisoft/yii2-debug": "*",
Expand Down
Loading

0 comments on commit eb9bb41

Please sign in to comment.