Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Azure/dalec
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.1
Choose a base ref
...
head repository: Azure/dalec
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.11.2
Choose a head ref
  • 6 commits
  • 14 files changed
  • 3 contributors

Commits on Dec 10, 2024

  1. Remove warning message about skipping build targets

    This warning was added in 9a2b35e to
    try and help reduce confusion if the spec contains targets and therefore
    we skip loading other targets.
    
    As it turns out, its a bit overzealous if you specfy anything in the
    `targets` section:
    
        8 warnings found (use docker --debug to expand):
         - Skipping loading of built-in target "bullseye" since it is not in the list of targets in the spec
         - Skipping loading of built-in target "mariner2" since it is not in the list of targets in the spec
         - Skipping loading of built-in target "azlinux3" since it is not in the list of targets in the spec
         - Skipping loading of built-in target "windowscross" since it is not in the list of targets in the spec
         - Skipping loading of built-in target "bionic" since it is not in the list of targets in the spec
         - Skipping loading of built-in target "focal" since it is not in the list of targets in the spec
         - Skipping loading of built-in target "noble" since it is not in the list of targets in the spec
         - Skipping loading of built-in target "bookworm" since it is not in the list of targets in the spec
    
    This is probably more confusing and will just git bigger as we add
    support for more things.
    
    Signed-off-by: Brian Goff <cpuguy83@gmail.com>
    cpuguy83 committed Dec 10, 2024
    Configuration menu
    Copy the full SHA
    caed08a View commit details
    Browse the repository at this point in the history
  2. typo

    DannyBrito authored and cpuguy83 committed Dec 10, 2024
    Configuration menu
    Copy the full SHA
    ed7390b View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2024

  1. Doc fixes (#468)

    * docs: fix apt repo example
    
    Apt repo keys are required to be readable by a non-root user.
    By default http sources have 0o600 permissions which will cause an error
    when trying to read the repo.
    
    We didn't see this when creating this example because the above
    mentioned error did not directly cause a non-zero exit code.
    Instead it only caused an issue if the package you are trying to install
    is only available in that repo AND is not cached locally already.
    
    Signed-off-by: Brian Goff <cpuguy83@gmail.com>
    
    * docs: Improve targets description
    
    Signed-off-by: Brian Goff <cpuguy83@gmail.com>
    
    * docs: Fix bad copy/paste for some artifact default permissions
    
    Signed-off-by: Brian Goff <cpuguy83@gmail.com>
    
    * README: Add link to supported targets
    
    Signed-off-by: Brian Goff <cpuguy83@gmail.com>
    
    ---------
    
    Signed-off-by: Brian Goff <cpuguy83@gmail.com>
    cpuguy83 authored Dec 11, 2024
    Configuration menu
    Copy the full SHA
    17144a1 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2024

  1. build(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0 (#473)

    Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.27.0 to 0.31.0.
    - [Commits](golang/crypto@v0.27.0...v0.31.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/crypto
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Dec 12, 2024
    Configuration menu
    Copy the full SHA
    dfca9e8 View commit details
    Browse the repository at this point in the history
  2. build(deps): bump nanoid from 3.3.7 to 3.3.8 in /website

    Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.7 to 3.3.8.
    - [Release notes](https://github.com/ai/nanoid/releases)
    - [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
    - [Commits](ai/nanoid@3.3.7...3.3.8)
    
    ---
    updated-dependencies:
    - dependency-name: nanoid
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and cpuguy83 committed Dec 12, 2024
    Configuration menu
    Copy the full SHA
    1c69008 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2024

  1. Fix issue mounting files

    Mounts were using the destination path as the source name when
    generating a source, this made it so mounts would only work correctly if
    mounted at the root of the filesystem since source names generally should
    not have path separators.
    
    Signed-off-by: Brian Goff <cpuguy83@gmail.com>
    cpuguy83 committed Dec 14, 2024
    Configuration menu
    Copy the full SHA
    c404433 View commit details
    Browse the repository at this point in the history
Loading