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: defenseunicorns/uds-common
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.8.1
Choose a base ref
...
head repository: defenseunicorns/uds-common
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.8.2
Choose a head ref
  • 4 commits
  • 11 files changed
  • 4 contributors

Commits on Jul 22, 2024

  1. chore: fix the Zarf package renovate regex to the correct versionTemp…

    …late (#181)
    Racer159 authored Jul 22, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    272b502 View commit details

Commits on Jul 23, 2024

  1. chore: add additional install step to playwright install (#183)

    Racer159 authored Jul 23, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    41855e4 View commit details
  2. chore(deps): update uds common support dependencies (#179)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Wayne Starr <Racer159@users.noreply.github.com>
    Co-authored-by: Wayne Starr <me@racer159.com>
    3 people authored Jul 23, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e1a0d5a View commit details
  3. chore(main): release 0.8.2 (#182)

    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Jul 23, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    58f7e05 View commit details
Showing with 36 additions and 20 deletions.
  1. +6 −0 .github/actions/playwright/action.yaml
  2. +5 −4 .github/actions/setup/action.yaml
  3. +1 −1 .release-please-manifest.json
  4. +3 −3 .vscode/settings.json
  5. +9 −0 CHANGELOG.md
  6. +4 −4 README.md
  7. +2 −2 bundle/uds-bundle.yaml
  8. +2 −2 config/renovate.json5
  9. +1 −1 tasks.yaml
  10. +2 −2 tasks/setup.yaml
  11. +1 −1 zarf.yaml
6 changes: 6 additions & 0 deletions .github/actions/playwright/action.yaml
Original file line number Diff line number Diff line change
@@ -33,3 +33,9 @@ runs:
if: steps.playwright-cache.outputs.cache-hit != 'true'
working-directory: ./${{ inputs.testDir }}
shell: bash

- name: Install playwright dependencies if needed
run: npx playwright install-deps
if: steps.playwright-cache.outputs.cache-hit == 'true'
working-directory: ./${{ inputs.testDir }}
shell: bash
9 changes: 5 additions & 4 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ inputs:
udsCliVersion:
description: The uds-cli version to install
# renovate: datasource=github-tags depName=defenseunicorns/uds-cli versioning=semver
default: 0.13.0
default: 0.13.1
chainguardIdentity:
description: ID for Chainguard Identity to assume

@@ -20,7 +20,8 @@ runs:
steps:
- name: Install k3d
shell: bash
run: curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | TAG=v5.6.3 bash
# renovate: datasource=github-tags depName=k3d-io/k3d versioning=semver
run: curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | TAG=v5.7.2 bash

- name: Set UDS CLI Arch
id: setUdsCliArch
@@ -32,10 +33,10 @@ runs:
run: curl -o /usr/local/bin/uds -L https://github.com/defenseunicorns/uds-cli/releases/download/v${{ inputs.udsCliVersion }}/uds-cli_v${{ inputs.udsCliVersion }}_Linux_${{steps.setUdsCliArch.outputs.ARCH}} && chmod +x /usr/local/bin/uds

- name: Install Lula
uses: defenseunicorns/lula-action/setup@69144c85bc2122af8cbba8a494085fd1190ba38a
uses: defenseunicorns/lula-action/setup@939e0a3d3a5f72321245a040207152dced5238f2
with:
# renovate: datasource=github-tags depName=defenseunicorns/lula versioning=semver-coerced
version: v0.4.2
version: v0.4.3

- name: Iron Bank Login
if: ${{ inputs.registry1Username != '' }}
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.8.1"
".": "0.8.2"
}
6 changes: 3 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -8,15 +8,15 @@
]
},
"yaml.schemas": {
"https://raw.githubusercontent.com/defenseunicorns/uds-cli/v0.13.0/uds.schema.json": [
"https://raw.githubusercontent.com/defenseunicorns/uds-cli/v0.13.1/uds.schema.json": [
"uds-bundle.yaml"
],
"https://raw.githubusercontent.com/defenseunicorns/uds-cli/v0.13.0/tasks.schema.json": [
"https://raw.githubusercontent.com/defenseunicorns/uds-cli/v0.13.1/tasks.schema.json": [
"tasks.yaml",
"tasks/**/*.yaml",
"src/**/validate.yaml"
],
"https://raw.githubusercontent.com/defenseunicorns/zarf/v0.36.0/zarf.schema.json": [
"https://raw.githubusercontent.com/defenseunicorns/zarf/v0.36.1/zarf.schema.json": [
"zarf.yaml"
]
},
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.8.2](https://github.com/defenseunicorns/uds-common/compare/v0.8.1...v0.8.2) (2024-07-23)


### Miscellaneous

* add additional install step to playwright install ([#183](https://github.com/defenseunicorns/uds-common/issues/183)) ([41855e4](https://github.com/defenseunicorns/uds-common/commit/41855e42bd73c67109ed42935f1e67ab7305ddda))
* **deps:** update uds common support dependencies ([#179](https://github.com/defenseunicorns/uds-common/issues/179)) ([e1a0d5a](https://github.com/defenseunicorns/uds-common/commit/e1a0d5acba2c0cc083af6ac2823d9cf068008453))
* fix the Zarf package renovate regex to the correct versionTemplate ([#181](https://github.com/defenseunicorns/uds-common/issues/181)) ([272b502](https://github.com/defenseunicorns/uds-common/commit/272b502fa2f36b3703f9cdcbdbfb579ce437a0d7))

## [0.8.1](https://github.com/defenseunicorns/uds-common/compare/v0.8.0...v0.8.1) (2024-07-18)


8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -15,10 +15,10 @@ Pinning to a specific tag of a task (rather than `main`) with renovate watching

## Supported Tool Versions

- UDS CLI: 0.13.0
- UDS Core: 0.24.0
- K3D: 5.7.1
- Lula: 0.4.2
- UDS CLI: 0.13.1
- UDS Core: 0.24.1
- K3D: 5.7.2
- Lula: 0.4.3

NOTE: Zarf is not required for tasks in this repo, the vendored zarf (`uds zarf`) included with UDS CLI is used instead to prevent version mismatches.

4 changes: 2 additions & 2 deletions bundle/uds-bundle.yaml
Original file line number Diff line number Diff line change
@@ -3,12 +3,12 @@ metadata:
name: test
description: The testing UDS bundle
# x-release-please-start-version
version: 0.8.1
version: 0.8.2
# x-release-please-end

packages:
- name: podinfo
path: ../
# x-release-please-start-version
ref: 0.8.1
ref: 0.8.2
# x-release-please-end
4 changes: 2 additions & 2 deletions config/renovate.json5
Original file line number Diff line number Diff line change
@@ -249,8 +249,8 @@
"(?m)repository: [\"']?(?<depName>.+?)[\"']?$(.)*(\n.*){0,2}ref: [\"']?(?<currentValue>.+?)[\"']?$"
],
"datasourceTemplate": "docker",
// Match versioning used on UDS packages. Test: https://regex101.com/r/BGkYHX/3
"versioning": "regex:^v?(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(-uds\\.(?<build>\\d)(-.*?)?)?(.*?)?$"
// Match versioning used on UDS packages. Test: https://regex101.com/r/BGkYHX/4
"versioningTemplate": "regex:^v?(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(-uds\\.(?<build>\\d))?(-(?<compatibility>\\w+)?)?(.*?)?$"
}
],
"packageRules": [
2 changes: 1 addition & 1 deletion tasks.yaml
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ tasks:
task: publish:package
with:
# x-release-please-start-version
version: 0.8.1
version: 0.8.2
# x-release-please-end

- name: test
4 changes: 2 additions & 2 deletions tasks/setup.yaml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ tasks:
version:
description: The version of k3d-core-slim-dev to deploy
# renovate: datasource=github-tags depName=defenseunicorns/uds-core versioning=semver
default: 0.24.0
default: 0.24.1
insecure_keycloak_admin:
description: Automatically set a keycloak admin username / password
default: "true"
@@ -17,7 +17,7 @@ tasks:
version:
description: The version of k3d-core-demo to deploy
# renovate: datasource=github-tags depName=defenseunicorns/uds-core versioning=semver
default: 0.24.0
default: 0.24.1
insecure_keycloak_admin:
description: Automatically set a keycloak admin username / password
default: "true"
2 changes: 1 addition & 1 deletion zarf.yaml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ kind: ZarfPackageConfig
metadata:
name: podinfo
# x-release-please-start-version
version: 0.8.1
version: 0.8.2
# x-release-please-end

components: