Skip to content

Commit 6bfdc81

Browse files
authored
Release for 6.3.0 (#284)
* update release number * update release number * update Changelog and mage release versions * revert plugin versions * revert dockerfile * revert mage server * package.lock * package lock sftp
1 parent 194e5b7 commit 6bfdc81

File tree

20 files changed

+16327
-677
lines changed

20 files changed

+16327
-677
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,24 @@ MAGE adheres to [Semantic Versioning](http://semver.org/).
2323
- Protect against disabling all authentications.
2424
- Problem with OAuth web login
2525

26+
## [6.3.0](https://github.com/ngageoint/mage-server/releases/tag/6.3.0)
27+
### Service
28+
#### Features
29+
* ArcGIS Plugin support
30+
* SFTP Plugin Support
31+
* Support for MongoDB 6.0
32+
* Dependency updates
33+
### Web App
34+
#### Features
35+
* ArcGIS Plugin support
36+
* SFTP Plugin Support
37+
* Moved authentication settings to own admin tab
38+
* Redirect host added for saml config
39+
* Fix for issue with arabic characters in filenames
40+
* Fix for observation filter options
41+
* Dependency updates
42+
* Map UI updates
43+
2644
## [6.2.13](https://github.com/ngageoint/mage-server/releases/tag/6.2.13)
2745
### Service
2846
#### Features

docker/server/Dockerfile

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,19 @@ USER mage
1515
ENV MAGE_HOME=/home/mage/instance
1616
WORKDIR ${MAGE_HOME}
1717
RUN ls -l \
18-
&& npm i --omit dev @ngageoint/[email protected]-beta.8 \
19-
&& npm i --omit dev @ngageoint/[email protected]-beta.8 \
18+
&& npm i --omit dev @ngageoint/[email protected] \
19+
&& npm i --omit dev @ngageoint/[email protected] \
2020
&& npm i --omit dev @ngageoint/[email protected] \
2121
&& npm i --omit dev @ngageoint/[email protected] \
2222
&& npm i --omit dev @ngageoint/[email protected] \
2323
&& npm i --omit dev @ngageoint/[email protected] \
24-
&& npm i --omit dev @ngageoint/[email protected] \
25-
&& npm i --omit dev @ngageoint/[email protected] \
2624
&& ln -s ./node_modules/.bin/mage.service
2725

2826
VOLUME /var/lib/mage
2927
EXPOSE 4242
3028

3129
ENTRYPOINT [ "./mage.service", \
32-
"--plugin", "@ngageoint/mage.arcgis.service", \
33-
"--plugin", "@ngageoint/mage.sftp.service", \
34-
"--plugin", "@ngageoint/mage.nga-msi", \
35-
"--plugin", "@ngageoint/mage.image.service", \
36-
"--web-plugin", "@ngageoint/mage.arcgis.web-app", \
37-
"--web-plugin", "@ngageoint/mage.sftp.web"]
30+
"--plugin", "@ngageoint/mage.arcgis.service", \
31+
"--plugin", "@ngageoint/mage.sftp.service", \
32+
"--web-plugin", "@ngageoint/mage.arcgis.web-app", \
33+
"--web-plugin", "@ngageoint/mage.sftp.web"]

instance/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngageoint/mage.dev-instance",
3-
"version": "6.3.0-beta.8",
3+
"version": "6.3.0",
44
"description": "Assemble a MAGE Server deployment from the core service, the web-app, and selected plugins. This is primarily a development tool because the dependencies point to relative directories instead of production packages. This can however serve as a starting point to create a production MAGE instance package.json.",
55
"scripts": {
66
"start": "npm run start:dev",
@@ -31,4 +31,4 @@
3131
"@ngageoint/mage.service": "../service",
3232
"@ngageoint/mage.web-app": "../web-app/dist"
3333
}
34-
}
34+
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22
"name": "@ngageoint/mage.project",
33
"description": "This is the root package definition for the mage-server monorepo.",
44
"private": true,
5-
"version": "6.3.0-beta.8",
5+
"version": "6.3.0",
66
"files": [],
77
"scripts": {
88
"postinstall": "npm-run-all service:ci web-app:ci arcgis:ci sftp:ci",
99
"install:resolve": "npm-run-all service:install web-app:install",
1010
"build": "npm-run-all service:build web-app:build instance:build",
1111
"build-all": "npm-run-all build arcgis:build sftp:build",
12-
1312
"pack-all": "npm-run-all service:pack web-app:pack image.service:pack nga-msi:pack",
1413
"service:install": "npm install --prefix service",
1514
"service:ci": "npm ci --prefix service",
@@ -24,21 +23,18 @@
2423
"instance:start-config": "npm run start:dev --prefix instance",
2524
"instance:start-env": "npm run start:dev-env --prefix instance",
2625
"instance:start": "npm run start --prefix instance",
27-
2826
"arcgis:ci": "npm-run-all arcgis.service:ci arcgis.web-app:ci",
2927
"arcgis.web-app:ci": "npm ci --prefix plugins/arcgis/web-app",
3028
"arcgis.service:ci": "cd plugins/arcgis/service && npm ci && npm link ../../../service",
31-
"arcgis:build":"npm-run-all arcgis.service:build arcgis.web-app:build",
29+
"arcgis:build": "npm-run-all arcgis.service:build arcgis.web-app:build",
3230
"arcgis.service:build": "npm run build --prefix plugins/arcgis/service",
3331
"arcgis.web-app:build": "npm run build --prefix plugins/arcgis/web-app",
34-
3532
"sftp:ci": "npm-run-all sftp.service:ci sftp.web:ci",
3633
"sftp.web:ci": "npm ci --prefix plugins/sftp/web",
3734
"sftp.service:ci": "cd plugins/sftp/service && npm ci && npm link ../../../service",
3835
"sftp:build": "npm-run-all sftp.service:build sftp.web:build",
3936
"sftp.service:build": "npm run build --prefix plugins/sftp/service",
40-
"sftp.web:build": "npm run build --prefix plugins/sftp/web",
41-
37+
"sftp.web:build": "npm run build --prefix plugins/sftp/web",
4238
"image.service:install": "npm install --prefix plugins/image/service",
4339
"image.service:ci": "npm ci --prefix plugins/image/service",
4440
"image.service:build": "npm run build --prefix plugins/image/service",
@@ -47,12 +43,11 @@
4743
"nga-msi:ci": "npm ci --prefix plugins/nga-msi",
4844
"nga-msi:build": "npm run build --prefix plugins/nga-msi",
4945
"nga-msi:pack": "npm pack ./plugins/nga-msi",
50-
5146
"start": "npm run instance:start",
5247
"start-web": "npm run web-app:debug"
5348
},
5449
"devDependencies": {
5550
"npm-run-all": "4.1.5"
5651
},
5752
"dependencies": {}
58-
}
53+
}

0 commit comments

Comments
 (0)