astro 5.13.8 → 5.13.10

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.
@@ -49,11 +49,6 @@ async function getInfoOutput({
49
49
  for (const [label, value] of rows) {
50
50
  output += printRow(label, value, print);
51
51
  }
52
- if (packageManager === "bun") {
53
- console.warn(
54
- "Bun is not officially supported by Astro. Unable to retreive certain version information."
55
- );
56
- }
57
52
  return output.trim();
58
53
  }
59
54
  async function printInfo({ flags }) {
@@ -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.13.8") {
167
+ if (previousAstroVersion && previousAstroVersion !== "5.13.10") {
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.13.8") {
176
- await this.#store.metaStore().set("astro-version", "5.13.8");
175
+ if ("5.13.10") {
176
+ await this.#store.metaStore().set("astro-version", "5.13.10");
177
177
  }
178
178
  if (currentConfigDigest) {
179
179
  await this.#store.metaStore().set("content-config-digest", currentConfigDigest);
@@ -21,9 +21,6 @@ async function compile({
21
21
  normalizedFilename: normalizeFilename(filename, astroConfig.root),
22
22
  sourcemap: "both",
23
23
  internalURL: "astro/compiler-runtime",
24
- // TODO: this is no longer necessary for `Astro.site`
25
- // but it somehow allows working around caching issues in content collections for some tests
26
- astroGlobalArgs: JSON.stringify(astroConfig.site),
27
24
  scopedStyleStrategy: astroConfig.scopedStyleStrategy,
28
25
  resultScopedSlot: true,
29
26
  transitionsAnimationURL: "astro/components/viewtransitions.css",
@@ -1,4 +1,4 @@
1
- const ASTRO_VERSION = "5.13.8";
1
+ const ASTRO_VERSION = "5.13.10";
2
2
  const REROUTE_DIRECTIVE_HEADER = "X-Astro-Reroute";
3
3
  const REWRITE_DIRECTIVE_HEADER_KEY = "X-Astro-Rewrite";
4
4
  const REWRITE_DIRECTIVE_HEADER_VALUE = "yes";
@@ -82,7 +82,6 @@ async function createContainer({
82
82
  handle(req, res) {
83
83
  viteServer.middlewares.handle(req, res, Function.prototype);
84
84
  },
85
- // TODO deprecate and remove
86
85
  close() {
87
86
  return closeContainer(container);
88
87
  }
@@ -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.13.8";
25
+ const currentVersion = "5.13.10";
26
26
  const isPrerelease = currentVersion.includes("-");
27
27
  if (!isPrerelease) {
28
28
  try {
@@ -37,7 +37,7 @@ function serverStart({
37
37
  host,
38
38
  base
39
39
  }) {
40
- const version = "5.13.8";
40
+ const version = "5.13.10";
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.13.8"}`
277
+ `v${"5.13.10"}`
278
278
  )} ${headline}`
279
279
  );
280
280
  }
@@ -23,8 +23,6 @@ Use import.meta.glob instead: https://vitejs.dev/guide/features.html#glob-import
23
23
  }
24
24
  function createAstro(site) {
25
25
  return {
26
- // TODO: this is no longer necessary for `Astro.site`
27
- // but it somehow allows working around caching issues in content collections for some tests
28
26
  site: site ? new URL(site) : void 0,
29
27
  generator: `Astro v${ASTRO_VERSION}`,
30
28
  glob: createAstroGlobFn()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro",
3
- "version": "5.13.8",
3
+ "version": "5.13.10",
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",
@@ -158,8 +158,8 @@
158
158
  "zod": "^3.25.76",
159
159
  "zod-to-json-schema": "^3.24.6",
160
160
  "zod-to-ts": "^1.2.0",
161
- "@astrojs/internal-helpers": "0.7.2",
162
- "@astrojs/markdown-remark": "6.3.6",
161
+ "@astrojs/internal-helpers": "0.7.3",
162
+ "@astrojs/markdown-remark": "6.3.7",
163
163
  "@astrojs/telemetry": "3.3.0"
164
164
  },
165
165
  "optionalDependencies": {