Skip to content
This repository was archived by the owner on Aug 17, 2025. It is now read-only.

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 4, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@connectrpc/connect (source) 1.3.0 -> 1.4.0 age adoption passing confidence dependencies minor
@connectrpc/connect-web (source) 1.3.0 -> 1.4.0 age adoption passing confidence dependencies minor
@connectrpc/protoc-gen-connect-es (source) 1.3.0 -> 1.4.0 age adoption passing confidence dependencies minor
@types/react (source) 18.2.58 -> 18.2.61 age adoption passing confidence devDependencies patch
@viz-js/viz (source) 3.3.1 -> 3.4.0 age adoption passing confidence dependencies minor
act 0.2.59 -> 0.2.60 age adoption passing confidence patch
autoprefixer 10.4.17 -> 10.4.18 age adoption passing confidence devDependencies patch
github.com/alecthomas/types v0.12.1 -> v0.13.0 age adoption passing confidence require minor
postcss-nesting (source) 12.0.3 -> 12.0.4 age adoption passing confidence devDependencies patch
react-router-dom (source) 6.22.1 -> 6.22.2 age adoption passing confidence dependencies patch
ch.qos.logback:logback-core (source, changelog) 1.5.0 -> 1.5.2 age adoption passing confidence compile patch
ch.qos.logback:logback-classic (source, changelog) 1.5.0 -> 1.5.2 age adoption passing confidence compile patch
io.grpc:grpc-stub 1.61.1 -> 1.62.2 age adoption passing confidence compile minor
io.grpc:grpc-protobuf 1.61.1 -> 1.62.2 age adoption passing confidence compile minor
io.grpc:grpc-netty 1.61.1 -> 1.62.2 age adoption passing confidence compile minor

Release Notes

connectrpc/connect-es (@​connectrpc/connect)

v1.4.0

Compare Source

What's Changed

This release includes support for server-side interceptors! Here's a quick example:

import * as http from "http";
import routes from "./connect";
import { connectNodeAdapter } from "@​connectrpc/connect-node";
import type { Interceptor } from "@​connectrpc/connect";

const logger: Interceptor = (next) => async (req) => {
  console.log(`recevied message on ${req.url}`);
  return await next(req);
};

http
  .createServer(
    connectNodeAdapter({
      routes,
      interceptors: [logger],
    }),
  )
  .listen(8080);

For more on them please see the docs.

Other Changes
New Contributors

Full Changelog: connectrpc/connect-es@v1.3.0...v1.4.0

mdaines/viz-js (@​viz-js/viz)

v3.4.0

Compare Source

  • Update Graphviz to 10.0.1.
nektos/act (act)

v0.2.60

Changelog

New Features
Bug fixes
Other
  • d3c8664 chore: bump VERSION to 0.2.60
  • c79f59f build(deps): bump go.etcd.io/bbolt from 1.3.8 to 1.3.9 (#​2229)
  • 68597d6 build(deps): bump github.com/rhysd/actionlint from 1.6.26 to 1.6.27 (#​2228)
  • 9e6ce12 build(deps): bump github.com/opencontainers/image-spec (#​2223)
  • 5601fb0 refactor: simpilfy go-git cache (#​2208)
  • 27eb79b build(deps): bump github.com/opencontainers/image-spec (#​2214)
  • 8277584 build(deps): bump golang.org/x/term from 0.16.0 to 0.17.0 (#​2213)
  • 6e80373 Shrink Readme (#​2198)
postcss/autoprefixer (autoprefixer)

v10.4.18

Compare Source

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).
alecthomas/types (github.com/alecthomas/types)

v0.13.0

Compare Source

csstools/postcss-plugins (postcss-nesting)

v12.0.4

Compare Source

February 26, 2024

  • Fix order of final CSS with complex usage of both nesting and mixins, by @​pciarach
remix-run/react-router (react-router-dom)

v6.22.2

Compare Source

Patch Changes
grpc/grpc-java (io.grpc:grpc-stub)

v1.62.2

Compare Source

gRPC Java 1.62.2 Release Notes

Note that this is the initial 1.62.x release

API Changes
  • services: Remove io.grpc.services.BinaryLogs, which was deprecated since 2021. io.grpc.protobuf.services.BinaryLogs should be used instead (#​10832).
  • Allow users outside of io.grpc.xds package to create custom xDS resources (#​10834) (6d96e65)
New Features
  • api:Add ClientTransportFilter. Similarly to ServerTransportFilter, this will provide an observability hook and it allows direct modification of the transport's attributes. (#​10646)
Improvements
  • java_grpc_library.bzl: Add support for Auto Exec Groups (cb03bd2). This is mostly a behind-the-scenes change to adjust to the newer way Bazel operates
  • java_grpc_library.bzl: Support runfiles for protoc and the plugin (65a6b3b). Neither binary uses runfiles, but the task will be ready if they need to in the future
  • xds: Add EC key support for XdsChannelCredentials/XdsServerCredentials (100d5a5)
  • binder:Change log level from WARNING to FINER for expected exception during close with error, to reduce log spamming (#​10899) (7ba0718)
Bug Fixes
  • xds: Fix a bug in WeightedRoundRobinLoadBalancer policy that could raise NullPointerException and further cause channel panic when picking a subchannel. This bug can only be triggered when connection can not be established and the channel reports TRANSIENT_FAILURE state. (#​10868)
Dependencies
  • The protoc plugin no longer supports macOS Big Sur (macOS 11). Binaries are now built using Monterey (macOS 12)
Acknowledgements

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (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 has been generated by Mend Renovate. View repository job log here.

@renovate
Copy link
Contributor Author

renovate bot commented Mar 4, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@alecthomas alecthomas merged commit f67174d into main Mar 4, 2024
@alecthomas alecthomas deleted the renovate/all-minor-patch branch March 4, 2024 01:26
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants