jarle / remix-adonisjs

Build fullstack Remix applications powered by AdonisJS
https://remix-adonisjs.matstack.dev/
MIT License
35 stars 2 forks source link

Bump the minor-upgrades group with 17 updates #28

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the minor-upgrades group with 17 updates:

Package From To
@poppinss/utils 6.7.2 6.7.3
@adonisjs/core 6.3.1 6.5.0
@adonisjs/http-server 7.1.0 7.2.0
@japa/expect 3.0.1 3.0.2
@japa/runner 3.1.1 3.1.2
@swc/core 1.4.8 1.4.11
@types/node 20.11.28 20.12.2
np 10.0.1 10.0.2
typescript 5.4.2 5.4.3
@adonisjs/lucid 20.4.0 20.5.1
@adonisjs/session 7.1.1 7.3.0
edge.js 6.0.1 6.0.2
reflect-metadata 0.2.1 0.2.2
@adonisjs/assembler 7.2.3 7.4.0
@types/react 18.2.66 18.2.73
@types/react-dom 18.2.22 18.2.23
vite 5.1.6 5.2.7

Updates @poppinss/utils from 6.7.2 to 6.7.3

Release notes

Sourced from @​poppinss/utils's releases.

Update dependencies

  • chore: update dependencies 117f2e2
  • chore: update dependencies c3d46cb

Full Changelog: https://github.com/poppinss/utils/compare/v6.7.2...v6.7.3

Commits


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 @adonisjs/http-server from 7.1.0 to 7.2.0

Release notes

Sourced from @​adonisjs/http-server's releases.

Add response.onFinish method to listen when response is finished

Please consult the documentation on how response.onFinish method works. https://docs.adonisjs.com/guides/response#running-actions-after-response-finishes

Commits

  • fix: fix invalid types bf4f0bb
  • feat: add response.onFinish method 647d400

https://github.com/adonisjs/http-server/compare/v7.1.0...v7.2.0

Full Changelog: https://github.com/adonisjs/http-server/compare/v7.1.0...v7.2.0

Commits


Updates @japa/expect from 3.0.1 to 3.0.2

Release notes

Sourced from @​japa/expect's releases.

Update dependencies

  • chore: update dependencies 478ad4b

Full Changelog: https://github.com/japa/expect/compare/v3.0.1...v3.0.2

Commits


Updates @japa/runner from 3.1.1 to 3.1.2

Release notes

Sourced from @​japa/runner's releases.

Update dependencies

  • chore: update dependencies bceba2f

Full Changelog: https://github.com/japa/runner/compare/v3.1.1...v3.1.2

Commits


Updates @swc/core from 1.4.8 to 1.4.11

Changelog

Sourced from @​swc/core's changelog.

Changelog

[unreleased]

Bug Fixes

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

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

  • (es/parser) Tweak msg of SyntaxError::UsingDeclNotEnabled (#8791) (95c822e)

Features

  • (plugin/runner) Improve error message for Wasm plugin crashes (#8794) (571d297)

Miscellaneous Tasks

  • (es/transforms) Add repository field to swc_ecma_ext_transforms (#8793) (37f0a79)

Performance

[1.4.9] - 2024-03-26

Bug Fixes

  • (es/minifier) Abort eval on valueOf or toString (#8763) (9f98a70)

  • (es/minifier) Fix tpl-to-string conversion (#8778) (e7bca10)

  • (es/module) Fix interop of jsc.paths with symlinks (#8757) (e2c6db5)

  • (es/parser) Fix parsing of TypeScript type instantiation (#8758) (2d6de94)

... (truncated)

Commits
  • 4936c37 chore: Publish 1.4.11 with swc_core v0.90.26
  • 2b8aa63 chore: Fix update script
  • e507a18 chore: Update changelog
  • 9ef3397 chore: Publish 1.4.10 with swc_core v0.90.26
  • c4b9052 chore: Fix publish script
  • 7b6ba82 chore: Update changelog
  • 34c0b5c chore: Publish 1.4.9 with swc_core v0.90.26
  • 0aafd62 chore: Bump crates
  • 53fd09c fix(es/parser): Parse await using in for head (#8775)
  • cd06af3 chore: Bump crates
  • Additional commits viewable in compare view


Updates @types/node from 20.11.28 to 20.12.2

Commits


Updates np from 10.0.1 to 10.0.2

Release notes

Sourced from np's releases.

v10.0.2

  • Use npm for tagging versions when pnpm is the chosen package manager (#739) 770418f

https://github.com/sindresorhus/np/compare/v10.0.1...v10.0.2

Commits


Updates typescript from 5.4.2 to 5.4.3

Release notes

Sourced from typescript's releases.

TypeScript 5.4.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits


Updates @adonisjs/lucid from 20.4.0 to 20.5.1

Release notes

Sourced from @​adonisjs/lucid's releases.

Add clause variant to findBy method

Latest 20.5.0 was missing some commits. This release is published only as a patch since 20.5.0 was released a few minutes ago.

  • feat(base_model): add clause variant to findBy method (#1020) 059c472
  • fix(base_model): correct typing for findManyBy c22f019
  • Merge pull request #1013 from MaximeMRF/feat-step-option-migrator 196c97c
  • feat(Migrator): add step option 4012129

https://github.com/adonisjs/lucid/compare/v20.4.0...v20.5.1

Add step option to the migrator

What's Changed

Full Changelog: https://github.com/adonisjs/lucid/compare/v20.3.1...v20.5.0

Commits
  • 5002dc9 chore(release): 20.5.1
  • e96f5fa chore(release): 20.5.0
  • 059c472 feat(base_model): add clause variant to findBy method (#1020)
  • c22f019 fix(base_model): correct typing for findManyBy
  • 196c97c Merge pull request #1013 from MaximeMRF/feat-step-option-migrator
  • 4012129 feat(Migrator): add step option
  • See full diff in compare view


Updates @adonisjs/session from 7.1.1 to 7.3.0

Release notes

Sourced from @​adonisjs/session's releases.

Display validation error summary in flash messages errorsBag

After this release, the session package will add the validation errors summary inside the errorsBag property of flash message. Therefore using the @errors tag will display a global error message for validation errors too.

Commits

  • feat: flash validation errors summary to errorsBag badda3f

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

Add @​errors tag

The @errors edge tag can be used to grab all errors from the flash messages errorsBag . You can use it as follows.

@errors()
  @each(error in $messages)
     {{ error }}
  @end
@end

Commits

  • feat: add @​errors edge tag 9dd5bb1
  • chore(package): update dependencies d5c8e05

Full Changelog: https://github.com/adonisjs/session/compare/v7.0.0...v7.2.0

Commits


Updates edge.js from 6.0.1 to 6.0.2

Release notes

Sourced from edge.js's releases.

Update dependencies

  • chore(package): update dependencies 81fd898
  • chore: update dependencies 5adb9d4

Full Changelog: https://github.com/edge-js/edge/compare/v6.0.1...v6.0.2

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 @types/react from 18.2.66 to 18.2.73

Commits


Updates @types/react-dom from 18.2.22 to 18.2.23

Commits


Updates vite from 5.1.6 to 5.2.7

Release notes

Sourced from vite's releases.

create-vite@5.2.3

Please refer to CHANGELOG.md for details.

create-vite@5.2.2

Please refer to CHANGELOG.md for details.

create-vite@5.2.1

Please refer to CHANGELOG.md for details.

create-vite@5.2.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.2.7 (2024-03-29)

5.2.6 (2024-03-24)

5.2.5 (2024-03-24)

5.2.4 (2024-03-23)

5.2.3 (2024-03-22)

5.2.2 (2024-03-20)

5.2.1 (2024-03-20)

... (truncated)

Commits
  • ad246da release: v5.2.7
  • 45a06da chore: deprecate splitVendorChunkPlugin (#16274)
  • ffedc06 fix(hmr): trigger hmr for missing file import errored module after file creat...
  • dfffea1 fix(hmr): don't mutate module graph when collecting modules (#16302)
  • 1f53796 feat(hmr): reload when HTML file is created/deleted (#16288)
  • 24e376a fix(sourcemap): don't warn even if the sourcesContent is an empty string (#16...
  • 7caef42 fix(deps): update all non-major dependencies (#16258)
  • 890538a fix: skip injecting __vite__mapDeps when it's not used (#16271)
  • 7369016 release: v5.2.6
  • ba5269c fix: fs.deny with globs with directories (#16250)
  • 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 4 months ago

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