Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(gatsby): fix api function compilation on Windows #38489

Merged
merged 1 commit into from Aug 28, 2023

Conversation

pieh
Copy link
Contributor

@pieh pieh commented Aug 28, 2023

Description

Changes done to API functions compilation recently (part of adapters work) caused a regression where functions fail to compile correctly on Windows (due to path seperator / escape interaction). This converts windows style path to unix style path in a place where it cause a problem (better/safer to normalize to unix ones than trying to ensure appropiate escaping \ escaping is applied)

Related Issues

Fixes #38481

@gatsbot gatsbot bot added the status: triage needed Issue or pull request that need to be triaged and assigned to a reviewer label Aug 28, 2023
@pieh pieh added topic: core Relates to Gatsby's core (e.g. page loading, reporter, state machine) and removed status: triage needed Issue or pull request that need to be triaged and assigned to a reviewer labels Aug 28, 2023
import type { LoaderDefinition } from "webpack"

const APIFunctionLoader: LoaderDefinition = async function () {
const params = new URLSearchParams(this.resourceQuery)
const matchPath = params.get(`matchPath`)

const modulePath = this.resourcePath
const modulePath = slash(this.resourcePath)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This just converts windows style file paths to unix one (so pretty much just \ -> /), as windows style paths routinely has troubles with \ escaping and unix style paths don't even have to deal with escaping problem

Copy link
Contributor

@nickytonline nickytonline left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚢 :shipit:

@pieh pieh added the bot: merge on green Gatsbot will merge these PRs automatically when all tests passes label Aug 28, 2023
@pieh pieh added this to To cherry-pick in V5 Release hotfixes via automation Aug 28, 2023
@gatsbybot gatsbybot merged commit 26feae4 into master Aug 28, 2023
33 checks passed
@gatsbybot gatsbybot deleted the fix/functions-windows branch August 28, 2023 11:49
pieh added a commit that referenced this pull request Aug 28, 2023
gatsbybot pushed a commit that referenced this pull request Aug 28, 2023
(cherry picked from commit 26feae4)

Co-authored-by: Michal Piechowiak <misiek.piechowiak@gmail.com>
@pieh pieh moved this from To cherry-pick to Published in V5 Release hotfixes Aug 28, 2023
This was referenced Sep 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bot: merge on green Gatsbot will merge these PRs automatically when all tests passes topic: core Relates to Gatsby's core (e.g. page loading, reporter, state machine)
Projects
Development

Successfully merging this pull request may close these issues.

Module build failed: UnhandledSchemeError when using gatsby function
3 participants