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 #5416

Merged
merged 2 commits into from
May 16, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 10, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types 4.20230419.0 -> 4.20230511.0 age adoption passing confidence
@graphql-hive/cli (source) 0.21.0 -> 0.22.0 age adoption passing confidence
@neo4j/graphql (source) 3.18.2 -> 3.18.3 age adoption passing confidence
@types/ioredis-mock (source) 8.2.1 -> 8.2.2 age adoption passing confidence
@types/node (source) 18.16.7 -> 18.16.10 age adoption passing confidence
esbuild 0.17.18 -> 0.17.19 age adoption passing confidence
graphql-ws 5.12.1 -> 5.13.1 age adoption passing confidence
mongoose (source) 7.1.0 -> 7.1.1 age adoption passing confidence
qs 6.11.1 -> 6.11.2 age adoption passing confidence
undici (source) 5.22.0 -> 5.22.1 age adoption passing confidence
vite (source) 4.3.5 -> 4.3.7 age adoption passing confidence

Release Notes

cloudflare/workerd

v4.20230511.0

Compare Source

kamilkisiela/graphql-hive

v0.22.0

Compare Source

Minor Changes
neo4j/graphql

v3.18.3

Compare Source

Patch Changes
evanw/esbuild

v0.17.19

Compare Source

  • Fix CSS transform bugs with nested selectors that start with a combinator (#​3096)

    This release fixes several bugs regarding transforming nested CSS into non-nested CSS for older browsers. The bugs were due to lack of test coverage for nested selectors with more than one compound selector where they all start with the same combinator. Here's what some problematic cases look like before and after these fixes:

    /* Original code */
    .foo {
      > &a,
      > &b {
        color: red;
      }
    }
    .bar {
      > &a,
      + &b {
        color: green;
      }
    }
    
    /* Old output (with --target=chrome90) */
    .foo :is(> .fooa, > .foob) {
      color: red;
    }
    .bar :is(> .bara, + .barb) {
      color: green;
    }
    
    /* New output (with --target=chrome90) */
    .foo > :is(a.foo, b.foo) {
      color: red;
    }
    .bar > a.bar,
    .bar + b.bar {
      color: green;
    }
  • Fix bug with TypeScript parsing of instantiation expressions followed by = (#​3111)

    This release fixes esbuild's TypeScript-to-JavaScript conversion code in the case where a potential instantiation expression is followed immediately by a = token (such that the trailing > becomes a >= token). Previously esbuild considered that to still be an instantiation expression, but the official TypeScript compiler considered it to be a >= operator instead. This release changes esbuild's interpretation to match TypeScript. This edge case currently appears to be problematic for other TypeScript-to-JavaScript converters as well:

    Original code TypeScript esbuild 0.17.18 esbuild 0.17.19 Sucrase Babel
    x<y>=a<b<c>>() x<y>=a(); x=a(); x<y>=a(); x=a() Invalid left-hand side in assignment expression
  • Avoid removing unrecognized directives from the directive prologue when minifying (#​3115)

    The directive prologue in JavaScript is a sequence of top-level string expressions that come before your code. The only directives that JavaScript engines currently recognize are use strict and sometimes use asm. However, the people behind React have made up their own directive for their own custom dialect of JavaScript. Previously esbuild only preserved the use strict directive when minifying, although you could still write React JavaScript with esbuild using something like --banner:js="'your directive here';". With this release, you can now put arbitrary directives in the entry point and esbuild will preserve them in its minified output:

    // Original code
    'use wtf'; console.log(123)
    
    // Old output (with --minify)
    console.log(123);
    
    // New output (with --minify)
    "use wtf";console.log(123);

    Note that this means esbuild will no longer remove certain stray top-level strings when minifying. This behavior is an intentional change because these stray top-level strings are actually part of the directive prologue, and could potentially have semantics assigned to them (as was the case with React).

  • Improved minification of binary shift operators

    With this release, esbuild's minifier will now evaluate the << and >>> operators if the resulting code would be shorter:

    // Original code
    console.log(10 << 10, 10 << 20, -123 >>> 5, -123 >>> 10);
    
    // Old output (with --minify)
    console.log(10<<10,10<<20,-123>>>5,-123>>>10);
    
    // New output (with --minify)
    console.log(10240,10<<20,-123>>>5,4194303);
enisdenjo/graphql-ws

v5.13.1

Compare Source

Bug Fixes

v5.13.0

Compare Source

Features

5.12.1 (2023-03-31)

Bug Fixes
  • Add file extensions to imports/exports in ESM type definitions (48775be)
Automattic/mongoose

v7.1.1

Compare Source

==================

ljharb/qs

v6.11.2

Compare Source

  • [Fix] parse: Fix parsing when the global Object prototype is frozen (#​473)
  • [Tests] add passing test cases with empty keys (#​473)
nodejs/undici

v5.22.1

Compare Source

What's Changed

New Contributors

Full Changelog: nodejs/undici@v5.22.0...v5.22.1

vitejs/vite

v4.3.7

Compare Source

v4.3.6

Compare Source


Configuration

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

🚦 Automerge: Enabled.

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.

@changeset-bot
Copy link

changeset-bot bot commented May 10, 2023

🦋 Changeset detected

Latest commit: 94397b8

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 18 packages
Name Type
@graphql-mesh/neo4j Patch
@omnigraph/json-schema Patch
neo4j-example Patch
@graphql-mesh/json-schema Patch
@omnigraph/raml Patch
auth0-example Patch
cloudflare-workers Patch
example-gcp Patch
hasura-openbrewery-geodb Patch
hello-world-esm Patch
json-schema-hello-world Patch
covid-mesh Patch
json-schema-example Patch
json-schema-fhir Patch
json-schema-file-upload Patch
json-schema-subscriptions Patch
reddit-example Patch
@graphql-mesh/raml Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@github-actions
Copy link
Contributor

github-actions bot commented May 11, 2023

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@graphql-mesh/grpc 0.93.3-alpha-20230516173203-94397b83c npm ↗︎ unpkg ↗︎
@graphql-mesh/json-schema 0.93.2-alpha-20230516173203-94397b83c npm ↗︎ unpkg ↗︎
@graphql-mesh/neo4j 0.93.3-alpha-20230516173203-94397b83c npm ↗︎ unpkg ↗︎
@graphql-mesh/raml 0.93.2-alpha-20230516173203-94397b83c npm ↗︎ unpkg ↗︎
@graphql-mesh/soap 0.93.2-alpha-20230516173203-94397b83c npm ↗︎ unpkg ↗︎
@omnigraph/json-schema 0.93.2-alpha-20230516173203-94397b83c npm ↗︎ unpkg ↗︎
@omnigraph/raml 0.93.2-alpha-20230516173203-94397b83c npm ↗︎ unpkg ↗︎
@omnigraph/soap 0.93.2-alpha-20230516173203-94397b83c npm ↗︎ unpkg ↗︎

@github-actions
Copy link
Contributor

github-actions bot commented May 11, 2023

💻 Website Preview

The latest changes are available as preview in: https://de12e66f.graphql-mesh.pages.dev

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 37f757a to 4b3585b Compare May 11, 2023 09:51
@renovate renovate bot changed the title chore(deps): update dependency mongoose to v7.1.1 chore(deps): update all non-major dependencies May 11, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4b3585b to adb551d Compare May 11, 2023 16:33
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies May 11, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from adb551d to 57eabeb Compare May 11, 2023 20:56
@renovate renovate bot requested a review from ardatan May 12, 2023 01:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 57eabeb to 66318c5 Compare May 12, 2023 09:10
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies May 12, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 66318c5 to 93ddf7d Compare May 12, 2023 12:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 841e571 to 4f2ea19 Compare May 16, 2023 17:22
@renovate
Copy link
Contributor Author

renovate bot commented May 16, 2023

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.

@ardatan ardatan merged commit 272c3f9 into master May 16, 2023
@ardatan ardatan deleted the renovate/all-minor-patch branch May 16, 2023 17:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant