Hello to the version 8 release! The big changes in 8 are about simplification. This release also marks the release of the new dedicated Aether Site with guides, reference, etc.
The old multitude of functions for composition are now obsolete:
// Old
Compose.lensWithLens l1 l2
Compose.lensWithPrism l p
...
// New
Compose.lens l x
Compose.prism p x
Operators for composition have also been dramatically simplified, as they match the functions:
// Old
>--> // Compose.lensWithLens
>-?> // Compose.lensWithPrism
<--> // Compose.lensWithIsomorphism
...
// New
>-> // Compose.lens
>?> // Compose.prism
The old distinct sets of functions for operations, with different methods for lenses and prisms (previously called partial lenses) have been unified:
// Old
Lens.get
Lens.set
Lens.map
Prism.get
Prism.set
Prism.map
// (Even) Older
Lens.get
Lens.getPartial
...
// New
Optic.get
Optic.set
Optic.map
As with the composition functions, the operators have also been simplified:
// New
^. // Optic.get
^= // Optic.set
^% // Optic.map
Some provided lenses and prisms, etc. have been moved and corrected. The Reference on the Aether site has more on what's available within Aether.