[release] v0.11.3

This commit is contained in:
Yann Stepienik 2023-10-24 12:04:02 +01:00
parent 72436c7b78
commit 8a5e261bd1
3 changed files with 14 additions and 8 deletions

View file

@ -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 ## Version 0.11.1
- fix issue exporting text user node - fix issue exporting text user node

View file

@ -1,6 +1,6 @@
{ {
"name": "cosmos-server", "name": "cosmos-server",
"version": "0.11.2", "version": "0.11.3",
"description": "", "description": "",
"main": "test-server.js", "main": "test-server.js",
"bugs": { "bugs": {

View file

@ -102,36 +102,36 @@ func DebouncedExportDocker() {
func onDockerStarted(containerID string) { func onDockerStarted(containerID string) {
utils.Debug("onDockerStarted: " + containerID) utils.Debug("onDockerStarted: " + containerID)
BootstrapContainerFromTags(containerID) BootstrapContainerFromTags(containerID)
// DebouncedExportDocker() DebouncedExportDocker()
} }
func onDockerDestroyed(containerID string) { func onDockerDestroyed(containerID string) {
utils.Debug("onDockerDestroyed: " + containerID) utils.Debug("onDockerDestroyed: " + containerID)
// DebouncedExportDocker() DebouncedExportDocker()
} }
func onNetworkDisconnect(networkID string) { func onNetworkDisconnect(networkID string) {
utils.Debug("onNetworkDisconnect: " + networkID) utils.Debug("onNetworkDisconnect: " + networkID)
DebouncedNetworkCleanUp(networkID) DebouncedNetworkCleanUp(networkID)
// DebouncedExportDocker() DebouncedExportDocker()
} }
func onDockerCreated(containerID string) { func onDockerCreated(containerID string) {
utils.Debug("onDockerCreated: " + containerID) utils.Debug("onDockerCreated: " + containerID)
// DebouncedExportDocker() DebouncedExportDocker()
} }
func onNetworkDestroy(networkID string) { func onNetworkDestroy(networkID string) {
utils.Debug("onNetworkDestroy: " + networkID) utils.Debug("onNetworkDestroy: " + networkID)
// DebouncedExportDocker() DebouncedExportDocker()
} }
func onNetworkCreate(networkID string) { func onNetworkCreate(networkID string) {
utils.Debug("onNetworkCreate: " + networkID) utils.Debug("onNetworkCreate: " + networkID)
// DebouncedExportDocker() DebouncedExportDocker()
} }
func onNetworkConnect(networkID string) { func onNetworkConnect(networkID string) {
utils.Debug("onNetworkConnect: " + networkID) utils.Debug("onNetworkConnect: " + networkID)
// DebouncedExportDocker() DebouncedExportDocker()
} }