-
-
Notifications
You must be signed in to change notification settings - Fork 316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use default option in Env.bytes() #206
Closed
Closed
Conversation
This file contains 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
It seems that the default for this particular method was overlooked in !163
Great! I've just got bitten by that. Would be nice if this fix landed in a release. |
+1 to be merged. |
aleonsan
approved these changes
Jun 22, 2021
PR was closed by mistake. Reopened it. |
This is resolved in |
gcf-merge-on-green bot
referenced
this pull request
in GoogleCloudPlatform/python-docs-samples
Sep 14, 2021
[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [django-environ](https://django-environ.readthedocs.org) ([source](https://togithub.com/joke2k/django-environ), [changelog](https://django-environ.readthedocs.org/en/latest/changelog.html)) | `==0.6.0` -> `==0.7.0` | [![age](https://badges.renovateapi.com/packages/pypi/django-environ/0.7.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/django-environ/0.7.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/django-environ/0.7.0/compatibility-slim/0.6.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/django-environ/0.7.0/confidence-slim/0.6.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>joke2k/django-environ</summary> ### [`v0.7.0`](https://togithub.com/joke2k/django-environ/blob/master/CHANGELOG.rst#v070---11-September-2021) [Compare Source](https://togithub.com/joke2k/django-environ/compare/v0.6.0...v0.7.0) Added \+++++ - Added support for negative float strings `#​160 <https://github.com/joke2k/django-environ/issues/160>`\_. - Added Elasticsearch5 to search scheme `#​297 <https://github.com/joke2k/django-environ/pull/297>`\_. - Added Elasticsearch7 to search scheme `#​314 <https://github.com/joke2k/django-environ/issues/314>`\_. - Added the ability to use `bytes` or `str` as a default value for `Env.bytes()`. Fixed \+++++ - Fixed links in the documentation. - Use default option in `Env.bytes()` `#​206 <https://github.com/joke2k/django-environ/pull/206>`\_. - Safely evaluate a string containing an invalid Python literal `#​200 <https://github.com/joke2k/django-environ/issues/200>`\_. Changed \+++++++ - Added 'Funding' and 'Say Thanks!' project urls on pypi. - Stop raising `UserWarning` if `.env` file isn't found. Log a message with `INFO` log level instead `#​243 <https://github.com/joke2k/django-environ/issues/243>`\_. </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Never, 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 [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/GoogleCloudPlatform/python-docs-samples).
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.
It seems that the default for this particular method was overlooked in !163