Bump smol-toml from 1.5.2 to 1.6.1 in /with-astro by dependabot[bot] · Pull Request #214 · polarsource/examples
Bumps smol-toml from 1.5.2 to 1.6.1.
Release notes
Sourced from smol-toml's releases.
v1.6.1
This release addresses a minor security vulnerability where an attacker-controlled TOML document can exploit an unrestricted recustion and cause a stack overflow error with a document that contains thousands of sucessive commented lines. Security advisory: GHSA-v3rj-xjv7-4jmq
v1.6.0
As of this version, smol-toml now supports the newly released TOML 1.1.0 specification!
Highlights
Multiline inline tables
TOML 1.1.0 now allows inline tables to have newlines, as well as trailing commas.
database = { driver = "postgresql", server = { host = "127.0.0.1", port = 3307, }, }Omitting seconds in datetime and time
TOML 1.1.0 renders the seconds component of time elements optional.
datetime-tz = 1979-05-27 07:32Z datetime = 2001-09-21 10:17 time = 13:37New string escapes
Strings now support 2 additional escape sequences:
\xHHfor code points between 0 and 255\efor the escape character (U+001B)What's Changed
- feat: toml 1.1 support by
@cyyynthiain squirrelchat/smol-toml#49Full Changelog: squirrelchat/smol-toml@v1.5.2...v1.6.0
Commits
072b64fchore: version bump19a5dc7chore: upgrade dependencies and actionsf286f87fix: don't use recursion in skipVoid399c545chore: version bump06521caMerge pull request #49 from squirrelchat/toml-110f3a68a7fix: properly test \e escape9743a86fix: properly run toml-test v21ec5303docs: toml 1.1.0 in the readme8bc0e2bchore: upgrade dependencies, actions24618dbfeat: allow omitting seconds in datetime and time values- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the Security Alerts page.