Skip to content

Commit

Permalink
Merge branch 'master' into scatterplot-component
Browse files Browse the repository at this point in the history
  • Loading branch information
lmarini authored Jun 22, 2022
2 parents ed7ecdd + e701698 commit a7a7cbf
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Use `basename` attribute of Router to set the context path for the app.
- In template, deploy app at context path when using webpack dev server.
- Switched Map SelectClusterInteraction from flat to spiral. Solves a problem
with cluster whose locations have the same lat/lon.

## 3.9.0
- Updated template folder to latest version of geostreaming explore and download page
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 3.9.2 - 2022-02-24

### Fixed
- Use `basename` attribute of Router to set the context path for the app.
- In template, deploy app at context path when using webpack dev server.

## 3.9.0 - 2021-10-07

### Added
Expand Down
4 changes: 4 additions & 0 deletions packages/geostreaming/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- New scatter plot visualization.

## 3.9.3 - 2022-03-07
### Fixed
- Search page would not show sensor markers on first render.

## 3.9.2 - 2022-02-24
### Fixed
- Switched Map SelectClusterInteraction from flat to spiral. Solves a problem
Expand Down
2 changes: 1 addition & 1 deletion packages/geostreaming/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"dependencies": {
"@date-io/date-fns": "1.3.13",
"@geostreams/core": "^3.6.0",
"@geostreams/core": "^3.9.2",
"@material-ui/pickers": "^3.3.10",
"clsx": "^1.1.1",
"d3": "~5.16.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/geostreaming/src/containers/Search/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const Search = (props: Props) => {
}

setFilteredFeatures(updatedFeatures);
}, [filters, custom_location]);
}, [features, filters, custom_location]);



Expand Down

0 comments on commit a7a7cbf

Please sign in to comment.