Skip to content

Releases: nextmv-io/nextroute

v1.8.0-dev.0

24 Sep 20:41
5ff8639
Compare
Choose a tag to compare
v1.8.0-dev.0 Pre-release
Pre-release

What's Changed

Full Changelog: v1.7.1...v1.8.0-dev.0

v1.7.1

28 Aug 23:40
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.7.0...v1.7.1

v1.7.1-dev.0

28 Aug 23:39
Compare
Choose a tag to compare
v1.7.1-dev.0 Pre-release
Pre-release

What's Changed

Full Changelog: v1.7.0...v1.7.1-dev.0

v1.7.0

28 Aug 15:29
f69bce3
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.6.4...v1.7.0

v1.6.4

06 Aug 17:42
959f78c
Compare
Choose a tag to compare

What's Changed

  • Fixes issue with nil mix items in mixing constraint by @nmisek in #60

Full Changelog: v1.6.3...v1.6.4

v1.6.3

02 Jul 13:07
5221220
Compare
Choose a tag to compare

What's Changed

  • Bump github.com/gorilla/schema from 1.2.0 to 1.4.1 by @dependabot in #59

New Contributors

Full Changelog: v1.6.2...v1.6.3

v1.6.2

23 May 23:41
6da4cc8
Compare
Choose a tag to compare

BREAKING

This release is breaking if nil checks were done on the nextroute.SolutionStop interface (as it is now becoming a struct for performance reasons). It is recommended to use .IsZero() check instead from now on.

I.e., the following code:

var stop nextroute.SolutionStop = nil
// ...
if stop == nil {
  // ...
}

becomes:

var stop nextroute.SolutionStop
// ...
if stop.IsZero() {
  // ...
}

What's Changed

Full Changelog: v1.6.1...v1.6.2

v1.6.1

15 May 21:08
f56ea11
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.6.0...v1.6.1

v1.6.0

01 May 10:32
06eb7e8
Compare
Choose a tag to compare

What's Changed

  • Parallel solver cycle invocations respect maximum duration by @davidrijsman in #31
  • Consider invalid locations in distance and duration model expressions by @muellerd in #32
  • Introduced parallel solver events to observe parallel solver by @davidrijsman in #33
  • Initial stops on vehicle are now correct checked for constraint violations by @davidrijsman in #34
  • Allowing direct successors and disallowing successors by @larsbeck in #35

Full Changelog: v1.5.1...1.6.0

v1.5.1

22 Apr 15:49
980b2b5
Compare
Choose a tag to compare

What's Changed

  • Runtime check on at least one operator that checks for improvements. by @davidrijsman in #25
  • Add custom operator test by @nmisek in #24
  • Feature/eng 4940 change default runtime of nextroute to 5 seconds by @nilsbeck in #26
  • Test and fix infeasible custom moves. by @davidrijsman in #28
  • ENG-3978 Adjusting custom statistics for unplanned stops and unplanned plan units by @muellerd in #29
  • ENG-3202 Add a conversion function for schema.Location to measure.Point by @muellerd in #30

New Contributors

Full Changelog: v1.5.0...v1.5.1