mirror of
https://github.com/azukaar/Cosmos-Server.git
synced 2026-01-07 12:49:31 -06:00
[release] v0.11.3
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
## Version 0.11.3
|
||||
- Fix missing even subscriber on export
|
||||
|
||||
## Version 0.11.2
|
||||
- Improve Docker exports logs
|
||||
|
||||
## Version 0.11.1
|
||||
- fix issue exporting text user node
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "cosmos-server",
|
||||
"version": "0.11.2",
|
||||
"version": "0.11.3",
|
||||
"description": "",
|
||||
"main": "test-server.js",
|
||||
"bugs": {
|
||||
|
||||
@@ -102,36 +102,36 @@ func DebouncedExportDocker() {
|
||||
func onDockerStarted(containerID string) {
|
||||
utils.Debug("onDockerStarted: " + containerID)
|
||||
BootstrapContainerFromTags(containerID)
|
||||
// DebouncedExportDocker()
|
||||
DebouncedExportDocker()
|
||||
}
|
||||
|
||||
func onDockerDestroyed(containerID string) {
|
||||
utils.Debug("onDockerDestroyed: " + containerID)
|
||||
// DebouncedExportDocker()
|
||||
DebouncedExportDocker()
|
||||
}
|
||||
|
||||
func onNetworkDisconnect(networkID string) {
|
||||
utils.Debug("onNetworkDisconnect: " + networkID)
|
||||
DebouncedNetworkCleanUp(networkID)
|
||||
// DebouncedExportDocker()
|
||||
DebouncedExportDocker()
|
||||
}
|
||||
|
||||
func onDockerCreated(containerID string) {
|
||||
utils.Debug("onDockerCreated: " + containerID)
|
||||
// DebouncedExportDocker()
|
||||
DebouncedExportDocker()
|
||||
}
|
||||
|
||||
func onNetworkDestroy(networkID string) {
|
||||
utils.Debug("onNetworkDestroy: " + networkID)
|
||||
// DebouncedExportDocker()
|
||||
DebouncedExportDocker()
|
||||
}
|
||||
|
||||
func onNetworkCreate(networkID string) {
|
||||
utils.Debug("onNetworkCreate: " + networkID)
|
||||
// DebouncedExportDocker()
|
||||
DebouncedExportDocker()
|
||||
}
|
||||
|
||||
func onNetworkConnect(networkID string) {
|
||||
utils.Debug("onNetworkConnect: " + networkID)
|
||||
// DebouncedExportDocker()
|
||||
DebouncedExportDocker()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user