Jake Coffman

Results 41 comments of Jake Coffman

I think the reason for this behavior is this line: https://github.com/dependabot/dependabot-core/blob/b7bd33be0161e2a123bdcfa6b574e0999fc4964a/npm_and_yarn/lib/dependabot/npm_and_yarn/update_checker/latest_version_finder.rb#L86 The intention of that line is to filter out pre-releases from the versions Dependabot will choose from, unless the...

If I clone https://github.com/grafana/clickhouse-datasource and run `go get github.com/ClickHouse/clickhouse-go/[email protected]` followed by `go mod tidy` it prints ``` go: finding module for package go.opentelemetry.io/otel/metric/instrument go: finding module for package go.opentelemetry.io/otel/metric/global github.com/grafana/clickhouse-datasource/pkg...

With https://github.com/dependabot/dependabot-core/pull/6713 pseudo-versions are now updated to tagged versions. Let me know if you see any unexpected behavior with this change. Dependabot will not update a pseudo-version to another pseudo-version....

I noticed updating to newer pseudo-versions was asked in 2020, so closing this one out as a duplicate: https://github.com/dependabot/dependabot-core/issues/2028

https://github.com/dependabot/dependabot-core/issues/2028 is tracking the feature request for updating dependencies to newer pseudo-versions

Since this is a port, I'd rather not add optimizations unless it's first accepted upstream: https://github.com/slembcke/Chipmunk2D/blob/d0239ef4599b3688a5a336373f7d0a68426414ba/src/cpSpaceQuery.c#L233-L246

We discussed this and feel it's best to leave it so that closing a grouped PR doesn't automatically add ignores. If there's a subset of dependencies that should be ignored,...

Here's an in-progress branch: https://github.com/vmware/go-vcloud-director/compare/master...jakecoffman:context I need to cancel the underlying HTTP request (by using `http.NewRequestWithContext`), not the command or task itself. That way when my server that makes calls...

I have a fork here with the context applied if anyone would like to use it before it is available in this repo: https://github.com/wwt/go-vcloud-director

My workflow is I will run [script/build](https://github.com/dependabot/dependabot-core/blob/main/script/build) which builds the `latest` image locally and then I can run `dependabot`, or make changes and run script/dependabot from there on out. I...