From 89ab6fc8b1be77ba504fd220b5036f68e8df7f5e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 30 Nov 2025 15:39:44 -0300 Subject: [PATCH] chore(deps): update dependency prettier to v3.7.1 (#3620) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ayres Vitor --- pnpm-lock.yaml | 10 +++++----- .../concept/Inter-Process Communication/brownfield.md | 2 +- .../concept/Inter-Process Communication/isolation.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 503a9763e..720243a5f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,7 +43,7 @@ importers: version: 27.2.0 prettier: specifier: ^3.2.5 - version: 3.6.2 + version: 3.7.1 prettier-plugin-astro: specifier: ^0.14.1 version: 0.14.1 @@ -3276,8 +3276,8 @@ packages: resolution: {integrity: sha512-RiBETaaP9veVstE4vUwSIcdATj6dKmXljouXc/DDNwBSPTp8FRkLGDSGFClKsAFeeg+13SB0Z1JZvbD76bigJw==} engines: {node: ^14.15.0 || >=16.0.0} - prettier@3.6.2: - resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} + prettier@3.7.1: + resolution: {integrity: sha512-RWKXE4qB3u5Z6yz7omJkjWwmTfLdcbv44jUVHC5NpfXwFGzvpQM798FGv/6WNK879tc+Cn0AAyherCl1KjbyZQ==} engines: {node: '>=14'} hasBin: true @@ -7924,10 +7924,10 @@ snapshots: prettier-plugin-astro@0.14.1: dependencies: '@astrojs/compiler': 2.13.0 - prettier: 3.6.2 + prettier: 3.7.1 sass-formatter: 0.7.9 - prettier@3.6.2: {} + prettier@3.7.1: {} pretty-bytes@5.6.0: {} diff --git a/src/content/docs/ko/concept/Inter-Process Communication/brownfield.md b/src/content/docs/ko/concept/Inter-Process Communication/brownfield.md index 1ccf67cf4..ac325b391 100644 --- a/src/content/docs/ko/concept/Inter-Process Communication/brownfield.md +++ b/src/content/docs/ko/concept/Inter-Process Communication/brownfield.md @@ -6,7 +6,7 @@ i18nReady: true _**기본 IPC 패턴입니다**_ 이 패턴은 Tauri를 사용하는 데 있어 가장 명확하고 이해하기 쉬운 것입니다. 기존 프론트엔드 프로젝트와 최대한 호환되도록 하려고 하기 때문입니다. 간단히 말해, 기존 웹 프론트엔드가 브라우저 내에서 사용하는 것 외에는 다른 것이 필요하지 않도록 되어 있다는 것입니다. -단, 이것은 기존 브라우저 애플리케이션에서 작동하는 **_모든 것_**이 그대로 작동한다는 의미는 아닙니다. +단, 이것은 기존 브라우저 애플리케이션에서 작동하는 ***모든 것***이 그대로 작동한다는 의미는 아닙니다. 일반적인 "브라운필드"형 소프트웨어 개발에 익숙하지 않은 경우, Wikipedia의 [Brownfield Wikipedia article]()(한국어판 없음)에 알기 쉬운 개설이 있습니다. Tauri의 경우, (브라운필드형 개발의 대상이 되는) 기존 소프트웨어란 레거시 시스템이 아니라 현재 브라우저의 지원과 동작입니다. diff --git a/src/content/docs/zh-cn/concept/Inter-Process Communication/isolation.md b/src/content/docs/zh-cn/concept/Inter-Process Communication/isolation.md index 27aca375f..e0f7e0cab 100644 --- a/src/content/docs/zh-cn/concept/Inter-Process Communication/isolation.md +++ b/src/content/docs/zh-cn/concept/Inter-Process Communication/isolation.md @@ -13,11 +13,11 @@ i18nReady: true ## 何时需要 -Tauri 强烈推荐只要有可能就使用隔离模式。因为隔离应用程序截获来自前端的**_所有_**信息,它*始终*可以被使用。 +Tauri 强烈推荐只要有可能就使用隔离模式。因为隔离应用程序截获来自前端的***所有***信息,它*始终*可以被使用。 Tauri 同时也强烈推荐在使用外部 Tauri API 时加强应用的安全性。作为开发者,你可以使用安全隔离应用程序尝试验证 IPC 输入,以确保它们在某些预期参数范围内。例如,你可能需要检查读取或写入文件的调用是否尝试访问应用程序预期位置之外的路径。另一个例子是确保 Tauri API 的 HTTP 获取调用仅将 Origin 标头设置为应用程序预期的值。 -也就是说,它会拦截来自前端的**_所有_**消息,因此它甚至可以与始终在线的 API(例如 [事件] ) 配合使用。由于某些事件可能会导致你自己的 Rust 代码执行操作,因此可以对它们使用相同类型的验证技术。 +也就是说,它会拦截来自前端的***所有***消息,因此它甚至可以与始终在线的 API(例如 [事件] ) 配合使用。由于某些事件可能会导致你自己的 Rust 代码执行操作,因此可以对它们使用相同类型的验证技术。 ## 如何使用