Thanks for pointing this out! I wasn't aware of the other usage when I first wrote the paper. Hopefully the context will make it clear.
context will make it clear, but it will still be a confusion because search-engines would mix the results. please consider using different name in the long term
ci: make use of inputs.push in docker workflow
Merge pull request #1593 from FreeFeed/ci-make-use-of-push-variable-input
ci: make use of inputs.push in docker workflow
ci: fix github action syntax
Merge pull request #615 from FreeFeed/ci-fix-github-action-syntax
ci: fix github action syntax
move docker images to ghcr.io
Merge pull request #75 from FreeFeed/move-docker-images-to-ghcr.io
move docker images to ghcr.io
ci: push images to ghcr.io
Merge pull request #1591 from FreeFeed/ci-push-images-to-ghcr.io
ci: push images to ghcr.io
Add currentRoute reducer with the current route metadata
It includes route name, path and params.
Reload after ban actions only when we are on 'userFeed' page
Don't hide replyes to banned users in groups with disabled bans
Merge origin/fix-group-reload into stable
Merge origin/fix-reply-to-banned into stable
I also see this warning. Must be related: (node:90487) UnsupportedWarning: Status message is not supported by HTTP/2 (RFC7540 8.1.2.4)
Is it this place? https://github.com/solidjs/solid-start/blob/main/packages/start/node/fetch.js#L140-L152
This is tested for local development. HTTPS enabled.
HTTP/1 works fine.
HTTP/2 is broken in the following way (host/hostname equal to "undefined"
string):
I literally had to implement the following workaround. I think it's quite descriptive:
const serverContext = useServerContext();
// …
if (isServer) {
currentURL = new URL(serverContext.request.url);
// solid-start has a bug with http/2 requests. try to "fix" it
if (currentURL.host === "undefined") {
const authority = serverContext.request.headers.get(":authority");
if (!authority) {
throw new Error("Can't find hostname in request");
}
currentURL.host = authority;
}
}
related to #259
Use Suspense properly
Add page to the key
Add links
I see similar problem with Suspense. here's the repo which can be used to reproduce behavior:
https://github.com/indeyets/solid-bug
Looks like this pretty-much prohibits usage of CSS-Modules and lazy-pages at the same time