Skip to content
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

Merge from Valhalla #2

Merged
merged 354 commits into from
Nov 1, 2024
Merged

Merge from Valhalla #2

merged 354 commits into from
Nov 1, 2024
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jun 13, 2023

  1. Configuration menu
    Copy the full SHA
    d44cd26 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2023

  1. update transifex (#4159)

    * updated transifex
    
    * Update CHANGELOG.md
    nilsnolde authored Jun 15, 2023
    Configuration menu
    Copy the full SHA
    d91013a View commit details
    Browse the repository at this point in the history
  2. ignore destonly edges around ferries (#4118)

    * implement a fix for destonly edges around ferries, including the ability to not un-tag destonly edges further away from ferries, i.e. where there was a break to destonly continuity
    
    * changelog
    
    * new changelog block..
    
    * revert most of the previous changes: we only don't penalize any dest_only while reclassifying if the connecting edge was dest_only AND the pred was destonly, but we still untag ANY destonly if it showed up in the final upclassified path; the main change is: also remove the connecting edge's destonly, which #1905 was missing; also fix a bug in forming the upclassified path where the initial label index could be wrong
    nilsnolde authored Jun 15, 2023
    Configuration menu
    Copy the full SHA
    472dde5 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2023

  1. Configuration menu
    Copy the full SHA
    6cea9e9 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2023

  1. fix use values of map matching API (#4174)

    0a4e828 removed the use values
    `rail_connection` and `bus_connnection` and added the use values
    `egress_connection` and `platform_connnection`.
    
    The latter value contained a typo (three n) and the commit also didn't
    update the documentation accordingly. This commit fixes these oversights.
    not-my-profile authored Jun 22, 2023
    Configuration menu
    Copy the full SHA
    99bfc6f View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2023

  1. fix typos (#4175)

    not-my-profile authored Jun 25, 2023
    Configuration menu
    Copy the full SHA
    9e02e3b View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2023

  1. ci: add spell-checking with typos (#4179)

    * refactor: rename fo variable to file_op
    
    * chore: facilitate spell-checking
    
    * fix typo missed in previous PR
    
    * ci: generalize changelog workflow to 'GitHub CI'
    
    * ci: add spell-checking with typos
    
    * Update CHANGELOG.md
    
    ---------
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    not-my-profile and kevinkreiser authored Jun 27, 2023
    Configuration menu
    Copy the full SHA
    3e10f1f View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2023

  1. Fix Build on MacOS (#4185)

    * Remove unused variable
    
    Apple clang generating this error:
     error: variable 'found' set but not used [-Werror,-Wunused-but-set-variable]
    
    * Replace set with unordered_set
    
    std::set is not defined in libc++ on MacOS XCode SDK 12 and is defined with a different type signature in XCode 13. There doesn't seem to be any need for the set to be ordered so this fixes the compilation errors
    
    * Add maybe_unused attribute to found variable
    
    This was providing a similar error as before:
     error: variable 'found' set but not used [-Werror,-Wunused-but-set-variable]
    As the variable is only used when the logging level is set to trace.
    FriedSock authored Jul 4, 2023
    Configuration menu
    Copy the full SHA
    e4845b6 View commit details
    Browse the repository at this point in the history
  2. Side cutoff (#4182)

    * adding basic functionality of side cutoff
    
    * added documentation
    
    * added roundabout_exits to documentation
    
    * applied clang-format
    
    * added test
    
    * updated changelog
    
    * improved search filter order
    
    * added comment in tests regarding driving side
    
    * applied clang-tidy
    
    * Updated description
    
    Updated the description to be more understandable.
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    
    * made street_side_cutoff optional in worker.cc
    
    ---------
    
    Co-authored-by: = <[email protected]>
    Co-authored-by: Kevin Kreiser <[email protected]>
    3 people authored Jul 4, 2023
    Configuration menu
    Copy the full SHA
    1e97599 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d6d2d48 View commit details
    Browse the repository at this point in the history
  4. move argparse boilerplate code to private header (#4169)

    * refactor valhalla_add_elevation a bit and move the mjolnir util to baldr
    
    * add -j flag to all multithreaded executables
    
    * changelog
    
    * remove deprecated heder
    
    * oops
    
    * moved the argparse boilerplate code to a private header which all programs can share
    
    * cxxopts entry not needed in cmake
    
    * add missing midgard header
    
    * some fixes
    
    * huch, quite a logical mistake..
    
    * few nits
    
    * more fixes
    
    * remove left-overs
    
    * keep deduplication in the executable valhalla_add_elevation
    
    * keep deduplication in the executable valhalla_add_elevation
    
    * use __FILE__ to find the executable name; overhaul src/CMakeLists.txt, we need to put the ./src directory to target_include_directories()
    
    * move get_tile_ids function into the executable
    
    * add filesystem::stem() to return the file name without extension and adapt all executables
    nilsnolde authored Jul 4, 2023
    Configuration menu
    Copy the full SHA
    b81a6c2 View commit details
    Browse the repository at this point in the history
  5. speed up transit ingestion (#4167)

    * remove just_gtfs official version
    
    * use sorted feeds to speed up processing
    
    * changelog
    
    * use new no copy interfaces with different validity semantics
    
    * lint changelog
    
    * lint
    
    * fix one of the test failures but the calendar part doesnt make sense..
    
    * fix last bug, ready to ship
    
    * fix yet another range bug. i see why c++20 made these first class citizens of stl
    kevinkreiser authored Jul 4, 2023
    Configuration menu
    Copy the full SHA
    30e11f1 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2023

  1. Configuration menu
    Copy the full SHA
    26489fb View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2023

  1. Configuration menu
    Copy the full SHA
    680061a View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    kevinkreiser authored Jul 13, 2023
    Configuration menu
    Copy the full SHA
    077ca33 View commit details
    Browse the repository at this point in the history
  3. Landmark database (#4189)

    * build database for parsed landmarks with tests
    
    * remove unnecessary struct Landmark
    
    * add bounding box query (TBC)
    
    * fix small typo
    
    * remove redundant code; code refactor and cleaning; add open db with different access
    
    * add access mode in constructor, bounding box query TBC
    
    * fix spatialite extension, finalize database builder
    
    * formatting
    
    * remove test func and fix loading spatilite by storing db_conn in the class
    
    * update test with test fixtures
    
    * move prepared statements to class member variables
    
    * add Vacuum and Analyze; update insert func input param; code cleaning
    
    * rename test to test_landmarks.cc
    
    * remove unused imports
    
    * code cleaning
    
    * update interface
    
    * tidy
    
    * update constructor, remove unnecessary enum
    
    * update connect_database func to use exceptions
    
    * add release statements
    
    * update Changelog
    vesperlou authored Jul 13, 2023
    Configuration menu
    Copy the full SHA
    c3089cb View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2023

  1. make landmark db operations a pimpl (#4202)

    * simplify original class and prepare for pimpl
    
    * finish pimpl
    
    * formant
    
    * changelog
    kevinkreiser authored Jul 15, 2023
    Configuration menu
    Copy the full SHA
    d544de3 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2023

  1. sudo install python dependencies on OSX (#4209)

    * sudo install python dependencies on OSX
    
    * well then.. install cython urgh
    
    * huh, wrong python3 maybe, pre-commit depends on pyyaml 6.0 and installs without issues, 5.9 should have a wheel as well, but when downgrading pip decides to build from source instead.. urgh. last resort: pin pre-commit to a version which depends on pyyaml < 6.0, but eventually we'll need to do the conan switch to 2.0
    
    * get rid of cython again..
    nilsnolde authored Jul 19, 2023
    Configuration menu
    Copy the full SHA
    e62ea86 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2023

  1. Configuration menu
    Copy the full SHA
    e59975b View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2023

  1. let :forward and :backward tags override access for supported mod…

    …es (#4204)
    
    * coalesce the various gurka access tests into one
    
    * add failing test
    
    * add handling for :forward tags for all major modes
    
    * lint
    
    * update taginfo
    
    * changelog
    
    * lint
    
    * we can delude ourselves that bikes are vehicles
    kevinkreiser authored Jul 23, 2023
    Configuration menu
    Copy the full SHA
    11feaf0 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2023

  1. Configuration menu
    Copy the full SHA
    0abdc26 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2023

  1. Landmark parser (#4201)

    * implement callback and landmark parse function - first version
    
    * implement landmark parser and test passed
    
    * tidy
    
    * add BuildLandmarkFromPBF function: parse landmarks from pbf and store them in database
    
    * fix bug 'overwrite'
    
    * tidy
    
    * update Landmark type to enum of uint8_t with 15 popular amenity values, and update database part accordingly
    
    * remove redundant func and test, code cleaning
    
    * update LandmarkType to include only obvious landmarks for vehicle routing
    
    * rename to landmark_builder
    
    * move insertion of landmarks into node callback to have them directly inserted in to db after being parsed
    
    * move landamark_callback to anonymous namespace
    
    * add default values to LandmarkType
    
    * update landmark_callback to parse landmark nodes only; update landmark test with border cases
    
    * update test detail
    
    * change default landmark name to empty string and remove defaults for lat and lng
    
    * fix LandmarkDatabase constructoe, and fix rebase issues
    
    * remove unnecessary tag 'landmark' in landmark_callback and update test
    
    * update landmark_callback to not pass LandmarkDatabase as parameter in constructor
    
    * code cleaning
    
    * update BuildLandmarkFromPBF interface to take ptree for executable
    
    * enable separate executable for landmrk builder
    
    * enable valhalla_build_landmarks commandline
    
    * fix typo
    
    * remove comments
    
    * remove struct Landmark and update interface and tests
    
    * code cleaning in landmark tests
    
    * change landmark database to only allow writes at creation; remove LandmarkType::null; code cleaning
    
    * update CHANGELOG.md and description
    
    * remove bus_station and biergarten in LandmarkType
    
    * address code reviews
    
    * add remarks for LandmarkType
    
    * address code reviews
    
    * update CHANGELOG.md
    vesperlou authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    d150ab0 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2023

  1. Configuration menu
    Copy the full SHA
    05ac342 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. Configuration menu
    Copy the full SHA
    8b0155b View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

  1. Test directory sign compare (#4227)

    * [test/gurka/test_traffic.cc] sign-compare: int -> uint32_t
    
    * [test/mapmatch.cc] sign-compare: size_t -> int
    
    * [test/gurka/test_64bit_wayid.cc] sign-compare: int -> size_t
    
    * [test/gurka/test_osrm_serializer.cc] sign-compare: int -> size_t
    
    * [test/gurka/test_precision.cc] sign-compare: int -> size_t
    
    * [test/gurka/test_time_dependent_tags.cc] sign-compare: int -> size_t
    
    * [test/gurka/test_turn_lanes.cc] sign-compare: int -> size_t
    
    * [test/http_tiles.cc] sign-compare: int -> size_t
    
    * [test/shape_attributes.cc] sign-compare: int -> size_t
    
    * [test/viterbi_search.cc] sign-compare: int -> size_t
    
    * [test/gurka/test_traffic_smoothing.cc] sign-compare: int -> size_t
    
    * [test/recover_shortcut.cc] sign-compare: int -> size_t
    
    * [test/gurka/test_match.cc] sign-compare: int -> size_t & invalid/is_valid
    
    * [test/gurka/test_route.cc] sign-compare: int -> size_t & invalid/is_valid
    
    * [test/gurka/test_osrm_serializer.cc] Using rapidjson::SizeType
    
    * [test/http_tiles.cc] Using std::filesystem
    cvvergara authored Aug 4, 2023
    Configuration menu
    Copy the full SHA
    0da6d20 View commit details
    Browse the repository at this point in the history
  2. Using std filesystem (#4215)

    * [test/gurka/test_build_admin.cc] Removing unused variables
    
    * [test/gurka/test_build_admin.cc] using std::filesystem
    
    ---------
    
    Co-authored-by: Nils <[email protected]>
    cvvergara and nilsnolde authored Aug 4, 2023
    Configuration menu
    Copy the full SHA
    89dfed0 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2023

  1. fix crash in timedistancebssmatrix.cc (#4244)

    * fix crash in  timedistancebssmatrix.cc
    
    * update changelog.md
    Patrick Qian authored Aug 9, 2023
    Configuration menu
    Copy the full SHA
    753c8e7 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. fix up Cmake/protobuf disaster (#4207)

    * use protobuf's CMake config instead of CMake's own
    
    * add todo
    
    * ugly workaround
    
    * manually find & link abseil to protobuf
    
    * changelog
    
    * comment out the dll line
    
    * boil down to linking only the used abseil library
    nilsnolde authored Aug 11, 2023
    Configuration menu
    Copy the full SHA
    45d10fa View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2023

  1. fix: links on the optimized route API document (#4260)

    * fix: links on the optimized route API document
    
    * docs: updated changelog
    witPranav authored Aug 20, 2023
    Configuration menu
    Copy the full SHA
    449ab16 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. Update graph tile to allow adding landmarks (#4233)

    * skeleton for updates to the tile structure
    
    * update AddLandmark
    
    * fix bugs and code cleaning
    
    * add string_to_landmark and vice versa in landmark header
    
    * move stuff into baldr
    
    * more structure to the test
    
    * update Landmark back to struct
    
    * update get_landmarks_by_bbox arguments order
    
    * problem: sanity checks failed
    
    * update Landmark::from_str to constructor
    
    * fix encode and decode of lng and lat for landmark
    
    * fix typo and argument names
    
    * fix null byte bug by updating encoding of Landmark objects
    
    * failing test
    
    * some ramblings about how to get the data in ther
    
    * back to fixed length encoding of Landmark lat and lng; update EdgeInfo::GetTaggedValues and EdgeInfo::GetTags()
    
    * fix bug and allow more landmark tests
    
    * tidy
    
    * fix bug
    
    * remove repeated imports
    
    * update changelog
    
    * use std::move and add to landmark test
    
    * address code review
    
    * complete test
    
    * remove comments and optimize tests
    
    * add a new line at the end of file
    
    * remove fixed landmark in the test
    
    ---------
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    Co-authored-by: Nils <[email protected]>
    3 people authored Aug 24, 2023
    Configuration menu
    Copy the full SHA
    36d28a0 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. Configuration menu
    Copy the full SHA
    d38153e View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2023

  1. Tyr OSRM serializer: create bannerInstructions in step (#4093)

    * Tyr osrm_serializer: Create bannerInstructions in step
    
    * Tyr osrm_serializer: Make sure maneuver_type and turn_modifier isn't called twice
    
    * Adds API flag to configure usage of bannerInstructions in OSRM serializer, default is false
    
    * Tyr: Adds 'secondary' bannerInstructions
    
    * Tyr: route_serializer_osrm apply clang-format
    
    * Apply clang-format to worker.cc
    
    * Tyr OSRM serializer removes unnecessary 'std::move' calls
    
    * Tyr OSRM serializer break out intersections lane_indications function
    
    * WIP: Tyr route_serializer_osrm - adds 'sub' lane instructions to bannerInstructions
    
    * Tyr: OSRM serializer #lane_indications function pass turn_lane as pointer
    
    * Tyr OSRM serializer: Makes sure, there is always a bannerInstructions in the final step
    
    * Tyr OSRM serializer: Removes arrive_banner_instructions function
    
    * Tyr OSRM serializer: Adds initial version of gurka test
    
    * Tyr OSRM serializer: Apply clang-format
    
    * Tyr OSRM serializer expand gurka test
    
    * Tyr OSRM serialize improve gurka test to cover ref tag
    
    * Tyr OSRM serializer: Creates additional bannerInstruction with 'sub' banner if the lanes come late in the step
    
    * Tyr OSRM serializer: Adds lane_indications test
    
    * Adds documentation on how to use the OSRM format with the optional banner_instructions
    
    * Adds bannerInstructions enhancement to CHANGELOG
    
    * Update proto/options.proto
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    
    * Update docs/docs/api/turn-by-turn/api-reference.md
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    
    * Tyr OSRM serializer: simplify lane_indications function signature
    
    * Tyr OSRM serializer: Improve bannerInstructions - add exits, use only last lane information and pick better primary / secondary banners
    
    * Tyr OSRM serializer: Add tests for motorway exit in bannerInstructions
    
    * Tyr OSRM serializer: Adds degrees and driving_side to primary banner instruction for roundabouts and their exit steps
    
    * Refactor test_osrm_serializer to use a test fixture class
    
    * Small changes after code review
    
    ---------
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    eikes and kevinkreiser authored Aug 29, 2023
    Configuration menu
    Copy the full SHA
    fe67191 View commit details
    Browse the repository at this point in the history
  2. update submodules which had new releases (#4231)

    * update submodules which had new releases (unless it was a major version change)
    
    * revert that patch
    
    ---------
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    nilsnolde and kevinkreiser authored Aug 29, 2023
    Configuration menu
    Copy the full SHA
    f14e32a View commit details
    Browse the repository at this point in the history
  3. add option to valhalla_build_extract to use existing tar file for loo…

    …kup/copy (#4255)
    
    * add option to valhalla_build_extract to make an extract tar from an existing extract tar
    
    * format and some cleanup
    
    * changelog
    
    * black
    
    * amend tests
    
    * deduplicate before writing to tar.. geojsons might catch many duplicates
    
    * make the parent dir of the output tar file
    
    * oops
    
    * more oops
    
    * one more ooops
    
    * changelog
    nilsnolde authored Aug 29, 2023
    Configuration menu
    Copy the full SHA
    9c8bd05 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

  1. Add Landmarks to Tiles (#4278)

    * skeleton for updates to the tile structure
    
    * update AddLandmark
    
    * fix bugs and code cleaning
    
    * add string_to_landmark and vice versa in landmark header
    
    * move stuff into baldr
    
    * more structure to the test
    
    * update Landmark back to struct
    
    * update get_landmarks_by_bbox arguments order
    
    * problem: sanity checks failed
    
    * update Landmark::from_str to constructor
    
    * fix encode and decode of lng and lat for landmark
    
    * fix typo and argument names
    
    * fix null byte bug by updating encoding of Landmark objects
    
    * failing test
    
    * some ramblings about how to get the data in ther
    
    * back to fixed length encoding of Landmark lat and lng; update EdgeInfo::GetTaggedValues and EdgeInfo::GetTags()
    
    * fix bug and allow more landmark tests
    
    * tidy
    
    * fix bug
    
    * remove repeated imports
    
    * update changelog
    
    * use std::move and add to landmark test
    
    * fix crash in  timedistancebssmatrix.cc (#4244)
    
    * fix crash in  timedistancebssmatrix.cc
    
    * update changelog.md
    
    * fix up Cmake/protobuf disaster (#4207)
    
    * use protobuf's CMake config instead of CMake's own
    
    * add todo
    
    * ugly workaround
    
    * manually find & link abseil to protobuf
    
    * changelog
    
    * comment out the dll line
    
    * boil down to linking only the used abseil library
    
    * address code review
    
    * complete test
    
    * fix: links on the optimized route API document (#4260)
    
    * fix: links on the optimized route API document
    
    * docs: updated changelog
    
    * skeleton for adding landmarks to the tiles
    
    * more skeleton comments
    
    * Update landmarks.cc
    
    * more draft
    
    * finish landmarks.cc and resolve compilation issues
    
    * issue to be fixed
    
    * bug: landmark added twice. the repeated landmark is always the last one to be added. NOTE: GraphTileBuilder::AddName cannot recognize the 'same' string. This bug is also correlated with landmark name size.
    
    * fix bug and more tests
    
    * fix bug of repeats and clean up code
    
    * fix typo
    
    * add a search cutoff for landmarks, and update tests
    
    * add error test and use std::move in edgeinfo_offset_map_ update
    
    * address code reviews and add comments
    
    * update Changelog
    
    * small update on const variable and tests
    
    * add funciton description
    
    * quick update
    
    ---------
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    Co-authored-by: Patrick Qian <[email protected]>
    Co-authored-by: Nils <[email protected]>
    Co-authored-by: Pranav Chatly <[email protected]>
    5 people authored Sep 6, 2023
    Configuration menu
    Copy the full SHA
    7696735 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2023

  1. removed clear_heading while sanitizing in loki_worker_t (#4288)

    * removed clear_heading while sanitizing in loki_worker_t
    
    #1802
    
    * updated CHANGELOG.MD
    
    #1802
    
    ---------
    
    Co-authored-by: jehamannco <[email protected]>
    Co-authored-by: Nils <[email protected]>
    3 people authored Sep 13, 2023
    Configuration menu
    Copy the full SHA
    97cad06 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2023

  1. Add landmarks to maneuvers (#4293)

    Co-authored-by: nilsnolde <[email protected]>
    vesperlou and nilsnolde authored Sep 19, 2023
    Configuration menu
    Copy the full SHA
    5323586 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. specify intel mac build on circle (#4327)

    circleci changed how they do mac builds to support M1. now they only have one resource class (smaller than what we were using) for intel based builds so for the time being we have to use that: https://circleci.com/docs/using-macos/#supported-xcode-versions
    kevinkreiser authored Oct 12, 2023
    Configuration menu
    Copy the full SHA
    c30e6fb View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

  1. Config Singleton (#4220)

    * WIP: Add Singleton
    
    * Change config singleton and refactor odin worker
    
    * changed config singleton interface
    
    * revert changes
    
    * Remove toplevel references to config
    
    * Clang tidy and format
    
    * Add test
    
    * Simplify test
    
    * Remove additional config use
    
    * Rename, simplify singleton and use other namespace
    
    * clang-format
    
    * include sorting
    
    * test fix
    
    * Update CHANGELOG.md
    
    * Move config singleton/Remove unnessecary function
    
    * Resolve naming collision
    
    * format
    
    * fix OneInstanceExisting test
    
    * Fixed slipped file
    
    * Add error handling and new exception to intercept
    
    * Update CHANGELOG.md
    
    ---------
    
    Co-authored-by: Nils <[email protected]>
    Co-authored-by: johannes-no <[email protected]>
    Co-authored-by: Kevin Kreiser <[email protected]>
    4 people authored Oct 16, 2023
    Configuration menu
    Copy the full SHA
    4ab376a View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2023

  1. Update the street name and sign data processing include language and …

    …pronunciations (#4268)
    
    * process default_language
    
    * added LanguageTag
    
    * added LanguageTag
    
    * added logic to process default langs
    
    * added default_languages
    
    * added new GetTagTokens
    
    * added lang lookups
    
    * added language
    
    * ported language logic
    
    * more language updates
    
    * not needed.
    
    * rm jct
    
    * format
    
    * added lang check
    
    * refactored to just have 1 linguistic record.
    
    * added more entries
    
    * kLanguage removed.  moved kNone to 5 to avoid versioning of the tiles
    
    * refactored
    
    * moved pronunciations and langs to maps.
    
    * cleanup and added lang and pronunciation tags.
    
    * Wales fix
    
    * updated
    
    * clang-tidy
    
    * clean up
    
    * updated.
    
    * missed 2 changes.
    
    * clean up
    
    * more clean up
    
    * added bridge
    
    * pr clean up
    
    * updated for new spell check
    
    * more spell check
    
    * Update CHANGELOG.md
    
    * switched from 3 spaces to 2
    
    * refactored to test_phonemes_w_langs.cc.  Reduced code duplication
    
    ---------
    
    Co-authored-by: Greg Knisely <[email protected]>
    gknisely and Greg Knisely authored Oct 17, 2023
    Configuration menu
    Copy the full SHA
    0f6367a View commit details
    Browse the repository at this point in the history
  2. Add encoded elevation to EdgeInfo - serialize in route and trace_attr…

    …ibutes JSON (#4279)
    
    * Initial code for storing elevation in Valhalla tiles.
    
    * Add elevation to nodes and edgeinfo
    
    * Added mjolnir code to populate node and edge elevation. Added code to
    Valhalla route serializer and trace serializer to output elevation
    (JSON) if elevation_interval is specified.
    
    * Fix formatting
    
    * Process elevation_interval JSON input
    
    * Update api-reference.md
    
    * Update api-reference.md
    
    * Update api-reference.md
    
    * Update api-reference.md
    
    * Add to change log
    
    * Address some PR comments.
    
    * Update doc for elevation along route.
    
    * Fix loop using size_t (was incorrect when addressing PR comments).
    
    * Add to function level comments
    
    * Use std::move to copy the encoded elevation vector.
    
    * started elevation test
    
    * more updates
    
    * lend a hand on elevation tests
    
    * finished up
    
    * close the file
    
    ---------
    
    Co-authored-by: Greg Knisely <[email protected]>
    Co-authored-by: Kevin Kreiser <[email protected]>
    3 people authored Oct 17, 2023
    Configuration menu
    Copy the full SHA
    f22344c View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. more sustainable way to work with protobuf in cmake (#4334)

    * more sustainable way to work with protobuf in cmake
    
    * let's piggyback on CMAKE_FIND_PACKAGE_PREFER_CONFIG
    nilsnolde authored Oct 18, 2023
    Configuration menu
    Copy the full SHA
    7eb700a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2f3420c View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. fix broken link

    kevinkreiser authored Oct 19, 2023
    Configuration menu
    Copy the full SHA
    cbcb1f6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    159bbb6 View commit details
    Browse the repository at this point in the history
  3. playing around with arm builds (#4213)

    * see if arm has a jammy image available
    
    * mason wont have clangformat for arm probably
    
    * forget format for real th is time
    
    * use newer vanilla ubuntu for arm, older versions of luajit are broken
    
    * circle syntax
    
    * syntax again
    
    * try to share more and always use venv
    
    * not sure where to get pip thought it came with venv
    
    * really every time?
    
    * git too
    
    * stuff
    
    * no format for now
    
    * need sleep
    
    * have to disable warnings to get it to build on arm
    
    * try with sudo
    
    * kick
    
    * no sudo on arm?
    
    * circle syntax
    
    * skip format check for c++ on arm
    
    * move sudo into the right places in the linux install script
    
    * activate first so python is in its right mind
    
    * use venv
    
    * try to unbreak mac
    
    * try prime server in /tmp and disable errors from bench
    
    * fix isochrones on arm platforms
    
    * lint
    
    * mac already has venv
    
    * already there
    
    * unbreak the amd linux installs
    
    * disable sanitizers so we can get a faster build
    
    * fix astar shape comparisons
    
    * lint
    
    * more shape checks for arm
    
    * actually fix the isochrone test, its off by 23 meters
    
    * fix printing
    
    * fix up landmark test to be aware of opposing edges
    
    * lint
    
    * simplify encode and decode of landmarks into tag values
    
    * fix landmark test with slight buffer on bbox query
    
    * sweet jesus
    
    * changelog
    
    * spelling
    
    * update docker build to support arm as well at github actions. update circle to use env vars to use python virtual env
    
    * try to remove virtual env
    
    * circle lint
    
    * more ci lint
    
    * maybe this will work
    
    * check if we need to install stuff
    
    * use virtual env if in one..
    
    * no file command
    
    * on the release build we have to disable benchmark werror because of the newer compiler
    
    * compiler too new with bugs!
    
    * typo
    
    * trying out multiplatform builds for docker
    
    * typo
    
    * try with sudo
    
    * typo
    
    * tag not working?
    
    * oops
    
    * update automatic workflow for docker publishing
    kevinkreiser authored Oct 19, 2023
    Configuration menu
    Copy the full SHA
    9aa1c1c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5e84ef6 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2023

  1. remove conan from windows build instructions (#4339)

    * remove conan from windows build instructions
    
    * clone cmf
    
    * win path
    
    * remove the god awful warnings from stdout
    
    * screw ninja..
    
    * git clone can't checkout single commits, only branch/tag
    
    * weird.. missed boost-heap but linux didn't care. also remove old vcpkg deps file
    
    * right, msvc does things differently than ninja
    
    * upgrade vcpkg to newest master and update docs
    nilsnolde authored Oct 21, 2023
    Configuration menu
    Copy the full SHA
    6f1c95d View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2023

  1. Configuration menu
    Copy the full SHA
    3806832 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Configuration menu
    Copy the full SHA
    5b3cd97 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2023

  1. fix DST sensitive transit test (#4364)

    * fix DST sensitive transit test
    
    * fix tidy
    nilsnolde authored Oct 28, 2023
    Configuration menu
    Copy the full SHA
    08308fe View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Configuration menu
    Copy the full SHA
    32afb8e View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2023

  1. Ferry reclassification fix when multiple edges exist between a node p…

    …air (#4361)
    
    * When adding a node label, add the edge's wayindex. When recovering the
    shortest path, make sure the wayindex of the edge connecting the node
    with its predecessor node matches the wayindex. This ensures the correct
    edge on the shortest path is marked for reclassificiation. Prior to
    this, multiple edges could become reclassified when there is more than
    1 edge between a node pair.
    
    * Change log
    
    * Fix use of way_index when recovering shortest path.
    
    * Add a test to make sure only the shorter edge between a node pair is
    reclassified. Tested this against master and it fails. Succeeds on
    the branch.
    
    * formatting fix
    dnesbitt61 authored Nov 2, 2023
    Configuration menu
    Copy the full SHA
    3dab7da View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. remove timezone aliases from sql script (#4382)

    * I hope it's that simple..
    
    * changelog
    
    * add test
    
    * format
    
    * Tidy
    nilsnolde authored Nov 6, 2023
    Configuration menu
    Copy the full SHA
    83f1c95 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2023

  1. Fix ferry shortest path recovery (#4378)

    * Add test that demonstrates the wrong path can be recovered from the
    ShortestPath method in ferry_connections.cc
    
    * Fix the last_label_idx - make sure it is only set when an edge with the
    target classification (or better) is present at the node being expanded.
    Identify cases where no reclassification occurs (e.g,. islands with no
    edges that meet the target classification) and log the locations.
    
    * Add to change log
    
    * If no path is found, always add to set of ferry locations with no path.
    
    * Add test to make sure no edges are reclassified if the target
    classification is not found.
    
    * Looks like ReclassifyFerryConnections automatically sets the first edge
    connecting to the ferry to primary. I added a test to make
    sure no edges are reclassified if no edges with the target
    classification are encountered. However, the initial ferry connection
    edge is set to primary even if no edges with the target classification
    are encountered in ShortestPath.
    
    * Formatting
    
    * remove some method declarations - not needed since only used in
    ferry_connections.cc.
    
    * More properly identify cases where no paths to/from ferries to target
    classification roadways exist.
    
    * formatting
    
    * don't need to include unordered_set anymore.
    
    * Remove the check if node_labels.size == 0. This is redundant now that we
    check for a valid last_label_idx being set.
    
    * Reclassify the first edge IF a connection to higher class roads is
    found.
    
    * Modify the nothing reclassified test to remove the first edge connected
    to the ferry. No longer upclassed if no path to higher class edges is
    found.
    dnesbitt61 authored Nov 15, 2023
    Configuration menu
    Copy the full SHA
    274a3e7 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Avoid Issues with GraphReader::GetBeginNodeId (#4390)

    * copy tile pointer rather than mutate to avoid confusion
    
    * make it work like the rest of the functions and comment it
    
    * add a test for any reader functions that use tile cache args
    
    * api doc strings
    kevinkreiser authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    e6362fb View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Allow all roads for motorcycles. (#4348)

    Co-authored-by: Evgen Bodunov <[email protected]>
    molind and molind authored Nov 21, 2023
    Configuration menu
    Copy the full SHA
    602c8ab View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

  1. Configuration menu
    Copy the full SHA
    6a83b61 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2023

  1. Update README.md (#4415)

    pufferffish authored Nov 28, 2023
    Configuration menu
    Copy the full SHA
    661f4fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9495be1 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2023

  1. Configuration menu
    Copy the full SHA
    ffe790d View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2023

  1. Configuration menu
    Copy the full SHA
    fe6c47c View commit details
    Browse the repository at this point in the history
  2. Document traffic feature (#4259)

    Co-authored-by: Nils <[email protected]>
    Trietes and nilsnolde authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    e252f59 View commit details
    Browse the repository at this point in the history
  3. few matrix serializer fixes (#4366)

    * &  for verbose matrix response was kinda broken due to #4335 above
    
    * add date_time array to slim matrix
    
    * fix tid
    
    * Nn matrix serializer fixes (#4385)
    
    * src/tyr/matrix_serializer.cc is warning free
    
    * Testing with true value and fixing test
    
    * revert including date_time in non-verbose matrix
    
    ---------
    
    Co-authored-by: Vicky Vergara <[email protected]>
    nilsnolde and cvvergara authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    b263871 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. Configuration menu
    Copy the full SHA
    f6e2ae4 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. Fix bug in thor_worker_t::build_trace on wrong edge_index assignment (#…

    …4413)
    
    * Fix bug in build_trace on wrong edge_index assign
    
    * Update Changelog
    
    * Updated edge_index calculation logic
    
    * Rollback edge_index type
    
    ---------
    
    Co-authored-by: Mahdi Hasnat Siyam <[email protected]>
    mahdihasnat and Mahdi Hasnat Siyam authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    11c6358 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Refactor CostMatrix (#4372)

    * save my work on the failing laptop
    
    * refactor successful, all tests pass and the deadend bug is fixed..
    
    * put the expansion direction into the template arguments
    
    * rename vars
    
    * do the memory retaining stuff as good as possible
    
    * clean up other algos
    
    * fix #4360 and the matrix-off-by-1-second issue
    
    * put the dependencies back in place in cmakelists
    
    * changelog
    
    * format
    
    * matrix expansion test also needed an update; good: we expand less edges:)
    
    * oops, edgecost & transition cost were the same for both trees
    
    * small update
    
    * ha, what a shitshow.. tiny mis-ordering of statements messed it all up..
    
    * last remaining bugs fixed
    
    * cleanup
    
    * initialize interrupt function with nullptr so using costmatrix by itself doesn't segfault
    
    * re-add the additional testing scripts
    
    * format
    
    * increase the maximum threshold by 3% to account for slightly more expansion with deadend logic; still could/should be based on max cost of (which?) adjacency set
    
    * after fixing the bugs, the expansion test has no changes
    
    * revert
    
    * make the PR files warning-free (#4410)
    
    * address dave's review: change some of vicky's stuff around; add a gurka test for costmatrix to show that deadends are working now
    
    * address review
    
    * fix some warnings that crept in
    
    * format
    
    ---------
    
    Co-authored-by: Vicky Vergara <[email protected]>
    nilsnolde and cvvergara authored Dec 5, 2023
    Configuration menu
    Copy the full SHA
    32a09fd View commit details
    Browse the repository at this point in the history
  2. config costmatrix locations' reserved memory (#4424)

    * save my work on the failing laptop
    
    * refactor successful, all tests pass and the deadend bug is fixed..
    
    * put the expansion direction into the template arguments
    
    * rename vars
    
    * do the memory retaining stuff as good as possible
    
    * clean up other algos
    
    * fix #4360 and the matrix-off-by-1-second issue
    
    * put the dependencies back in place in cmakelists
    
    * changelog
    
    * format
    
    * matrix expansion test also needed an update; good: we expand less edges:)
    
    * oops, edgecost & transition cost were the same for both trees
    
    * small update
    
    * ha, what a shitshow.. tiny mis-ordering of statements messed it all up..
    
    * last remaining bugs fixed
    
    * cleanup
    
    * initialize interrupt function with nullptr so using costmatrix by itself doesn't segfault
    
    * re-add the additional testing scripts
    
    * format
    
    * increase the maximum threshold by 3% to account for slightly more expansion with deadend logic; still could/should be based on max cost of (which?) adjacency set
    
    * after fixing the bugs, the expansion test has no changes
    
    * revert
    
    * make the PR files warning-free (#4410)
    
    * make reserverd memory for locations in CostMatrix configurable
    
    * reorder
    
    * address dave's review: change some of vicky's stuff around; add a gurka test for costmatrix to show that deadends are working now
    
    * address review
    
    * fix some warnings that crept in
    
    * format
    
    * changelog
    
    ---------
    
    Co-authored-by: Vicky Vergara <[email protected]>
    nilsnolde and cvvergara authored Dec 5, 2023
    Configuration menu
    Copy the full SHA
    3ea024b View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2023

  1. Refactor EdgeLabel to reduce memory (#4439)

    * Refactor EdgeLabel and derived classes to lower memory use. Fixed an
    overflow of one of the 64 bit data members (lowers memory use by 8
    bytes). Moved transition_cost and distance out of base EdgeLabel class.
    Added a new dervied class, PathEdgeLabel, for use in path recosting.
    Removed some unused Update methods. The base EdgeLabel class was reduced
    to 40 bytes (was 56 bytes).
    
    * Use the new PathEdgeLabel (derived class of EdgeLabel) for
    LabelCallbacks and path recosting.
    
    * Update calls to EdgeLabel constructor and methods.
    
    * Add unit tests to validate EdgeLabel size (and its derived classes).
    
    * Update EdgeLabel use.
    
    * Update astar_bss to use BDEdgeLabel (as do all other A* methods).
    
    * formatting
    
    * Move distance to end of BDEdgeLabel. This leaves 4 bytes spare before
    the size would increase.
    
    * update change log
    
    * Derive MMEdgeLabel from EdgeLabel (rather than PathEdgeLabel).
    Reorganize distance data member to lower the size by 8 bytes (now
    matches prior size so no size increase for MMEdgeLabel anymore).
    
    * Actually MMEdgeLabel size did decrease to 72 bytes (was 80)!
    
    * formatting (again)
    
    * Move EdgeLabel size tests to double_bucket_queue test so that a new test
    program does not need to be generated.
    
    * format fix
    dnesbitt61 authored Dec 9, 2023
    Configuration menu
    Copy the full SHA
    253443e View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2023

  1. add shape to matrix response (#4432)

    * save my work on the failing laptop
    
    * refactor successful, all tests pass and the deadend bug is fixed..
    
    * put the expansion direction into the template arguments
    
    * rename vars
    
    * do the memory retaining stuff as good as possible
    
    * clean up other algos
    
    * fix #4360 and the matrix-off-by-1-second issue
    
    * put the dependencies back in place in cmakelists
    
    * changelog
    
    * format
    
    * matrix expansion test also needed an update; good: we expand less edges:)
    
    * oops, edgecost & transition cost were the same for both trees
    
    * small update
    
    * ha, what a shitshow.. tiny mis-ordering of statements messed it all up..
    
    * last remaining bugs fixed
    
    * cleanup
    
    * initialize interrupt function with nullptr so using costmatrix by itself doesn't segfault
    
    * re-add the additional testing scripts
    
    * format
    
    * increase the maximum threshold by 3% to account for slightly more expansion with deadend logic; still could/should be based on max cost of (which?) adjacency set
    
    * after fixing the bugs, the expansion test has no changes
    
    * revert
    
    * make the PR files warning-free (#4410)
    
    * address dave's review: change some of vicky's stuff around; add a gurka test for costmatrix to show that deadends are working now
    
    * address review
    
    * fix some warnings that crept in
    
    * format
    
    * pure refactor to make room for the geometries in costmatrix
    
    * add no_shape option for shape_format
    
    * all in there incl serialization; now only needs the logic to actually put together the shape
    
    * geometry works now; spent wayyyy too much time figuring out why trivial routes won't work: costmatrix has a bug where it finds the wrong direction of the single edge
    
    * format
    
    * band-aid the trivial route bug in costmatrix
    
    * add extensive testing
    
    * merge master and changelog
    
    * docs
    
    * changelog
    
    * address review
    
    * Apply suggestions from code review
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    
    * addressed review
    
    * address bug for tdmatrix when shape_format -ne 'none'
    
    * tidy
    
    * rename 'none' to 'no_shape' in JSON API; fix changelog; merge master
    
    * again tidy
    
    * test broke after renaming the JSON API
    
    * added warning when tdmatrix was used and shape_format was requested
    
    ---------
    
    Co-authored-by: Vicky Vergara <[email protected]>
    Co-authored-by: Kevin Kreiser <[email protected]>
    3 people authored Dec 10, 2023
    Configuration menu
    Copy the full SHA
    89b0e2f View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. Configuration menu
    Copy the full SHA
    0374819 View commit details
    Browse the repository at this point in the history
  2. Fix typo in graph.lua (#4310)

    restiction -> restriction
    eltociear authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    4fee64c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    98f06be View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. diff_names check was missing for Graphfilter and Shortcutbuilder for …

    …AddEdgeInfo call (#4436)
    
    * process default_language
    
    * added LanguageTag
    
    * added LanguageTag
    
    * added logic to process default langs
    
    * added default_languages
    
    * added new GetTagTokens
    
    * added lang lookups
    
    * added language
    
    * ported language logic
    
    * more language updates
    
    * not needed.
    
    * rm jct
    
    * format
    
    * added lang check
    
    * refactored to just have 1 linguistic record.
    
    * added more entries
    
    * kLanguage removed.  moved kNone to 5 to avoid versioning of the tiles
    
    * refactored
    
    * moved pronunciations and langs to maps.
    
    * cleanup and added lang and pronunciation tags.
    
    * Wales fix
    
    * updated
    
    * clang-tidy
    
    * clean up
    
    * updated.
    
    * missed 2 changes.
    
    * clean up
    
    * more clean up
    
    * added bridge
    
    * pr clean up
    
    * updated for new spell check
    
    * more spell check
    
    * Update CHANGELOG.md
    
    * added test for graph filter
    
    * added test for graph filter
    
    * missing diff_names check.
    
    * updated.
    
    * Update src/mjolnir/graphfilter.cc
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    
    * moved check to OpposingEdgeInfoMatches function
    
    * format
    
    * added comment and end at cleanup stage
    
    * Update test_filter.cc
    
    * more mainstream test setup (#4438)
    
    * more mainstream test setup
    
    * Update test_filter.cc
    
    ---------
    
    Co-authored-by: Greg Knisely <[email protected]>
    
    * created OpposingEdgeInfoDiffers since same logic is used in shortcutbuilder, graphfilter, and hierarchybuilder
    
    * added/updated diff_names check
    
    * Delete test/gurka/test_phonemes_ipa_w_langs.cc
    
    * Delete test/gurka/test_phonemes_jeita_w_langs.cc
    
    * Delete test/gurka/test_phonemes_katakana_w_langs.cc
    
    * Delete test/gurka/test_phonemes_nt_sampa_w_langs.cc
    
    * Update CHANGELOG.md
    
    * moved OpposingEdgeInfoDiffers to graphtilebuilder
    
    ---------
    
    Co-authored-by: Greg Knisely <[email protected]>
    Co-authored-by: Kevin Kreiser <[email protected]>
    Co-authored-by: Nils <[email protected]>
    4 people authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    d533886 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2023

  1. Configuration menu
    Copy the full SHA
    d7b0dcc View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Configuration menu
    Copy the full SHA
    29cb1be View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac2c5d9 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2023

  1. hgv destonly (#4450)

    nilsnolde authored Dec 18, 2023
    Configuration menu
    Copy the full SHA
    5e4e1db View commit details
    Browse the repository at this point in the history
  2. updated country access overrides. (#4460)

    * updated country access overrides.
    
    * Update CHANGELOG.md
    gknisely authored Dec 18, 2023
    Configuration menu
    Copy the full SHA
    86c16d5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    52d6ca7 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2023

  1. Configuration menu
    Copy the full SHA
    241daf6 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2023

  1. Configuration menu
    Copy the full SHA
    d25c8ee View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2023

  1. Configuration menu
    Copy the full SHA
    28fa113 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2023

  1. Configuration menu
    Copy the full SHA
    7eb70e1 View commit details
    Browse the repository at this point in the history
  2. Nn scooter track (#4468)

    * naive fix for greg's observation
    
    * remove 0.5 again
    
    * Update motorscootercost.cc
    
    * Update CHANGELOG.md
    nilsnolde authored Dec 28, 2023
    Configuration menu
    Copy the full SHA
    1f7d108 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ae8cb68 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d1c11dd View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2023

  1. Fixes #4480 Segfault in OSRM serializer with bannerInstructions when …

    …destination is on roundabout (#4481)
    
    * OSRM serializer with bannerInstructions should not segfault when ending on a roundabout
    
    * Adds Changelog entry
    eikes authored Dec 29, 2023
    Configuration menu
    Copy the full SHA
    9f46abb View commit details
    Browse the repository at this point in the history
  2. update grade based speed factor by using a modified Tobler's function (

    …#4302)
    
    * update grade based speed factor
    
    * update changelog
    
    * format
    
    ---------
    
    Co-authored-by: Nils <[email protected]>
    xlqian and nilsnolde authored Dec 29, 2023
    Configuration menu
    Copy the full SHA
    13eed43 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2024

  1. Update serializers.cc (#4484)

    changed int to unsigned int64
    Beeram12 authored Jan 1, 2024
    Configuration menu
    Copy the full SHA
    1dd3acd View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2024

  1. Configuration menu
    Copy the full SHA
    70c2291 View commit details
    Browse the repository at this point in the history
  2. test files without warning use -Werror flag (#4477)

    * test/gurka using -Werror on files without warnings
    
    * test using -Werror on tests without warnings
    
    * test/gurka/test_ferry_connections.cc has warnings on CI lint-build-debug'
    
    * test/gurka/test_match.cc has warnings on CI lint-build-debug
    
    * test/edgecollapser.cc has warnings on CI lint-build-debug
    
    * test/search.cc has warnings on CI lint-build-debug
    
    * test/search.cc removing multiline comment warning
    
    * test/search.cc removing multiline comment warning
    
    * test/util_odin.cc has warnings on CI lint-build-debug
    
    ---------
    
    Co-authored-by: Nils <[email protected]>
    cvvergara and nilsnolde authored Jan 3, 2024
    Configuration menu
    Copy the full SHA
    7eb4784 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2024

  1. Configuration menu
    Copy the full SHA
    007042a View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Configuration menu
    Copy the full SHA
    8a6400e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    64f7321 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. Configuration menu
    Copy the full SHA
    5540cd7 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. Configuration menu
    Copy the full SHA
    562357b View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. Configuration menu
    Copy the full SHA
    0cc7d6e View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. [skip ci] Remove MinGW build status from README

    don't think we'll ever re-activate that one. for reference: only fedora:rawhide is somewhat set up to build mingw for geospatial stuff and there's only one maintainer for most geospatial packages, plus rawhide regularly breaks as it's cutting edge without much testing
    nilsnolde authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    09f8ba7 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2024

  1. Configuration menu
    Copy the full SHA
    381bce0 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. clamp truck speed to 90 kph (#4493)

    Co-authored-by: Nils <[email protected]>
    chrstnbwnkl and nilsnolde authored Jan 23, 2024
    Configuration menu
    Copy the full SHA
    2b2353e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    84f2259 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    03fbd62 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. Configuration menu
    Copy the full SHA
    8074e8e View commit details
    Browse the repository at this point in the history
  2. migrate CI to M1 (#4500)

    nilsnolde authored Jan 24, 2024
    Configuration menu
    Copy the full SHA
    4fb198d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    90ae30e View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Configuration menu
    Copy the full SHA
    5fadcb6 View commit details
    Browse the repository at this point in the history
  2. Bump tz to 2023d (#4519)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    github-actions[bot] and github-actions[bot] authored Jan 25, 2024
    Configuration menu
    Copy the full SHA
    57e5e14 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0de56b5 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. clean up cmake (#4516)

    nilsnolde authored Jan 29, 2024
    Configuration menu
    Copy the full SHA
    69a6bfc View commit details
    Browse the repository at this point in the history
  2. GHA for Windows (#4533)

    nilsnolde authored Jan 29, 2024
    Configuration menu
    Copy the full SHA
    fd90ec4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    154c47f View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. Configuration menu
    Copy the full SHA
    4d3d896 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2024

  1. Configuration menu
    Copy the full SHA
    c9c2418 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. Configuration menu
    Copy the full SHA
    3a92152 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2024

  1. Configuration menu
    Copy the full SHA
    db0b6a1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    453d3ef View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Nn matrix geometry try2 (#4489)

    Co-authored-by: Nils <[email protected]>
    cvvergara and nilsnolde authored Feb 5, 2024
    Configuration menu
    Copy the full SHA
    82d8215 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5ce3aa7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    21783fc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e406c10 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2024

  1. Configuration menu
    Copy the full SHA
    d642158 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. Configuration menu
    Copy the full SHA
    1c2ff98 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    129c55b View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2024

  1. Configuration menu
    Copy the full SHA
    cd928ac View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    edb4ab0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    957c06e View commit details
    Browse the repository at this point in the history
  4. remove bench (#4560)

    Co-authored-by: Kevin Kreiser <[email protected]>
    nilsnolde and kevinkreiser authored Feb 11, 2024
    Configuration menu
    Copy the full SHA
    ba5730e View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2024

  1. Aggregation updates: update opposing local idx after aggregating the …

    …edges, added classification check for aggregation, and shortcut length changes (#4570)
    
    Co-authored-by: David Nesbitt <[email protected]>
    gknisely and dnesbitt61 authored Feb 13, 2024
    Configuration menu
    Copy the full SHA
    30068b1 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2024

  1. Blind user mode. (#3694)

    Co-authored-by: Christian Beiwinkel <[email protected]>
    grzezlo and chrstnbwnkl authored Feb 14, 2024
    Configuration menu
    Copy the full SHA
    e7a5c16 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. Configuration menu
    Copy the full SHA
    efff65d View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2024

  1. Configuration menu
    Copy the full SHA
    2a0ed14 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    812386f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5ce3c3a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5d250d2 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. Configuration menu
    Copy the full SHA
    1fa1e01 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

  1. Configuration menu
    Copy the full SHA
    055db1a View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2024

  1. make shortcut logging more useful (#4607)

    Co-authored-by: Kevin Kreiser <[email protected]>
    nilsnolde and kevinkreiser authored Feb 24, 2024
    Configuration menu
    Copy the full SHA
    3b824c9 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. Configuration menu
    Copy the full SHA
    f025e81 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6648fb9 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Configuration menu
    Copy the full SHA
    3794239 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    482bcf2 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Configuration menu
    Copy the full SHA
    929718b View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Configuration menu
    Copy the full SHA
    7f4cc6f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    40ce71b View commit details
    Browse the repository at this point in the history
  3. "soft" ignore restrictions (#4606)

    Co-authored-by: Nils <[email protected]>
    chrstnbwnkl and nilsnolde authored Mar 13, 2024
    Configuration menu
    Copy the full SHA
    28eaf7a View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2024

  1. Configuration menu
    Copy the full SHA
    663e04e View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. Configuration menu
    Copy the full SHA
    b6bad37 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. Configuration menu
    Copy the full SHA
    181eed9 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Bump tz to 2024a (#4643)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    Co-authored-by: Nils <[email protected]>
    3 people authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    dff7005 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b491610 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2024

  1. FIXED Issue #4652: src/thor/unidirectional_astar.cc doesnt work for d…

    …ate_time type 2, i.e. for arrival (#4653)
    
    Co-authored-by: Kevin Kreiser <[email protected]>
    TheTonda and kevinkreiser authored Mar 24, 2024
    Configuration menu
    Copy the full SHA
    6fb3eb7 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. Configuration menu
    Copy the full SHA
    962719a View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Configuration menu
    Copy the full SHA
    6f9f637 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f29329d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0a36ae1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    58929bd View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2024

  1. Configuration menu
    Copy the full SHA
    1ae956d View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. Configuration menu
    Copy the full SHA
    fdf1204 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

  1. Configuration menu
    Copy the full SHA
    4c4dd99 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. Configuration menu
    Copy the full SHA
    9338820 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Configuration menu
    Copy the full SHA
    2b438ee View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. Configuration menu
    Copy the full SHA
    fca9135 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. Configuration menu
    Copy the full SHA
    1b864c9 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. astar costmatrix (#4671)

    nilsnolde authored Apr 12, 2024
    Configuration menu
    Copy the full SHA
    afd0161 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. Add missing docs (#4687)

    Trietes authored Apr 15, 2024
    Configuration menu
    Copy the full SHA
    13c6580 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Configuration menu
    Copy the full SHA
    169b88e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e73131c View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2024

  1. Configuration menu
    Copy the full SHA
    58241a2 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. typo in docs

    kevinkreiser authored Apr 19, 2024
    Configuration menu
    Copy the full SHA
    c835e2c View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. Configuration menu
    Copy the full SHA
    c8f4773 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2024

  1. Configuration menu
    Copy the full SHA
    56785d0 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Configuration menu
    Copy the full SHA
    812383f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9888d8e View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Correctly set has_highway, has_ferry and has_toll attributes when dir…

    …ections_type is set to none (#4706)
    michaelhrabanek authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    16fecc1 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. Configuration menu
    Copy the full SHA
    0636e37 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    651a515 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2024

  1. Configuration menu
    Copy the full SHA
    629f0dd View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. Configuration menu
    Copy the full SHA
    1594fe9 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Configuration menu
    Copy the full SHA
    76f316c View commit details
    Browse the repository at this point in the history
  2. auto-update the fossgis instances (#4717)

    Co-authored-by: Christian <[email protected]>
    nilsnolde and chrstnbwnkl authored May 8, 2024
    Configuration menu
    Copy the full SHA
    6fbe96e View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Configuration menu
    Copy the full SHA
    26cfae4 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Configuration menu
    Copy the full SHA
    3463f1a View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. fix echo statement for linux/macos in building.md (#4730)

    Co-authored-by: Martin Schlossarek <[email protected]>
    martin-schlossarek and Martin Schlossarek authored May 14, 2024
    Configuration menu
    Copy the full SHA
    c14d3ac View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Configuration menu
    Copy the full SHA
    78c1701 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Configuration menu
    Copy the full SHA
    4f6ef05 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    48b339b View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2024

  1. Configuration menu
    Copy the full SHA
    950b4c4 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Configuration menu
    Copy the full SHA
    2985c08 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7be6e23 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2024

  1. Configuration menu
    Copy the full SHA
    7725f8a View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. Configuration menu
    Copy the full SHA
    f25bbf4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cbb4e98 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. Configuration menu
    Copy the full SHA
    45bd34a View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2024

  1. Configuration menu
    Copy the full SHA
    bfc3460 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2024

  1. Configuration menu
    Copy the full SHA
    38fc9ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9725261 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. fix trivial route for CostMatrix (#4634)

    Co-authored-by: Christian Beiwinkel <[email protected]>
    nilsnolde and chrstnbwnkl authored Jul 22, 2024
    Configuration menu
    Copy the full SHA
    66bb9a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e5e695f View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. Configuration menu
    Copy the full SHA
    1b5d6f0 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2024

  1. Configuration menu
    Copy the full SHA
    270163c View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. Configuration menu
    Copy the full SHA
    5c1eb84 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2024

  1. Configuration menu
    Copy the full SHA
    2272caf View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Configuration menu
    Copy the full SHA
    94745de View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. Configuration menu
    Copy the full SHA
    f0d77e0 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2024

  1. Configuration menu
    Copy the full SHA
    f580be3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    58a289d View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. Configuration menu
    Copy the full SHA
    e0f33e6 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    75cef6a View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Configuration menu
    Copy the full SHA
    8748f41 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2024

  1. Configuration menu
    Copy the full SHA
    5faeff8 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. Configuration menu
    Copy the full SHA
    b05c9d0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    743d5c9 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2024

  1. Configuration menu
    Copy the full SHA
    c435717 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    kevinkreiser authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    bb8c8e0 View commit details
    Browse the repository at this point in the history
  3. Update CHANGELOG.md

    kevinkreiser authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    6c79f86 View commit details
    Browse the repository at this point in the history
  4. Update CHANGELOG.md

    kevinkreiser authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    572c334 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2024

  1. Configuration menu
    Copy the full SHA
    fdcbb2c View commit details
    Browse the repository at this point in the history
  2. lint

    kevinkreiser authored Aug 28, 2024
    Configuration menu
    Copy the full SHA
    e39ce9c View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. Configuration menu
    Copy the full SHA
    5f4f4e9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5354107 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. Configuration menu
    Copy the full SHA
    aba45e1 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Configuration menu
    Copy the full SHA
    35ba52b View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2024

  1. Provide conditional speed limits from "maxspeed:conditional" in `/loc…

    …ate` and proto `/route` responses (#4851)
    kinkard authored Sep 11, 2024
    Configuration menu
    Copy the full SHA
    5a84979 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2024

  1. Configuration menu
    Copy the full SHA
    3a38504 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. Configuration menu
    Copy the full SHA
    523847c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3bdfc5e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9a1f2b3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d6de753 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ca3c2f0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4d311dc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c411feb View commit details
    Browse the repository at this point in the history
  8. Fix for bug #4880 (#4881)

    girishyadav20 authored Sep 19, 2024
    Configuration menu
    Copy the full SHA
    ac0cc3d View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. Configuration menu
    Copy the full SHA
    5f48bfa View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2024

  1. Configuration menu
    Copy the full SHA
    0c84812 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2024

  1. Configuration menu
    Copy the full SHA
    be5a4d5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a01d80c View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Configuration menu
    Copy the full SHA
    e3118f0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    da25217 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. Configuration menu
    Copy the full SHA
    7516a10 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d377c8a View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2024

  1. Configuration menu
    Copy the full SHA
    1967e33 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. Configuration menu
    Copy the full SHA
    b71dc96 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    40e898e View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2024

  1. Fix macOS CI (#4945)

    chrstnbwnkl authored Oct 24, 2024
    Configuration menu
    Copy the full SHA
    21dd8eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    531206c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8423bc0 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

  1. Configuration menu
    Copy the full SHA
    329c4e6 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. Hard avoids highway ferry (#4524)

    Co-authored-by: amaury.zarzelli <[email protected]>
    Co-authored-by: adrika.mukherjee <[email protected]>
    Co-authored-by: Johannes Nonnenmacher <[email protected]>
    Co-authored-by: Janusz <[email protected]>
    5 people authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    a9071e3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    18984b4 View commit details
    Browse the repository at this point in the history