@metaplay/metaplay-auth 1.7.2 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/dist/index.cjs +122 -122
- package/dist/sshcrypto-WBGBWUDW.node +0 -0
- package/index.ts +125 -150
- package/package.json +7 -7
- package/src/auth.ts +12 -4
- package/src/buildCommand.ts +5 -5
- package/src/deployment.ts +2 -2
- package/src/targetenvironment.ts +0 -1
- package/src/utils.ts +80 -2
- package/src/version.ts +1 -1
- package/dist/sshcrypto-FLTOM44A.node +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.8.0] - 2024-12-04
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- New command `uninstall-server <environment>` that removes the deployed game server from the target environment.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- The `gameserver` argument has been renamed to `environment` to better reflect its purpose.
|
|
12
|
+
- Removed the deprecated `get-docker-login` command. Use the `push-docker-image` instead.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Better validation of image tag in command `deploy-server`.
|
|
17
|
+
|
|
3
18
|
## [1.7.2] - 2024-11-12
|
|
4
19
|
|
|
5
20
|
### Added
|