[PR #541] [MERGED] chore(deps): bump monolog/monolog from 3.7.0 to 3.8.0 #1170

Closed
opened 2026-03-15 15:56:23 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/flyimg/flyimg/pull/541
Author: @dependabot[bot]
Created: 11/18/2024
Status: Merged
Merged: 11/18/2024
Merged by: @sadok-f

Base: mainHead: dependabot/composer/monolog/monolog-3.8.0


📝 Commits (1)

  • 242d321 chore(deps): bump monolog/monolog from 3.7.0 to 3.8.0

📊 Changes

1 file changed (+13 additions, -11 deletions)

View changed files

📝 composer.lock (+13 -11)

📄 Description

Bumps monolog/monolog from 3.7.0 to 3.8.0.

Release notes

Sourced from monolog/monolog's releases.

3.8.0

  • Added $fileOpenMode param to StreamHandler to define a custom fopen mode to open the log file (#1913)
  • Fixed PHP 8.4 deprecation notices (#1903)
  • Added ability to extend/override IntrospectionProcessor (#1899)
  • Added $timeout param to ProcessHandler to configure the stream_select() timeout to avoid blocking too long (default is 1.0 sec) (#1916)
  • Fixed JsonFormatter batch handling to normalize records individually to make sure they look the same as if they were handled one by one (#1906)
  • Fixed StreamHandler handling of write failures so that it now closes/reopens the stream and retries the write once before failing (#1882)
  • Fixed StreamHandler error handler causing issues if a stream handler triggers an error (#1866)
  • Fixed StreamHandler::reset not closing the stream, so that it would fail to write in some cases with long running processes (#1862)
  • Fixed RotatingFileHandler issue where rotation does not happen in some long running processes (#1905)
  • Fixed JsonFormatter handling of incomplete classes (#1834)
  • Fixed RotatingFileHandler bug where rotation could sometimes not happen correctly (#1905)

Full Changelog: https://github.com/Seldaek/monolog/compare/3.7.0...3.8.0

Changelog

Sourced from monolog/monolog's changelog.

3.8.0 (2024-11-12)

  • Added $fileOpenMode param to StreamHandler to define a custom fopen mode to open the log file (#1913)
  • Fixed PHP 8.4 deprecation notices (#1903)
  • Added ability to extend/override IntrospectionProcessor (#1899)
  • Added $timeout param to ProcessHandler to configure the stream_select() timeout to avoid blocking too long (default is 1.0 sec) (#1916)
  • Fixed JsonFormatter batch handling to normalize records individually to make sure they look the same as if they were handled one by one (#1906)
  • Fixed StreamHandler handling of write failures so that it now closes/reopens the stream and retries the write once before failing (#1882)
  • Fixed StreamHandler error handler causing issues if a stream handler triggers an error (#1866)
  • Fixed StreamHandler::reset not closing the stream, so that it would fail to write in some cases with long running processes (#1862)
  • Fixed RotatingFileHandler issue where rotation does not happen in some long running processes (#1905)
  • Fixed JsonFormatter handling of incomplete classes (#1834)
  • Fixed RotatingFileHandler bug where rotation could sometimes not happen correctly (#1905)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/flyimg/flyimg/pull/541 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/18/2024 **Status:** ✅ Merged **Merged:** 11/18/2024 **Merged by:** [@sadok-f](https://github.com/sadok-f) **Base:** `main` ← **Head:** `dependabot/composer/monolog/monolog-3.8.0` --- ### 📝 Commits (1) - [`242d321`](https://github.com/flyimg/flyimg/commit/242d3214c4d7e9761790f041617ff8a8cd81ac2d) chore(deps): bump monolog/monolog from 3.7.0 to 3.8.0 ### 📊 Changes **1 file changed** (+13 additions, -11 deletions) <details> <summary>View changed files</summary> 📝 `composer.lock` (+13 -11) </details> ### 📄 Description Bumps [monolog/monolog](https://github.com/Seldaek/monolog) from 3.7.0 to 3.8.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Seldaek/monolog/releases">monolog/monolog's releases</a>.</em></p> <blockquote> <h2>3.8.0</h2> <ul> <li>Added <code>$fileOpenMode</code> param to <code>StreamHandler</code> to define a custom fopen mode to open the log file (<a href="https://redirect.github.com/Seldaek/monolog/issues/1913">#1913</a>)</li> <li>Fixed PHP 8.4 deprecation notices (<a href="https://redirect.github.com/Seldaek/monolog/issues/1903">#1903</a>)</li> <li>Added ability to extend/override <code>IntrospectionProcessor</code> (<a href="https://redirect.github.com/Seldaek/monolog/issues/1899">#1899</a>)</li> <li>Added <code>$timeout</code> param to <code>ProcessHandler</code> to configure the stream_select() timeout to avoid blocking too long (default is 1.0 sec) (<a href="https://redirect.github.com/Seldaek/monolog/issues/1916">#1916</a>)</li> <li>Fixed JsonFormatter batch handling to normalize records individually to make sure they look the same as if they were handled one by one (<a href="https://redirect.github.com/Seldaek/monolog/issues/1906">#1906</a>)</li> <li>Fixed <code>StreamHandler</code> handling of write failures so that it now closes/reopens the stream and retries the write once before failing (<a href="https://redirect.github.com/Seldaek/monolog/issues/1882">#1882</a>)</li> <li>Fixed <code>StreamHandler</code> error handler causing issues if a stream handler triggers an error (<a href="https://redirect.github.com/Seldaek/monolog/issues/1866">#1866</a>)</li> <li>Fixed <code>StreamHandler::reset</code> not closing the stream, so that it would fail to write in some cases with long running processes (<a href="https://redirect.github.com/Seldaek/monolog/issues/1862">#1862</a>)</li> <li>Fixed <code>RotatingFileHandler</code> issue where rotation does not happen in some long running processes (<a href="https://redirect.github.com/Seldaek/monolog/issues/1905">#1905</a>)</li> <li>Fixed <code>JsonFormatter</code> handling of incomplete classes (<a href="https://redirect.github.com/Seldaek/monolog/issues/1834">#1834</a>)</li> <li>Fixed <code>RotatingFileHandler</code> bug where rotation could sometimes not happen correctly (<a href="https://redirect.github.com/Seldaek/monolog/issues/1905">#1905</a>)</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/Seldaek/monolog/compare/3.7.0...3.8.0">https://github.com/Seldaek/monolog/compare/3.7.0...3.8.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Seldaek/monolog/blob/main/CHANGELOG.md">monolog/monolog's changelog</a>.</em></p> <blockquote> <h3>3.8.0 (2024-11-12)</h3> <ul> <li>Added <code>$fileOpenMode</code> param to <code>StreamHandler</code> to define a custom fopen mode to open the log file (<a href="https://redirect.github.com/Seldaek/monolog/issues/1913">#1913</a>)</li> <li>Fixed PHP 8.4 deprecation notices (<a href="https://redirect.github.com/Seldaek/monolog/issues/1903">#1903</a>)</li> <li>Added ability to extend/override <code>IntrospectionProcessor</code> (<a href="https://redirect.github.com/Seldaek/monolog/issues/1899">#1899</a>)</li> <li>Added <code>$timeout</code> param to <code>ProcessHandler</code> to configure the stream_select() timeout to avoid blocking too long (default is 1.0 sec) (<a href="https://redirect.github.com/Seldaek/monolog/issues/1916">#1916</a>)</li> <li>Fixed JsonFormatter batch handling to normalize records individually to make sure they look the same as if they were handled one by one (<a href="https://redirect.github.com/Seldaek/monolog/issues/1906">#1906</a>)</li> <li>Fixed <code>StreamHandler</code> handling of write failures so that it now closes/reopens the stream and retries the write once before failing (<a href="https://redirect.github.com/Seldaek/monolog/issues/1882">#1882</a>)</li> <li>Fixed <code>StreamHandler</code> error handler causing issues if a stream handler triggers an error (<a href="https://redirect.github.com/Seldaek/monolog/issues/1866">#1866</a>)</li> <li>Fixed <code>StreamHandler::reset</code> not closing the stream, so that it would fail to write in some cases with long running processes (<a href="https://redirect.github.com/Seldaek/monolog/issues/1862">#1862</a>)</li> <li>Fixed <code>RotatingFileHandler</code> issue where rotation does not happen in some long running processes (<a href="https://redirect.github.com/Seldaek/monolog/issues/1905">#1905</a>)</li> <li>Fixed <code>JsonFormatter</code> handling of incomplete classes (<a href="https://redirect.github.com/Seldaek/monolog/issues/1834">#1834</a>)</li> <li>Fixed <code>RotatingFileHandler</code> bug where rotation could sometimes not happen correctly (<a href="https://redirect.github.com/Seldaek/monolog/issues/1905">#1905</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Seldaek/monolog/commit/32e515fdc02cdafbe4593e30a9350d486b125b67"><code>32e515f</code></a> Merge branch '2.x'</li> <li><a href="https://github.com/Seldaek/monolog/commit/5cf826f2991858b54d5c3809bee745560a1042a7"><code>5cf826f</code></a> Update changelog</li> <li><a href="https://github.com/Seldaek/monolog/commit/7729f32de0a1825fb0adfb3ba9403785390ebb26"><code>7729f32</code></a> Merge branch '2.x'</li> <li><a href="https://github.com/Seldaek/monolog/commit/d2d0341604de8ca098af4546718aea35deeb4088"><code>d2d0341</code></a> Fix patch</li> <li><a href="https://github.com/Seldaek/monolog/commit/d57089bf8750d4a8b079f7347c9c84c63b1f5453"><code>d57089b</code></a> Fix RotatingFileHandler bug where rotation could sometimes not happen correct...</li> <li><a href="https://github.com/Seldaek/monolog/commit/0c7366171fbe876435636690363ae5895725b84b"><code>0c73661</code></a> Auto-close streams when reset() is called, fixes <a href="https://redirect.github.com/Seldaek/monolog/issues/1862">#1862</a></li> <li><a href="https://github.com/Seldaek/monolog/commit/24a1110715263c59e3bf1bf830f8d1b723660e36"><code>24a1110</code></a> Merge branch '2.x'</li> <li><a href="https://github.com/Seldaek/monolog/commit/0779fb91e524d6a1eea42643e06aefdda18c3b97"><code>0779fb9</code></a> Close and reopen file handles if a write fails (<a href="https://redirect.github.com/Seldaek/monolog/issues/1882">#1882</a>)</li> <li><a href="https://github.com/Seldaek/monolog/commit/517e2f40a24305cc9faf38085af498fe2623243e"><code>517e2f4</code></a> Fix build</li> <li><a href="https://github.com/Seldaek/monolog/commit/5d5da57b81f9ac2a71b914b9e05c7e22bfecb920"><code>5d5da57</code></a> Normalize call normalizeRecord if necessary (<a href="https://redirect.github.com/Seldaek/monolog/issues/1906">#1906</a>)</li> <li>Additional commits viewable in <a href="https://github.com/Seldaek/monolog/compare/3.7.0...3.8.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=monolog/monolog&package-manager=composer&previous-version=3.7.0&new-version=3.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-15 15:56:23 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/flyimg#1170
No description provided.