electron-trpc
electron-trpc copied to clipboard
Update dependencies
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
@astrojs/check (source) | ^0.7.0 -> ^0.9.0 |
||||
@astrojs/starlight (source) | ^0.23.2 -> ^0.28.0 |
||||
@tanstack/react-query (source) | 4.29.14 -> 4.36.1 |
||||
astro (source) | 4.9.2 -> 4.15.8 |
||||
debug | 4.3.4 -> 4.3.7 |
||||
react (source) | 18.2.0 -> 18.3.1 |
||||
react-dom (source) | 18.2.0 -> 18.3.1 |
||||
sharp (source, changelog) | ^0.32.5 -> ^0.33.0 |
||||
superjson | 1.12.3 -> 1.13.3 |
||||
typescript (source) | 5.4.5 -> 5.6.2 |
||||
zod (source) | 3.21.4 -> 3.23.8 |
Release Notes
withastro/language-tools (@astrojs/check)
v0.9.3
Patch Changes
v0.9.2
Patch Changes
-
e8e18a8
: Fixes an issue where errors inside script and style tags could be offset by a few characters when multi bytes characters were present in the file - Updated dependencies [
e8e18a8
]
v0.9.1
Patch Changes
-
cc94bef
: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases - Updated dependencies [
cc94bef
]
v0.9.0
Minor Changes
-
b65d6b4
: Adds support for SCSS and LESS intellisense inside style tags
Patch Changes
v0.8.3
Patch Changes
-
0a46801
: Fixes a regression where errors could wrongly show (or not show) inside scripts and style tags - Updated dependencies [
0a46801
] - Updated dependencies [
72f61e1
]
v0.8.2
Patch Changes
-
708167e
: Fixes script and style tags being wrongfully included in the generated TSX - Updated dependencies [
708167e
]
v0.8.1
Patch Changes
v0.8.0
Minor Changes
-
b8a6af3
: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.
Patch Changes
withastro/starlight (@astrojs/starlight)
v0.28.1
Patch Changes
-
#2334
79b9ade
Thanks @HiDeoo! - Fixes an issue with Expressive Code UI labels not displaying correctly.
v0.28.0
Minor Changes
-
#1923
5269aad
Thanks @HiDeoo! - Overhauls the built-in localization system which is now powered by thei18next
library and available to use anywhere in your documentation website.See the “Using UI translations” guide to learn more about how to access built-in UI labels or your own custom strings in your project. Plugin authors can also use the new
injectTranslations()
helper to add or update translation strings.⚠️ BREAKING CHANGE: The
Astro.props.labels
props has been removed from the props passed down to custom component overrides.If you are relying on
Astro.props.labels
(for example to read a built-in UI label), you will need to update your code to use the newAstro.locals.t()
helper instead.
v0.27.1
Patch Changes
-
#2303
f92791a
Thanks @delucis! - Fixes resolution for the internal module Git virtual module in projects with special characters in the file path
v0.27.0
Minor Changes
-
#1255
6f3202b
Thanks @Fryuni! - Adds support for server-rendered Starlight pages.When building a project with
hybrid
orserver
output mode, a newprerender
option on Starlight config can be set tofalse
to make all Starlight pages be rendered on-demand:export default defineConfig({ output: 'server', integrations: [ starlight({ prerender: false, }), ], });
Patch Changes
-
#2242
756e85e
Thanks @delucis! - Refactors the logic for persisting and restoring sidebar state across navigations for better performance on slow or busy devices -
#1255
6f3202b
Thanks @Fryuni! - Improves performance of computing the last updated times from Git history.Instead of executing
git
for each docs page, it is now executed twice regardless of the number of pages. -
#1255
6f3202b
Thanks @Fryuni! - Fixes last updated times on projects with customsrcDir
v0.26.4
Patch Changes
-
#2288
b15f725
Thanks @matthewp! - Safely handle Zod errorsPrevents bugs where errors without the
.received
props would through and cause builds to fail unnecessarily.
v0.26.3
Patch Changes
-
#2281
5062d30
Thanks @HiDeoo! - Fixes a potential text rendering issue that could include extra whitespaces for text containing colons. -
#2279
62d59e2
Thanks @HiDeoo! - Fixes an issue with frontmatter schemas containing collection references used with the<StarlightPage />
component and an Astro version greater than4.14.0
.
v0.26.2
Patch Changes
-
#2273
746e0cd
Thanks @delucis! - Fixes type error when using Starlight with Astro v4.15 -
#2265
25b661e
Thanks @SeraphicRav! - Adds TikTok social icon -
#2250
c0a6166
Thanks @HiDeoo! - Removes internal E2E tests from the package published to the npm registry. -
#2253
72bc76a
Thanks @HiDeoo! - Fixes an issue preventing to use theclass
attribute in hero action link buttons.
v0.26.1
Patch Changes
-
#2219
74d4716
Thanks @HiDeoo! - Fixes a sidebar persistence issue when navigating between pages with different sidebar content.
v0.26.0
Minor Changes
-
#1784
68f56a7
Thanks @HiDeoo! - Adds<LinkButton>
component for visually distinct and emphasized call to action links -
#2150
9368494
Thanks @delucis! - Adds state persistence across page navigations to the main site sidebar -
#2087
caa84ea
Thanks @HiDeoo! - Adds persistence to synced<Tabs>
so that a user's choices are reflected across page navigations. -
#2051
ec3b579
Thanks @HiDeoo! - Adds a guideline to the last step of the<Steps>
component.If you want to preserve the previous behaviour and hide the guideline on final steps, you can add the following custom CSS to your site:
/* Hide the guideline for the final step in <Steps> lists. */ .sl-steps > li:last-of-type::after { background: transparent; }
-
#1784
68f56a7
Thanks @HiDeoo! - Changes the hero component action button default variant fromminimal
toprimary
.⚠️ BREAKING CHANGE: If you want to preserve the previous appearance, hero component action buttons previously declared without a
variant
will need to be updated to include thevariant
property with the valueminimal
.hero: actions: - text: View on GitHub link: https://github.com/astronaut/my-project icon: external + variant: minimal
-
#2168
e044fee
Thanks @HiDeoo! - ⚠️ BREAKING CHANGE: Updates the<StarlightPage />
componentsidebar
prop to accept an array ofSidebarItem
s like the main Starlightsidebar
configuration inastro.config.mjs
.This change simplifies the definition of sidebar items in the
<StarlightPage />
component, allows for shared sidebar configuration between the globalsidebar
option and<StarlightPage />
component, and also enables the usage of autogenerated sidebar groups with the<StarlightPage />
component. If you are using the<StarlightPage />
component with a customsidebar
configuration, you will need to update thesidebar
prop to an array ofSidebarItem
objects.For example, the following custom page with a custom
sidebar
configuration defines a “Resources” group with a “New” badge, a link to the “Showcase” page which is part of thedocs
content collection, and a link to the Starlight website:
v0.25.5
Patch Changes
-
#2171
c8258d7
Thanks @delucis! - Improves build performance slightly for bigger sites -
#2199
91557fd
Thanks @connorjs! - Adds Azure DevOps (azureDevOps
) icon for use in social links.
v0.25.4
Patch Changes
-
#2155
8bed886
Thanks @delucis! - Improves page load performance on slower devices -
#2167
9ac7725
Thanks @delucis! - Fixes an issue detecting the built-in locale when running Starlight in a web container environment on Firefox -
#2166
4f12049
Thanks @delucis! - Updates@astrojs/mdx
,@astrojs/sitemap
,astro-expressive-code
,unified
, andvfile
dependencies to the latest version
v0.25.3
Patch Changes
-
#2154
0b381d5
Thanks @mktbsh! - Updates<head>
logic to deduplicate<link rel="canonical">
tags. This means that custom canonicals set via frontmatter now override the default canonical generated by Starlight. -
#2157
6757d97
Thanks @astrobot-houston! - Updates file tree icon mapping to correctly map.cjs
and.mjs
extensions in several contexts -
#2156
904ad47
Thanks @delucis! - Fixes builds for projects with a space in their pathname -
#2137
703903b
Thanks @cevdetardaharan! - Removestwitter:title
andtwitter:description
meta tags from<head>
v0.25.2
Patch Changes
-
#2126
ada51ee
Thanks @essential-randomness! - Adds support for markdown formatting in aside titles -
#2135
9bbb969
Thanks @oluwatobiss! - Adds Pinterest social icon
v0.25.1
Patch Changes
-
#2122
359a642
Thanks @HiDeoo! - Fixes an i18n configuration issue for multilingual sites when using Astro’si18n
config withprefixDefaultLocale
set tofalse
. -
#2107
61e223b
Thanks @sanabel-al-firdaws! - Updates Arabic UI translations -
#2105
81f8a2c
Thanks @delucis! - Fixes an edge case in custom pagination link processingCustom link values for
prev
/next
in page frontmatter are now always used as authored. Previously this was not the case in some edge cases such as for the first and final pages in the sidebar. -
#2119
464685a
Thanks @evadecker! - Improves styling of<hr>
,<blockquote>
, and<code>
within asides
v0.25.0
Minor Changes
-
#2025
47f32c1
Thanks @HiDeoo! - Removes the/
search shortcut for accessibility reasons.⚠️ Potentially breaking change: The
search.shortcutLabel
UI string has been removed. If you were using this string in your custom UI, you will need to update your code. -
#2064
c5b47cb
Thanks @SnowDingo! - Improves styling of Markdown tables to work better in different contexts, including against different background colours like when used in asides. -
#2031
2bab648
Thanks @delucis! - Makes sidebar entry parsing stricter in Starlight config⚠️ Potentially breaking change: Previously Starlight would accept a sidebar entry that matched one of its expected shapes, even if it included additional properties. For example, including both
link
anditems
was considered valid, withitems
being ignored. Now, it is an error to include more than one oflink
,items
, orautogenerate
in a sidebar entry.If you see errors after updating, look for sidebar entries in the Starlight configuration in
astro.config.mjs
that include too many keys and remove the one that was previously ignored. -
#1874
eeba06e
Thanks @lorenzolewis! - Adds a new syntax for specifying sidebar link items for internal linksYou can now specify an internal page using only its slug, either as a string, or as an object with a
slug
property:starlight({ title: 'Docs with easier sidebars', sidebar: ['getting-started', { slug: 'guides/installation' }], });
Starlight will use the linked page’s frontmatter to configure the sidebar link.
Patch Changes
-
#2081
f0181d2
Thanks @andrii-bodnar! - Updates the Ukrainian UI translations
v0.24.5
Patch Changes
-
#2062
5ac0ac6
Thanks @evadecker! - Increase theme and language select inline padding -
#2056
87e9ad0
Thanks @HiDeoo! - Fixes an issue preventing remark plugins injected by Starlight plugins to handle Markdown text and leaf directives. -
#2063
3ee1a94
Thanks @delucis! - TranslatefileTree.directory
andaside.*
UI string into Norwegian (Bokmål). -
#2054
dbfd3ee
Thanks @HiDeoo! - Fixes an issue when using the<StarlightPage>
component in a custom page with a user-definedsrcDir
configuration.
v0.24.4
Patch Changes
-
#2038
87f3f92
Thanks @dragomano! - Updates Russian UI translations -
#2043
53f4cd4
Thanks @playmr365! - Updates Czech UI translations -
#2041
8af5a60
Thanks @HiDeoo! - Fixes<Steps>
numbering bug caused by Chrome v126 CSS counter rewrite
v0.24.3
Patch Changes
-
#2028
af81ad3
Thanks @HiDeoo! - Fixes a search dialog height issue in Safari. -
#2022
80f82b1
Thanks @playmr365! - Updates Czech UI translations
v0.24.2
Patch Changes
-
#2008
40359c7
Thanks @vnepogodin! - Add Slovak language UI translation. -
#2004
0aa2f06
Thanks @liruifengv! - Removes an outdated export inpackage.json
-
#2007
44ca490
Thanks @delucis! - Updates internal dependencies -
#1993
60165b2
Thanks @HiDeoo! - Fixes an i18n configuration issue when using a single root locale.
v0.24.1
Patch Changes
-
#1978
a5ab8cd6
Thanks @kylewlacy! - Add new social icon for Zulip -
#1962
2ef19a94
Thanks @torn4dom4n! - Updates Vietnamese UI translations -
#1976
5a61f73c
Thanks @jsparkdev! - Updates Korean UI translations -
#1987
0b8a8439
Thanks @HiDeoo! - Fixes issues with the locale text direction detection mechanism in some environments like WebContainers or Bun.
v0.24.0
Minor Changes
-
#1841
ee0cd38a
Thanks @HiDeoo! - Adds support forAstro.currentLocale
and Astro’s i18n routing.⚠️ Potentially breaking change: Starlight now configures Astro’s
i18n
option for you based on itslocales
config.If you are currently using Astro’s
i18n
option as well as Starlight’slocales
option, you will need to remove one of these. In general we recommend using Starlight’slocales
, but if you have a more advanced configuration you may choose to keep Astro’si18n
config instead. -
#1958
081d1a96
Thanks @delucis! - Allows users to opt into displaying a “Built with Starlight” link in the site footer -
#1530
dd64836a
Thanks @kevinzunigacuellar! - Adds a new<Badge>
component
v0.23.4
Patch Changes
-
#1955
15ef1f4b
Thanks @HiDeoo! - Reverts a change to prevent a numbering issue with the<Steps>
component in future versions of Chrome.
v0.23.3
Patch Changes
TanStack/query (@tanstack/react-query)
v4.36.1
Version 4.36.1 - 10/7/2023, 7:08 AM
Changes
Fix
- fix release (
2b0fc95
) by Dominik Dorfmeister
Packages
- @tanstack/query-core@4.36.1
- @tanstack/query-persist-client-core@4.36.1
- @tanstack/query-async-storage-persister@4.36.1
- @tanstack/query-broadcast-client-experimental@4.36.1
- @tanstack/query-sync-storage-persister@4.36.1
- @tanstack/react-query@4.36.1
- @tanstack/react-query-devtools@4.36.1
- @tanstack/react-query-persist-client@4.36.1
- @tanstack/solid-query@4.36.1
- @tanstack/svelte-query@4.36.1
- @tanstack/vue-query@4.36.1
- @tanstack/eslint-plugin-query@4.36.1
v4.35.7
Version 4.35.7 - 10/1/2023, 10:15 AM
Changes
Fix
- hydration: do not alter fetchStatus when hydrating existing queries (#6088) (
a29f1a6
) by Dominik Dorfmeister
Chore
- Update CONTRIBUTING.md (
b29824a
) by Dominik Dorfmeister
Docs
- Update dependent-queries.md (#6066) (
7a9f851
) by @weiliang903
Packages
- @tanstack/query-core@4.35.7
- @tanstack/query-persist-client-core@4.35.7
- @tanstack/query-async-storage-persister@4.35.7
- @tanstack/query-broadcast-client-experimental@4.35.7
- @tanstack/query-sync-storage-persister@4.35.7
- @tanstack/react-query@4.35.7
- @tanstack/react-query-devtools@4.35.7
- @tanstack/react-query-persist-client@4.35.7
- @tanstack/solid-query@4.35.7
- @tanstack/svelte-query@4.35.7
- @tanstack/vue-query@4.35.7
v4.35.3
Version 4.35.3 - 9/13/2023, 6:28 AM
Changes
Fix
- avoid reverting state to a fetching one (#5997) (
88a8b30
) by @Andarist
Docs
Packages
- @tanstack/query-core@4.35.3
- @tanstack/query-persist-client-core@4.35.3
- @tanstack/query-async-storage-persister@4.35.3
- @tanstack/query-broadcast-client-experimental@4.35.3
- @tanstack/query-sync-storage-persister@4.35.3
- @tanstack/react-query@4.35.3
- @tanstack/react-query-devtools@4.35.3
- @tanstack/react-query-persist-client@4.35.3
- @tanstack/solid-query@4.35.3
- @tanstack/svelte-query@4.35.3
- @tanstack/vue-query@4.35.3
v4.35.0
Version 4.35.0 - 9/7/2023, 8:04 AM
Changes
Feat
- vue-query: useQuery support ref args (#5027) (
d11280e
) by @aa900031
Chore
- query-core: add deprecated hint for
isDataEqual
(#5962) (716c5d8
) by @Mini-ghost - prepare possibility to have rc releases (
2017359
) by Dominik Dorfmeister
Docs
- update suspensive-react-query.md (#5961) (
ef5125f
) by @manudeli - Update queries.md (#5958) (
84cd232
) by @weisisheng
Packages
- @tanstack/query-core@4.35.0
- @tanstack/vue-query@4.35.0
- @tanstack/query-persist-client-core@4.35.0
- @tanstack/query-async-storage-persister@4.35.0
- @tanstack/query-broadcast-client-experimental@4.35.0
- @tanstack/query-sync-storage-persister@4.35.0
- @tanstack/react-query@4.35.0
- @tanstack/react-query-devtools@4.35.0
- @tanstack/react-query-persist-client@4.35.0
- @tanstack/solid-query@4.35.0
- @tanstack/svelte-query@4.35.0
v4.33.0
Version 4.33.0 - 8/19/2023, 11:33 AM
Changes
Feat
Chore
- pnpm-lock.yaml: update (#5848) (
314f23e
) by @manudeli
Packages
- @tanstack/query-core@4.33.0
- @tanstack/query-persist-client-core@4.33.0
- @tanstack/query-async-storage-persister@4.33.0
- @tanstack/query-broadcast-client-experimental@4.33.0
- [@tanstack/query-sync-storage-persister](https://redirect.github.com/tanstack/query-sync-storage-p
Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.