Skip to content

Commit f9f3b6f

Browse files
committed
update release number
1 parent 194e5b7 commit f9f3b6f

File tree

18 files changed

+47
-52
lines changed

18 files changed

+47
-52
lines changed

docker/server/Dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ 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].8 \
19-
&& npm i --omit dev @ngageoint/[email protected].8 \
18+
&& npm i --omit dev @ngageoint/[email protected].9 \
19+
&& npm i --omit dev @ngageoint/[email protected].9 \
2020
&& npm i --omit dev @ngageoint/[email protected] \
2121
&& npm i --omit dev @ngageoint/[email protected] \
2222
&& npm i --omit dev @ngageoint/[email protected] \
@@ -29,9 +29,9 @@ VOLUME /var/lib/mage
2929
EXPOSE 4242
3030

3131
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"]
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"]

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-beta.9",
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: 3 additions & 3 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-beta.9",
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+
}

plugins/arcgis/service/package-lock.json

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

plugins/arcgis/service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"form-data": "4.0.2"
4545
},
4646
"peerDependencies": {
47-
"@ngageoint/mage.service": ">=6.3.0-beta.8",
47+
"@ngageoint/mage.service": ">=6.3.0-beta.9",
4848
"express": "4.21.2"
4949
},
5050
"devDependencies": {

plugins/image/service/package-lock.json

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

plugins/image/service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"sharp": "^0.33.2"
3737
},
3838
"peerDependencies": {
39-
"@ngageoint/mage.service": "6.3.0-beta.8",
39+
"@ngageoint/mage.service": "6.3.0-beta.9",
4040
"express": "~4.21.2",
4141
"mongoose": "^6.13.0"
4242
},

plugins/sftp/service/package-lock.json

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

plugins/sftp/service/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"typescript": "~4.6.0"
4646
},
4747
"peerDependencies": {
48-
"@ngageoint/mage.service": ">=6.3.0-beta.8",
48+
"@ngageoint/mage.service": ">=6.3.0-beta.9",
4949
"express": "4.21.2",
5050
"express-session": "1.17.2",
5151
"mongoose": "^6.12.0"
@@ -55,4 +55,4 @@
5555
"crypto-js": "4.1.1",
5656
"ssh2-sftp-client": "^9.1.0"
5757
}
58-
}
58+
}

0 commit comments

Comments
 (0)