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

Update dependency @connectrpc/connect to v1.6.1#289

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/connectrpc-connect-1.x-lockfile
Open

Update dependency @connectrpc/connect to v1.6.1#289
renovate[bot] wants to merge 1 commit intomainfrom
renovate/connectrpc-connect-1.x-lockfile

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jun 15, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@connectrpc/connect (source) 1.1.3 -> 1.6.1 age adoption passing confidence
@connectrpc/connect (source) 1.4.0 -> 1.6.1 age adoption passing confidence

Release Notes

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

v1.6.1

Compare Source

What's Changed

Full Changelog: connectrpc/connect-es@v1.6.0...v1.6.1

v1.6.0

Compare Source

What's Changed

Promises are more widely adopted than ever before. We're renaming the function createPromiseClient to the more succinct createClient. For backwards compatibility, we keep the existing signature and mark it as deprecated.

After updating to this release, you can run npx @​connectrpc/connect-migrate to automatically refactor your code to import and use createClient instead of createPromiseClient.

Full Changelog: connectrpc/connect-es@v1.5.0...v1.6.0

v1.5.0

Compare Source

What's Changed
New Contributors

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

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

v1.3.0

Compare Source

What's Changed

New Contributors

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

v1.2.1

Compare Source

What's Changed

Full Changelog: connectrpc/connect-es@v1.2.0...v1.2.1

v1.2.0

Compare Source

What's Changed

By default, protoc-gen-connect-es (and all other plugins based on @​bufbuild/protoplugin) generate ECMAScript import and export statements. For use cases where CommonJS is difficult to avoid, a new plugin option has been added named js_import_style which can be used to generate CommonJS require() calls.

Here is an example buf.gen.yaml:

version: v1
plugins:

### You'll need @​bufbuild/protoc-gen-es v1.6.0 or later
  - plugin: es
    out: src/gen
    opt: js_import_style=legacy_commonjs
  - plugin: connect-es
    out: src/gen
    opt: js_import_style=legacy_commonjs

To view the full PR, see Support CommonJS in protoc-gen-connect-es by @​timostamm in #​956

Full Changelog: connectrpc/connect-es@v1.1.4...v1.2.0

v1.1.4

Compare Source

What's Changed

Full Changelog: connectrpc/connect-es@v1.1.3...v1.1.4


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

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


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

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

@renovate renovate bot added the renovate By renovate bot label Jun 15, 2025
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Jun 15, 2025

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: frontend/dashboard/yarn.lock
error This project's package.json defines "packageManager": "yarn@pnpm@10.12.1". However the current global version of Yarn is 1.22.22.

Presence of the "packageManager" field indicates that the project is meant to be used with Corepack, a tool included by default with all official Node.js distributions starting from 16.9 and 14.19.
Corepack must currently be enabled by running corepack enable in your terminal. For more information, check out https://yarnpkg.com/corepack.

File name: backend/auto-operation/yarn.lock
error This project's package.json defines "packageManager": "yarn@pnpm@8.6.11". However the current global version of Yarn is 1.22.22.

Presence of the "packageManager" field indicates that the project is meant to be used with Corepack, a tool included by default with all official Node.js distributions starting from 16.9 and 14.19.
Corepack must currently be enabled by running corepack enable in your terminal. For more information, check out https://yarnpkg.com/corepack.

File name: pnpm-lock.yaml
 ERR_PNPM_NO_PKG_MANIFEST  No package.json found in /tmp/renovate/repos/github/ueckoken/plarail2023

@github-actions github-actions bot added the backend バックエンド関連 label Jun 15, 2025
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages bot commented Jun 15, 2025

Deploying plarail2023 with  Cloudflare Pages  Cloudflare Pages

Latest commit: 2a95795
Status: ✅  Deploy successful!
Preview URL: https://ad2174dd.plarail2023.pages.dev
Branch Preview URL: https://renovate-connectrpc-connect.plarail2023.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/connectrpc-connect-1.x-lockfile branch 16 times, most recently from fd87c3a to 68cd7b9 Compare June 21, 2025 03:16
@renovate renovate bot force-pushed the renovate/connectrpc-connect-1.x-lockfile branch from 68cd7b9 to 2a95795 Compare June 21, 2025 03:35
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

backend バックエンド関連 renovate By renovate bot

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants