astro 5.14.3 → 5.14.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -164,7 +164,7 @@ ${contentConfig.error.message}`);
|
|
|
164
164
|
logger.info("Content config changed");
|
|
165
165
|
shouldClear = true;
|
|
166
166
|
}
|
|
167
|
-
if (previousAstroVersion && previousAstroVersion !== "5.14.
|
|
167
|
+
if (previousAstroVersion && previousAstroVersion !== "5.14.4") {
|
|
168
168
|
logger.info("Astro version changed");
|
|
169
169
|
shouldClear = true;
|
|
170
170
|
}
|
|
@@ -172,8 +172,8 @@ ${contentConfig.error.message}`);
|
|
|
172
172
|
logger.info("Clearing content store");
|
|
173
173
|
this.#store.clearAll();
|
|
174
174
|
}
|
|
175
|
-
if ("5.14.
|
|
176
|
-
await this.#store.metaStore().set("astro-version", "5.14.
|
|
175
|
+
if ("5.14.4") {
|
|
176
|
+
await this.#store.metaStore().set("astro-version", "5.14.4");
|
|
177
177
|
}
|
|
178
178
|
if (currentConfigDigest) {
|
|
179
179
|
await this.#store.metaStore().set("content-config-digest", currentConfigDigest);
|
package/dist/core/constants.js
CHANGED
package/dist/core/dev/dev.js
CHANGED
|
@@ -22,7 +22,7 @@ async function dev(inlineConfig) {
|
|
|
22
22
|
await telemetry.record([]);
|
|
23
23
|
const restart = await createContainerWithAutomaticRestart({ inlineConfig, fs });
|
|
24
24
|
const logger = restart.container.logger;
|
|
25
|
-
const currentVersion = "5.14.
|
|
25
|
+
const currentVersion = "5.14.4";
|
|
26
26
|
const isPrerelease = currentVersion.includes("-");
|
|
27
27
|
if (!isPrerelease) {
|
|
28
28
|
try {
|
package/dist/core/messages.js
CHANGED
|
@@ -37,7 +37,7 @@ function serverStart({
|
|
|
37
37
|
host,
|
|
38
38
|
base
|
|
39
39
|
}) {
|
|
40
|
-
const version = "5.14.
|
|
40
|
+
const version = "5.14.4";
|
|
41
41
|
const localPrefix = `${dim("\u2503")} Local `;
|
|
42
42
|
const networkPrefix = `${dim("\u2503")} Network `;
|
|
43
43
|
const emptyPrefix = " ".repeat(11);
|
|
@@ -274,7 +274,7 @@ function printHelp({
|
|
|
274
274
|
message.push(
|
|
275
275
|
linebreak(),
|
|
276
276
|
` ${bgGreen(black(` ${commandName} `))} ${green(
|
|
277
|
-
`v${"5.14.
|
|
277
|
+
`v${"5.14.4"}`
|
|
278
278
|
)} ${headline}`
|
|
279
279
|
);
|
|
280
280
|
}
|
|
@@ -528,7 +528,7 @@ export interface AstroUserConfig<TLocales extends Locales = never, TSession exte
|
|
|
528
528
|
* @name security.allowedDomains
|
|
529
529
|
* @type {RemotePattern[]}
|
|
530
530
|
* @default `[]`
|
|
531
|
-
* @version 5.
|
|
531
|
+
* @version 5.14.2
|
|
532
532
|
* @description
|
|
533
533
|
*
|
|
534
534
|
* Defines a list of permitted host patterns for incoming requests when using SSR. When configured, Astro will validate the `X-Forwarded-Host` header
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "astro",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.4",
|
|
4
4
|
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "withastro",
|
|
@@ -150,8 +150,8 @@
|
|
|
150
150
|
"zod-to-json-schema": "^3.24.6",
|
|
151
151
|
"zod-to-ts": "^1.2.0",
|
|
152
152
|
"@astrojs/internal-helpers": "0.7.4",
|
|
153
|
-
"@astrojs/
|
|
154
|
-
"@astrojs/
|
|
153
|
+
"@astrojs/telemetry": "3.3.0",
|
|
154
|
+
"@astrojs/markdown-remark": "6.3.8"
|
|
155
155
|
},
|
|
156
156
|
"optionalDependencies": {
|
|
157
157
|
"sharp": "^0.34.0"
|