Skip to content

Commit

Permalink
Prepare for 5.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
newmanw committed May 4, 2021
1 parent 65a066f commit 15e8b48
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,15 @@ MAGE adheres to [Semantic Versioning](http://semver.org/).
## Pending on [`develop`](https://github.com/ngageoint/mage-server/tree/develop)

##### Features
* Ability to export as a GeoPackage.
* New export UI to view previous exports.
* Exports are now done in the background to allow for larger exports.

##### Bug Fixes

## [5.5.0](https://github.com/ngageoint/mage-server/releases/tag/5.5.0)

##### Features
* Export as GeoPackage.
* New export UI, allowing users to view previous exports.
* Exports are now done in the background, this will eliminate client timeouts for larger exports.
* Minor performance enhancements to existing export types.
* Adding icons to search results on admin pages.

Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ services:

mage-server:
depends_on: [mage-db]
image: "mage-server:${MAGE_VER:-5.4.4}"
image: "mage-server:${MAGE_VER:-5.5.0}"
# image: "mage-server:debug"
build:
context: ./server
# dockerfile: Dockerfile-debug
args:
MAGE_VER: "${MAGE_VER:-5.4.4}"
MAGE_VER: "${MAGE_VER:-5.5.0}"
volumes:
- ./server/resources:/var/lib/mage
- ..:/home/mage/mage-server
Expand Down
2 changes: 1 addition & 1 deletion docker/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:10.17.0

ARG MAGE_VER=5.4.4
ARG MAGE_VER=5.5.0

LABEL author="NGA"

Expand Down
2 changes: 1 addition & 1 deletion docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ info:
license:
name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0
version: 5.4.3
version: 5.5.0
servers: []
security:
- mageToken: []
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage-server",
"version": "5.4.5",
"version": "5.5.0",
"displayName": "MAGE Server",
"description": "Geospatial situation awareness application.",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion web-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngageoint/mage-web",
"version": "5.4.4",
"version": "5.5.0",
"description": "MAGE Web",
"keywords": [
"NGA",
Expand Down

0 comments on commit 15e8b48

Please sign in to comment.