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

Support git repo caching on package create #785

Commits on Sep 22, 2022

  1. Layout initial todos

    Racer159 committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    bf5eb9e View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2022

  1. Configuration menu
    Copy the full SHA
    2d27030 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9463e01 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ac9b174 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4ecdc56 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    19ae80a View commit details
    Browse the repository at this point in the history
  6. check if we need to tunnel to external git server

    If the 'external' git server still exists within the k8s cluster, create a tunnel when pushing repos to it
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    205ff7e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    dbccfe3 View commit details
    Browse the repository at this point in the history
  8. remove unnecessarly git-read-user flags on init

    general cleanup and oranization of functions in hooks package for zarf agent
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    7b56681 View commit details
    Browse the repository at this point in the history
  9. add more explicit check to determin if url is an internal svc url

    Makes sure the svc url comes at the end of the provided URL. This captures edge cases where someone has a subdomain that looks just like a service url would. eg) https://svc.cluster.local.example.com
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    4a93afa View commit details
    Browse the repository at this point in the history
  10. fix typo in Makefile

    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    131b7a3 View commit details
    Browse the repository at this point in the history
  11. have e2e test only make init-package if not already existing

    update GitHub workflows to not explicitly create init-package if it's not needed (if it already exists)
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    ed2af3d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    0d54d88 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    7b2754b View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    87027bb View commit details
    Browse the repository at this point in the history
  15. rename get-admin-password command to get-git-password

    The get-admin-password was a bad name because it wasn't clear what 'admin' meant. We are now making the name more explicit
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    1cf2d1f View commit details
    Browse the repository at this point in the history
  16. update flag and usage text for git-account for the prepare command

    update the flag git-username to git-account and add a note in the usage text to describe what to do if the repository belongs under an org
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    45ddcb6 View commit details
    Browse the repository at this point in the history
  17. add validation checking to init command flags

    verify that the git-user and git-password has been provided if using an external git server
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    96ac579 View commit details
    Browse the repository at this point in the history
  18. fill in GitServer values without overriding

    give users the ability to set some of the flags for the GitServerInfo without needing to host an extneral repository
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    ba201e6 View commit details
    Browse the repository at this point in the history
  19. wip - registryInfo struct

    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    87608f0 View commit details
    Browse the repository at this point in the history
  20. wip

    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    e1cb572 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    805160a View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    b456b66 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    8266771 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    f0fbb7d View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    148b686 View commit details
    Browse the repository at this point in the history
  26. change ready check for valuate template

    ready check now verifies that the zarf-state has been loaded by verifying the distro field has been populated
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    d0f4705 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    660cf70 View commit details
    Browse the repository at this point in the history
  28. update zarf agent to swap registry URL based on state values

    instead of essentially hardcoding the container URL to be localhost:31999 we are now loading the containger registry information from the zarf state to get the address of the registry
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    0ff8cdb View commit details
    Browse the repository at this point in the history
  29. remove secret expansion logic

    instead of having a single 'secret' value and expanding that into other secrets for internal resources, we now store all the values necessary within the ZarfState
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    94a98a4 View commit details
    Browse the repository at this point in the history
  30. fill in ContainerRegistry values without overriding

    give users the ability to set some of the flags for the ContainerRegistryInfo without needing to host an external registry
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    6c77915 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    3155eae View commit details
    Browse the repository at this point in the history
  32. tempalte gitea username

    instead of hardcoding the username for the gitea admin user we now template the value in the chart from the username stored in the ZarfState
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    f7f7811 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    fde2a27 View commit details
    Browse the repository at this point in the history
  34. check registry nodeport when returning registry addres

    If a nodeport is provided, replaces the address with IPV4LocalHost
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    2a54bf6 View commit details
    Browse the repository at this point in the history
  35. update read-only user creation to use usenames provided by init flags

    the utility function to create a read-only user to gitea was using hardcoded values for the push/read usernames. Now they check the gitServerInfo in the state to use the correct usernames
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    bbbd56b View commit details
    Browse the repository at this point in the history
  36. only output connect options for internal registry

    remove the hardcoded output for registry connect shortcut and only print if using an internal registry
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    8019ed8 View commit details
    Browse the repository at this point in the history
  37. bugfix: registry url in agent pod mutation

    instead of using the raw registry address, use the GetRegistry utility that checks if registry url should be modified to localhost
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    bccd617 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    3a75a54 View commit details
    Browse the repository at this point in the history
  39. shorten down function name

    shortended getZarfStateFromWithinAgentPod() to getStateFromAgentPod()
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    c86e9af View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    cbe18c5 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    85cef08 View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    6107172 View commit details
    Browse the repository at this point in the history
  43. make init flag option for registrySecret

    add a flag that allows the user to specify the registry secrety, instead of using a randomly generated one
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    29ef269 View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    17022f8 View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    d6bbf74 View commit details
    Browse the repository at this point in the history
  46. Configuration menu
    Copy the full SHA
    7930574 View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    8d7209a View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    febb20a View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    baccffd View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    92913b9 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    196da1e View commit details
    Browse the repository at this point in the history
  52. remove underscore characters from mutated reponames

    When we are transforming repo URLs we used to replace invalid special characters from the url to double underscores. This created problems with some Git servers (namely GitLab) that prevents two special characters in a row.
    Instead of replacing with double undersores, we are simply removing the invalid characters.
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    b540939 View commit details
    Browse the repository at this point in the history
  53. add sha1 hash at the end of tranformed git url

    change the way we transform the git urls by only using the actual reponame and a sha of the url (exluding the tag in the sha)
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    8daa189 View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    dd42784 View commit details
    Browse the repository at this point in the history
  55. refactor component deploy so injector and agent images do not have sh…

    …asum added
    
    injector and agent components get processed before the zarf-agent is running, meaning there is nothing that rewrites the url to include the shasum when the chart is getting deployed. This means we need to push the images out without the shasum appended
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    7b32bb6 View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    d353177 View commit details
    Browse the repository at this point in the history
  57. Configuration menu
    Copy the full SHA
    bb6924f View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    eedd3ed View commit details
    Browse the repository at this point in the history
  59. update agent image tag

    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    932a8d2 View commit details
    Browse the repository at this point in the history
  60. Configuration menu
    Copy the full SHA
    56cb158 View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    93219f9 View commit details
    Browse the repository at this point in the history
  62. Configuration menu
    Copy the full SHA
    d9f2aa3 View commit details
    Browse the repository at this point in the history
  63. add usage examples for 'zarf init' command

    light cleanup of PR code
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    8b54266 View commit details
    Browse the repository at this point in the history
  64. Configuration menu
    Copy the full SHA
    b68ae09 View commit details
    Browse the repository at this point in the history
  65. Configuration menu
    Copy the full SHA
    a4a1ed2 View commit details
    Browse the repository at this point in the history
  66. Configuration menu
    Copy the full SHA
    8dcbb22 View commit details
    Browse the repository at this point in the history
  67. update cli docs

    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    68396e6 View commit details
    Browse the repository at this point in the history
  68. Configuration menu
    Copy the full SHA
    b30d6a1 View commit details
    Browse the repository at this point in the history
  69. Configuration menu
    Copy the full SHA
    f577c37 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    8cbc925 View commit details
    Browse the repository at this point in the history
  71. misc code cleanup

    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    48bcb10 View commit details
    Browse the repository at this point in the history
  72. update api-types file

    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    ad3303d View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    35eb375 View commit details
    Browse the repository at this point in the history
  74. Configuration menu
    Copy the full SHA
    2e6a7ed View commit details
    Browse the repository at this point in the history
  75. cleanup external test

    Have external test wait for registry and repository to be available b efore continuing with the test
    YrrepNoj committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    87928c2 View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    e1b1df3 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2022

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

Commits on Sep 26, 2022

  1. Configuration menu
    Copy the full SHA
    09fc8c9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c3b006 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bc6e0b1 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Sep 26, 2022
    Configuration menu
    Copy the full SHA
    6c73284 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    849189d View commit details
    Browse the repository at this point in the history
  6. update go.mod and go.sum

    YrrepNoj committed Sep 26, 2022
    Configuration menu
    Copy the full SHA
    5dedef9 View commit details
    Browse the repository at this point in the history
  7. Change image cache to cache

    Racer159 committed Sep 26, 2022
    Configuration menu
    Copy the full SHA
    9eb755f View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2022

  1. Configuration menu
    Copy the full SHA
    ca4ee93 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Sep 27, 2022
    Configuration menu
    Copy the full SHA
    5dcccac View commit details
    Browse the repository at this point in the history
  3. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Sep 27, 2022
    Configuration menu
    Copy the full SHA
    e59ba38 View commit details
    Browse the repository at this point in the history
  4. WIP: working but ugly code

    Racer159 committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    a671fc3 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Sep 27, 2022
    Configuration menu
    Copy the full SHA
    c1a3893 View commit details
    Browse the repository at this point in the history
  6. Add a test for the git cache

    Racer159 committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    933bfc8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3738e13 View commit details
    Browse the repository at this point in the history
  8. Refactor (mostly) completed

    Racer159 committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    2efec48 View commit details
    Browse the repository at this point in the history
  9. Merge in external git repos

    Racer159 committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    fab4833 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2022

  1. Post-rebase refactors

    Racer159 committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    f1fc2f8 View commit details
    Browse the repository at this point in the history
  2. Small refactor fix

    Racer159 committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    4da8e17 View commit details
    Browse the repository at this point in the history
  3. Make regex ungreedy

    Racer159 committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    446366b View commit details
    Browse the repository at this point in the history
  4. Update docs and schema

    Racer159 committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    c306c49 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a174b02 View commit details
    Browse the repository at this point in the history
  6. Fix sha in test

    Racer159 committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    4722489 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Sep 28, 2022
    Configuration menu
    Copy the full SHA
    830eeba View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6239347 View commit details
    Browse the repository at this point in the history
  9. Fix test shasums

    Racer159 committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    173cd10 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    86917b5 View commit details
    Browse the repository at this point in the history
  11. Fix tests and sanitized URL

    Racer159 committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    dc9eff1 View commit details
    Browse the repository at this point in the history
  12. Merge branch '560-external-registry-and-repository' into 750-support-…

    …a-git-cache-directory-similar-to-the-image-cache-directory
    Racer159 authored Sep 28, 2022
    Configuration menu
    Copy the full SHA
    162b505 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2022

  1. perform hostname mutation on flux webhook update trigger if the git u…

    …rl hostname does not match the hostname in the zarfstate
    YrrepNoj committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    6b8df96 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    367040d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9530176 View commit details
    Browse the repository at this point in the history
  4. Tunnel Update

    jeff-mccoy authored Sep 29, 2022
    Configuration menu
    Copy the full SHA
    09f13ef View commit details
    Browse the repository at this point in the history
  5. Merge branch '560-external-registry-and-repository' into 750-support-…

    …a-git-cache-directory-similar-to-the-image-cache-directory
    Racer159 authored Sep 29, 2022
    Configuration menu
    Copy the full SHA
    6cd9c67 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    331b871 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Sep 29, 2022
    Configuration menu
    Copy the full SHA
    4e03281 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5abf944 View commit details
    Browse the repository at this point in the history
  9. Added named capture groups

    Racer159 committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    3a261c9 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    570935e View commit details
    Browse the repository at this point in the history
  11. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Sep 29, 2022
    Configuration menu
    Copy the full SHA
    e0c7cac View commit details
    Browse the repository at this point in the history
  12. Change to filepath.join

    Racer159 committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    d8b3ffe View commit details
    Browse the repository at this point in the history
  13. Update docs

    Racer159 committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    0e875b0 View commit details
    Browse the repository at this point in the history
  14. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    jeff-mccoy authored Sep 29, 2022
    Configuration menu
    Copy the full SHA
    59cc6fa View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2022

  1. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Sep 30, 2022
    Configuration menu
    Copy the full SHA
    39bb538 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d72d9f7 View commit details
    Browse the repository at this point in the history
  3. Simplify clear cache

    Racer159 committed Sep 30, 2022
    Configuration menu
    Copy the full SHA
    0c43e0c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9a92673 View commit details
    Browse the repository at this point in the history
  5. Fix docs and schema

    Racer159 committed Sep 30, 2022
    Configuration menu
    Copy the full SHA
    e31e775 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    91807a7 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Sep 30, 2022
    Configuration menu
    Copy the full SHA
    d3594c4 View commit details
    Browse the repository at this point in the history
  8. Fix merge issue

    Racer159 committed Sep 30, 2022
    Configuration menu
    Copy the full SHA
    bc27d26 View commit details
    Browse the repository at this point in the history
  9. Fix space problem

    Racer159 committed Sep 30, 2022
    Configuration menu
    Copy the full SHA
    f3d83cb View commit details
    Browse the repository at this point in the history
  10. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Sep 30, 2022
    Configuration menu
    Copy the full SHA
    8a29003 View commit details
    Browse the repository at this point in the history
  11. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    jeff-mccoy authored Sep 30, 2022
    Configuration menu
    Copy the full SHA
    0e1f107 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2022

  1. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    jeff-mccoy authored Oct 1, 2022
    Configuration menu
    Copy the full SHA
    8326311 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2022

  1. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    jeff-mccoy authored Oct 3, 2022
    Configuration menu
    Copy the full SHA
    2292c1c View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    jeff-mccoy authored Oct 3, 2022
    Configuration menu
    Copy the full SHA
    0ae9d5b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a23e878 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    Racer159 authored Oct 3, 2022
    Configuration menu
    Copy the full SHA
    ed9f9e2 View commit details
    Browse the repository at this point in the history
  5. Fix small docs error

    Racer159 committed Oct 3, 2022
    Configuration menu
    Copy the full SHA
    667c157 View commit details
    Browse the repository at this point in the history
  6. Remove proto from sha1sum

    Racer159 committed Oct 3, 2022
    Configuration menu
    Copy the full SHA
    e49ee3c View commit details
    Browse the repository at this point in the history
  7. Fix #6

    Racer159 committed Oct 3, 2022
    Configuration menu
    Copy the full SHA
    017919b View commit details
    Browse the repository at this point in the history
  8. Fix another issue

    Racer159 committed Oct 3, 2022
    Configuration menu
    Copy the full SHA
    b6904c7 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2022

  1. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    jeff-mccoy authored Oct 4, 2022
    Configuration menu
    Copy the full SHA
    6fee6ff View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into 750-support-a-git-cache-directory-similar-…

    …to-the-image-cache-directory
    jeff-mccoy authored Oct 4, 2022
    Configuration menu
    Copy the full SHA
    3b2086e View commit details
    Browse the repository at this point in the history
  3. Use OS temp path in tests

    Racer159 committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    b19152b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    937a286 View commit details
    Browse the repository at this point in the history
  5. replace string concat

    Racer159 committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    686ace8 View commit details
    Browse the repository at this point in the history
  6. Remove dogsledding

    Racer159 committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    a710060 View commit details
    Browse the repository at this point in the history
  7. Improve readability of code

    Racer159 committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    8801fc7 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    65c5b8b View commit details
    Browse the repository at this point in the history