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

Closed dependabot[bot] closed 1 month 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.53.2
@types/react 18.3.3 18.3.5
eslint-plugin-react 7.34.2 7.35.0
@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.53.2

Release notes

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

v5.53.2

Version 5.53.2 - 9/1/24, 8:41 PM

Changes

Fix

  • vue-query: invalidate queries immediately after calling invalidateQueries (#7930) (c91c720) by @​Mini-ghost

Chore

  • angular-query: add injection context tests (#7993) (cc20045) by Arnoud
  • deps: update to @​tanstack/config 0.13.1 (#7986) (4b2c8c5) by Lachlan Collins

Docs

  • angular-query: update overview and readme (#7994) (4977296) by Arnoud

Packages

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

v5.53.1

Version 5.53.1 - 8/30/24, 10:29 AM

Changes

Fix

  • query-core: handle errors that occur inside setData method (#7966) (50315ac) by Bohdan Yefimenko

Chore

... (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.0

Release notes

Sourced from eslint-plugin-react's releases.

v7.35.0

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

#3759: jsx-eslint/eslint-plugin-react#3759 #3694: jsx-eslint/eslint-plugin-react#3694 #3771: jsx-eslint/eslint-plugin-react#3771

#1000: jsx-eslint/eslint-plugin-react#1000 #1002: jsx-eslint/eslint-plugin-react#1002 #1005: jsx-eslint/eslint-plugin-react#1005 #100: jsx-eslint/eslint-plugin-react#100 #1010: jsx-eslint/eslint-plugin-react#1010 #1013: jsx-eslint/eslint-plugin-react#1013 #1022: jsx-eslint/eslint-plugin-react#1022 #1029: jsx-eslint/eslint-plugin-react#1029 #102: jsx-eslint/eslint-plugin-react#102 #1034: jsx-eslint/eslint-plugin-react#1034 #1038: jsx-eslint/eslint-plugin-react#1038 #1041: jsx-eslint/eslint-plugin-react#1041 #1043: jsx-eslint/eslint-plugin-react#1043 #1046: jsx-eslint/eslint-plugin-react#1046 #1047: jsx-eslint/eslint-plugin-react#1047 #1050: jsx-eslint/eslint-plugin-react#1050 #1053: jsx-eslint/eslint-plugin-react#1053 #1057: jsx-eslint/eslint-plugin-react#1057 #105: jsx-eslint/eslint-plugin-react#105 #1061: jsx-eslint/eslint-plugin-react#1061 #1062: jsx-eslint/eslint-plugin-react#1062 #1070: jsx-eslint/eslint-plugin-react#1070 #1071: jsx-eslint/eslint-plugin-react#1071 #1073: jsx-eslint/eslint-plugin-react#1073 #1076: jsx-eslint/eslint-plugin-react#1076 #1079: jsx-eslint/eslint-plugin-react#1079 #1088: jsx-eslint/eslint-plugin-react#1088

... (truncated)

Changelog

Sourced from eslint-plugin-react's changelog.

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

Fixed

  • [prop-types]: fix className missing in prop validation false negative (#3749[] @​akulsr0)
  • [sort-prop-types]: Check for undefined before accessing node.typeAnnotation.typeAnnotation (#3779[] @​tylerlaprade)

#3779: jsx-eslint/eslint-plugin-react#3779 #3749: jsx-eslint/eslint-plugin-react#3749

[7.34.3] - 2024.06.18

Fixed

  • [prop-types]: null-check rootNode before calling getScope (#3762[] @​crnhrv)
  • [boolean-prop-naming]: avoid a crash with a spread prop (#3733[] @​ljharb)
  • [jsx-boolean-value]: assumeUndefinedIsFalse with never must not allow explicit true value (#3757[] @​6uliver)

... (truncated)

Commits
  • c6fdccd Update CHANGELOG and bump version
  • a4b0bbc [Fix] require-default-props: report when required props have default value
  • a08cb93 [Fix] sort-prop-types: single line type ending without semicolon
  • 4b3209b [meta] no point in supporting eslint 9.0 - 9.6 initially
  • ca8b11e [Dev Deps] update @babel/core, @babel/eslint-parser
  • 597553d [New] no-danger: add customComponentNames option
  • c58f04b [New] jsx-closing-tag-location: add line-aligned option
  • 00b89fe [New] version settings: Allow react defaultVersion to be configurable
  • 4d2fd86 [Refactor] variableUtil: Avoid creating a single flat variable scope for ea...
  • 6a83d67 [New] jsx-handler-names: support ignoring component names
  • 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

    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 1 month ago

Superseded by #701.