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 dependencies #140

Merged
merged 1 commit into from
Sep 1, 2023
Merged

chore(deps): update all dependencies #140

merged 1 commit into from
Sep 1, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 13, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@typescript-eslint/eslint-plugin 6.4.1 -> 6.5.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser 6.4.1 -> 6.5.0 age adoption passing confidence devDependencies minor
actions/checkout v3.5.3 -> v3.6.0 age adoption passing confidence action minor
eslint (source) 8.47.0 -> 8.48.0 age adoption passing confidence devDependencies minor
github.com/libp2p/go-libp2p v0.30.0 -> v0.31.0 age adoption passing confidence require minor
github.com/quic-go/quic-go v0.38.0 -> v0.38.1 age adoption passing confidence require patch
github/codeql-action v2.21.4 -> v2.21.5 age adoption passing confidence action patch
prettier (source) 3.0.2 -> 3.0.3 age adoption passing confidence devDependencies patch
typescript (source) 5.1.6 -> 5.2.2 age adoption passing confidence devDependencies minor

Release Notes

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

v6.5.0

Compare Source

Bug Fixes
  • eslint-plugin: [consistent-type-assertions] wrap object return value with parentheses (#​6885) (23ac499)

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

6.4.1 (2023-08-21)

Bug Fixes
  • eslint-plugin: [no-unnecessary-condition] false positives with branded types (#​7466) (b52658f), closes #​7293

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

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

v6.5.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

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

6.4.1 (2023-08-21)

Note: Version bump only for package @​typescript-eslint/parser

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

actions/checkout (actions/checkout)

v3.6.0

Compare Source

eslint/eslint (eslint)

v8.48.0

Compare Source

Features

  • 1fbb3b0 feat: correct update direction in for-direction (#​17483) (Francesco Trotta)
  • d73fbf2 feat: rule tester do not create empty valid or invalid test suites (#​17475) (fnx)
  • ee2f718 feat: Allow void in rule no-promise-executor-return (#​17282) (nopeless)

Bug Fixes

  • 7234f6a fix: update RuleTester JSDoc and deprecations (#​17496) (Jonas Berlin)

Documentation

  • 7a51d77 docs: no-param-reassign mention strict mode (#​17494) (Stephen Hardy)
  • 9cd7ac2 docs: add fetch script to package.json conventions (#​17459) (Nitin Kumar)
  • cab21e6 docs: advice for inline disabling of rules (#​17458) (Ashish Yadav)
  • 056499d docs: fix example of flat config from plugin (#​17482) (Francesco Trotta)
  • 9e9edf9 docs: update documentation URL in error message (#​17465) (Nitin Kumar)

Chores

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

v0.31.0

Compare Source

🔦 Highlights

libp2p+HTTP

We're introducing a new experimental API in go-libp2p, enabling developers to utilize libp2p with the well-known semantics of HTTP. This isn't a special flavor of HTTP; it's standard HTTP, but enhanced with libp2p. Developers can now benefit from HTTP intermediaries such as CDN caching and layer 7 load balancing. This allows developers to create HTTP applications that operate over NATs and seamlessly tap into libp2p's diverse transport options to boost connectivity. In addition, the HTTP transport now joins the roster of supported transports in libp2p.

The new API is under libp2phttp.Host in the "github.com/libp2p/go-libp2p/p2p/http" package. This is like the stream transport host (host.Host in "github.com/libp2p/go-libp2p/core/host"), but exposes HTTP request/response rather than a stream API. Refer to the godoc for details on the API and examples.

QUIC Generic Segmentation Offload

This release updates quic-go to v0.38.x, which enables GSO (Generic Segmentation Offload) in the send path, drastically increasing the packet send rate. Without GSO, quic-go had to use a single sendmsg syscall for every UDP datagram sent. GSO allows us to pass one giant (up to 64k) datagram to the sendmsg syscall, and have the kernel chop it into MTU sized (~1300 bytes) datagrams before sending them out on the wire. For more details on syscall optimizations, CloudFlare published an excellent blog post about this a while ago. GSO is currently only available on Linux (and with kernels >4.18).

Changelog

Full Changelog: libp2p/go-libp2p@v0.30.0...v0.31.0

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

v0.38.1

Compare Source

What's Changed

Full Changelog: quic-go/quic-go@v0.38.0...v0.38.1

github/codeql-action (github/codeql-action)

v2.21.5

Compare Source

prettier/prettier (prettier)

v3.0.3

Compare Source

diff

Add preferUnplugged: true to package.json (#​15169 by @​fisker and @​so1ve)

Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.

Support shared config that forbids require() (#​15233 by @​fisker)

If an external shared config package is used, and the package exports don't have require or default export.

In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json
Allow argument of require() to break (#​15256 by @​fisker)
// Input
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);

// Prettier 3.0.2
const plugin = require(global.STANDALONE
  ? path.join(__dirname, "../standalone.js")
  : path.join(__dirname, ".."));

// Prettier 3.0.3
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);
Do not print trailing commas in arrow function type parameter lists in ts code blocks (#​15286 by @​sosukesuzuki)
<!-- Input -->
```ts
const foo = <T>() => {}
```

<!-- Prettier 3.0.2 -->
```ts
const foo = <T,>() => {}
```

<!-- Prettier 3.0.3 -->
```ts
const foo = <T>() => {}
```
Support TypeScript 5.2 using / await using declaration (#​15321 by @​sosukesuzuki)

Support for the upcoming Explicit Resource Management feature in ECMAScript. using / await using declaration

{
   using foo = new Foo();
   await using bar = new Bar();
}
Microsoft/TypeScript (typescript)

v5.2.2: TypeScript 5.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 changed the title fix(deps): update all dependencies fix(deps): update module github.com/aperturerobotics/util to v1.5.5 Jul 13, 2023
@renovate renovate bot changed the title fix(deps): update module github.com/aperturerobotics/util to v1.5.5 fix(deps): update all dependencies Jul 13, 2023
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from c77e71e to c5be510 Compare July 14, 2023 15:14
@renovate renovate bot changed the title fix(deps): update all dependencies chore(deps): update all dependencies Jul 14, 2023
@renovate renovate bot force-pushed the renovate/all branch 10 times, most recently from 95973c7 to 3c401be Compare July 20, 2023 12:33
@renovate renovate bot force-pushed the renovate/all branch 10 times, most recently from d2ecf92 to f1665fc Compare July 26, 2023 19:02
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies Jul 26, 2023
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from ef2a91b to dd85887 Compare July 26, 2023 20:26
@renovate renovate bot changed the title fix(deps): update all dependencies fix(deps): update all dependencies - autoclosed Jul 26, 2023
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 38e0e39 to 46eb946 Compare August 21, 2023 07:51
@renovate renovate bot changed the title fix(deps): update all dependencies chore(deps): update all dependencies Aug 21, 2023
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from a88e2b3 to 03bcd58 Compare August 23, 2023 00:41
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies Aug 23, 2023
@renovate renovate bot changed the title fix(deps): update all dependencies fix(deps): update all dependencies - autoclosed Aug 23, 2023
@renovate renovate bot closed this Aug 23, 2023
@renovate renovate bot deleted the renovate/all branch August 23, 2023 00:45
@renovate renovate bot changed the title fix(deps): update all dependencies - autoclosed fix(deps): update all dependencies Aug 24, 2023
@renovate renovate bot reopened this Aug 24, 2023
@renovate renovate bot restored the renovate/all branch August 24, 2023 14:36
@renovate renovate bot changed the title fix(deps): update all dependencies chore(deps): update actions/checkout action to v3.6.0 Aug 24, 2023
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from f8732a0 to 911c558 Compare August 24, 2023 17:11
@renovate renovate bot changed the title chore(deps): update actions/checkout action to v3.6.0 chore(deps): update all dependencies Aug 24, 2023
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 90999c1 to 36c1b07 Compare August 29, 2023 15:21
@paralin paralin merged commit a5bc37d into master Sep 1, 2023
5 checks passed
@paralin paralin deleted the renovate/all branch September 1, 2023 06:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

1 participant