Skip to content

Conversation

@naveenku-jfrog
Copy link
Contributor

@naveenku-jfrog naveenku-jfrog commented Sep 15, 2025

  • All tests passed. If this feature is not already covered by the tests, I added new tests.
  • All static analysis checks passed.
  • This pull request is on the master branch.
  • I used gofmt for formatting the code before submitting the pull request.

Description:
Added APIs for handling statistics related.

Depend on other PRs: Yes

  1. Feature/rteco 381 fetch stats jfrog-cli#3090
  2. Added code related to jf stats command jfrog-cli-core#1450

@naveenku-jfrog naveenku-jfrog added the safe to test Approve running integration tests on a pull request label Sep 15, 2025
@github-actions github-actions bot removed the safe to test Approve running integration tests on a pull request label Sep 15, 2025
@github-actions github-actions bot removed the safe to test Approve running integration tests on a pull request label Sep 16, 2025
if err != nil {
return nil, NewGenericError("RELEASE-BUNDLES", err.Error())
}
log.Debug("Release Bundle API response:", resp.Status)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need all these debug logs?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's how all other API call are logged.

@github-actions github-actions bot added the safe to test Approve running integration tests on a pull request label Sep 19, 2025
@naveenku-jfrog naveenku-jfrog added safe to test Approve running integration tests on a pull request and removed safe to test Approve running integration tests on a pull request labels Sep 19, 2025
@github-actions github-actions bot removed the safe to test Approve running integration tests on a pull request label Sep 19, 2025
ehl-jf and others added 14 commits September 26, 2025 10:42
* Auto approve/merge dependabot PRs

* Mark all issues as staled
Bumps the go group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/ProtonMail/go-crypto](https://github.com/ProtonMail/go-crypto) | `1.1.6` | `1.3.0` |
| [github.com/forPelevin/gomoji](https://github.com/forPelevin/gomoji) | `1.3.0` | `1.3.1` |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.14.0` | `5.16.2` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.10.0` | `1.11.1` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.36.0` | `0.37.0` |


Updates `github.com/ProtonMail/go-crypto` from 1.1.6 to 1.3.0
- [Release notes](https://github.com/ProtonMail/go-crypto/releases)
- [Commits](ProtonMail/go-crypto@v1.1.6...v1.3.0)

Updates `github.com/forPelevin/gomoji` from 1.3.0 to 1.3.1
- [Release notes](https://github.com/forPelevin/gomoji/releases)
- [Commits](forPelevin/gomoji@v1.3.0...v1.3.1)

Updates `github.com/go-git/go-git/v5` from 5.14.0 to 5.16.2
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](go-git/go-git@v5.14.0...v5.16.2)

Updates `github.com/stretchr/testify` from 1.10.0 to 1.11.1
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.10.0...v1.11.1)

Updates `golang.org/x/crypto` from 0.36.0 to 0.37.0
- [Commits](golang/crypto@v0.36.0...v0.37.0)

---
updated-dependencies:
- dependency-name: github.com/ProtonMail/go-crypto
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/forPelevin/gomoji
  dependency-version: 1.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/go-git/go-git/v5
  dependency-version: 5.16.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: golang.org/x/crypto
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#1231)

Bumps the go group with 1 update: [golang.org/x/crypto](https://github.com/golang/crypto).


Updates `golang.org/x/crypto` from 0.37.0 to 0.42.0
- [Commits](golang/crypto@v0.37.0...v0.42.0)

---
updated-dependencies:
- dependency-name: golang.org/x/crypto
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Add support for apptrust manager and getApplicationDetail API

* Add Get Application Promotion API

* Add ApptrustServiceManagerInterface for mockable testing
@ehl-jf ehl-jf added the safe to test Approve running integration tests on a pull request label Sep 26, 2025
@github-actions github-actions bot removed the safe to test Approve running integration tests on a pull request label Sep 26, 2025
@ehl-jf ehl-jf added the safe to test Approve running integration tests on a pull request label Sep 26, 2025
@github-actions github-actions bot removed the safe to test Approve running integration tests on a pull request label Sep 26, 2025
@ehl-jf ehl-jf added the safe to test Approve running integration tests on a pull request label Sep 29, 2025
@github-actions github-actions bot removed the safe to test Approve running integration tests on a pull request label Sep 29, 2025
@github-actions
Copy link
Contributor

👍 Frogbot scanned this pull request and did not find any new security issues.


@naveenku-jfrog naveenku-jfrog merged commit 0189b74 into jfrog:master Oct 7, 2025
31 checks passed
naveenku-jfrog added a commit to naveenku-jfrog/jfrog-client-go that referenced this pull request Oct 7, 2025
Added API related to JF stats command
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants