[upstream_utils] Add timestamps to commit hashes (#8078)

This commit is contained in:
Tyler Veness
2025-07-10 15:01:15 -07:00
committed by GitHub
parent 6bac1cbc1a
commit 69ecd02aec
9 changed files with 9 additions and 0 deletions

View File

@@ -69,6 +69,7 @@ def copy_upstream_src(wpilib_root: Path):
def main():
name = "apriltag"
url = "https://github.com/AprilRobotics/apriltag.git"
# master on 2024-07-07
tag = "3806edf38ac4400153677e510c9f9dcb81f472c8"
patch_options = {

View File

@@ -17,6 +17,7 @@ def copy_upstream_src(wpilib_root: Path):
def main():
name = "gl3w"
url = "https://github.com/skaslev/gl3w"
# master on 2022-03-24
tag = "5f8d7fd191ba22ff2b60c1106d7135bb9a335533"
gl3w = Lib(name, url, tag, copy_upstream_src)

View File

@@ -56,6 +56,7 @@ def copy_upstream_src(wpilib_root: Path):
def main():
name = "glfw"
url = "https://github.com/glfw/glfw.git"
# master on 2022-08-22
tag = "6b57e08bb0078c9834889eab871bac2368198c15"
glfw = Lib(name, url, tag, copy_upstream_src)

View File

@@ -57,6 +57,7 @@ def copy_upstream_src(wpilib_root: Path):
def main():
name = "imgui"
url = "https://github.com/ocornut/imgui.git"
# docking on 2023-09-18
tag = "64b1e448d20c9be9275af731c34b4c7bf14a8e95"
imgui = Lib(name, url, tag, copy_upstream_src)

View File

@@ -28,6 +28,7 @@ def copy_upstream_src(wpilib_root: Path):
def main():
name = "implot"
url = "https://github.com/epezent/implot.git"
# master on 2023-08-19
tag = "18c72431f8265e2b0b5378a3a73d8a883b2175ff"
implot = Lib(name, url, tag, copy_upstream_src)

View File

@@ -48,6 +48,7 @@ def copy_upstream_src(wpilib_root: Path):
def main():
name = "libdogleg"
url = "https://github.com/dkogan/libdogleg"
# master on 2024-06-22
tag = "c971ea43088d286a3683c1039b9a85f761f7df15"
libdogleg = Lib(name, url, tag, copy_upstream_src)

View File

@@ -55,6 +55,7 @@ def copy_upstream_src(wpilib_root: Path):
def main():
name = "mrcal"
url = "https://github.com/dkogan/mrcal"
# master on 2024-11-29
tag = "662a539d3cbba4948c31d06a780569173b3fb6e6"
mrcal = Lib(name, url, tag, copy_upstream_src)

View File

@@ -62,6 +62,7 @@ def copy_upstream_src(wpilib_root: Path):
def main():
name = "mrcal_java"
url = "https://github.com/PhotonVision/mrcal-java"
# main on 2024-11-30
tag = "5f9d3168ccf1ecdfca48da13ea07fffa47f95d00"
mrcal_java = Lib(name, url, tag, copy_upstream_src)

View File

@@ -39,6 +39,7 @@ def copy_upstream_src(wpilib_root: Path):
def main():
name = "stb"
url = "https://github.com/nothings/stb.git"
# master on 2021-04-01
tag = "c9064e317699d2e495f36ba4f9ac037e88ee371a"
stb = Lib(name, url, tag, copy_upstream_src)