Skip to content

Commit

Permalink
Update stac-browser reference (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippluca authored Jan 6, 2025
2 parents ef132d5 + b8bca0c commit ebd87d9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
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);
}
}

0 comments on commit ebd87d9

Please sign in to comment.