the-control-group / authx

An authentication & authorization platform for service-oriented architectures.
MIT License
47 stars 6 forks source link

Bump the minor-updates group across 1 directory with 20 updates #701

Closed dependabot[bot] closed 3 weeks ago

dependabot[bot] commented 1 month ago

Bumps the minor-updates group with 20 updates in the / directory:

Package From To
lerna 8.1.3 8.1.8
prettier 3.3.0 3.3.3
eslint-plugin-prettier 5.1.3 5.2.1
typescript 5.4.5 5.5.4
graphql 16.8.1 16.9.0
graphql-relay 0.10.1 0.10.2
pg 8.11.5 8.12.0
@types/pg 8.11.6 8.11.8
@types/http-proxy 1.17.14 1.17.15
@tanstack/react-query 5.40.0 5.55.4
@types/react 18.3.3 18.3.5
eslint-plugin-react 7.34.2 7.35.2
@graphiql/react 0.22.0 0.26.2
@graphiql/toolkit 0.9.1 0.11.0
css-loader 7.1.1 7.1.2
graphiql 3.2.1 3.7.1
graphql-config 5.0.3 5.1.2
html-loader 5.0.0 5.1.0
mini-css-extract-plugin 2.9.0 2.9.1
webpack 5.91.0 5.94.0

Updates lerna from 8.1.3 to 8.1.8

Release notes

Sourced from lerna's releases.

v8.1.8

8.1.8 (2024-08-05)

Bug Fixes

  • publish: upgrade @​npmcli/arborist to 7.5.4 (#4058) (89de0eb)
  • version: truncate release body based on maximum size allowed by VCS client (#4041) (3c2a3c9)

Features

  • publish: enable throttling when publishing modules (#4013) (fccca12)

v8.1.7

8.1.7 (2024-07-21)

Bug Fixes

v8.1.6

8.1.6 (2024-07-05)

Bug Fixes

v8.1.5

8.1.5 (2024-06-24)

Bug Fixes

  • update npm utility dependencies and related packages (#4033) (bd1c2d8)

v8.1.4

8.1.4 (2024-06-09)

Bug Fixes

  • specify 'dependencies: true' when prepping task runner options (#4017) (244462d)
Changelog

Sourced from lerna's changelog.

8.1.8 (2024-08-05)

Bug Fixes

  • publish: upgrade @​npmcli/arborist to 7.5.4 (#4058) (89de0eb)

8.1.7 (2024-07-21)

Bug Fixes

8.1.6 (2024-07-05)

Bug Fixes

8.1.5 (2024-06-24)

Bug Fixes

  • update npm utility dependencies and related packages (#4033) (bd1c2d8)

8.1.4 (2024-06-09)

Note: Version bump only for package lerna

Commits
  • 0343c31 chore(misc): publish 8.1.8
  • 3cd9bc9 chore: update e2e-repair snapshots with new output (#4059)
  • 89de0eb fix(publish): upgrade @​npmcli/arborist to 7.5.4 (#4058)
  • 10fcb3a chore(misc): publish 8.1.7
  • 6e5cfbc fix: set explicit strip-ansi dependency (#4045)
  • 8d68f1d chore(misc): publish 8.1.6
  • 5f3603a fix: set explicit string-width dependency (#4038)
  • 3f91a34 chore(misc): publish 8.1.5
  • bd1c2d8 fix: update npm utility dependencies and related packages (#4033)
  • 7bd9835 chore(misc): publish 8.1.4
  • Additional commits viewable in compare view


Updates prettier from 3.3.0 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​footagged template
class X {}

// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits


Updates eslint-plugin-prettier from 5.1.3 to 5.2.1

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.2.1

Patch Changes

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.2.1

Patch Changes

5.2.0

Minor Changes

Commits
  • 51324d9 chore: fix CHANGELOG.md formatting issue
  • 24288c7 chore: release eslint-plugin-prettier (#669)
  • ac036cc build(deps): Bump synckit from 0.8.6 to 0.9.1 (#668)
  • a1e6f4a build(deps): Bump braces from 3.0.2 to 3.0.3 (#665)
  • de9751c build(deps): Bump pnpm/action-setup from 2 to 4 in the actions group (#661)
  • 02c21a5 chore: release eslint-plugin-prettier (#653)
  • f170011 feat: support parsing html via @html-eslint/parser natively (#652)
  • See full diff in compare view


Updates typescript from 5.4.5 to 5.5.4

Release notes

Sourced from typescript's releases.

TypeScript 5.5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) into release-5.5 (#...
  • Additional commits viewable in compare view


Updates graphql from 16.8.1 to 16.9.0

Release notes

Sourced from graphql's releases.

v16.9.0 (2024-06-21)

New Feature 🚀

  • #4119 backport[v16]: Introduce "recommended" validation rules (@​benjie)
  • #4122 backport[v16]: Enable passing values configuration to GraphQLEnumType as a thunk (@​benjie)
  • #4124 backport[v16]: Implement OneOf Input Objects via @oneOf directive (@​benjie)

Committers: 1

v16.8.2 (2024-06-12)

Bug Fix 🐞

Internal 🏠

Committers: 2

Commits
  • 556a01e 16.9.0
  • 6a1614c backport[v16]: Enable passing values configuration to GraphQLEnumType as a th...
  • 29144f7 backport[v16]: Implement OneOf Input Objects via @oneOf directive (#4124)
  • c35130e Revert error extension symbol (#4123)
  • 29c1bff feat: allow defining symbol error extensions (#3730)
  • c985c27 backport[v16]: Introduce "recommended" validation rules (#4119)
  • 08779a0 16.8.2
  • c82609e Fix publish scripts (#4104)
  • 0d12b06 fix: remove globalThis check and align with what bundlers can accept (#4022)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by benjie, a new releaser for graphql since your current version.


Updates graphql-relay from 0.10.1 to 0.10.2

Release notes

Sourced from graphql-relay's releases.

v0.10.2 (2024-07-11)

Bug Fix 🐞

Docs 📝

Committers: 2

Commits


Updates pg from 8.11.5 to 8.12.0

Changelog

Sourced from pg's changelog.

pg@8.12.0

pg-pool@8.10.0

  • Emit release event when client is returned to the pool.

pg@8.9.0

pg@8.8.0

pg-pool@3.5.0

pg@8.7.0

  • Add optional config to pool to allow process to exit if pool is idle.

pg-cursor@2.7.0

pg@8.6.0

pg-query-stream@4.0.0

  • Library has been converted to Typescript. The behavior is identical, but there could be subtle breaking changes due to class names changing or other small inconsistencies introduced by the conversion.

pg@8.5.0

... (truncated)

Commits


Updates @types/pg from 8.11.6 to 8.11.8

Commits


Updates @types/http-proxy from 1.17.14 to 1.17.15

Commits


Updates @tanstack/react-query from 5.40.0 to 5.55.4

Release notes

Sourced from @​tanstack/react-query's releases.

v5.55.4

Version 5.55.4 - 9/9/24, 6:38 AM

Changes

Fix

Packages

  • @​tanstack/query-core@​5.55.4
  • @​tanstack/query-broadcast-client-experimental@​5.55.4
  • @​tanstack/query-persist-client-core@​5.55.4
  • @​tanstack/query-sync-storage-persister@​5.55.4
  • @​tanstack/react-query@​5.55.4
  • @​tanstack/react-query-devtools@​5.55.4
  • @​tanstack/react-query-persist-client@​5.55.4
  • @​tanstack/react-query-next-experimental@​5.55.4
  • @​tanstack/solid-query@​5.55.4
  • @​tanstack/solid-query-devtools@​5.55.4
  • @​tanstack/solid-query-persist-client@​5.55.4
  • @​tanstack/svelte-query@​5.55.4
  • @​tanstack/svelte-query-devtools@​5.55.4
  • @​tanstack/svelte-query-persist-client@​5.55.4
  • @​tanstack/vue-query@​5.55.4
  • @​tanstack/vue-query-devtools@​5.55.4
  • @​tanstack/angular-query-experimental@​5.55.4
  • @​tanstack/query-async-storage-persister@​5.55.4
  • @​tanstack/angular-query-devtools-experimental@​5.55.4

v5.55.3

Version 5.55.3 - 9/9/24, 6:16 AM

Changes

Fix

  • replace JSON.stringify with replaceDeepEqual in structural sharing integrity check (#8030) (1bffc78) by jxom

Chore

  • angular-query: remove redundant dependencies (#8032) (d58cf08) by Arnoud

Docs

  • react-query: Update React Suspens Link in README.md (#8020) (9b78527) by Cyril Leclercq

Packages

... (truncated)

Commits


Updates @types/react from 18.3.3 to 18.3.5

Commits


Updates eslint-plugin-react from 7.34.2 to 7.35.2

Release notes

Sourced from eslint-plugin-react's releases.

v7.35.2

Fixed

#3814: jsx-eslint/eslint-plugin-react#3814 jsx-curly-brace-presence: docs/rules/jsx-curly-brace-presence.md

v7.35.1

Fixed

#3798: jsx-eslint/eslint-plugin-react#3798

... (truncated)

Changelog

Sourced from eslint-plugin-react's changelog.

[7.35.2] - 2024.09.03

Fixed

  • [jsx-curly-brace-presence]: avoid autofixing attributes with double quotes to a double quoted attribute (#3814[] @​ljharb)

#3814: jsx-eslint/eslint-plugin-react#3814

7.35.1 - 2024.09.02

Fixed

  • [jsx-curly-brace-presence]: do not trigger on strings containing a quote character (#3798[] @​akulsr0)

#3798: jsx-eslint/eslint-plugin-react#3798

7.35.0 - 2024.07.19

Added

Fixed

  • [no-invalid-html-attribute]: substitute placeholders in suggestion messages (#3759[] @​mdjermanovic)
  • [sort-prop-types]: single line type ending without semicolon (#3784[] @​akulsr0)
  • [require-default-props]: report when required props have default value (#3785[] @​akulsr0)

Changed

#3785: jsx-eslint/eslint-plugin-react#3785 #3784: jsx-eslint/eslint-plugin-react#3784 #3782: jsx-eslint/eslint-plugin-react#3782 #3777: jsx-eslint/eslint-plugin-react#3777 #3774: jsx-eslint/eslint-plugin-react#3774 #3772: jsx-eslint/eslint-plugin-react#3772 #3771: jsx-eslint/eslint-plugin-react#3771 #3759: jsx-eslint/eslint-plugin-react#3759 #3748: jsx-eslint/eslint-plugin-react#3748 #3724: jsx-eslint/eslint-plugin-react#3724 #3694: jsx-eslint/eslint-plugin-react#3694

[7.34.4] - 2024.07.13

... (truncated)

Commits
  • 4c10849 Update CHANGELOG and bump version
  • 45ba6bc [Fix] jsx-curly-brace-presence: avoid autofixing attributes with double quo...
  • e538ee9 [Tests] jsx-curly-brace-presence: clean up formatting
  • 5fc0f87 Update CHANGELOG and bump version
  • a2306e7 [Tests] use npm audit instead of aud
  • d9c7ef1 [Dev Deps] update @babel/core, @babel/eslint-parser, aud
  • 10eb235 [Fix] jsx-curly-brace-presence: do not trigger on strings containing a quot...
  • 0170dbe [Refactor] add astUtil.isCallExpression predicate
  • 3b6bacc [Refactor] general cleanup
  • 8dc0215 [Refactor] hoist functions to module level
  • Additional commits viewable in compare view


Updates @graphiql/react from 0.22.0 to 0.26.2

Release notes

Sourced from @​graphiql/react's releases.

@​graphiql/react@​0.26.2

Patch Changes

  • #3751 b8538d8 Thanks @​dimaMachina! - replace deprecated navigator.platform with navigator.userAgent

    fix placeholder ⌘ K in doc explorer search input for non mac devices, replace by Ctrl K

  • Updated dependencies [b8538d8]:

    • codemirror-graphql@2.1.1

@​graphiql/react@​0.26.1

Patch Changes

@​graphiql/react@​0.26.0

Minor Changes

Patch Changes

  • #3441 959ed21 Thanks @​cimdalli! - fix: set query editor to defaultQuery while adding a new tab or GraphiQL's default query

    # Welcome to GraphiQL
    #
    # GraphiQL is an in-browser tool for writing, validating, and
    # testing GraphQL queries.
    

    ...

@​graphiql/react@​0.25.0

Minor Changes

@​graphiql/react@​0.23.1

Patch Changes

@​graphiql/react@​0.23.0

Minor Changes

... (truncated)

Changelog

Sourced from @​graphiql/react's changelog.

0.26.2

Patch Changes

  • #3751 b8538d8 Thanks @​dimaMachina! - replace deprecated navigator.platform with navigator.userAgent

    fix placeholder ⌘ K in doc explorer search input for non mac devices, replace by Ctrl K

  • Updated dependencies [b8538d8]:

    • codemirror-graphql@2.1.1

0.26.1

Patch Changes

0.26.0

Minor Changes

Patch Changes

  • #3441 959ed21 Thanks @​cimdalli! - fix: set query editor to defaultQuery while adding a new tab or GraphiQL's default query

    # Welcome to GraphiQL
    #
    # GraphiQL is an in-browser tool for writing, validating, and
    # testing GraphQL queries.
    

    ...

0.25.0

Minor Changes

0.24.0

Minor Changes

... (truncated)

Commits
  • a929862 Version Packages (#3752)
  • b8538d8 [graphiql] fix placeholder ⌘ K in doc explorer search input for non mac dev...
  • 1a561b3 Version Packages (#3745)
  • 7275c19 [graphiql-react] create instance of new HistoryStore and new StorageAPI o...
  • 26cd829 Version Packages (#3731)
  • 9aef83a add defaultTheme prop to specify default theme if no previous value stored (#...
  • 959ed21 fix: use the default query on adding a new tab (#3441)
  • 40bbd61 Version Packages (#3724)
  • 7404e8e Add webp to image-preview (#3532)
  • db6afa9 update graphql v17 to alpha 7 and remove patch (#3722)
  • Additional commits viewable in compare view


Updates @graphiql/toolkit from 0.9.1 to 0.11.0

Release notes

Sourced from @​graphiql/toolkit's releases.

@​graphiql/toolkit@​0.11.0

Minor Changes

  • #3747 21c4409 Thanks @​dimaMachina! - do not include require statements in ESM build, include import in esm and require in cjs builds

    make getWsFetcher, createWebsocketsFetcherFromUrl async

  • #3746

    github-actions[bot] commented 1 month ago

    Dependency Review

    The following issues were found:

    • ✅ 0 vulnerable package(s)
    • ❌ 1 package(s) with incompatible licenses
    • ✅ 0 package(s) with invalid SPDX license definitions
    • ✅ 0 package(s) with unknown licenses.
    • ⚠️ 6 packages with OpenSSF Scorecard issues.

    View full job summary

sonarcloud[bot] commented 1 month ago
dependabot[bot] commented 3 weeks ago

Superseded by #702.