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

Update All api dependencies #155

Merged
merged 1 commit into from
Oct 10, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/getkin/kin-openapi v0.127.0 -> v0.128.0 age adoption passing confidence require minor
github.com/pb33f/libopenapi v0.18.1 -> v0.18.3 age adoption passing confidence require patch
github.com/twilio/twilio-go v1.23.2 -> v1.23.3 age adoption passing confidence require patch
github.com/weaviate/weaviate v1.26.5 -> v1.26.6 age adoption passing confidence require patch
go (source) 1.23.1 -> 1.23.2 age adoption passing confidence toolchain patch
golang.org/x/crypto v0.27.0 -> v0.28.0 age adoption passing confidence require minor
golang.org/x/net v0.29.0 -> v0.30.0 age adoption passing confidence require minor
google.golang.org/api v0.199.0 -> v0.200.0 age adoption passing confidence require minor

Release Notes

getkin/kin-openapi (github.com/getkin/kin-openapi)

v0.128.0

Compare Source

What's Changed
New Contributors

Full Changelog: getkin/kin-openapi@v0.127.0...v0.128.0

pb33f/libopenapi (github.com/pb33f/libopenapi)

v0.18.3

Compare Source

This fixes vacuum rules that lookup operations in the index where:

The original spec (root.yaml) has an external reference to a file in a different directory ./paths/mypath.yaml
In that location, there is a relative reference to a path-item in a nearby file, e.g. ./components.yaml#/path-item
What was previously happening in [2] is that the ./components.yaml was being resolved in ./components.yaml (the parent directory) instead of ./paths/components.yaml (the right directory). This resulted in a failure to evaluate path item references and unexpected linting failures.

This changes adjusts the lookup to search through the index's nodeMap to find the location of the YAML $ref node value that's been evaluated. Once we find it, we lookup the associated index of that file and do a seek in that specific index.

We also fix a race condition with resolving the specification asyncronously -- if we are going to an external ref we must do it sequentially as otherwise an index might be added multiple times during an async FindComponent call. This latent bug was exposed as we tested this.

@​ThomasRooney

v0.18.2

Compare Source

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

v1.23.3

Compare Source

Release Notes

Messaging

  • Add A2P external campaign CnpMigration flag

Numbers

  • Add address sid to portability API

Verify

  • Add SnaClientToken optional parameter on Verification check.
  • Add EnableSnaClientToken optional parameter for Verification creation.

Docs

weaviate/weaviate (github.com/weaviate/weaviate)

v1.26.6: - Schema V2 recovering single node Fix, Ready and Live probes improvements, New batch related metrics

Compare Source

Breaking Changes

none

New Features

none

Fixes

Full Changelog: weaviate/weaviate@v1.26.5...v1.26.6

golang/go (go)

v1.23.2

googleapis/google-api-go-client (google.golang.org/api)

v0.200.0

Compare Source

Features

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Jul 13, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

2 Skipped Deployments
Name Status Preview Comments Updated (UTC)
storyden ⬜️ Ignored (Inspect) Visit Preview Oct 9, 2024 10:13pm
storyden-homepage ⬜️ Ignored (Inspect) Visit Preview Oct 9, 2024 10:13pm

Copy link

coderabbitai bot commented Jul 13, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

📝 Walkthrough
📝 Walkthrough
📝 Walkthrough
📝 Walkthrough
📝 Walkthrough
📝 Walkthrough
📝 Walkthrough
📝 Walkthrough
📝 Walkthrough
📝 Walkthrough
📝 Walkthrough
📝 Walkthrough

Walkthrough

The updates primarily involve a restructuring of the project’s directory, particularly focusing on the relocation of middleware packages. This change enhances the clarity and organization of the codebase while maintaining existing functionalities. Additionally, new middleware features have been introduced for managing CORS and logging, and the mount function has been streamlined to improve routing efficiency.

Changes

File(s) Change Summary
app/services/authentication/provider/webauthn/webauthn.go Import path for useragent middleware updated.
app/transports/http/bindings/auth.go, auth_phone.go, webauthn.go Import path for the cookie package updated.
app/transports/http/bindings/bindings.go mount function parameters streamlined; new skipper function introduced; consolidated middleware setup.
app/transports/http/http.go Import path for the cookie package updated; Build function modified to include mountRouter.
app/transports/http/middleware/origin/cors.go New middleware function WithCORS added.
app/transports/http/middleware/reqlog/requestlog.go New middleware function WithLogger introduced for logging.
app/transports/http/router.go New mountRouter function added for integrating Echo framework.
cmd/import-hackernews/main.go, cmd/import-mybb/main.go Import path for cookie package updated.
internal/infrastructure/httpserver/middleware.go New Apply function for applying middleware added.
internal/integration/e2e/helpers.go, provider.go Import path for cookie package updated.
tests/... Import path for cookie package updated across multiple test files.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant HTTP Server
    participant Middleware
    participant Logger

    User->>HTTP Server: Send Request
    HTTP Server->>Middleware: Apply Middleware
    Middleware->>Logger: Log Request
    Logger-->>Middleware: Log Confirmation
    Middleware-->>HTTP Server: Middleware Applied
    HTTP Server-->>User: Send Response
Loading

🐰 "In the fields where code does flow,
Changes come and changes go.
With middleware now in its place,
We hop along with nimble grace.
A joyful tune, a happy cheer,
For structured paths, we hold so dear!" 🐇


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@renovate renovate bot changed the title Update module github.com/samber/lo to v1.45.0 Update module github.com/samber/lo to v1.46.0 Jul 15, 2024
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from e9f44a4 to 74edffa Compare July 15, 2024 18:39
@renovate renovate bot changed the title Update module github.com/samber/lo to v1.46.0 Update All api dependencies Jul 16, 2024
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from 74edffa to 8bb3645 Compare July 16, 2024 01:54
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from 8bb3645 to 503b9e7 Compare July 17, 2024 13:17
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from 503b9e7 to 1fc6536 Compare July 17, 2024 18:43
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from 1fc6536 to e30e6ef Compare July 18, 2024 22:47
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from e30e6ef to ea5c4b6 Compare July 22, 2024 19:41
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from ea5c4b6 to 22af258 Compare July 23, 2024 00:24
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from 22af258 to 354b014 Compare July 23, 2024 12:18
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch 3 times, most recently from ab9d2cf to cb820bd Compare September 26, 2024 19:27
@renovate renovate bot changed the title Update All api dependencies fix(deps): update all api dependencies Sep 26, 2024
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch 3 times, most recently from a756a71 to fa24d00 Compare September 28, 2024 12:26
@renovate renovate bot changed the title fix(deps): update all api dependencies fix(deps): update all api dependencies - autoclosed Sep 28, 2024
@renovate renovate bot closed this Sep 28, 2024
@renovate renovate bot deleted the renovate/all-api-dependencies branch September 28, 2024 12:58
@renovate renovate bot restored the renovate/all-api-dependencies branch September 29, 2024 18:57
@renovate renovate bot changed the title fix(deps): update all api dependencies - autoclosed fix(deps): update all api dependencies Sep 29, 2024
@renovate renovate bot reopened this Sep 29, 2024
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from fa24d00 to 0daba7d Compare September 29, 2024 18:58
@renovate renovate bot changed the title fix(deps): update all api dependencies Update module github.com/pb33f/libopenapi to v0.18.2 Sep 29, 2024
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from 0daba7d to 944caab Compare October 1, 2024 18:25
@renovate renovate bot changed the title Update module github.com/pb33f/libopenapi to v0.18.2 Update All api dependencies Oct 1, 2024
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch 2 times, most recently from c411e39 to 2c2cc91 Compare October 4, 2024 19:15
Copy link
Contributor Author

renovate bot commented Oct 4, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 7 additional dependencies were updated

Details:

Package Change
cloud.google.com/go/auth v0.9.5 -> v0.9.8
google.golang.org/genproto/googleapis/rpc v0.0.0-20240924160255-9d4c2d233b61 -> v0.0.0-20241007155032-5fefd90f89a9
google.golang.org/grpc v1.67.0 -> v1.67.1
golang.org/x/sys v0.25.0 -> v0.26.0
golang.org/x/text v0.18.0 -> v0.19.0
golang.org/x/time v0.6.0 -> v0.7.0
google.golang.org/protobuf v1.34.2 -> v1.35.1

@renovate renovate bot changed the title Update All api dependencies fix(deps): update all api dependencies Oct 4, 2024
@renovate renovate bot changed the title fix(deps): update all api dependencies Update All api dependencies Oct 6, 2024
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch 3 times, most recently from b4beece to c80ab5a Compare October 8, 2024 21:45
@renovate renovate bot force-pushed the renovate/all-api-dependencies branch from c80ab5a to 105380e Compare October 9, 2024 22:11
@Southclaws Southclaws merged commit 0464d3c into main Oct 10, 2024
4 checks passed
@Southclaws Southclaws deleted the renovate/all-api-dependencies branch October 10, 2024 14:32
Southclaws added a commit that referenced this pull request Feb 22, 2025
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.

1 participant