fix(deps): update shared components packages #1784
Open
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 PR contains the following updates:
2.2.0->2.4.32.2.0->2.4.3ba14867->9c4279f6d338c1->fd5ace9v2.3.6->v2.3.7v1.2.1->v1.5.0v1.19.0->v1.23.2v3.4.0->v3.16.0v1.13.0->v1.18.0v0.0.16->v0.0.20v2.2.1->v2.6.0v1.2.0->v1.6.3v0.1.306->v0.1.480v1.6.1->v1.10.1v1.0.5->v1.0.106ca2374->411dd121.18.x->1.18.101.17.x->1.17.13v0.5.0->v0.30.008e2f20->b002b6eb508e2e->a08664bv0.24.8->v0.34.1v0.24.8->v0.34.1v0.24.8->v0.34.126b39ed->2c856c665a8dda->4fc2b233ea6ae1->8fa7f5a4160451->b948419Release Notes
facebook/docusaurus (@docusaurus/core)
v2.4.3: 2.4.3Compare Source
2.4.3 (2023-09-20)
🐛 Bug Fix
docusaurus-plugin-content-docsdocusaurus-theme-classicdocusaurus-theme-classic,docusaurus-theme-commonCommitters: 4
v2.4.1: 2.4.1Compare Source
2.4.1 (2023-05-15)
🐛 Bug Fix
docusaurus-theme-classic,docusaurus-theme-commondocusaurus-theme-translationsdocusaurusdocusaurus-plugin-content-blog,docusaurus-theme-common,docusaurus-utils-common,docusaurusdocusaurus-theme-commondocusaurus-utilsdocusaurus-theme-classic,docusaurus-theme-translationscreate-docusaurus💅 Polish
docusaurus-theme-classicCommitters: 7
v2.4.0: 2.4.0Compare Source
2.4.0 (2023-03-23)
Blog post: https://docusaurus.io/blog/releases/2.4/
🚀 New Feature
docusaurus-plugin-content-docs,docusaurus-theme-classicdocusaurus-theme-classicdocusaurus-remark-plugin-npm2yarndocusaurusdocusaurus-theme-classic,docusaurus-theme-commonprefers-reduced-motion: reducemediaquery, bump Infima to alpha.43 (@slorber)docusaurus-theme-translationsdocusaurus-theme-commondocusaurus-plugin-google-gtag🐛 Bug Fix
docusaurus-theme-classicdocusaurus-theme-classic,docusaurus-theme-commondocusaurus-theme-common,docusaurus-theme-search-algoliadocusaurusdocusaurus-theme-translations💅 Polish
create-docusaurusdocusaurus-theme-classic,docusaurus-theme-common,docusaurus-utils-common,docusaurusdocusaurus-theme-classic,docusaurus-theme-common,docusaurusCommitters: 14
v2.3.1: 2.3.1Compare Source
2.3.1 (2023-02-03)
🐛 Bug Fix
docusaurus-theme-commondocusaurus-theme-classic,docusaurus-theme-commondocusaurus-utilsdocusaurus-preset-classic💅 Polish
docusaurus-theme-translations🤖 Dependencies
docusaurus-plugin-client-redirects,docusaurus-theme-search-algolia,docusaurusCommitters: 3
v2.3.0: 2.3.0Compare Source
2.3.0 (2023-01-26)
🚀 New Feature
docusaurus-theme-translationsdocusaurus-plugin-content-blogdocusaurus-theme-classic,docusaurus-theme-common,docusaurusdocusaurusdocusaurus-theme-search-algoliadocusaurus-plugin-google-tag-manager🐛 Bug Fix
docusaurus-mdx-loaderdocusaurus-theme-commondocusaurusdocusaurus-theme-classic,docusaurusdocusaurus-theme-search-algoliadocusaurus-theme-classic,docusaurus-theme-commondocusaurus-theme-classicdocusaurus-theme-translationsdocusaurus-plugin-content-blogdocusaurus-plugin-content-docsdocusaurus-utilscreate-docusaurus,docusaurus-theme-classic💅 Polish
docusaurus-theme-classic,docusaurusdocusaurus-theme-translationseslint-pluginCommitters: 16
AlecAivazis/survey (github.com/AlecAivazis/survey/v2)
v2.3.7Compare Source
BurntSushi/toml (github.com/BurntSushi/toml)
v1.5.0Compare Source
Mostly some small bugfixes, with a few small new features:
Add Position.Col, to mark the column an error occurred (#410)
Print more detailed errors in the
tomlvCLI.Ensure ParseError.Message is always set (#411)
Allow custom string types as map keys (#414)
Mark meta keys as decoded when using Unmarshaler interface (#426)
Fix encoding when nested inline table ends with map (#438)
Fix encoding of several layers of embedded structs (#430)
Fix ErrorWithPosition panic when there is no newline in the TOML document (#433)
v1.4.0Compare Source
This version requires Go 1.18
Add toml.Marshal() (#405)
Require 2-digit hour (#320)
Wrap UnmarshalTOML() and UnmarshalText() return values in ParseError for position information (#398)
Fix inline tables with dotted keys inside inline arrays (e.g.
k=[{a.b=1}]) (#400)v1.3.2Compare Source
Fix reading
BURNTSUSHI_TOML_110again 😅 The fix for 1.3.1 caused a race issue with multiple decodes being run in parallel.v1.3.1Compare Source
This fixes two small bugs:
The
BURNTSUSHI_TOML_110environment variable would be checked on package import, rather than Decode().This meant that setting
os.Setenv("BURNTSUSHI_TOML_110", "")had no effect, as it happens after the import.Fix order of
Meta.Keys()for inline tables (this has been an issue since support for inline tables was added).v1.3.0Compare Source
New features:
Support upcoming TOML 1.1
While it looks like TOML 1.1 is mostly stable and I don't expect any further major changes, there are NO compatibility guarantees as it is NOT yet released and anything can still change.
To use it, set the
BURNTSUSHI_TOML_110environment variable to any value, which can be done either withos.SetEnv()or by the user running a program.A full list is changes is available in the TOML ChangeLog; the two most notable ones are that newlines and trailing commas are now allowed in inline tables, and Unicode in bare keys can now be used – this is now a valid document:
Allow MarshalTOML and MarshalText to be used on the document type itself, instead of only fields (#383).
Bufixes:
\escapes at the end of line weren't processed correctly in multiline strings (#372).Read over UTF-8 BOM (#381).
omitemptystruct tag did not work for pointer values (#371).Fix encoding anonymous structs on 32bit systems (#374).
briandowns/spinner (github.com/briandowns/spinner)
v1.23.2Compare Source
v1.23.1Compare Source
What's Changed
New Contributors
Full Changelog: briandowns/spinner@v1.23.0...v1.23.1
v1.23.0Compare Source
v1.22.0Compare Source
v1.21.0Compare Source
v1.20.0Compare Source
coreos/go-oidc (github.com/coreos/go-oidc/v3)
v3.16.0Compare Source
What's Changed
New Contributors
Full Changelog: coreos/go-oidc@v3.15.0...v3.16.0
v3.15.0Compare Source
What's Changed
Full Changelog: coreos/go-oidc@v3.14.1...v3.15.0
v3.14.1Compare Source
What's Changed
Full Changelog: coreos/go-oidc@v3.14.0...v3.14.1
v3.14.0Compare Source
What's Changed
Full Changelog: coreos/go-oidc@v3.13.0...v3.14.0
v3.13.0Compare Source
What's Changed
Full Changelog: coreos/go-oidc@v3.12.0...v3.13.0
v3.12.0Compare Source
What's Changed
Full Changelog: coreos/go-oidc@v3.11.0...v3.12.0
v3.11.0Compare Source
What's Changed
New Contributors
Full Changelog: coreos/go-oidc@v3.10.0...v3.11.0
v3.10.0Compare Source
What's Changed
New Contributors
Full Changelog: coreos/go-oidc@v3.9.0...v3.10.0
v3.9.0Compare Source
What's Changed
New Contributors
Full Changelog: coreos/go-oidc@v3.8.0...v3.9.0
v3.8.0Compare Source
What's Changed
New Contributors
Full Changelog: coreos/go-oidc@v3.7.0...v3.8.0
v3.7.0Compare Source
What's Changed
New Contributors
Full Changelog: coreos/go-oidc@v3.6.0...v3.7.0
v3.6.0Compare Source
What's Changed
New Contributors
Full Changelog: coreos/go-oidc@v3.5.0...v3.6.0
v3.5.0Compare Source
What's Changed
New Contributors
Full Changelog: coreos/go-oidc@v3.4.0...v3.5.0
fatih/color (github.com/fatih/color)
v1.18.0Compare Source
What's Changed
New Contributors
Full Changelog: fatih/color@v1.17.0...v1.18.0
v1.17.0Compare Source
What's Changed
New Contributors
Full Changelog: fatih/color@v1.16.0...v1.17.0
v1.16.0Compare Source
What's Changed
Dependency updates
New Contributors
Full Changelog: fatih/color@v1.15.0...v1.16.0
v1.15.0Compare Source
What's Changed
New Contributors
Full Changelog: fatih/color@v1.14.1...v1.15.0
v1.14.1Compare Source
What's Changed
Full Changelog: fatih/color@v1.14.0...v1.14.1
v1.14.0Compare Source
What's Changed
SetWriterandUnsetWriterby @fatih in #182New Contributors
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.