Compare commits

...

3 Commits

Author SHA1 Message Date
archipelago
c31c3765f4 chore: sync cargo lock for v1.7.80-alpha 2026-05-21 00:39:53 -04:00
archipelago
bdd5a2c43e chore: release v1.7.80-alpha 2026-05-21 00:38:57 -04:00
archipelago
8eb03d106e fix(apps): repair saleor storefront graphql origin 2026-05-21 00:30:22 -04:00
8 changed files with 51 additions and 44 deletions

View File

@ -1,5 +1,11 @@
# Changelog # 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) ## 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`. - 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`.

2
core/Cargo.lock generated
View File

@ -80,7 +80,7 @@ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
[[package]] [[package]]
name = "archipelago" name = "archipelago"
version = "1.7.79-alpha" version = "1.7.80-alpha"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"archipelago-container", "archipelago-container",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "archipelago" name = "archipelago"
version = "1.7.79-alpha" version = "1.7.80-alpha"
edition = "2021" edition = "2021"
description = "Archipelago Bitcoin Node OS - Native backend" description = "Archipelago Bitcoin Node OS - Native backend"
authors = ["Archipelago Team"] authors = ["Archipelago Team"]

View File

@ -273,7 +273,6 @@ async fn repair_saleor_network_aliases() {
.output() .output()
.await; .await;
} }
} }
async fn run_required_stack_command( async fn run_required_stack_command(
@ -2096,8 +2095,7 @@ user.save()
"NEXT_PUBLIC_DEFAULT_CHANNEL=default-channel", "NEXT_PUBLIC_DEFAULT_CHANNEL=default-channel",
SALEOR_STOREFRONT_CONTEXT, SALEOR_STOREFRONT_CONTEXT,
]); ]);
run_required_stack_command("saleor", "build storefront", &mut storefront_build_cmd) run_required_stack_command("saleor", "build storefront", &mut storefront_build_cmd).await?;
.await?;
let mut storefront_cmd = tokio::process::Command::new("podman"); let mut storefront_cmd = tokio::process::Command::new("podman");
storefront_cmd.args([ storefront_cmd.args([
@ -2236,7 +2234,12 @@ async fn write_saleor_storefront_proxy_config() -> Result<()> {
.await .await
.context("Failed to create Saleor storefront config directory")?; .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; listen 80;
server_name _; server_name _;
@ -2259,7 +2262,7 @@ async fn write_saleor_storefront_proxy_config() -> Result<()> {
proxy_set_header Accept-Encoding ""; proxy_set_header Accept-Encoding "";
sub_filter_once off; sub_filter_once off;
sub_filter_types text/html application/javascript text/javascript; 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/';
} }
} }
"#; "#;

View File

@ -1,12 +1,12 @@
{ {
"name": "neode-ui", "name": "neode-ui",
"version": "1.7.79-alpha", "version": "1.7.80-alpha",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "neode-ui", "name": "neode-ui",
"version": "1.7.79-alpha", "version": "1.7.80-alpha",
"dependencies": { "dependencies": {
"@types/dompurify": "^3.0.5", "@types/dompurify": "^3.0.5",
"@vue-leaflet/vue-leaflet": "^0.10.1", "@vue-leaflet/vue-leaflet": "^0.10.1",

View File

@ -1,7 +1,7 @@
{ {
"name": "neode-ui", "name": "neode-ui",
"private": true, "private": true,
"version": "1.7.79-alpha", "version": "1.7.80-alpha",
"type": "module", "type": "module",
"scripts": { "scripts": {
"start": "./start-dev.sh", "start": "./start-dev.sh",

View File

@ -1,28 +1,27 @@
{ {
"version": "1.7.79-alpha", "version": "1.7.80-alpha",
"release_date": "2026-05-20", "release_date": "2026-05-21",
"changelog": [ "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 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.",
"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.", "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.",
"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.", "Validation passed with `cargo fmt --check` and `cargo check` for the Archipelago backend before release staging."
"Saleor stack metadata, marketplace descriptions, catalog ports, scanner exclusions, and app-session routing now describe the storefront/dashboard/API split explicitly."
], ],
"components": [ "components": [
{ {
"name": "archipelago", "name": "archipelago",
"current_version": "1.7.79-alpha", "current_version": "1.7.80-alpha",
"new_version": "1.7.79-alpha", "new_version": "1.7.80-alpha",
"download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.79-alpha/archipelago", "download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.80-alpha/archipelago",
"sha256": "266918442fc25478646c253581dd7b475716bcb716156420bbf7dd8c793ebaed", "sha256": "6e2d796e9395b578944991970b7f07d27b4185d3aae2beb0af10e47d212f5ea7",
"size_bytes": 43070912 "size_bytes": 43071632
}, },
{ {
"name": "archipelago-frontend-1.7.79-alpha.tar.gz", "name": "archipelago-frontend-1.7.80-alpha.tar.gz",
"current_version": "1.7.79-alpha", "current_version": "1.7.80-alpha",
"new_version": "1.7.79-alpha", "new_version": "1.7.80-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", "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": "ed1eff4f7013e9c5fafe80e8e92168aff774b4477c542badb3441ccd512fdd1a", "sha256": "65a75fbe732635ebc658eba1f6d36a7e158de3b88ef49db0a23202d0564e30c0",
"size_bytes": 166485301 "size_bytes": 166481159
} }
] ]
} }

View File

@ -1,28 +1,27 @@
{ {
"version": "1.7.79-alpha", "version": "1.7.80-alpha",
"release_date": "2026-05-20", "release_date": "2026-05-21",
"changelog": [ "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 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.",
"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.", "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.",
"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.", "Validation passed with `cargo fmt --check` and `cargo check` for the Archipelago backend before release staging."
"Saleor stack metadata, marketplace descriptions, catalog ports, scanner exclusions, and app-session routing now describe the storefront/dashboard/API split explicitly."
], ],
"components": [ "components": [
{ {
"name": "archipelago", "name": "archipelago",
"current_version": "1.7.79-alpha", "current_version": "1.7.80-alpha",
"new_version": "1.7.79-alpha", "new_version": "1.7.80-alpha",
"download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.79-alpha/archipelago", "download_url": "http://146.59.87.168:3000/lfg2025/archy/releases/download/v1.7.80-alpha/archipelago",
"sha256": "266918442fc25478646c253581dd7b475716bcb716156420bbf7dd8c793ebaed", "sha256": "6e2d796e9395b578944991970b7f07d27b4185d3aae2beb0af10e47d212f5ea7",
"size_bytes": 43070912 "size_bytes": 43071632
}, },
{ {
"name": "archipelago-frontend-1.7.79-alpha.tar.gz", "name": "archipelago-frontend-1.7.80-alpha.tar.gz",
"current_version": "1.7.79-alpha", "current_version": "1.7.80-alpha",
"new_version": "1.7.79-alpha", "new_version": "1.7.80-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", "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": "ed1eff4f7013e9c5fafe80e8e92168aff774b4477c542badb3441ccd512fdd1a", "sha256": "65a75fbe732635ebc658eba1f6d36a7e158de3b88ef49db0a23202d0564e30c0",
"size_bytes": 166485301 "size_bytes": 166481159
} }
] ]
} }