jarle / remix-starter-kit

Starter kit for building Remix apps with AdonisJS 6
5 stars 0 forks source link

Bump the minor-upgrades group with 12 updates #18

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the minor-upgrades group with 12 updates:

Package From To
@adonisjs/auth 9.1.1 9.2.0
@adonisjs/core 6.3.1 6.5.0
@matstack/remix-adonisjs 0.0.18 0.0.22
isbot 5.1.3 5.1.4
reflect-metadata 0.2.1 0.2.2
@adonisjs/assembler 7.2.3 7.4.0
@japa/plugin-adonisjs 3.0.0 3.0.1
@swc/core 1.4.8 1.4.13
@types/node 20.11.30 20.12.7
@types/react 18.2.69 18.2.78
@types/react-dom 18.2.22 18.2.25
typescript 5.4.3 5.4.5

Updates @adonisjs/auth from 9.1.1 to 9.2.0

Release notes

Sourced from @​adonisjs/auth's releases.

Configure basic auth guard and export authFinder mixin from its own subpath

The @adonisjs/auth can be used with Lucid if someone creates a guard that does not use Lucid under the hood.

However, we were exporting the withAuthFinder mixin from the main entrypoint of the package and this mixin relies on Lucid. Therefore Lucid becomes a hard dependency of the Auth package.

After this release, we have moved the mixin to its own sub module and you can import it as follows.

- import { withAuthFinder } from '@adonisjs/auth'
+ import { withAuthFinder } from '@adonisjs/auth/mixins/lucid'

Commits

  • refactor: export Lucid mixins from its own subpath with descriptive name 15d3761
  • Merge pull request #243 from parker-codes/chore/add-basic-auth-guard c61ccb1
  • Merge pull request #239 from adonisjs/fix/hard-dependency d53cb84
  • chore: add Basic auth guard c58e683
  • fix(mixins): update deprecation status f8a5715
  • fix(mixins): ensure we do not lose type of withAuthFinder 96663d3
  • fix(mixins): rewrite broken imports 19d7042
  • fix(mixins): add mixins file to tsup entry e4df074
  • fix(mixins): remove withAuthFinder from root export 5d04dde

What's Changed

New Contributors

Full Changelog: https://github.com/adonisjs/auth/compare/v9.1.1...v9.2.0

Commits
  • 014a6dd chore(release): 9.2.0
  • 15d3761 refactor: export Lucid mixins from its own subpath with descriptive name
  • c61ccb1 Merge pull request #243 from parker-codes/chore/add-basic-auth-guard
  • d53cb84 Merge pull request #239 from adonisjs/fix/hard-dependency
  • c58e683 chore: add Basic auth guard
  • f8a5715 fix(mixins): update deprecation status
  • 96663d3 fix(mixins): ensure we do not lose type of withAuthFinder
  • 19d7042 fix(mixins): rewrite broken imports
  • e4df074 fix(mixins): add mixins file to tsup entry
  • 5d04dde fix(mixins): remove withAuthFinder from root export
  • See full diff in compare view


Updates @adonisjs/core from 6.3.1 to 6.5.0

Release notes

Sourced from @​adonisjs/core's releases.

OnHttpServerMessage hook

Changes

Added a new onHttpServerMessage hook that can be used to intercept the message sent by your HTTP Server. This hook must be defined in the adonisrc.ts file, like other hooks.

import { defineConfig } from '@adonisjs/core/app';

export default defineConfig({ unstable_assembler: { onHttpServerMessage: [() => import('./my_http_server_message_hook.js')] }, })

Commits

  • feat: pass onHttpServerMessage hook from rcFile to assembler DevServer (82ecae3b)

Full Changelog: https://github.com/adonisjs/core/compare/v6.4.0...v6.5.0

Update Env module allowing us to use Identifier

  • chore: remove support for VineJS 2.0 (b49f28f3)
  • chore: switch to release-it (0c9216dd)
  • chore: update dependencies (2d2bac79)
  • chore: allow to use new VineJS major release (e1d0325a)
  • chore: allow to use new VineJS major release (071254f2)
  • refactor: pass flags and arguments as array in ace command (df6466d3)
Commits
  • be5d01a chore(release): 6.5.0
  • 82ecae3 feat: pass onHttpServerMessage hook from rcFile to assembler DevServer
  • 8fb5b6f chore(release): 6.4.0
  • b49f28f chore: remove support for VineJS 2.0
  • 0c9216d chore: switch to release-it
  • 2d2bac7 chore: update dependencies
  • e1d0325 chore: allow to use new VineJS major release
  • 071254f chore: allow to use new VineJS major release
  • df6466d refactor: pass flags and arguments as array in ace command
  • See full diff in compare view


Updates @matstack/remix-adonisjs from 0.0.18 to 0.0.22

Commits


Updates isbot from 5.1.3 to 5.1.4

Changelog

Sourced from isbot's changelog.

5.1.4

  • Recognise search providers inapp browsers
  • Ignore Crosswalk project: An old project that is no longer maintained and has insignificant usage
  • PDRL Analyzer
Commits


Updates reflect-metadata from 0.2.1 to 0.2.2

Commits


Updates @adonisjs/assembler from 7.2.3 to 7.4.0

Release notes

Sourced from @​adonisjs/assembler's releases.

OnHttpServerMessage hook

Changes

The DevServer class now accepts a new onHttpServerMessage hook that will be called when the HTTP child process sends a message to the parent process ( the assembler ).

Commits

  • fix: windows flakky test (e9d78ee)
  • feat: add onHttpServerMessage hook (516a1fb)

Full Changelog: https://github.com/adonisjs/assembler/compare/v7.3.0...v7.4.0

Update Env module allowing us to use Identifier

  • chore: migrate to release-it (b573ce2)
  • chore: migrate to release-it (3d75537)
  • chore: bump node version (5589087)
  • chore: update dependencies (00b4217)
Commits


Updates @japa/plugin-adonisjs from 3.0.0 to 3.0.1

Release notes

Sourced from @​japa/plugin-adonisjs's releases.

Update dependencies

  • chore: update dependencies 06e3c29

Full Changelog: https://github.com/japa/plugin-adonisjs/compare/v3.0.0...v3.0.1

Commits


Updates @swc/core from 1.4.8 to 1.4.13

Changelog

Sourced from @​swc/core's changelog.

[1.4.13] - 2024-04-09

Bug Fixes

  • (es/decorators) Fix capacity overflow with decorators (#8818) (9ed93c1)

  • (es/minifier) Respect top_retain for top-level functions (#8814) (811308c)

  • (es/minifier) Abort IIFE invoker in function parameters (#8828) (ebb68db)

  • (es/module) Respect module.resolveFully in more cases (#8820) (e1f7704)

  • (es/transforms) Fix capacity overflow with decorators (#8815) (974f5c7)

  • (plugin/runner) Pin version of virtual-fs (#8827) (089f61b)

  • (visit) Improve Map implementation for Box (#8819) (dc04657)

[1.4.12] - 2024-04-04

Bug Fixes

  • (common) Fix source index for inputSourceMap (#8800) (4f9ab81)

  • (es) Change default value of inputSourceMap to true (#8801) (9ffcd18)

  • (es/bugfixes) Fix fn transform in nameless fns (#8796) (7ad004e)

  • (es/helpers) Fix metadata of decorators being undefined (#8768) (263ce6e)

  • (es/minifier) Abort fn inliner if there's a spread arg (#8809) (730ded2)

  • (es/module) Fix jsc.paths with resolveFully (#8784) (4961bb0)

... (truncated)

Commits
  • 1a5b2f7 chore: Publish 1.4.13 with swc_core v0.90.30
  • 487992d chore: Bump crates
  • ebb68db fix(es/minifier): Abort IIFE invoker in function parameters (#8828)
  • 7fcfc74 chore: Publish 1.4.13-nightly-20240409.1
  • bc9c903 chore: Bump crates
  • 9ed93c1 fix(es/decorators): Fix capacity overflow with decorators (#8818)
  • 8f9aadd chore: Bump crates
  • dc04657 fix(visit): Improve Map implementation for Box (#8819)
  • aa4ed06 chore: Allow gist.github.com for repros
  • e63b39b chore: Bump crates
  • Additional commits viewable in compare view


Updates @types/node from 20.11.30 to 20.12.7

Commits


Updates @types/react from 18.2.69 to 18.2.78

Commits


Updates @types/react-dom from 18.2.22 to 18.2.25

Commits


Updates typescript from 5.4.3 to 5.4.5

Release notes

Sourced from typescript's releases.

TypeScript 5.4.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.4.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • 27bcd4c Update LKG
  • 9f33bf1 🤖 Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...
  • 71b2f84 Bump version to 5.4.5 and LKG
  • 892936f 🤖 Pick PR #58083 (Don't propagate partial union/inter...) into release-5.4 (#...
  • 38a7c05 release-5.4: Always set node-version for setup-node (#58117)
  • b754fc3 🤖 Pick PR #57778 (fix type import check for default-i...) into release-5.4 (#...
  • 8eb3367 Bump version to 5.4.4 and LKG
  • de9096b 🤖 Pick PR #57871 (Divide-and-conquer strategy for int...) into release-5.4 (#...
  • 06aae98 🤖 Pick PR #57973 (Compare package.json paths with cor...) into release-5.4 (#...
  • 6d8134e 🤖 Pick PR #57637 (Fixed a regression related to deter...) into release-5.4 (#...
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 6 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.