Compare commits

...
8 changed files with 51 additions and 44 deletions
+6
View File
@@ -1,5 +1,11 @@
# Changelog
## v1.7.80-alpha (2026-05-21)
- Saleor storefront proxying now falls back to the direct request scheme when no forwarded protocol header is present, fixing direct `http://node:9011` launches that could generate an invalid same-origin GraphQL URL.
- The Saleor storefront release path keeps public proxy support intact by still honoring forwarded HTTPS headers for Nginx Proxy Manager domains while repairing local/direct port launches.
- Validation passed with `cargo fmt --check` and `cargo check` for the Archipelago backend before release staging.
## v1.7.79-alpha (2026-05-20)
- Saleor now installs the official Saleor Storefront as part of the stack, built from the pinned `saleor/storefront` source and served as the customer-facing shop on port `9011`.
+1 -1
View File
@@ -80,7 +80,7 @@ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
[[package]]
name = "archipelago"
version = "1.7.78-alpha"
version = "1.7.79-alpha"
dependencies = [
"anyhow",
"archipelago-container",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "archipelago"
version = "1.7.79-alpha"
version = "1.7.80-alpha"
edition = "2021"
description = "Archipelago Bitcoin Node OS - Native backend"
authors = ["Archipelago Team"]
@@ -273,7 +273,6 @@ async fn repair_saleor_network_aliases() {
.output()
.await;
}
}
async fn run_required_stack_command(
@@ -2096,8 +2095,7 @@ user.save()
"NEXT_PUBLIC_DEFAULT_CHANNEL=default-channel",
SALEOR_STOREFRONT_CONTEXT,
]);
run_required_stack_command("saleor", "build storefront", &mut storefront_build_cmd)
.await?;
run_required_stack_command("saleor", "build storefront", &mut storefront_build_cmd).await?;
let mut storefront_cmd = tokio::process::Command::new("podman");
storefront_cmd.args([
@@ -2236,7 +2234,12 @@ async fn write_saleor_storefront_proxy_config() -> Result<()> {
.await
.context("Failed to create Saleor storefront config directory")?;
let nginx_conf = r#"server {
let nginx_conf = r#"map $http_x_forwarded_proto $saleor_storefront_proto {
default $http_x_forwarded_proto;
"" $scheme;
}
server {
listen 80;
server_name _;
@@ -2259,7 +2262,7 @@ async fn write_saleor_storefront_proxy_config() -> Result<()> {
proxy_set_header Accept-Encoding "";
sub_filter_once off;
sub_filter_types text/html application/javascript text/javascript;
sub_filter 'http://api:8000/graphql/' '$http_x_forwarded_proto://$host/graphql/';
sub_filter 'http://api:8000/graphql/' '$saleor_storefront_proto://$host/graphql/';
}
}
"#;
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "neode-ui",
"version": "1.7.79-alpha",
"version": "1.7.80-alpha",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "neode-ui",
"version": "1.7.79-alpha",
"version": "1.7.80-alpha",
"dependencies": {
"@types/dompurify": "^3.0.5",
"@vue-leaflet/vue-leaflet": "^0.10.1",
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "neode-ui",
"private": true,
"version": "1.7.79-alpha",
"version": "1.7.80-alpha",
"type": "module",
"scripts": {
"start": "./start-dev.sh",
+16 -17
View File
@@ -1,28 +1,27 @@
{
"version": "1.7.79-alpha",
"release_date": "2026-05-20",
"version": "1.7.80-alpha",
"release_date": "2026-05-21",
"changelog": [
"Saleor now installs the official Saleor Storefront as part of the stack, built from the pinned `saleor/storefront` source and served as the customer-facing shop on port `9011`.",
"Saleor app launches now open the storefront while the admin dashboard remains available on port `9010` with the generated `admin@example.com` credentials shown in Archipelago.",
"Public Nginx Proxy Manager hosts forwarding to the Saleor storefront also expose same-origin `/graphql/`, so public storefront domains can talk to the local Saleor API without mixed-content or private-LAN reachability failures.",
"Saleor stack metadata, marketplace descriptions, catalog ports, scanner exclusions, and app-session routing now describe the storefront/dashboard/API split explicitly."
"Saleor storefront proxying now falls back to the direct request scheme when no forwarded protocol header is present, fixing direct `http://node:9011` launches that could generate an invalid same-origin GraphQL URL.",
"The Saleor storefront release path keeps public proxy support intact by still honoring forwarded HTTPS headers for Nginx Proxy Manager domains while repairing local/direct port launches.",
"Validation passed with `cargo fmt --check` and `cargo check` for the Archipelago backend before release staging."
],
"components": [
{
"name": "archipelago",
"current_version": "1.7.79-alpha",
"new_version": "1.7.79-alpha",
"download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.79-alpha/archipelago",
"sha256": "266918442fc25478646c253581dd7b475716bcb716156420bbf7dd8c793ebaed",
"size_bytes": 43070912
"current_version": "1.7.80-alpha",
"new_version": "1.7.80-alpha",
"download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.80-alpha/archipelago",
"sha256": "6e2d796e9395b578944991970b7f07d27b4185d3aae2beb0af10e47d212f5ea7",
"size_bytes": 43071632
},
{
"name": "archipelago-frontend-1.7.79-alpha.tar.gz",
"current_version": "1.7.79-alpha",
"new_version": "1.7.79-alpha",
"download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.79-alpha/archipelago-frontend-1.7.79-alpha.tar.gz",
"sha256": "ed1eff4f7013e9c5fafe80e8e92168aff774b4477c542badb3441ccd512fdd1a",
"size_bytes": 166485301
"name": "archipelago-frontend-1.7.80-alpha.tar.gz",
"current_version": "1.7.80-alpha",
"new_version": "1.7.80-alpha",
"download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.80-alpha/archipelago-frontend-1.7.80-alpha.tar.gz",
"sha256": "65a75fbe732635ebc658eba1f6d36a7e158de3b88ef49db0a23202d0564e30c0",
"size_bytes": 166481159
}
]
}
+16 -17
View File
@@ -1,28 +1,27 @@
{
"version": "1.7.79-alpha",
"release_date": "2026-05-20",
"version": "1.7.80-alpha",
"release_date": "2026-05-21",
"changelog": [
"Saleor now installs the official Saleor Storefront as part of the stack, built from the pinned `saleor/storefront` source and served as the customer-facing shop on port `9011`.",
"Saleor app launches now open the storefront while the admin dashboard remains available on port `9010` with the generated `admin@example.com` credentials shown in Archipelago.",
"Public Nginx Proxy Manager hosts forwarding to the Saleor storefront also expose same-origin `/graphql/`, so public storefront domains can talk to the local Saleor API without mixed-content or private-LAN reachability failures.",
"Saleor stack metadata, marketplace descriptions, catalog ports, scanner exclusions, and app-session routing now describe the storefront/dashboard/API split explicitly."
"Saleor storefront proxying now falls back to the direct request scheme when no forwarded protocol header is present, fixing direct `http://node:9011` launches that could generate an invalid same-origin GraphQL URL.",
"The Saleor storefront release path keeps public proxy support intact by still honoring forwarded HTTPS headers for Nginx Proxy Manager domains while repairing local/direct port launches.",
"Validation passed with `cargo fmt --check` and `cargo check` for the Archipelago backend before release staging."
],
"components": [
{
"name": "archipelago",
"current_version": "1.7.79-alpha",
"new_version": "1.7.79-alpha",
"download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.79-alpha/archipelago",
"sha256": "266918442fc25478646c253581dd7b475716bcb716156420bbf7dd8c793ebaed",
"size_bytes": 43070912
"current_version": "1.7.80-alpha",
"new_version": "1.7.80-alpha",
"download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.80-alpha/archipelago",
"sha256": "6e2d796e9395b578944991970b7f07d27b4185d3aae2beb0af10e47d212f5ea7",
"size_bytes": 43071632
},
{
"name": "archipelago-frontend-1.7.79-alpha.tar.gz",
"current_version": "1.7.79-alpha",
"new_version": "1.7.79-alpha",
"download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.79-alpha/archipelago-frontend-1.7.79-alpha.tar.gz",
"sha256": "ed1eff4f7013e9c5fafe80e8e92168aff774b4477c542badb3441ccd512fdd1a",
"size_bytes": 166485301
"name": "archipelago-frontend-1.7.80-alpha.tar.gz",
"current_version": "1.7.80-alpha",
"new_version": "1.7.80-alpha",
"download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.80-alpha/archipelago-frontend-1.7.80-alpha.tar.gz",
"sha256": "65a75fbe732635ebc658eba1f6d36a7e158de3b88ef49db0a23202d0564e30c0",
"size_bytes": 166481159
}
]
}