-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v1.0.0 #1290
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Docs/systray
This commit removes the dmsgtracker from Hypervisor and instead uses it from the struct Visor. Previsoly we were creating a new dmsgtracker for Visor and Hypervisor which isn't necessarry as we can access the struct Visor from the struct Hypervisor.
This commit moves the initilization of the dmsgtrackers to its own module.
This commit adds ready chan to Manager as well as the method Ready.
This commit fixes the datarace in the stun module by removing the waitgroup and instead using the stunReady channel along side the method isStunReady. The stunReady chan is used directly to block until the stun client is ready and the method isStunReady is used to check if the module is ready or not.
This commit changes the dtm method from MustGet to Get. The method MustGet blocks until it gets back the data so we use Get instead.
This commit reverts back to using MustGet in Summary as well as reverts back the changes made to GetBulk.
Fix stun client datarace
This commit updates the method mustEstablishTracker to not return anything but instead save the tracker directly. New ticker is also added in order to stop the goroutine containing newDmsgTracker after updateTimeout incase context.WithDeadline doesn't work.
manipulate goreleaser and appveyor for release from appveyor
This commit updates the method GetBulk by using the method MustGet to get the DmsgClientSummary of all the pks. Hence the method GetBulk now also returns error like MustGet and takes in ctx.
This commit updates the mustEstablishTracker method by using doneCh to aleart the select statement that it is done and prevent the warn log of timeout.
This commit uses the ctx with timeout as the timeout case instead of a ticker.
…ands. Remove hv srvpk subcommand. Limit hv skychat command to linux. Allow skywire-cli visor start as non root
…ands. Remove hv srvpk subcommand. Limit hv skychat command to linux. Allow skywire-cli visor start as non root
fix cap problem (rootless vpn-client)
Fix/systray deps
add skywire-cli subcommands
Fix/vendor utilities
…ppveyor Add Windows Installer Job to AppVeyor
fix systray xfce
update dmsghttp values
update dmsg@develop
fix nil pointer error for `skywire-cli config gen --all`
fix caching issue
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Merge v1.0.0 release