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: jfrog/jfrog-cli-artifactory
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.6
Choose a base ref
...
head repository: jfrog/jfrog-cli-artifactory
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 11 commits
  • 349 files changed
  • 6 contributors

Commits on Nov 6, 2024

  1. Copy the full SHA
    3f907f0 View commit details

Commits on Nov 14, 2024

  1. Copy the full SHA
    4435ca5 View commit details

Commits on Dec 3, 2024

  1. Turn signing key to optional when creating EVD

    Turn signing key to optional when creating EVD
    oshratZairi authored Dec 3, 2024
    Copy the full SHA
    99351da View commit details

Commits on Dec 4, 2024

  1. Copy the full SHA
    9e98259 View commit details

Commits on Dec 8, 2024

  1. Copy the full SHA
    27e154a View commit details

Commits on Dec 11, 2024

  1. Copy the full SHA
    3f9ec02 View commit details

Commits on Dec 22, 2024

  1. Copy the full SHA
    3cf6d1f View commit details

Commits on Jan 20, 2025

  1. Copy the full SHA
    f7dbb9d View commit details

Commits on Jan 28, 2025

  1. Copy the full SHA
    bb6a289 View commit details

Commits on Jan 30, 2025

  1. Copy the full SHA
    c49fc23 View commit details
  2. Copy the full SHA
    01446cf View commit details
Showing 349 changed files with 29,317 additions and 146 deletions.
76 changes: 76 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
name: "🐛 Bug Report"
description: Create a report to help us improve
labels: [bug]
body:
- type: textarea
id: description
attributes:
label: Describe the bug
description: What is the problem? A clear and concise description of the bug.
validations:
required: true

- type: textarea
id: current
attributes:
label: Current behavior
description: |
Please include full errors, uncaught exceptions, screenshots, and relevant logs.
Using environment variable JFROG_CLI_LOG_LEVEL="DEBUG" upon running the command will provide more log information.
validations:
required: true

- type: textarea
id: reproduction
attributes:
label: Reproduction steps
description: |
Provide steps to reproduce the behavior.
validations:
required: false

- type: textarea
id: expected
attributes:
label: Expected behavior
description: |
What did you expect to happen?
validations:
required: false

- type: input
id: cli-core-version
attributes:
label: JFrog CLI-Core version
validations:
required: true

- type: input
id: cli-artifactory-version
attributes:
label: JFrog CLI-Artifactory version
validations:
required: true

- type: input
id: cli-version
attributes:
label: JFrog CLI version (if applicable)
description: using "jf --version"
validations:
required: false

- type: input
id: os-version
attributes:
label: Operating system type and version
validations:
required: true

- type: input
id: rt-version
attributes:
label: JFrog Artifactory version
validations:
required: false
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: ⭐️ Feature request
about: Suggest an idea for this project
title: ''
labels: feature request
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like to see**
A clear and concise description of the new feature.

**Describe alternatives you've considered**
If applicable, a clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: ❓ Question
about: Ask a question
title: ''
labels: question
assignees: ''

---
5 changes: 5 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- [ ] All [tests](https://github.com/jfrog/jfrog-cli-core#tests) passed. If this feature is not already covered by the tests, I added new tests.
- [ ] All [static analysis checks](https://github.com/jfrog/jfrog-cli-core/actions/workflows/analysis.yml) passed.
- [ ] This pull request is on the dev branch.
- [ ] I used gofmt for formatting the code before submitting the pull request.
-----
41 changes: 39 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -19,12 +19,49 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu, windows, macos ]

env:
GOPROXY: direct
GRADLE_OPTS: -Dorg.gradle.daemon=false
JFROG_CLI_LOG_LEVEL: "DEBUG"
steps:
- uses: actions/checkout@v4

- name: Setup Python3
uses: actions/setup-python@v5
with:
python-version: "3.x"

- name: Install pipenv & poetry
run: python -m pip install pipenv poetry

- name: Install NuGet
uses: nuget/setup-nuget@v2
with:
nuget-version: 6.x

- name: Install dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.x'

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

# Install Mono on Ubuntu to run nuget.exe (due to this issue on Ubuntu 24 that hasn't been fixed yet - https://github.com/NuGet/setup-nuget/issues/168)
- name: Install Mono on Ubuntu
if: matrix.os == 'ubuntu'
run: |
sudo apt-get update
sudo apt-get install -y apt-transport-https dirmngr gnupg ca-certificates
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt-get update
sudo apt-get install -y mono-complete
- name: Setup Go with cache
uses: jfrog/.github/actions/install-go-with-cache@main

- name: Tests
run: go test -v -race -timeout 0 -cover ./...
run: go test -v -race -cover ./...
Loading