Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
88af417
docs: document Environment API breaking changes
matthewp Nov 28, 2025
f77b490
Update src/content/docs/en/guides/upgrade-to/v6.mdx
matthewp Nov 29, 2025
52f9cf8
Update src/content/docs/en/guides/upgrade-to/v6.mdx
matthewp Nov 29, 2025
0ca67aa
Update src/content/docs/en/guides/upgrade-to/v6.mdx
matthewp Nov 29, 2025
0457ca4
Update src/content/docs/en/guides/upgrade-to/v6.mdx
matthewp Nov 29, 2025
6b46739
Update src/content/docs/en/guides/upgrade-to/v6.mdx
matthewp Nov 29, 2025
6fb050d
reorganize content
sarah11918 Dec 1, 2025
a938dd7
typo in anchor link
sarah11918 Dec 1, 2025
68308eb
snagged some good info from the implementation PR changeset
sarah11918 Dec 1, 2025
2bb0e1d
Merge branch 'v6' into v6-env
sarah11918 Dec 2, 2025
4d7a2ce
Update src/content/docs/en/guides/upgrade-to/v6.mdx
matthewp Dec 2, 2025
a94934a
remove code comment
sarah11918 Dec 3, 2025
18ed085
remove documentation for `target`
sarah11918 Dec 3, 2025
df74419
update entry for manifest updates
sarah11918 Dec 3, 2025
c267678
remove blank line
sarah11918 Dec 3, 2025
b49329a
warn that other stuff changed too
sarah11918 Dec 3, 2025
e83f317
RouteData change associated with Adapter API instead of Integration
sarah11918 Dec 3, 2025
d1c447f
link to adapter API instead of routing guide
sarah11918 Dec 3, 2025
d097704
update line numbers in link to source code
sarah11918 Dec 3, 2025
6e41928
remove blank line
sarah11918 Dec 3, 2025
2f9ee90
Merge branch 'v6' into v6-env
sarah11918 Dec 3, 2025
b0fad87
polishing nits
sarah11918 Dec 3, 2025
3401d6d
fix missing function notation
sarah11918 Dec 3, 2025
b0b4b49
Yan final boss review
sarah11918 Dec 4, 2025
5efead1
Merge branch 'v6' into v6-env
sarah11918 Dec 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/content/docs/en/guides/upgrade-to/v6.mdx
Co-authored-by: Armand Philippot <[email protected]>
  • Loading branch information
matthewp and ArmandPhilippot authored Dec 2, 2025
commit 4d7a2ceb7434c8628eccc1fd8e7c33fd12a9701c
4 changes: 0 additions & 4 deletions src/content/docs/en/guides/upgrade-to/v6.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1105,10 +1105,6 @@ Astro 6.0 changes the form of these path properties to `URL` objects instead of

If you were treating these path properties as strings, you'll now need to handle the `URL` object. For example, you will now need to access the `href` property of the `URL` object:

```ts del={1} ins={2}
const srcPath = manifest.srcDir; // was a URL string like "file:///path/to/src"
const srcPath = manifest.srcDir; // now a URL object

```ts del={2} ins={3}
// To retrieve the same format (e.g., "file:///path/to/src"), make the following change:
const srcPath = manifest.srcDir;
Expand Down