Update python-dotenv requirement from ~=0.19.2 to ~=0.20.0 in /telegram_bot #23

Merged
dependabot[bot] merged 1 commits from dependabot/pip/telegram_bot/python-dotenv-approx-eq-0.20.0 into main 2022-03-27 18:46:11 +00:00
dependabot[bot] commented 2022-03-25 09:41:10 +00:00 (Migrated from github.com)

Updates the requirements on python-dotenv to permit the latest version.

Release notes

Sourced from python-dotenv's releases.

Version 0.20.0

Added

  • Add encoding (Optional[str]) parameter to get_key, set_key and unset_key. (#379 by @​bbc2)

Fixed

  • Use dict to specify the entry_points parameter of setuptools.setup (#376 by @​mgorny).
  • Don't build universal wheels (#387 by @​bbc2).
Changelog

Sourced from python-dotenv's changelog.

[0.20.0] - 2022-03-24

Added

  • Add encoding (Optional[str]) parameter to get_key, set_key and unset_key. (#379 by [@​bbc2])

Fixed

  • Use dict to specify the entry_points parameter of setuptools.setup (#376 by [@​mgorny]).
  • Don't build universal wheels (#387 by [@​bbc2]).

[0.19.2] - 2021-11-11

Fixed

  • In set_key, add missing newline character before new entry if necessary. (#361 by [@​bbc2])

[0.19.1] - 2021-08-09

Added

[0.19.0] - 2021-07-24

Changed

  • Require Python 3.5 or a later version. Python 2 and 3.4 are no longer supported. (#341 by [@​bbc2]).

Added

  • The dotenv_path argument of set_key and unset_key now has a type of Union[str, os.PathLike] instead of just os.PathLike (#347 by [@​bbc2]).
  • The stream argument of load_dotenv and dotenv_values can now be a text stream (IO[str]), which includes values like io.StringIO("foo") and open("file.env", "r") (#348 by [@​bbc2]).

[0.18.0] - 2021-06-20

Changed

  • Raise ValueError if quote_mode isn't one of always, auto or never in set_key (#330 by [@​bbc2]).
  • When writing a value to a .env file with set_key or dotenv set <key> <value> (#330 by [@​bbc2]):
    • Use single quotes instead of double quotes.

... (truncated)

Commits

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 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)
Updates the requirements on [python-dotenv](https://github.com/theskumar/python-dotenv) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/theskumar/python-dotenv/releases">python-dotenv's releases</a>.</em></p> <blockquote> <h2>Version 0.20.0</h2> <h2>Added</h2> <ul> <li>Add <code>encoding</code> (<code>Optional[str]</code>) parameter to <code>get_key</code>, <code>set_key</code> and <code>unset_key</code>. (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/379">#379</a> by <a href="https://github.com/bbc2"><code>@​bbc2</code></a>)</li> </ul> <h2>Fixed</h2> <ul> <li>Use dict to specify the <code>entry_points</code> parameter of <code>setuptools.setup</code> (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/376">#376</a> by <a href="https://github.com/mgorny"><code>@​mgorny</code></a>).</li> <li>Don't build universal wheels (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/387">#387</a> by <a href="https://github.com/bbc2"><code>@​bbc2</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/theskumar/python-dotenv/blob/master/CHANGELOG.md">python-dotenv's changelog</a>.</em></p> <blockquote> <h2>[0.20.0] - 2022-03-24</h2> <h3>Added</h3> <ul> <li>Add <code>encoding</code> (<code>Optional[str]</code>) parameter to <code>get_key</code>, <code>set_key</code> and <code>unset_key</code>. (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/379">#379</a> by [<a href="https://github.com/bbc2"><code>@​bbc2</code></a>])</li> </ul> <h3>Fixed</h3> <ul> <li>Use dict to specify the <code>entry_points</code> parameter of <code>setuptools.setup</code> (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/376">#376</a> by [<a href="https://github.com/mgorny"><code>@​mgorny</code></a>]).</li> <li>Don't build universal wheels (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/387">#387</a> by [<a href="https://github.com/bbc2"><code>@​bbc2</code></a>]).</li> </ul> <h2>[0.19.2] - 2021-11-11</h2> <h3>Fixed</h3> <ul> <li>In <code>set_key</code>, add missing newline character before new entry if necessary. (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/361">#361</a> by [<a href="https://github.com/bbc2"><code>@​bbc2</code></a>])</li> </ul> <h2>[0.19.1] - 2021-08-09</h2> <h3>Added</h3> <ul> <li>Add support for Python 3.10. (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/359">#359</a> by [<a href="https://github.com/theskumar"><code>@​theskumar</code></a>])</li> </ul> <h2>[0.19.0] - 2021-07-24</h2> <h3>Changed</h3> <ul> <li>Require Python 3.5 or a later version. Python 2 and 3.4 are no longer supported. (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/341">#341</a> by [<a href="https://github.com/bbc2"><code>@​bbc2</code></a>]).</li> </ul> <h3>Added</h3> <ul> <li>The <code>dotenv_path</code> argument of <code>set_key</code> and <code>unset_key</code> now has a type of <code>Union[str, os.PathLike]</code> instead of just <code>os.PathLike</code> (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/347">#347</a> by [<a href="https://github.com/bbc2"><code>@​bbc2</code></a>]).</li> <li>The <code>stream</code> argument of <code>load_dotenv</code> and <code>dotenv_values</code> can now be a text stream (<code>IO[str]</code>), which includes values like <code>io.StringIO(&quot;foo&quot;)</code> and <code>open(&quot;file.env&quot;, &quot;r&quot;)</code> (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/348">#348</a> by [<a href="https://github.com/bbc2"><code>@​bbc2</code></a>]).</li> </ul> <h2>[0.18.0] - 2021-06-20</h2> <h3>Changed</h3> <ul> <li>Raise <code>ValueError</code> if <code>quote_mode</code> isn't one of <code>always</code>, <code>auto</code> or <code>never</code> in <code>set_key</code> (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/330">#330</a> by [<a href="https://github.com/bbc2"><code>@​bbc2</code></a>]).</li> <li>When writing a value to a .env file with <code>set_key</code> or <code>dotenv set &lt;key&gt; &lt;value&gt;</code> (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/330">#330</a> by [<a href="https://github.com/bbc2"><code>@​bbc2</code></a>]): <ul> <li>Use single quotes instead of double quotes.</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/theskumar/python-dotenv/commit/53cee8c7fb2fe1252606202ec9e2746651df738c"><code>53cee8c</code></a> Release version 0.20.0</li> <li><a href="https://github.com/theskumar/python-dotenv/commit/38320117cab7b0db0d9b417b2802e147542f80ed"><code>3832011</code></a> Don't mark wheels as universal (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/387">#387</a>)</li> <li><a href="https://github.com/theskumar/python-dotenv/commit/06c645c6d6e20bae18dde51e2bb02c82b6d46133"><code>06c645c</code></a> Fix installing entry points</li> <li><a href="https://github.com/theskumar/python-dotenv/commit/157282ce24d4124e934fd543eeb83fe5a65a4234"><code>157282c</code></a> Add encoding parameter to {get,set,unset}_key</li> <li><a href="https://github.com/theskumar/python-dotenv/commit/ba9408c5048e8e512318df423541d2b44ac6019f"><code>ba9408c</code></a> chore: add test with Python 3.11 (<a href="https://github-redirect.dependabot.com/theskumar/python-dotenv/issues/368">#368</a>)</li> <li>See full diff in <a href="https://github.com/theskumar/python-dotenv/compare/v0.19.2...v0.20.0">compare view</a></li> </ul> </details> <br /> 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 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>
H4CK3R-01 commented 2022-03-27 18:45:45 +00:00 (Migrated from github.com)

@dependabot recreate

@dependabot recreate
Sign in to join this conversation.
No description provided.