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

fix: refactor create stages into separate lib #2223

Merged
merged 217 commits into from
Mar 13, 2024

Commits on Jan 11, 2024

  1. Initial commit to split cdToBaseDir into a new creator package

    This introduces the Creator interface to be used as the source of truth
    for package create operations.
    lucasrod16 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    26e1d6d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    510fa92 View commit details
    Browse the repository at this point in the history
  3. Fix lint warnings

    lucasrod16 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    f26e88f View commit details
    Browse the repository at this point in the history
  4. Remove deprecated migrations logic from readZarfYAML

    deprecated.MigrateComponent is called in composeComponents
    so we should be able to remove this duplicate logic
    lucasrod16 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    83a3cf2 View commit details
    Browse the repository at this point in the history
  5. Decouple running deprecated migrations and adding package warnings fr…

    …om readZarfYAML
    
    The goal here is separation of concerns
    lucasrod16 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    f8e6569 View commit details
    Browse the repository at this point in the history
  6. Move legacy layout warning logic to runMigrations

    Goal here is separation of concerns
    lucasrod16 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    99cb14e View commit details
    Browse the repository at this point in the history
  7. Extract set package arch logic to new receiver method

    Use utils.ReadYaml in place of readZarfYAML
    lucasrod16 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    b5420c0 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2024

  1. Configuration menu
    Copy the full SHA
    80fd2ec View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8e9790b View commit details
    Browse the repository at this point in the history
  3. Revert "Split reading zarf.yaml and setting arch apart"

    This reverts commit 8e9790b.
    lucasrod16 committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    fbda210 View commit details
    Browse the repository at this point in the history
  4. Split reading zarf.yaml and setting arch apart

    Ensure ReadYaml is passed the correct path
    lucasrod16 committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    cef3660 View commit details
    Browse the repository at this point in the history
  5. Add a Loader interface for loading package definitions on create

    "Normal" packages and skeleton packages require different
    loading processes, so using an interface allows us to
    have two separate implementations for them.
    
    This makes the load logic easier to reason about and easier to maintain.
    
    Loader is defined in package packager because most of the operations
    require direct access to the top-level Packager struct fields.
    lucasrod16 committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    d7b8eed View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    902d966 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4e56132 View commit details
    Browse the repository at this point in the history
  8. Move Creator interface to packager package

    Create Assembler interface
    
    Creator interface embeds Loader and Assembler interfaces
    to allow various create methods to be accessed through a single interface.
    
    Create operations are (and should be) closely coupled to Packager,
    so it makes sense to have create functions in the packager package.
    
    Modularity, separation of concerns, library usage, etc can be achieved
    through the use of these interfaces while remaining in package packager.
    lucasrod16 committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    c5e83df View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b5d37cb View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    47dc136 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f2b2f03 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f94c7a0 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    d84ccd4 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ff5e3ea View commit details
    Browse the repository at this point in the history
  15. Cleanup for consistency

    lucasrod16 committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    c2daf04 View commit details
    Browse the repository at this point in the history
  16. Remove nested interfaces to reduce unnecessary complexity

    Add CdToBaseDir to Creator interface so that it is grouped
    together with other create-specific operations.
    lucasrod16 committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    4400e10 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    df8f4a7 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    8e6e5b5 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. Embed the Creator interface to encapsulate create logic in Packager

    Adds a new modifier WithCreator() that is intended to be passed
    in as an argument when instantiating a new Packager instance.
    lucasrod16 committed Jan 16, 2024
    Configuration menu
    Copy the full SHA
    460f078 View commit details
    Browse the repository at this point in the history
  2. Undo creator changes

    lucasrod16 committed Jan 16, 2024
    Configuration menu
    Copy the full SHA
    9becd35 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bf6d4b0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f1fa5c7 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. Configuration menu
    Copy the full SHA
    0a19f3a View commit details
    Browse the repository at this point in the history
  2. Fix create

    lucasrod16 committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    dbe2cd4 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. Configuration menu
    Copy the full SHA
    1a6503d View commit details
    Browse the repository at this point in the history
  2. Fix package templating

    lucasrod16 committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    5ee5c89 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ee7440c View commit details
    Browse the repository at this point in the history
  4. Fix ReloadYamlTemplate

    lucasrod16 committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    9b108e9 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2024

  1. Ensure package arch is set

    lucasrod16 committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    41cb8a8 View commit details
    Browse the repository at this point in the history
  2. Use archiver/v3

    lucasrod16 committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    15b283b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5ccfdee View commit details
    Browse the repository at this point in the history
  4. Fix ProcessExtensions bug

    lucasrod16 committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    90c34cd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7a08474 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8df5a39 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8dddf3b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d9188f4 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    72e2181 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f33b700 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    53107fa View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    16ca3e8 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    08ca541 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    1bfb467 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

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

Commits on Jan 24, 2024

  1. Progress

    lucasrod16 committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    797c6da View commit details
    Browse the repository at this point in the history
  2. Merge main

    lucasrod16 committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    bc9860f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5250f34 View commit details
    Browse the repository at this point in the history
  4. Fix generateChecksums

    lucasrod16 committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    3381c3d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d8ab516 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9118917 View commit details
    Browse the repository at this point in the history
  7. Fix package signing

    lucasrod16 committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    a9a6846 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    54425bb View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ab5abc5 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    6ba4916 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Configuration menu
    Copy the full SHA
    b935015 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9fb95af View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6fb3881 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e0f6830 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c6fd2a1 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2024

  1. Use ZarfPackage struct instead of pointers in creator functions

    Pass ZarfPackage in as argument to Assemble and Output
    lucasrod16 committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    05010a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    03a55b4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    825f531 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a378a84 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. Configuration menu
    Copy the full SHA
    52263a9 View commit details
    Browse the repository at this point in the history
  2. Reduce dependency on PackagerConfig in Creator implementations

    Move logic for reading zarf.yaml into memory to LoadPackageDefinition()
    lucasrod16 committed Jan 31, 2024
    Configuration menu
    Copy the full SHA
    fb187a6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    def07e2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2524bcc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8b945c6 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2024

  1. Fix dev deploy

    lucasrod16 committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    1867cea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a6b3cea View commit details
    Browse the repository at this point in the history
  3. Remove creator.CdToBaseDir

    Set differential package path in creator.New instead
    lucasrod16 committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    fb789d7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f36dda8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    10c7bb1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1768143 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f7ddb70 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. Configuration menu
    Copy the full SHA
    068101a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e84dd48 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ec0dc95 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5e5cccf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b92d045 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bb658fc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    db32f78 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    72a3318 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ee81fc4 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    b79329c View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Configuration menu
    Copy the full SHA
    5e1e8e2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1b22b64 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    90d7d7f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0cbd40f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    20d435a View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2024

  1. Configuration menu
    Copy the full SHA
    92b7942 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd9446c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6c6935c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    086ec1e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7b97d15 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    44e663a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c2978b5 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. Configuration menu
    Copy the full SHA
    6338b0d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2502161 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f0c6ccc View commit details
    Browse the repository at this point in the history
  4. Move pp.addSignature logic to pp.SignPackage

    Refactor TestPackageFiles() to use subtests and run in parallel
    lucasrod16 committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    f36eeb4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7c1480c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    aa5d107 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8a02c39 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2d6ea9c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8d281de View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    0bca3e0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    0533fdd View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Configuration menu
    Copy the full SHA
    a1a6c46 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b642690 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e958ad9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    79cdf01 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f182d25 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    501dcdf View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. Configuration menu
    Copy the full SHA
    75e516b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e2b7444 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dd952a9 View commit details
    Browse the repository at this point in the history
  4. Update src/pkg/packager/creator/skeleton.go

    Co-authored-by: razzle <harry@razzle.cloud>
    lucasrod16 and Noxsios committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    26e2c1f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5ab9da4 View commit details
    Browse the repository at this point in the history
  6. Merge branch '2188-refactor-create-stages-into-separate-lib' of https…

    …://github.com/defenseunicorns/zarf into 2188-refactor-create-stages-into-separate-lib
    lucasrod16 committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    579782d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2758b2f View commit details
    Browse the repository at this point in the history
  8. lint

    lucasrod16 committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    c0a6388 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8595e1f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fdeb7a4 View commit details
    Browse the repository at this point in the history
  11. Fix prepare logic

    lucasrod16 committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    0ac00cf View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    da83c69 View commit details
    Browse the repository at this point in the history
  13. Set pkg arch in LoadPackageDefinition

    Set pkg.Build.Differential in LoadPackageDefinition
    Call setPackageMetadata() in Output()
    lucasrod16 committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    7f26165 View commit details
    Browse the repository at this point in the history
  14. lint

    lucasrod16 committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    4b77a90 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    b5a05ca View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    038650a View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. Configuration menu
    Copy the full SHA
    1b76715 View commit details
    Browse the repository at this point in the history
  2. Veryify to verify

    lucasrod16 committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    34384a9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ba92f70 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c2581c3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a25d584 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    41bb66b View commit details
    Browse the repository at this point in the history
  7. Bring back IsTarball

    lucasrod16 committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    0a49820 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d4e9e85 View commit details
    Browse the repository at this point in the history
  9. Update src/pkg/layout/package.go

    Co-authored-by: Austin Abro <37223396+AustinAbro321@users.noreply.github.com>
    lucasrod16 and AustinAbro321 committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    9a4a8be View commit details
    Browse the repository at this point in the history
  10. Update src/pkg/layout/package_test.go

    Co-authored-by: Austin Abro <37223396+AustinAbro321@users.noreply.github.com>
    lucasrod16 and AustinAbro321 committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    b1746d1 View commit details
    Browse the repository at this point in the history
  11. Merge branch '2188-refactor-create-stages-into-separate-lib' of https…

    …://github.com/defenseunicorns/zarf into 2188-refactor-create-stages-into-separate-lib
    lucasrod16 committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    849b162 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    a4a90dd View commit details
    Browse the repository at this point in the history
  13. Apply PR feedback

    lucasrod16 committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    6903909 View commit details
    Browse the repository at this point in the history
  14. lint

    lucasrod16 committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    12bb5dd View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2024

  1. Configuration menu
    Copy the full SHA
    f013bbf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f804d07 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a4e160f View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2024

  1. Configuration menu
    Copy the full SHA
    dc6d5e3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bdcd265 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5139b88 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

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

    lucasrod16 committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    9ae12d5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9f080fc View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

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

Commits on Feb 20, 2024

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

Commits on Feb 21, 2024

  1. Configuration menu
    Copy the full SHA
    e5b53f0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a3727c3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4357e44 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

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

Commits on Feb 23, 2024

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

Commits on Feb 26, 2024

  1. Configuration menu
    Copy the full SHA
    4e95244 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    11abf45 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. Configuration menu
    Copy the full SHA
    09ef713 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6a34119 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    77c2535 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c533353 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f3efb76 View commit details
    Browse the repository at this point in the history
  6. Update src/types/packager.go

    Co-authored-by: razzle <harry@razzle.cloud>
    lucasrod16 and Noxsios committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    cabb9d2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a128a2e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a8c4d11 View commit details
    Browse the repository at this point in the history
  9. make docs-and-schema

    lucasrod16 committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    b40aa62 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    60d5b1a View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Configuration menu
    Copy the full SHA
    bd7b18a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    551c0ea View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    db52da1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    17f34be View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a7a93a0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4bd3aca View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1a322ff View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4a459ff View commit details
    Browse the repository at this point in the history
  9. Fix ReadZarfYAML error

    lucasrod16 committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    eccb085 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

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

Commits on Mar 4, 2024

  1. Configuration menu
    Copy the full SHA
    4c175d3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f8a67f6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6b9f7a0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    77a8259 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

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

Commits on Mar 7, 2024

  1. Configuration menu
    Copy the full SHA
    00a226f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    69472cf View commit details
    Browse the repository at this point in the history
  3. Fix pkg var in FindImages

    lucasrod16 committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    b2b9446 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8f13467 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Configuration menu
    Copy the full SHA
    3a42c7e View commit details
    Browse the repository at this point in the history
  2. update to keep in sync

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    c41f5e9 View commit details
    Browse the repository at this point in the history
  3. use build instead of metadata

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    1ad5e26 View commit details
    Browse the repository at this point in the history
  4. dry

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    de2e1d7 View commit details
    Browse the repository at this point in the history
  5. dry

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    ba17472 View commit details
    Browse the repository at this point in the history
  6. going back on my word

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    653b328 View commit details
    Browse the repository at this point in the history
  7. going back on my word

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    38b3150 View commit details
    Browse the repository at this point in the history
  8. going back on my word

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    42f3d96 View commit details
    Browse the repository at this point in the history
  9. file perms

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    9bd4c04 View commit details
    Browse the repository at this point in the history
  10. put cleanup back in

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    8b25731 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    be5dcef View commit details
    Browse the repository at this point in the history
  12. fix what i broke

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    8748b0c View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Configuration menu
    Copy the full SHA
    fd4a139 View commit details
    Browse the repository at this point in the history
  2. remove p.arch

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    6fa3dd7 View commit details
    Browse the repository at this point in the history
  3. keep warnings where they belong

    Signed-off-by: razzle <harry@razzle.cloud>
    Noxsios committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    bbadddf View commit details
    Browse the repository at this point in the history
  4. Update src/pkg/packager/deploy.go

    Co-authored-by: Austin Abro <37223396+AustinAbro321@users.noreply.github.com>
    Noxsios and AustinAbro321 committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    a5d3566 View commit details
    Browse the repository at this point in the history