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 13 updates #20

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the minor-upgrades group with 13 updates:

Package From To
@adonisjs/auth 9.1.1 9.2.0
@adonisjs/core 6.3.1 6.7.0
@adonisjs/session 7.3.0 7.4.0
@matstack/remix-adonisjs 0.0.21 0.0.22
isbot 5.1.3 5.1.4
reflect-metadata 0.2.1 0.2.2
@adonisjs/assembler 7.2.3 7.5.0
@japa/plugin-adonisjs 3.0.0 3.0.1
@swc/core 1.4.8 1.4.14
@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.7.0

Release notes

Sourced from @​adonisjs/core's releases.

Experimental support for HMR

Alright, so we have finally landed support for HMR in experimental mode. Once you upgrade the @adonisjs/core and the @adonisjs/assembler packages to their latest releases, you can start using the HMR mode.

This is what you need to do.

npm i -D hot-hook @adonisjs/assembler@latest
npm i @adonisjs/core@latest

Next update the package.json file with the following configuration

"hotHook": {
    "boundaries": [
      "../app/controllers/**/*.ts",
      "../app/middlewares/*.ts"
    ]
  }

And start the HTTP server as follows.

node ace serve --unstable-hmr

If you use npm scripts, then make sure to update the dev script as well in the package.json file.

{
  "scripts": {
    "dev": "node ace serve --unstable-hmr"
  }
}

Commits

  • Merge pull request #4504 from adonisjs/feat/hmr (e472091)
  • refactor: remove unused symbols (fbdae40)
  • chore: update dependencies (4a9d201)
  • Merge branch 'develop' into feat/hmr (9b2aadc)
  • refactor: move to --unstable-hmr flag (cdc266a)
  • test: add test (6c2bff9)
  • feat: add serve --hmr flag (3e11c21)

What's Changed

... (truncated)

Commits


Updates @adonisjs/session from 7.3.0 to 7.4.0

Release notes

Sourced from @​adonisjs/session's releases.

Make session class macroable and update main exports

  • fix: call super b743db5
  • feat: make session class macroable 1d85cee
  • feat: export ValuesStore, Session and ReadOnlyValuesStore classes 51d5e22
  • chore: update peer dependencies fd7987f
  • chore: update dependencies fb6289f
  • feat: export ValuesStore, Session and ReadOnlyValuesStore classes 10a04b6

What's Changed

New Contributors

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

Commits
  • 40242c6 chore(release): 7.4.0
  • b743db5 fix: call super
  • 1d85cee feat: make session class macroable
  • 51d5e22 feat: export ValuesStore, Session and ReadOnlyValuesStore classes
  • fd7987f chore: update peer dependencies
  • fb6289f chore: update dependencies
  • 10a04b6 feat: export ValuesStore, Session and ReadOnlyValuesStore classes
  • See full diff in compare view


Updates @matstack/remix-adonisjs from 0.0.21 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.5.0

Release notes

Sourced from @​adonisjs/assembler's releases.

And support for hot-hook

After this release, assembler will integrate natively with the hot-hook npm package. When the hmr option is enabled, assembler will run the Dev server child process with the hot-hook loader and listen for the messages sent by the hot-hook loader.

Commits

  • test: fix flaky tests (9de19c6)
  • chore: update dependencies (56935db)
  • Merge pull request #77 from adonisjs/feat/hmr (4392202)
  • feat: hmr (57781e4)

What's Changed

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

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.14

Changelog

Sourced from @​swc/core's changelog.

[1.4.14] - 2024-04-15

Bug Fixes

Documentation

  • (swc_core) Resolve build issue with --all-features flag (#8848) (c0d901e)

Refactor

Testing

  • (es) Update conformance test suite from tsc (#8834) (ea5d9cc)

[1.4.13] - 2024-04-09

Bug Fixes

... (truncated)

Commits


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