From 747bc8d7f2ae48de4fdcd7b669555725ab31c894 Mon Sep 17 00:00:00 2001 From: Petra Vankova Date: Tue, 26 Aug 2025 19:59:31 +0200 Subject: [PATCH] little fixes --- apps/docs/content/company/pricing.mdx | 4 + apps/docs/content/elasticsearch/overview.mdx | 10 +- apps/docs/content/features/env-variables.mdx | 2 +- apps/docs/content/references/cli.mdx | 2 + .../networking/l7-balancer-config.mdx | 7 -- .../references/networking/public-access.mdx | 2 - apps/docs/static/llms-full.txt | 23 ++--- apps/docs/static/llms-small.txt | 12 ++- package.json | 1 + packages/eslint-config-docs/package.json | 2 +- yarn.lock | 98 +++++++++---------- 11 files changed, 85 insertions(+), 78 deletions(-) diff --git a/apps/docs/content/company/pricing.mdx b/apps/docs/content/company/pricing.mdx index 5d3ee8fe..45c57738 100644 --- a/apps/docs/content/company/pricing.mdx +++ b/apps/docs/content/company/pricing.mdx @@ -73,6 +73,10 @@ Services in Zerops require computing resources that are billed separately from y +:::note Daily Spending Control +You can set daily spending limits in GUI for your project to control costs and avoid unexpected charges. This provides an alternative to configuring automatic resource scaling ranges while keeping your services running optimally. +::: + ## Additional Services Enhance your deployment with these optional services to meet specific requirements for networking, storage, and data transfer. diff --git a/apps/docs/content/elasticsearch/overview.mdx b/apps/docs/content/elasticsearch/overview.mdx index 04497411..c0a01f56 100644 --- a/apps/docs/content/elasticsearch/overview.mdx +++ b/apps/docs/content/elasticsearch/overview.mdx @@ -29,10 +29,14 @@ Import configuration version: - **Port**: 9200 - **Protocol**: HTTP only - **Internal Access**: `http://{hostname}:9200` +- **Basic auth security** + - **User**: `elastic` + - **Password**: randomly generated during service creation, find under **Access Details** in service detail -:::note -When accessing from another service within the same project, use the service hostname as the connection address. -::: +#### Example +```sh +curl -u elastic:generatedpassword http://elasticsearch:9200 +``` ## Configuration Options diff --git a/apps/docs/content/features/env-variables.mdx b/apps/docs/content/features/env-variables.mdx index 42cc4f96..de151e08 100644 --- a/apps/docs/content/features/env-variables.mdx +++ b/apps/docs/content/features/env-variables.mdx @@ -17,7 +17,7 @@ You can define service-level variables in two ways: #### 1. Build & Runtime Variables -These variables are defined with `envVariables` attribute in the `build` or `run` section of your [zerops.yaml](/zerops-yaml/specification) file and are accessible within their respective containers. +These variables are defined with `envVariables` attribute in the [build](/zerops-yaml/specification#envvariables-) or [run](/zerops-yaml/specification#envvariables--1) section of your `zerops.yaml` file and are accessible within their respective containers. ```yaml title="zerops.yaml" ... diff --git a/apps/docs/content/references/cli.mdx b/apps/docs/content/references/cli.mdx index 65afba04..ebd21fc3 100644 --- a/apps/docs/content/references/cli.mdx +++ b/apps/docs/content/references/cli.mdx @@ -34,6 +34,8 @@ zCLI will be installed inside `/usr/bin` or `/usr/local/bin`. ### Windows +Execute following command in PowerShell: + ```powershell irm https://zerops.io/zcli/install.ps1 | iex ``` diff --git a/apps/docs/content/references/networking/l7-balancer-config.mdx b/apps/docs/content/references/networking/l7-balancer-config.mdx index 4da5ff73..e7b6c165 100644 --- a/apps/docs/content/references/networking/l7-balancer-config.mdx +++ b/apps/docs/content/references/networking/l7-balancer-config.mdx @@ -184,7 +184,6 @@ Configure how the balancer communicates with backend services: Parameter Default Range - Description @@ -193,42 +192,36 @@ Configure how the balancer communicates with backend services: proxy_request_buffering off on/off - Buffer client request bodies before forwarding Enable buffering of responses from proxied server proxy_buffering on on/off - Buffer responses from backend services Size of the buffer used for reading the first part of the response proxy_buffer_size 32k 1k-256k - Buffer size for first part of backend response Number of buffers used for reading a response from the proxied server proxy_buffers_number 4 1-16 - Number of buffers for reading backend responses Size of buffers for reading a response from the proxied server proxy_buffers_size 256k 1k-1m - Size of buffers for reading backend responses Size of buffers that can be busy sending response to the client proxy_busy_buffers_size 256k 1k-1m - Size of buffers for sending response to client diff --git a/apps/docs/content/references/networking/public-access.mdx b/apps/docs/content/references/networking/public-access.mdx index b85db7de..c76f0d08 100644 --- a/apps/docs/content/references/networking/public-access.mdx +++ b/apps/docs/content/references/networking/public-access.mdx @@ -52,8 +52,6 @@ Zerops subdomains provide quick public access through `.zerops.app` addresses, i Once enabled, Zerops assigns a unique subdomain for your application. If you've defined multiple [internal ports](/zerops-yaml/specification#ports-) with HTTP support in your `zerops.yaml`, each port receives its own unique `.zerops.app` subdomain. - - ### Technical Implementation When using Zerops subdomains: diff --git a/apps/docs/static/llms-full.txt b/apps/docs/static/llms-full.txt index 930b74bf..ec8b2707 100644 --- a/apps/docs/static/llms-full.txt +++ b/apps/docs/static/llms-full.txt @@ -1309,6 +1309,9 @@ Services in Zerops require computing resources that are billed separately from y $0.05 per 0.5 GB / 30 days Storage space for your applications and data +:::note Daily Spending Control +You can set daily spending limits in GUI for your project to control costs and avoid unexpected charges. This provides an alternative to configuring automatic resource scaling ranges while keeping your services running optimally. +::: ## Additional Services Enhance your deployment with these optional services to meet specific requirements for networking, storage, and data transfer. @@ -3703,9 +3706,13 @@ Import configuration version: - **Port**: 9200 - **Protocol**: HTTP only - **Internal Access**: `http://{hostname}:9200` -:::note -When accessing from another service within the same project, use the service hostname as the connection address. -::: +- **Basic auth security** + - **User**: `elastic` + - **Password**: randomly generated during service creation, find under **Access Details** in service detail +#### Example +```sh +curl -u elastic:generatedpassword http://elasticsearch:9200 +``` ## Configuration Options ### Plugin Management You can configure Elasticsearch plugins using a comma-separated list in your environment secrets: @@ -5637,7 +5644,7 @@ Variables that are specific to individual [services](/features/infrastructure#se ### User-Defined Variables You can define service-level variables in two ways: #### 1. Build & Runtime Variables -These variables are defined with `envVariables` attribute in the `build` or `run` section of your [zerops.yaml](/zerops-yaml/specification) file and are accessible within their respective containers. +These variables are defined with `envVariables` attribute in the [build](/zerops-yaml/specification#envvariables-) or [run](/zerops-yaml/specification#envvariables--1) section of your `zerops.yaml` file and are accessible within their respective containers. ```yaml title="zerops.yaml" ... build: @@ -18583,6 +18590,7 @@ curl -L https://zerops.io/zcli/install.sh | sh ``` zCLI will be installed inside `/usr/bin` or `/usr/local/bin`. ### Windows +Execute following command in PowerShell: ```powershell irm https://zerops.io/zcli/install.ps1 | iex ``` @@ -21556,43 +21564,36 @@ Configure how the balancer communicates with backend services: Parameter Default Range - Description Enable buffering of client request body proxy_request_buffering off on/off - Buffer client request bodies before forwarding Enable buffering of responses from proxied server proxy_buffering on on/off - Buffer responses from backend services Size of the buffer used for reading the first part of the response proxy_buffer_size 32k 1k-256k - Buffer size for first part of backend response Number of buffers used for reading a response from the proxied server proxy_buffers_number 4 1-16 - Number of buffers for reading backend responses Size of buffers for reading a response from the proxied server proxy_buffers_size 256k 1k-1m - Size of buffers for reading backend responses Size of buffers that can be busy sending response to the client proxy_busy_buffers_size 256k 1k-1m - Size of buffers for sending response to client :::tip Recommendations - **Real-time APIs**: Set `proxy_buffering` to off for lower latency diff --git a/apps/docs/static/llms-small.txt b/apps/docs/static/llms-small.txt index a348481c..4b4f639c 100644 --- a/apps/docs/static/llms-small.txt +++ b/apps/docs/static/llms-small.txt @@ -3511,9 +3511,13 @@ Import configuration version: - **Port**: 9200 - **Protocol**: HTTP only - **Internal Access**: `http://{hostname}:9200` -:::note -When accessing from another service within the same project, use the service hostname as the connection address. -::: +- **Basic auth security** + - **User**: `elastic` + - **Password**: randomly generated during service creation, find under **Access Details** in service detail +#### Example +```sh +curl -u elastic:generatedpassword http://elasticsearch:9200 +``` ## Configuration Options ### Plugin Management You can configure Elasticsearch plugins using a comma-separated list in your environment secrets: @@ -5445,7 +5449,7 @@ Variables that are specific to individual [services](/features/infrastructure#se ### User-Defined Variables You can define service-level variables in two ways: #### 1. Build & Runtime Variables -These variables are defined with `envVariables` attribute in the `build` or `run` section of your [zerops.yaml](/zerops-yaml/specification) file and are accessible within their respective containers. +These variables are defined with `envVariables` attribute in the [build](/zerops-yaml/specification#envvariables-) or [run](/zerops-yaml/specification#envvariables--1) section of your `zerops.yaml` file and are accessible within their respective containers. ```yaml title="zerops.yaml" ... build: diff --git a/package.json b/package.json index 0c341376..17bd2e5f 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "dependencies": { "autoprefixer": "10.4.14", "eslint": "^8.36.0", + "eslint-config-docs": "0.0.0", "eslint-plugin-prettier": "5.2.3", "postcss": "8.4.31", "prettier": "3.3.3", diff --git a/packages/eslint-config-docs/package.json b/packages/eslint-config-docs/package.json index 0d5649c7..407f05c5 100644 --- a/packages/eslint-config-docs/package.json +++ b/packages/eslint-config-docs/package.json @@ -16,7 +16,7 @@ "eslint-plugin-markdown": "^3.0.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.32.2", - "next": "latest" + "next": "15.2.3" }, "devDependencies": { "eslint": "^8.36.0" diff --git a/yarn.lock b/yarn.lock index 5671a06c..264e332a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2397,10 +2397,10 @@ resolved "https://registry.yarnpkg.com/@next/env/-/env-14.2.25.tgz#936d10b967e103e49a4bcea1e97292d5605278dd" integrity sha512-JnzQ2cExDeG7FxJwqAksZ3aqVJrHjFwZQAEJ9gQZSoEhIow7SNoKZzju/AwQ+PLIR4NY8V0rhcVozx/2izDO0w== -"@next/env@15.1.2": - version "15.1.2" - resolved "https://registry.yarnpkg.com/@next/env/-/env-15.1.2.tgz#fa36e47bbaa33b9ecac228aa786bb05bbc15351c" - integrity sha512-Hm3jIGsoUl6RLB1vzY+dZeqb+/kWPZ+h34yiWxW0dV87l8Im/eMOwpOA+a0L78U0HM04syEjXuRlCozqpwuojQ== +"@next/env@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@next/env/-/env-15.2.3.tgz#037ee37c4d61fcbdbb212694cc33d7dcf6c7975a" + integrity sha512-a26KnbW9DFEUsSxAxKBORR/uD9THoYoKbkpFywMN/AFvboTt94b8+g/07T8J6ACsdLag8/PDU60ov4rPxRAixw== "@next/eslint-plugin-next@14.2.4": version "14.2.4" @@ -2414,70 +2414,70 @@ resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.25.tgz#7bcccfda0c0ff045c45fbe34c491b7368e373e3d" integrity sha512-09clWInF1YRd6le00vt750s3m7SEYNehz9C4PUcSu3bAdCTpjIV4aTYQZ25Ehrr83VR1rZeqtKUPWSI7GfuKZQ== -"@next/swc-darwin-arm64@15.1.2": - version "15.1.2" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.1.2.tgz#822265999fc76f828f4c671a5ef861b8e2c5213e" - integrity sha512-b9TN7q+j5/7+rGLhFAVZiKJGIASuo8tWvInGfAd8wsULjB1uNGRCj1z1WZwwPWzVQbIKWFYqc+9L7W09qwt52w== +"@next/swc-darwin-arm64@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.2.3.tgz#2688c185651ef7a16e5642c85048cc4e151159fa" + integrity sha512-uaBhA8aLbXLqwjnsHSkxs353WrRgQgiFjduDpc7YXEU0B54IKx3vU+cxQlYwPCyC8uYEEX7THhtQQsfHnvv8dw== "@next/swc-darwin-x64@14.2.25": version "14.2.25" resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.25.tgz#b489e209d7b405260b73f69a38186ed150fb7a08" integrity sha512-V+iYM/QR+aYeJl3/FWWU/7Ix4b07ovsQ5IbkwgUK29pTHmq+5UxeDr7/dphvtXEq5pLB/PucfcBNh9KZ8vWbug== -"@next/swc-darwin-x64@15.1.2": - version "15.1.2" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-15.1.2.tgz#78d277bce3d35c6e8d9ad423b6f5b0031aa9a1e2" - integrity sha512-caR62jNDUCU+qobStO6YJ05p9E+LR0EoXh1EEmyU69cYydsAy7drMcOlUlRtQihM6K6QfvNwJuLhsHcCzNpqtA== +"@next/swc-darwin-x64@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-15.2.3.tgz#3e802259b2c9a4e2ad55ff827f41f775b726fc7d" + integrity sha512-pVwKvJ4Zk7h+4hwhqOUuMx7Ib02u3gDX3HXPKIShBi9JlYllI0nU6TWLbPT94dt7FSi6mSBhfc2JrHViwqbOdw== "@next/swc-linux-arm64-gnu@14.2.25": version "14.2.25" resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.25.tgz#ba064fabfdce0190d9859493d8232fffa84ef2e2" integrity sha512-LFnV2899PJZAIEHQ4IMmZIgL0FBieh5keMnriMY1cK7ompR+JUd24xeTtKkcaw8QmxmEdhoE5Mu9dPSuDBgtTg== -"@next/swc-linux-arm64-gnu@15.1.2": - version "15.1.2" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.1.2.tgz#4d48c8c37da869b0fdbb51f3f3f71df7a3b6b1bb" - integrity sha512-fHHXBusURjBmN6VBUtu6/5s7cCeEkuGAb/ZZiGHBLVBXMBy4D5QpM8P33Or8JD1nlOjm/ZT9sEE5HouQ0F+hUA== +"@next/swc-linux-arm64-gnu@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.2.3.tgz#315d7b54b89153f125bdc3e40bcb7ccf94ef124b" + integrity sha512-50ibWdn2RuFFkOEUmo9NCcQbbV9ViQOrUfG48zHBCONciHjaUKtHcYFiCwBVuzD08fzvzkWuuZkd4AqbvKO7UQ== "@next/swc-linux-arm64-musl@14.2.25": version "14.2.25" resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.25.tgz#bf0018267e4e0fbfa1524750321f8cae855144a3" integrity sha512-QC5y5PPTmtqFExcKWKYgUNkHeHE/z3lUsu83di488nyP0ZzQ3Yse2G6TCxz6nNsQwgAx1BehAJTZez+UQxzLfw== -"@next/swc-linux-arm64-musl@15.1.2": - version "15.1.2" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.1.2.tgz#0efbaffc2bc3fad4a6458c91b1655b0c3d509577" - integrity sha512-9CF1Pnivij7+M3G74lxr+e9h6o2YNIe7QtExWq1KUK4hsOLTBv6FJikEwCaC3NeYTflzrm69E5UfwEAbV2U9/g== +"@next/swc-linux-arm64-musl@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.2.3.tgz#a1a458eb7cf19c59d2014ee388a7305e9a77973f" + integrity sha512-2gAPA7P652D3HzR4cLyAuVYwYqjG0mt/3pHSWTCyKZq/N/dJcUAEoNQMyUmwTZWCJRKofB+JPuDVP2aD8w2J6Q== "@next/swc-linux-x64-gnu@14.2.25": version "14.2.25" resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.25.tgz#64f5a6016a7148297ee80542e0fd788418a32472" integrity sha512-y6/ML4b9eQ2D/56wqatTJN5/JR8/xdObU2Fb1RBidnrr450HLCKr6IJZbPqbv7NXmje61UyxjF5kvSajvjye5w== -"@next/swc-linux-x64-gnu@15.1.2": - version "15.1.2" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.1.2.tgz#fcdb19e2a7602f85f103190539d0cf42eca7f217" - integrity sha512-tINV7WmcTUf4oM/eN3Yuu/f8jQ5C6AkueZPKeALs/qfdfX57eNv4Ij7rt0SA6iZ8+fMobVfcFVv664Op0caCCg== +"@next/swc-linux-x64-gnu@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.2.3.tgz#a3cf22eda7601536ccd68e8ba4c1bfb4a1a33460" + integrity sha512-ODSKvrdMgAJOVU4qElflYy1KSZRM3M45JVbeZu42TINCMG3anp7YCBn80RkISV6bhzKwcUqLBAmOiWkaGtBA9w== "@next/swc-linux-x64-musl@14.2.25": version "14.2.25" resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.25.tgz#58dc636d7c55828478159546f7b95ab1e902301c" integrity sha512-sPX0TSXHGUOZFvv96GoBXpB3w4emMqKeMgemrSxI7A6l55VBJp/RKYLwZIB9JxSqYPApqiREaIIap+wWq0RU8w== -"@next/swc-linux-x64-musl@15.1.2": - version "15.1.2" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.1.2.tgz#06b09f1712498dd5c61fac10c56a09535469b4c4" - integrity sha512-jf2IseC4WRsGkzeUw/cK3wci9pxR53GlLAt30+y+B+2qAQxMw6WAC3QrANIKxkcoPU3JFh/10uFfmoMDF9JXKg== +"@next/swc-linux-x64-musl@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.2.3.tgz#0e33c1224c76aa3078cc2249c80ef583f9d7a943" + integrity sha512-ZR9kLwCWrlYxwEoytqPi1jhPd1TlsSJWAc+H/CJHmHkf2nD92MQpSRIURR1iNgA/kuFSdxB8xIPt4p/T78kwsg== "@next/swc-win32-arm64-msvc@14.2.25": version "14.2.25" resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.25.tgz#93562d447c799bded1e89c1a62d5195a2a8c6c0d" integrity sha512-ReO9S5hkA1DU2cFCsGoOEp7WJkhFzNbU/3VUF6XxNGUCQChyug6hZdYL/istQgfT/GWE6PNIg9cm784OI4ddxQ== -"@next/swc-win32-arm64-msvc@15.1.2": - version "15.1.2" - resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.1.2.tgz#63159223241ff45e8df76b24fc979bbb933c74df" - integrity sha512-wvg7MlfnaociP7k8lxLX4s2iBJm4BrNiNFhVUY+Yur5yhAJHfkS8qPPeDEUH8rQiY0PX3u/P7Q/wcg6Mv6GSAA== +"@next/swc-win32-arm64-msvc@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.2.3.tgz#4e0583fb981b931915a9ad22e579f9c9d5b803dd" + integrity sha512-+G2FrDcfm2YDbhDiObDU/qPriWeiz/9cRR0yMWJeTLGGX6/x8oryO3tt7HhodA1vZ8r2ddJPCjtLcpaVl7TE2Q== "@next/swc-win32-ia32-msvc@14.2.25": version "14.2.25" @@ -2489,10 +2489,10 @@ resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.25.tgz#3969c66609e683ec63a6a9f320a855f7be686a08" integrity sha512-KSznmS6eFjQ9RJ1nEc66kJvtGIL1iZMYmGEXsZPh2YtnLtqrgdVvKXJY2ScjjoFnG6nGLyPFR0UiEvDwVah4Tw== -"@next/swc-win32-x64-msvc@15.1.2": - version "15.1.2" - resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.1.2.tgz#6e6b33b1d725c0e98fa76773fe437fb02ad6540b" - integrity sha512-D3cNA8NoT3aWISWmo7HF5Eyko/0OdOO+VagkoJuiTk7pyX3P/b+n8XA/MYvyR+xSVcbKn68B1rY9fgqjNISqzQ== +"@next/swc-win32-x64-msvc@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.2.3.tgz#727b90c7dcc2279344115a94b99d93d452956f02" + integrity sha512-gHYS9tc+G2W0ZC8rBL+H6RdtXIyk40uLiaos0yj5US85FNhbFEndMA2nW3z47nzOWiSvXTZ5kBClc3rD0zJg0w== "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": version "5.1.1-v1" @@ -11262,12 +11262,12 @@ next@14.2.25: "@next/swc-win32-ia32-msvc" "14.2.25" "@next/swc-win32-x64-msvc" "14.2.25" -next@latest: - version "15.1.2" - resolved "https://registry.yarnpkg.com/next/-/next-15.1.2.tgz#305d093a9f3d6900b53fa4abb5b213264b22047c" - integrity sha512-nLJDV7peNy+0oHlmY2JZjzMfJ8Aj0/dd3jCwSZS8ZiO5nkQfcZRqDrRN3U5rJtqVTQneIOGZzb6LCNrk7trMCQ== +next@15.2.3: + version "15.2.3" + resolved "https://registry.yarnpkg.com/next/-/next-15.2.3.tgz#1ac803c08076d47eb5b431cb625135616c6bec7e" + integrity sha512-x6eDkZxk2rPpu46E1ZVUWIBhYCLszmUY6fvHBFcbzJ9dD+qRX6vcHusaqqDlnY+VngKzKbAiG2iRCkPbmi8f7w== dependencies: - "@next/env" "15.1.2" + "@next/env" "15.2.3" "@swc/counter" "0.1.3" "@swc/helpers" "0.5.15" busboy "1.6.0" @@ -11275,14 +11275,14 @@ next@latest: postcss "8.4.31" styled-jsx "5.1.6" optionalDependencies: - "@next/swc-darwin-arm64" "15.1.2" - "@next/swc-darwin-x64" "15.1.2" - "@next/swc-linux-arm64-gnu" "15.1.2" - "@next/swc-linux-arm64-musl" "15.1.2" - "@next/swc-linux-x64-gnu" "15.1.2" - "@next/swc-linux-x64-musl" "15.1.2" - "@next/swc-win32-arm64-msvc" "15.1.2" - "@next/swc-win32-x64-msvc" "15.1.2" + "@next/swc-darwin-arm64" "15.2.3" + "@next/swc-darwin-x64" "15.2.3" + "@next/swc-linux-arm64-gnu" "15.2.3" + "@next/swc-linux-arm64-musl" "15.2.3" + "@next/swc-linux-x64-gnu" "15.2.3" + "@next/swc-linux-x64-musl" "15.2.3" + "@next/swc-win32-arm64-msvc" "15.2.3" + "@next/swc-win32-x64-msvc" "15.2.3" sharp "^0.33.5" no-case@^3.0.4: