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

Update stac-browser reference #336

Merged
merged 3 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Changed
- The code for this application is now available under the AGPL 3.0 licence.
- **BREAKING** The application updated to STAC-Browser version 3.2.0 and changed how /browser requests are proxied.

## v1.1.143 - 2024-09-30

Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RepositoryType>git</RepositoryType>
<AnalysisLevel>8.0-recommended</AnalysisLevel>
<IsPackable>false</IsPackable>
<VersionPrefix>1.1</VersionPrefix>
<VersionPrefix>2.0</VersionPrefix>
</PropertyGroup>

<ItemGroup Condition="'$(MSBuildProjectExtension)' != '.dcproj' And '$(MSBuildProjectExtension)' != '.esproj'">
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
stac-browser:
image: ghcr.io/geowerkstatt/stac-browser:latest
image: ghcr.io/geowerkstatt/stac-browser:3.2.0
ports:
- 8080:8080
environment:
Expand Down
5 changes: 1 addition & 4 deletions src/Geopilot.Api/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@
"ClusterId": "stacBrowserCluster",
"Match": {
"Path": "/browser/{**catch-all}"
},
"Transforms": [
{ "PathRemovePrefix": "/browser" }
]
}
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ public void GetVersion()
var result = new VersionController().Get();
Assert.IsNotNull(result);
Assert.IsTrue(result.Length > 0);
StringAssert.StartsWith(result, "1.1", StringComparison.Ordinal);
StringAssert.StartsWith(result, "2.0", StringComparison.Ordinal);
}
}
Loading