Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
### Fixed

- Display all bounding boxes from a collection's spatial extent in the details
map [#27](https://github.com/developmentseed/federated-collection-discovery/pull/27).
map [#27](https://github.com/developmentseed/stac-collection-discovery/pull/27).
- Improve the format of temporal range in collection details.

## 0.1.5
Expand All @@ -134,9 +134,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

- Replace STAC collection filter code with
`pystac_client.Client.collection_search`
[#26](https://github.com/developmentseed/federated-collection-discovery/pull/26).
[#26](https://github.com/developmentseed/stac-collection-discovery/pull/26).
- Migrate from Poetry to uv
[#26](https://github.com/developmentseed/federated-collection-discovery/pull/26).
[#26](https://github.com/developmentseed/stac-collection-discovery/pull/26).
- Upgrade to `httpx==0.27.2`.

## 0.1.4
Expand Down Expand Up @@ -168,18 +168,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
- Make the client application responsive to window size.
- Implement free-text search as defined by the
[Free-Text STAC API extension](https://github.com/stac-api-extensions/freetext-search)
([#14](https://github.com/developmentseed/federated-collection-discovery/pull/1)).
([#14](https://github.com/developmentseed/stac-collection-discovery/pull/1)).
- Run `check_health` asynchronously.

## 0.1.0

### Added

- Ability to crawl through the STAC API `/collections` endpoint
[#1](https://github.com/developmentseed/federated-collection-discovery/pull/1).
[#1](https://github.com/developmentseed/stac-collection-discovery/pull/1).
- Ability to search the CMR API
[#1](https://github.com/developmentseed/federated-collection-discovery/pull/1).
[#1](https://github.com/developmentseed/stac-collection-discovery/pull/1).
- Rudimentary client application
[#3](https://github.com/developmentseed/federated-collection-discovery/pull/3).
[#3](https://github.com/developmentseed/stac-collection-discovery/pull/3).
- Concurrent API queries
[#9](https://github.com/developmentseed/federated-collection-discovery/pull/9).
[#9](https://github.com/developmentseed/stac-collection-discovery/pull/9).
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Federated Collection Discovery
# STAC Collection Discovery

<img
src="src/assets/logo.svg"
alt="Federated Collection Discovery logo"
alt="STAC Collection Discovery logo"
width="200"
/>

Expand Down
2 changes: 1 addition & 1 deletion dev-docs/specs/surface-upstream-api-failures.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ backend no longer aborts the entire request. Instead it:
- Adds a `X-Failed-Upstream-Apis` response header containing a
comma-separated list of failed API URLs

This federated collection discovery frontend currently has no knowledge of this
This STAC collection discovery frontend currently has no knowledge of this
header. Users may see fewer results than expected with no explanation when an
upstream API is down. This spec describes the minimal frontend changes needed
to read the new header and inform users when partial failures occur.
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
build:
context: .
dockerfile: ./Dockerfile
container_name: federated-collection-discovery-client
container_name: stac-collection-discovery-client
ports:
- "3000:3000"
volumes:
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
content="Search multiple STAC APIs simultaneously. Discover geospatial collections across multiple STAC API endpoints with unified federated search."
/>
<link rel="apple-touch-icon" href="/favicon.svg" />
<title>Federated Collection Discovery</title>
<title>STAC Collection Discovery</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "federated-collection-discovery",
"name": "stac-collection-discovery",
"version": "2.2.0",
"private": true,
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": {
".": {
"release-type": "node",
"package-name": "federated-collection-discovery",
"package-name": "stac-collection-discovery",
"changelog-path": "CHANGELOG.md",
"include-component-in-tag": false,
"include-v-in-tag": true
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ export const App = () => {
className={cn(touchTarget(), "flex-1 sm:flex-initial")}
>
<a
href="https://github.com/developmentseed/federated-collection-discovery"
href="https://github.com/developmentseed/stac-collection-discovery"
target="_blank"
rel="noopener noreferrer"
className={cn(hstack({ gap: "sm" }), "justify-center")}
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* APPLICATION CONFIGURATION
*
* This file contains all configurable settings for the federated collection discovery application.
* This file contains all configurable settings for the STAC collection discovery application.
* Modify the values below to customize your deployment.
*/

Expand Down
Loading