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(deps): update all non-major dependencies #825

Merged
merged 3 commits into from
Jan 29, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 22, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@bufbuild/protoc-gen-es (source) 1.6.0 -> 1.7.0 age adoption passing confidence dependencies minor
@swc/core (source) 1.3.102 -> 1.3.107 age adoption passing confidence devDependencies patch
@swc/jest 0.2.29 -> 0.2.31 age adoption passing confidence devDependencies patch
@testing-library/jest-dom 6.2.0 -> 6.3.0 age adoption passing confidence devDependencies minor
@types/react (source) 18.2.47 -> 18.2.48 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) 6.18.1 -> 6.19.1 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 6.18.1 -> 6.19.1 age adoption passing confidence devDependencies minor
@typescript-eslint/typescript-estree (source) 6.18.1 -> 6.19.1 age adoption passing confidence devDependencies minor
autoprefixer 10.4.16 -> 10.4.17 age adoption passing confidence devDependencies patch
buf 1.28.1 -> 1.29.0 age adoption passing confidence minor
github.com/amacneil/dbmate/v2 v2.10.0 -> v2.11.0 age adoption passing confidence require minor
github.com/google/uuid v1.5.0 -> v1.6.0 age adoption passing confidence require minor
go.opentelemetry.io/otel v1.21.0 -> v1.22.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.44.0 -> v0.45.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 -> v1.22.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/metric v1.21.0 -> v1.22.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/sdk v1.21.0 -> v1.22.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/sdk/metric v1.21.0 -> v1.22.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/trace v1.21.0 -> v1.22.0 age adoption passing confidence require minor
go.opentelemetry.io/proto/otlp v1.0.0 -> v1.1.0 age adoption passing confidence require minor
helm 3.13.3 -> 3.14.0 age adoption passing confidence minor
node 21.5.0 -> 21.6.1 age adoption passing confidence minor
prettier (source) 3.2.2 -> 3.2.4 age adoption passing confidence devDependencies patch
react-router-dom (source) 6.21.2 -> 6.21.3 age adoption passing confidence dependencies patch
reactflow (source) 11.10.1 -> 11.10.3 age adoption passing confidence dependencies patch
sqlc 1.24.0 -> 1.25.0 age adoption passing confidence minor
typed-css-modules 0.8.1 -> 0.9.0 age adoption passing confidence devDependencies minor
vite (source) 4.5.1 -> 4.5.2 age adoption passing confidence dependencies patch
org.assertj:assertj-core (source) 3.25.1 -> 3.25.2 age adoption passing confidence test patch
com.squareup.wire:wire-compiler 4.9.3 -> 4.9.5 age adoption passing confidence patch
com.squareup.wire:wire-grpc-client-jvm 4.9.3 -> 4.9.5 age adoption passing confidence compile patch
com.squareup.wire:wire-grpc-server 4.9.3 -> 4.9.5 age adoption passing confidence compile patch
com.squareup.wire:wire-runtime-jvm 4.9.3 -> 4.9.5 age adoption passing confidence compile patch
com.squareup:kotlinpoet-jvm 1.15.3 -> 1.16.0 age adoption passing confidence compile minor

Release Notes

bufbuild/protobuf-es (@​bufbuild/protoc-gen-es)

v1.7.0

Compare Source

What's Changed

This release adds support for extensions, a Protobuf language feature that allows to extend a message with an additional field.

For example:

syntax = "proto2";

message User {
  extensions 100 to 200;
}

extend User {
  optional uint32 age = 100;
}

For the extension age, we generate a new export const age: Extension<User, number>. You can set the extension field with the function setExtension:

import { setExtension } from "@&#8203;bufbuild/protobuf";
import { User, age } from "./example_pb.js";

const user = new User();
setExtension(user, age, 77);

To learn more about the details, see the API documentation.

For plugin authors: Since extensions provide a better way to access custom options in a plugin, we are deprecating the findCustom*Option functions from @bufbuild/protoplugin/ecmascript. We recommend to switch to extensions for better type safety and flexibility, see the PR for details.

All changes

Full Changelog: bufbuild/protobuf-es@v1.6.0...v1.7.0

swc-project/swc (@​swc/core)

v1.3.107

Compare Source

Bug Fixes
  • (es/codegen) Do not produce octal literals (#​8565) (07634a0)

  • (es/decorator) Skip TypeScript class method/prop declarations (#​8555) (6a8dd8c)

  • (es/decorator) Preserve state while traversing the module_items scope (#​8556) (f416aff)

  • (es/loader) Make tsc resolver work for bare specifier (#​8550) (d6a4615)

v1.3.106

Compare Source

Bug Fixes
Features
Miscellaneous Tasks

v1.3.105

Compare Source

Bug Fixes
Miscellaneous Tasks
Testing

v1.3.104

Compare Source

Bug Fixes

v1.3.103

Compare Source

Bug Fixes
Documentation
Features
  • (html/parser) Allow self-closing /> on non-void HTML elements via a flag (#​8460) (566063d)
Refactor
Testing
swc-project/jest (@​swc/jest)

v0.2.31

Compare Source

v0.2.30

Compare Source

testing-library/jest-dom (@​testing-library/jest-dom)

v6.3.0

Compare Source

Features

v6.2.1

Compare Source

Bug Fixes
  • Standalone types for "./matchers" export and add Bun support (#​566) (5675b86)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.19.1

Compare Source

🩹 Fixes
  • type-utils: preventing isUnsafeAssignment infinite recursive calls

  • eslint-plugin: [no-unnecessary-condition] fix false positive for type variable

❤️ Thank You
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v6.19.0

Compare Source

🚀 Features
  • eslint-plugin: [prefer-promise-reject-errors] add rule

  • eslint-plugin: [no-array-delete] add new rule

  • eslint-plugin: [no-useless-template-literals] add fix suggestions

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] detect unnecessary non-null-assertion on a call expression

  • eslint-plugin: [no-unnecesary-type-assertion] treat unknown/any as nullable

❤️ Thank You
  • auvred
  • Brad Zacher
  • Josh Goldberg ✨
  • Joshua Chen
  • LJX
  • Steven
  • StyleShit

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v6.19.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v6.19.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/typescript-estree)

v6.19.1

Compare Source

This was a version bump only for typescript-estree to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v6.19.0

Compare Source

🩹 Fixes
  • typescript-estree: add JSDocParsingMode enum merge for typescript/lib/tsserverlibrary

  • typescript-estree: disallow using as the variable keyword for for..in loops

  • typescript-estree: fix incorrect backwards-compat augmentation in TS 5.3

❤️ Thank You
  • auvred
  • Brad Zacher
  • Josh Goldberg ✨
  • Joshua Chen
  • LJX
  • Steven
  • StyleShit

You can read about our versioning strategy and releases on our website.

postcss/autoprefixer (autoprefixer)

v10.4.17

Compare Source

  • Fixed user-select: contain prefixes.
bufbuild/buf (buf)

v1.29.0

  • Add support for yaml format. All commands that take image inputs, output images,
    or convert between message formats, now take yaml as a format, in addition to
    the existing binpb and txtpb formats. Some examples:
    • buf build -o image.yaml
    • buf ls-files image.yaml
    • buf convert --type foo.Bar --from input.binpb --to output.yaml
  • The yaml and json formats now accept two new options: use_proto_names and
    use_enum_numbers. This affects output serialization. Some examples:
    • buf convert --type foo.Bar --from input.binpb --to output.yaml#use_proto_names=true
    • buf convert --type foo.Bar --from input.binpb --to -#format=yaml,use_enum_numbers=true
  • Fix issue where buf format would inadvertently mangle files that used
    the expanded Any syntax
    in option values.
amacneil/dbmate (github.com/amacneil/dbmate/v2)

v2.11.0

Compare Source

What's Changed
New Contributors

Full Changelog: amacneil/dbmate@v2.10.0...v2.11.0

google/uuid (github.com/google/uuid)

v1.6.0

Compare Source

Features
Bug Fixes
open-telemetry/opentelemetry-go (go.opentelemetry.io/otel)

v1.22.0: /v0.45.0

Compare Source

Added
  • The go.opentelemetry.io/otel/semconv/v1.22.0 package.
    The package contains semantic conventions from the v1.22.0 version of the OpenTelemetry Semantic Conventions. (#​4735)
  • The go.opentelemetry.io/otel/semconv/v1.23.0 package.
    The package contains semantic conventions from the v1.23.0 version of the OpenTelemetry Semantic Conventions. (#​4746)
  • The go.opentelemetry.io/otel/semconv/v1.23.1 package.
    The package contains semantic conventions from the v1.23.1 version of the OpenTelemetry Semantic Conventions. (#​4749)
  • The go.opentelemetry.io/otel/semconv/v1.24.0 package.
    The package contains semantic conventions from the v1.24.0 version of the OpenTelemetry Semantic Conventions. (#​4770)
  • Add WithResourceAsConstantLabels option to apply resource attributes for every metric emitted by the Prometheus exporter. (#​4733)
  • Experimental cardinality limiting is added to the metric SDK.
    See metric documentation for more information about this feature and how to enable it. (#​4457)
  • Add NewMemberRaw and NewKeyValuePropertyRaw in go.opentelemetry.io/otel/baggage. (#​4804)
Changed
  • Upgrade all use of go.opentelemetry.io/otel/semconv to use v1.24.0. (#​4754)
  • Update transformations in go.opentelemetry.io/otel/exporters/zipkin to follow v1.19.0 version of the OpenTelemetry specification. (#​4754)
  • Record synchronous measurements when the passed context is canceled instead of dropping in go.opentelemetry.io/otel/sdk/metric.
    If you do not want to make a measurement when the context is cancelled, you need to handle it yourself (e.g if ctx.Err() != nil). (#​4671)
  • Improve go.opentelemetry.io/otel/trace.TraceState's performance. (#​4722)
  • Improve go.opentelemetry.io/otel/propagation.TraceContext's performance. (#​4721)
  • Improve go.opentelemetry.io/otel/baggage performance. (#​4743)
  • Improve performance of the (*Set).Filter method in go.opentelemetry.io/otel/attribute when the passed filter does not filter out any attributes from the set. (#​4774)
  • Member.String in go.opentelemetry.io/otel/baggage percent-encodes only when necessary. (#​4775)
  • Property.Value in go.opentelemetry.io/otel/baggage now returns a raw string instead of a percent-encoded value. (#​4804)
Fixed
  • Fix Parse in go.opentelemetry.io/otel/baggage to validate member value before percent-decoding. (#​4755)
  • Fix whitespace encoding of Member.String in go.opentelemetry.io/otel/baggage. (#​4756)
  • Fix baggage item key so that it is not canonicalized in go.opentelemetry.io/otel/bridge/opentracing. (#​4776)
  • Fix go.opentelemetry.io/otel/bridge/opentracing to properly handle baggage values that requires escaping during propagation. (#​4804)
  • Fix a bug where using multiple readers resulted in incorrect asynchronous counter values in go.opentelemetry.io/otel/sdk/metric. (#​4742)
open-telemetry/opentelemetry-proto-go (go.opentelemetry.io/proto/otlp)

v1.1.0

Compare Source

Release of the v1.1.0 version of the OTLP.

Full Changelog: open-telemetry/opentelemetry-proto-go@v1.0.0...v1.1.0

helm/helm (helm)

v3.14.0: Helm v3.14.0

Helm v3.14.0 is a feature release. Users are encouraged to upgrade for the best experience.

The community keeps growing, and we'd love to see you there!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages
Notable Changes
  • New helm search flag of --fail-on-no-result
  • Allow a nested tpl invocation access to defines
  • Speed up the tpl function
  • Added qps/HELM_QPS parameter that tells Kubernetes packages how to operate
  • Added --kube-version to lint command
  • The ignore pkg is now public
Installation and Upgrading

Download Helm v3.14.0. The common platform binaries are here:


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 renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4365382 to 154bae9 Compare January 22, 2024 20:15
Copy link
Contributor Author

renovate bot commented Jan 29, 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 b38dd27 into main Jan 29, 2024
11 checks passed
@alecthomas alecthomas deleted the renovate/all-minor-patch branch January 29, 2024 03:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Status: Done
Development

Successfully merging this pull request may close these issues.

1 participant