Fix regression with semantic-logger, allow setting custom logger#494
Merged
Fix regression with semantic-logger, allow setting custom logger#494
Conversation
feeeedd to
0ca2e22
Compare
This partially reverts the change in #489
0ca2e22 to
588f7a4
Compare
that-jill
referenced
this pull request
in powerhome/power-web-development-interview
Feb 27, 2024
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [dotenv-rails](https://togithub.com/bkeepers/dotenv) | `3.0.2` -> `3.1.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>bkeepers/dotenv (dotenv-rails)</summary> ### [`v3.1.0`](https://togithub.com/bkeepers/dotenv/blob/HEAD/Changelog.md#310) **What's Changed** - Fix regression with semantic-logger, allow setting custom logger by [@​bkeepers](https://togithub.com/bkeepers) in [https://github.com/bkeepers/dotenv/pull/494](https://togithub.com/bkeepers/dotenv/pull/494) ```ruby ``` ### [`v3.0.3`](https://togithub.com/bkeepers/dotenv/blob/HEAD/Changelog.md#303) [Compare Source](https://togithub.com/bkeepers/dotenv/compare/v3.0.2...v3.0.3) **What's Changed** - Solve circular require warning by [@​martijnbolhuis](https://togithub.com/martijnbolhuis) in [https://github.com/bkeepers/dotenv/pull/491](https://togithub.com/bkeepers/dotenv/pull/491) - Use tagged logger already configured on Rails by [@​kriansa](https://togithub.com/kriansa) in [https://github.com/bkeepers/dotenv/pull/489](https://togithub.com/bkeepers/dotenv/pull/489) - Fix exception on startup for Rails 7.1.0 by [@​bkeepers](https://togithub.com/bkeepers) and [@​zspencer](https://togithub.com/zspencer) in [https://github.com/bkeepers/dotenv/pull/492](https://togithub.com/bkeepers/dotenv/pull/492) **New Contributors** - [@​zspencer](https://togithub.com/zspencer) made their first contribution in [https://github.com/bkeepers/dotenv/pull/492](https://togithub.com/bkeepers/dotenv/pull/492) - [@​martijnbolhuis](https://togithub.com/martijnbolhuis) made their first contribution in [https://github.com/bkeepers/dotenv/pull/491](https://togithub.com/bkeepers/dotenv/pull/491) - [@​kriansa](https://togithub.com/kriansa) made their first contribution in [https://github.com/bkeepers/dotenv/pull/489](https://togithub.com/bkeepers/dotenv/pull/489) **Full Changelog**: bkeepers/dotenv@v3.0.2...v3.0.3 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/powerhome/power-web-development-interview). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This partially reverts the change in #489 to go back to using
ActiveSupport::TaggedLogginginstead of calling#taggedon an existing logger. However, now you can configure dotenv to use your own logger and it won't set up its own:Fixes #493
cc @brosintoski @kriansa @alisaifee