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

chore: Update module github.com/nobl9/nobl9-go to v0.79.0 #87

Merged
merged 1 commit into from
Mar 27, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 27, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/nobl9/nobl9-go v0.78.0 -> v0.79.0 age adoption passing confidence

Release Notes

nobl9/nobl9-go (github.com/nobl9/nobl9-go)

v0.79.0

Compare Source

What's Changed

⚠️ Breaking Changes

  • feat: PC-12012 Composite SLO (#​280) @​marcinlawnik

    Indicator in SLO Spec changed to pointer, as it is not needed for
    Composite 2.0 SLOs

🚀 Features

  • feat: add GetUser() to return current user (#​343) @​shubhindia

    Added GetUser method for Client which returns the current session
    user read from JWT token.

  • feat: PC-11745 Add Primary to Objective (#​330) @​natalialanga

    Expose new field 'primary' to highlight a specific objective in an SLO.
    This is an experimental feature and not yet available.

  • feat: PC-11485 Expose Jitter, Timeout and Interval in Direct/Agent (#​314) @​dawidwisn

    New fields in Agent/Direct struct.
    Interval The query interval sets how often the Agent queries a data
    source.
    Timeout Timeout refers to the duration the Agent will wait for a
    response after sending a request to a data source.
    Jitter Jitter defines a maximum random delay for each call to avoid
    spikes to a data source.

  • feat: PC-12012 Composite SLO (#​280) @​marcinlawnik

    New fields in SLO struct for upcoming Composite feature.
    Added validation of new fields.
    It will be available in an upcoming Nobl9 platform release.

  • feat: PC-12274 PC-12009 Move updatedAt to status, add createdBy to spec (#​313) @​lukasz-dobek

    UpdatedAt field is included in SLO Status. It gives information about
    when was the last time given SLO was updated.
    CreatedBy field is included in SLO Spec. It gives information about
    user ID who initially created a given SLO.

  • feat: PC-12274 Add updatedAt to SLO Spec (#​310) @​lukasz-dobek

    updatedAt field is now included in SLO Spec. It gives information
    about when was the last time given SLO was updated.

  • feat: add Lightstep URL [PC-12053] (#​295) @​kuklyy

    Ligthstep integration now supports custom API URLs for both Agent and
    Direct. It will be available once the Nobl9 platform version 1.70.0 is
    released.

  • feat: PC-11815 add GetBudgetAdjustments endpoint function (#​287) @​kubaceg

    Add GetBudgetAdjustments endpoint

  • feat: Switch to new major JWT library and new JWK handler (#​288) @​nieomylnieja

    Underlying JWT handler chain has been changed. This should not influence
    how the existing or new programs run in general. However, specific
    errors returned by SDK when there's a problem with parsing or verifying
    the token have been changed.

🐞 Bug Fixes

🧰 Maintenance

38 changes

Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from nieomylnieja as a code owner March 27, 2024 23:35
@renovate renovate bot enabled auto-merge (squash) March 27, 2024 23:35
@renovate renovate bot merged commit 698a19b into main Mar 27, 2024
7 checks passed
@renovate renovate bot deleted the renovate_minor-and-patch-golang-dependencies branch March 27, 2024 23:36
BSski pushed a commit that referenced this pull request May 7, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/nobl9/nobl9-go](https://togithub.com/nobl9/nobl9-go) |
`v0.78.0` -> `v0.79.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fnobl9%2fnobl9-go/v0.79.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fnobl9%2fnobl9-go/v0.79.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fnobl9%2fnobl9-go/v0.78.0/v0.79.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fnobl9%2fnobl9-go/v0.78.0/v0.79.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>nobl9/nobl9-go (github.com/nobl9/nobl9-go)</summary>

###
[`v0.79.0`](https://togithub.com/nobl9/nobl9-go/releases/tag/v0.79.0)

[Compare
Source](https://togithub.com/nobl9/nobl9-go/compare/v0.78.0...v0.79.0)

### What's Changed

#### ⚠️  Breaking Changes

- feat: PC-12012 Composite SLO
([#&#8203;280](https://togithub.com/nobl9/nobl9-go/issues/280))
[@&#8203;marcinlawnik](https://togithub.com/marcinlawnik)
> **Indicator in SLO Spec changed to pointer, as it is not needed for
    > Composite 2.0 SLOs**

#### 🚀 Features

- feat: add GetUser() to return current user
([#&#8203;343](https://togithub.com/nobl9/nobl9-go/issues/343))
[@&#8203;shubhindia](https://togithub.com/shubhindia)
> Added `GetUser` method for `Client` which returns the current session
    > user read from JWT token.
- feat: PC-11745 Add Primary to Objective
([#&#8203;330](https://togithub.com/nobl9/nobl9-go/issues/330))
[@&#8203;natalialanga](https://togithub.com/natalialanga)
> Expose new field 'primary' to highlight a specific objective in an
SLO.
    > This is an experimental feature and not yet available.
- feat: PC-11485 Expose Jitter, Timeout and Interval in Direct/Agent
([#&#8203;314](https://togithub.com/nobl9/nobl9-go/issues/314))
[@&#8203;dawidwisn](https://togithub.com/dawidwisn)
    > New fields in Agent/Direct struct.
> `Interval` The query interval sets how often the Agent queries a data
    > source.
    > `Timeout` Timeout refers to the duration the Agent will wait for a
    > response after sending a request to a data source.
> `Jitter` Jitter defines a maximum random delay for each call to avoid
    > spikes to a data source.
- feat: PC-12012 Composite SLO
([#&#8203;280](https://togithub.com/nobl9/nobl9-go/issues/280))
[@&#8203;marcinlawnik](https://togithub.com/marcinlawnik)
    > New fields in SLO struct for upcoming Composite feature.
    > Added validation of new fields.
    > It will be available in an upcoming Nobl9 platform release.
- feat: PC-12274 PC-12009 Move updatedAt to status, add createdBy to
spec ([#&#8203;313](https://togithub.com/nobl9/nobl9-go/issues/313))
[@&#8203;lukasz-dobek](https://togithub.com/lukasz-dobek)
> `UpdatedAt` field is included in SLO Status. It gives information
about
    > when was the last time given SLO was updated.
> `CreatedBy` field is included in SLO Spec. It gives information about
    > user ID who initially created a given SLO.
- feat: PC-12274 Add updatedAt to SLO Spec
([#&#8203;310](https://togithub.com/nobl9/nobl9-go/issues/310))
[@&#8203;lukasz-dobek](https://togithub.com/lukasz-dobek)
> `updatedAt` field is now included in SLO Spec. It gives information
    > about when was the last time given SLO was updated.
- feat: add Lightstep URL \[PC-12053]
([#&#8203;295](https://togithub.com/nobl9/nobl9-go/issues/295))
[@&#8203;kuklyy](https://togithub.com/kuklyy)
> Ligthstep integration now supports custom API URLs for both Agent and
> Direct. It will be available once the Nobl9 platform version 1.70.0 is
    > released.
- feat: PC-11815 add GetBudgetAdjustments endpoint function
([#&#8203;287](https://togithub.com/nobl9/nobl9-go/issues/287))
[@&#8203;kubaceg](https://togithub.com/kubaceg)
    > Add `GetBudgetAdjustments` endpoint
- feat: Switch to new major JWT library and new JWK handler
([#&#8203;288](https://togithub.com/nobl9/nobl9-go/issues/288))
[@&#8203;nieomylnieja](https://togithub.com/nieomylnieja)
> Underlying JWT handler chain has been changed. This should not
influence
    > how the existing or new programs run in general. However, specific
> errors returned by SDK when there's a problem with parsing or
verifying
    > the token have been changed.

#### 🐞 Bug Fixes

- fix: don't treat an empty composite maxDelay as 0 \[PC-12021]
([#&#8203;338](https://togithub.com/nobl9/nobl9-go/issues/338))
[@&#8203;nikodemrafalski](https://togithub.com/nikodemrafalski)
- fix: Bring back createdBy and remove duplicate updatedAt
([#&#8203;324](https://togithub.com/nobl9/nobl9-go/issues/324))
[@&#8203;lukasz-dobek](https://togithub.com/lukasz-dobek)
- fix: PC-12276 Prevent alert policies with alertingWindow 0m
([#&#8203;315](https://togithub.com/nobl9/nobl9-go/issues/315))
[@&#8203;piotrkwarcinski](https://togithub.com/piotrkwarcinski)

#### 🧰 Maintenance

<details>
<summary>38 changes</summary>

- chore: Update module github.com/aws/aws-sdk-go to v1.51.8
([#&#8203;344](https://togithub.com/nobl9/nobl9-go/issues/344))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update minor and patch golang dependencies
([#&#8203;341](https://togithub.com/nobl9/nobl9-go/issues/341))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update dependency cspell to v8.6.1
([#&#8203;340](https://togithub.com/nobl9/nobl9-go/issues/340))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.51.6
([#&#8203;337](https://togithub.com/nobl9/nobl9-go/issues/337))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.51.5
([#&#8203;336](https://togithub.com/nobl9/nobl9-go/issues/336))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.51.4
([#&#8203;335](https://togithub.com/nobl9/nobl9-go/issues/335))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update dependency golangci/golangci-lint to v1.57.1
([#&#8203;334](https://togithub.com/nobl9/nobl9-go/issues/334))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update dependency golangci/golangci-lint to v1.57.0
([#&#8203;333](https://togithub.com/nobl9/nobl9-go/issues/333))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.51.3
([#&#8203;332](https://togithub.com/nobl9/nobl9-go/issues/332))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.51.2
([#&#8203;331](https://togithub.com/nobl9/nobl9-go/issues/331))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/MicahParks/jwkset to v0.5.16
([#&#8203;329](https://togithub.com/nobl9/nobl9-go/issues/329))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.51.1
([#&#8203;328](https://togithub.com/nobl9/nobl9-go/issues/328))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.51.0
([#&#8203;327](https://togithub.com/nobl9/nobl9-go/issues/327))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.50.38
([#&#8203;326](https://togithub.com/nobl9/nobl9-go/issues/326))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.50.37
([#&#8203;325](https://togithub.com/nobl9/nobl9-go/issues/325))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update minor and patch golang dependencies
([#&#8203;323](https://togithub.com/nobl9/nobl9-go/issues/323))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.50.36
([#&#8203;322](https://togithub.com/nobl9/nobl9-go/issues/322))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Fix README.md logo
([#&#8203;321](https://togithub.com/nobl9/nobl9-go/issues/321))
[@&#8203;nieomylnieja](https://togithub.com/nieomylnieja)
- chore: Update minor and patch golang dependencies
([#&#8203;320](https://togithub.com/nobl9/nobl9-go/issues/320))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update Yarn to v1.22.22
([#&#8203;319](https://togithub.com/nobl9/nobl9-go/issues/319))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.50.35
([#&#8203;318](https://togithub.com/nobl9/nobl9-go/issues/318))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update README.md logo
([#&#8203;317](https://togithub.com/nobl9/nobl9-go/issues/317))
[@&#8203;nieomylnieja](https://togithub.com/nieomylnieja)
- chore: Update dependency cspell to v8.6.0
([#&#8203;306](https://togithub.com/nobl9/nobl9-go/issues/306))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.50.34
([#&#8203;316](https://togithub.com/nobl9/nobl9-go/issues/316))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update Nobl9 logo
([#&#8203;312](https://togithub.com/nobl9/nobl9-go/issues/312))
[@&#8203;nieomylnieja](https://togithub.com/nieomylnieja)
- chore: Delete .github/release.yml
([#&#8203;311](https://togithub.com/nobl9/nobl9-go/issues/311))
[@&#8203;nieomylnieja](https://togithub.com/nieomylnieja)
- chore: Update module golang.org/x/tools/cmd/goimports to v0.19.0
([#&#8203;309](https://togithub.com/nobl9/nobl9-go/issues/309))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.50.33
([#&#8203;308](https://togithub.com/nobl9/nobl9-go/issues/308))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update dependency yaml to v2.4.1
([#&#8203;307](https://togithub.com/nobl9/nobl9-go/issues/307))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update minor and patch golang dependencies
([#&#8203;305](https://togithub.com/nobl9/nobl9-go/issues/305))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/golang-jwt/jwt/v5 to v5.2.1
([#&#8203;304](https://togithub.com/nobl9/nobl9-go/issues/304))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update minor and patch golang dependencies
([#&#8203;303](https://togithub.com/nobl9/nobl9-go/issues/303))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update dependency cspell to v8.5.0
([#&#8203;301](https://togithub.com/nobl9/nobl9-go/issues/301))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update minor and patch golang dependencies
([#&#8203;300](https://togithub.com/nobl9/nobl9-go/issues/300))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.50.29
([#&#8203;299](https://togithub.com/nobl9/nobl9-go/issues/299))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update golang.org/x/exp digest to
[`2c58cdc`](https://togithub.com/nobl9/nobl9-go/commit/2c58cdc) -
abandoned
([#&#8203;259](https://togithub.com/nobl9/nobl9-go/issues/259))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update dependency golangci/golangci-lint to v1.56.2
([#&#8203;274](https://togithub.com/nobl9/nobl9-go/issues/274))
[@&#8203;renovate](https://togithub.com/renovate)
- chore: Update module github.com/aws/aws-sdk-go to v1.50.28
([#&#8203;298](https://togithub.com/nobl9/nobl9-go/issues/298))
[@&#8203;renovate](https://togithub.com/renovate)

</details>

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am
every weekday,every weekend" (UTC), Automerge - At any time (no schedule
defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/nobl9/sloctl).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->


[PC-12053]:
https://nobl9.atlassian.net/browse/PC-12053?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant