New Features in GoLand 2020.3

A selection of useful features from GoLand 2020.3

GoLand 2020.3 was released on December 3rd, 2020! It allows you to explore goroutine dumps, run and navigate individual tests in table tests, improved support for the time package, collaborative development and pair programming, Code With Me, among other new features and enhancements!

Check out DataGrip 2020.3 What's New and WebStorm 2020.3 What's New to read all about the new features related to database and modern web development included in GoLand.

Go 1.16: retract directive

Retract specific versions of your modules

Tip Screenshot

From the Go documentation for the retract directive:

A retract directive indicates that a version or range of versions of the module defined by go.mod should not be depended upon. A retract directive is useful when a version was published prematurely or a severe problem was discovered after the version was published.

How to use:

This feature does not require anything special to be used. The IDE recognizes it automatically.