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 31 updates #19

Closed dependabot[bot] closed 5 months ago

dependabot[bot] commented 6 months ago

Bumps the minor-upgrades group with 31 updates:

Package From To
@poppinss/utils 6.7.0 6.7.2
@adonisjs/core 6.1.5-37 6.3.0
@adonisjs/http-server 7.0.0-4 7.1.0
@swc/core 1.3.101 1.4.2
@types/node 20.10.5 20.11.20
eslint 8.56.0 8.57.0
node-mocks-http 1.14.0 1.14.1
prettier 3.1.1 3.2.5
supertest 6.3.3 6.3.4
@types/supertest 6.0.1 6.0.2
typescript 5.2.2 5.3.3
@adonisjs/auth 9.0.0-9 9.1.1
@adonisjs/session 7.0.0-15 7.1.1
@adonisjs/shield 8.0.0-10 8.1.1
@adonisjs/static 1.0.4 1.1.1
@adonisjs/vite 2.0.1 2.0.2
@remix-run/css-bundle 2.4.1 2.7.2
@remix-run/node 2.4.1 2.7.2
@remix-run/react 2.4.1 2.7.2
@remix-run/serve 2.4.1 2.7.2
@vinejs/vine 1.7.0 1.7.1
edge.js 6.0.0 6.0.1
reflect-metadata 0.1.14 0.2.1
sqlite3 5.1.6 5.1.7
@japa/plugin-adonisjs 2.0.2 2.0.3
@remix-run/dev 2.4.1 2.7.2
@types/luxon 3.3.7 3.4.2
@types/react 18.2.45 18.2.58
@types/react-dom 18.2.18 18.2.19
pino-pretty 10.3.0 10.3.1
vite 5.0.10 5.1.4

Updates @poppinss/utils from 6.7.0 to 6.7.2

Release notes

Sourced from @​poppinss/utils's releases.

Change Opaque prop declaration and anonymous error naming

What's Changed

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

Fix lodash entrypoint for Vite environment

  • fix: add default conditional export for lodash entrypoint 557dabb

https://github.com/poppinss/utils/compare/v6.7.0...v6.7.1

Commits
  • fcfece2 chore(release): 6.7.2
  • 73ee5a6 fix: prevent opaque prop suggestion in IDEs
  • 535125f fix: assign name to anonymous error created using createError method
  • fdf7bec chore: update dependencies
  • e0bef46 chore(release): 6.7.1
  • 557dabb fix: add default conditional export for lodash entrypoint
  • See full diff in compare view


Updates @adonisjs/core from 6.1.5-37 to 6.3.0

Release notes

Sourced from @​adonisjs/core's releases.

Add, Codemods, and hooks

Changes

  • We now have a node ace add command which allows you to install and configure a package. In a single command, where before you would have had to do npm install ... then node ace configure .... This will be documented in more detail in the coming days. See adonisjs/v6-docs#44

  • The Codemods API now exposes the getTsMorphProject method, which retrieves an instance of tsmorph. This allows package authors to have direct access to ts-morph when they need to perform more specific modifications in the end-user code. Documentation https://docs.adonisjs.com/guides/scaffolding#gettsmorphproject

  • The Codemods API also introduces two new methods: registerVitePlugin and registerJapaPlugin. See documentation here: https://docs.adonisjs.com/guides/scaffolding#registerviteplugin

  • Added experimental assembler hooks. These hooks must be defined in the adonisrc.ts file and enable certain pieces of code to be executed at specific times during the build or dev server lifecycle. This feature will be useful for the new Vite integration we are experimenting :

     // adonisrc.ts
    export default defineConfig({
      unstable_assembler: {
        onBuildStart: [
          () => import('@my-package/hooks/build_start')
        ],
        onBuildEnd: [
          () => import('@my-package/hooks/build_end')
        ],
        onSourceFileChanged: [
          () => import('@my-package/hooks/source_file_changed')
        ],
        onDevServerStart: [
          () => import('@my-package/hooks/dev_server_start')
        ],
      }
    })
    

Commits

  • ci: use main as reference for test job ee4babaf
  • test: fix test that fails when runned locally cf796885
  • ci: remove test job next reference 295061fc
  • chore: migrate to husky 9 1ca3b459
  • chore: update dependencies fdd332ea
  • chore: update minimum node version e33b342a
  • feat: add getTsMorphProject method (#4414) ee96efec
  • feat: add registerVitePlugin and registerJapaPlugin (#4412) db03e4ce
  • feat: do not run assets bundler when disabled in rc file (#4429) be6ca038
  • chore: add extraneous package c0a86f35
  • feat: add hooks for build and dev server (#4428) ca600cea
  • style: lint file f01d683f
  • feat: add node ace add command (#4296) e7c668c4
  • fix: description of --api and --resource flags d83e9709
  • fix(commands): swapped description in make:controller 8848191f

What's Changed

... (truncated)

Commits
  • 2ec6f35 chore(release): 6.3.0
  • ee4baba ci: use main as reference for test job
  • cf79688 test: fix test that fails when runned locally
  • 295061f ci: remove test job next reference
  • 1ca3b45 chore: migrate to husky 9
  • fdd332e chore: update dependencies
  • e33b342 chore: update minimum node version
  • ee96efe feat: add getTsMorphProject method (#4414)
  • db03e4c feat: add registerVitePlugin and registerJapaPlugin (#4412)
  • be6ca03 feat: do not run assets bundler when disabled in rc file (#4429)
  • Additional commits viewable in compare view


Updates @adonisjs/http-server from 7.0.0-4 to 7.1.0

Release notes

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

Add ResponseStatus enum

  • fix(response): correct status 416 5ef57d5
  • feat(response): export response status a17c106
  • feat(response): add response status enum cc45664

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

Make Router class macroable

  • fix: make router class (via lookup store) macroable 5828c59
  • chore: update dependencies b7e3a29

Full Changelog: https://github.com/adonisjs/http-server/compare/v7.0.2...v7.0.3

Update dependencies

  • docs: update readme d555224
  • chore: update dependencies 42f43dc

Full Changelog: https://github.com/adonisjs/http-server/compare/v7.0.1...v7.0.2

Use status pages return value and add new cookie options

This release fixes the behavior of statusPages property defined on a exception handler. Earlier, a status page callback function was responsible for writing the HTTP response via the response.send method. However, how you can return a string value from this method and the will be written as the response.

Also, we now support partitioned and priority cookie options. Lear more about them here. https://github.com/jshttp/cookie?tab=readme-ov-file#partitioned

Commits

  • fix: use status page return value as response 11324f0
  • feat: optionally accept partitioned and priority cookie options f1397c8
  • chore: update dependencies ea56755

Full Changelog: https://github.com/adonisjs/http-server/compare/v7.0.0...v7.0.1

Stable major release

Please reference the following releases to learn more about the breaking changes and new additions.

Commits

  • chore: drop usage of --expiremental-meta-resolve flag 35b7e35
  • chore: publish under latest tag 246e5d2
  • Merge pull request #79 from adonisjs/next 3fa852d
  • refactor: remove usage of import.meta.resolve API b52c2c8
  • fix: do not re-assign error.message and error.status when already exists 7903e5e

... (truncated)

Commits
  • bdd97c9 chore(release): 7.1.0
  • 5ef57d5 fix(response): correct status 416
  • a17c106 feat(response): export response status
  • cc45664 feat(response): add response status enum
  • 1f41c6e chore(release): 7.0.3
  • 5828c59 fix: make router class (via lookup store) macroable
  • b7e3a29 chore: update dependencies
  • 398ea00 chore(release): 7.0.2
  • d555224 docs: update readme
  • 42f43dc chore: update dependencies
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by romainlanz, a new releaser for @​adonisjs/http-server since your current version.


Updates @swc/core from 1.3.101 to 1.4.2

Changelog

Sourced from @​swc/core's changelog.

[1.4.2] - 2024-02-19

Bug Fixes

  • (es/helpers) Add addInitializer to field decorators (#8619) (cd38ef3)

  • (es/minifier) Abort property hoister on this usage (#8647) (9715320)

  • (es/react) Validate pragma before parsing (#8637) (5f1cf01)

  • (es/typescript) Handle exported JSX members (#8642) (22c8e2e)

Features

  • (es/minifier) Remove unused parameters of arrow functions (#8636) (8cd4813)

  • (swc_core) Expose ES linter (#8635) (762959c)

Testing

[1.4.1] - 2024-02-13

Bug Fixes

  • (binding/types) Update typings for options.envs to match implementation (#8620) (2a115cf)

  • (es/compat) Visit AssignExpr right branch in FnEnvHoister (#8633) (e5d6de0)

  • (es/decorators) Do not insert duplicate constructors (#8631) (21a447f)

... (truncated)

Commits
  • f07f5c3 chore: Publish 1.4.2 with swc_core v0.90.10
  • e761c3d chore: Publish 1.4.2-nightly-20240219.2
  • 129ace0 chore: Bump crates
  • 9715320 fix(es/minifier): Abort property hoister on this usage (#8647)
  • d7434be chore: Bump crates
  • 22c8e2e fix(es/typescript): Handle exported JSX members (#8642)
  • 90f7a29 chore: Publish 1.4.2-nightly-20240219.1
  • 9ac304b chore: Publish 1.4.2-nightly-20240216.1
  • 84c05b5 chore: Bump crates
  • cd38ef3 fix(es/helpers): Add addInitializer to field decorators (#8619)
  • Additional commits viewable in compare view


Updates @types/node from 20.10.5 to 20.11.20

Commits


Updates eslint from 8.56.0 to 8.57.0

Release notes

Sourced from eslint's releases.

v8.57.0

Features

  • 1120b9b feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#18066) (Nitin Kumar)

Bug Fixes

  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#18064) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#18065) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#18056) (Milos Djermanovic)

Documentation

  • 84922d0 docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)
  • 5b8c363 docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)
  • 77dbfd9 docs: show NEXT in version selectors (#18052) (Milos Djermanovic)

Chores

  • 1813aec chore: upgrade @​eslint/js@​8.57.0 (#18143) (Milos Djermanovic)
  • 5c356bb chore: package.json update for @​eslint/js release (Jenkins)
  • f4a1fe2 test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)
  • 42c0aef ci: Enable CI for v8.x branch (#18047) (Milos Djermanovic)
Changelog

Sourced from eslint's changelog.

v8.57.0 - February 23, 2024

  • 1813aec chore: upgrade @​eslint/js@​8.57.0 (#18143) (Milos Djermanovic)
  • 5c356bb chore: package.json update for @​eslint/js release (Jenkins)
  • 84922d0 docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)
  • 1120b9b feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)
  • 5b8c363 docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)
  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#18064) (Nitin Kumar)
  • f4a1fe2 test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#18065) (Nitin Kumar)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#18066) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#18056) (Milos Djermanovic)
  • 77dbfd9 docs: show NEXT in version selectors (#18052) (Milos Djermanovic)
  • 42c0aef ci: Enable CI for v8.x branch (#18047) (Milos Djermanovic)

v9.0.0-beta.0 - February 9, 2024

  • e40d1d7 chore: upgrade @​eslint/js@​9.0.0-beta.0 (#18108) (Milos Djermanovic)
  • 9870f93 chore: package.json update for @​eslint/js release (Jenkins)
  • 2c62e79 chore: upgrade @​eslint/eslintrc@​3.0.1 (#18107) (Milos Djermanovic)
  • 81f0294 chore: upgrade espree@10.0.1 (#18106) (Milos Djermanovic)
  • 5e2b292 chore: upgrade eslint-visitor-keys@4.0.0 (#18105) (Milos Djermanovic)
  • 9163646 feat!: Rule Tester checks for missing placeholder data in the message (#18073) (fnx)
  • 53f0f47 feat: Add loadESLint() API method for v9 (#18097) (Nicholas C. Zakas)
  • f1c7e6f docs: Switch to Ethical Ads (#18090) (Strek)
  • 15c143f docs: JS Foundation -> OpenJS Foundation in PR template (#18092) (Nicholas C. Zakas)
  • c4d26fd fix: use-isnan doesn't report on SequenceExpressions (#18059) (StyleShit)
  • 6ea339e docs: add stricter rule test validations to v9 migration guide (#18085) (Milos Djermanovic)
  • ce838ad chore: replace dependency npm-run-all with npm-run-all2 ^5.0.0 (#18045) (renovate[bot])
  • 3c816f1 docs: use relative link from CLI to core concepts (#18083) (Milos Djermanovic)
  • 54df731 chore: update dependency markdownlint-cli to ^0.39.0 (#18084) (renovate[bot])
  • 9458735 docs: fix malformed eslint config comments in rule examples (#18078) (Francesco Trotta)
  • 07a1ada docs: link from --fix CLI doc to the relevant core concept (#18080) (Bryan Mishkin)
  • 8f06a60 chore: update dependency shelljs to ^0.8.5 (#18079) (Francesco Trotta)
  • b844324 docs: Update team responsibilities (#18048) (Nicholas C. Zakas)
  • aadfb60 docs: document languageOptions and other v9 changes for context (#18074) (fnx)
  • 3c4d51d feat!: default for enforceForClassMembers in no-useless-computed-key (#18054) (Francesco Trotta)
  • 47e60f8 feat!: Stricter rule test validations (#17654) (fnx)
  • 1a94589 feat!: no-unused-vars default caughtErrors to 'all' (#18043) (Josh Goldberg ✨)
  • 857e242 docs: tweak explanation for meta.docs rule properties (#18057) (Bryan Mishkin)
  • 10485e8 docs: recommend messageId over message for reporting rule violations (#18050) (Bryan Mishkin)
  • 98b5ab4 docs: Update README (GitHub Actions Bot)
  • 93ffe30 chore: update dependency file-entry-cache to v8 (#17903) (renovate[bot])
  • 505fbf4 docs: update no-restricted-imports rule (#18015) (Tanuj Kanti)
  • 2d11d46 feat: add suggestions to use-isnan in binary expressions (#17996) (StyleShit)
  • c25b4af docs: Update README (GitHub Actions Bot)

v9.0.0-alpha.2 - January 26, 2024

... (truncated)

Commits


Updates node-mocks-http from 1.14.0 to 1.14.1

Changelog

Sourced from node-mocks-http's changelog.

v 1.14.1

  • Move express and node types to prod deps [Issue #290]290.
Commits


Updates prettier from 3.1.1 to 3.2.5

Release notes

Sourced from prettier's releases.

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.2.5

diff

Support Angular inline styles as single template literal (#15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4 @​Component({ template: &lt;div&gt;...&lt;/div&gt;, styles: h1 { color: blue; }, }) export class AppComponent {}

// Prettier 3.2.5 @​Component({ template: &lt;div&gt;...&lt;/div&gt;, styles: h1 { color: blue; }, }) export class AppComponent {}

Unexpected embedded formatting for Angular template (#15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@​Component({ [template]: &lt;h1&gt;{{ hello }}&lt;/h1&gt;, }) export class AppComponent {} </tr></table>

... (truncated)

Commits


Updates supertest from 6.3.3 to 6.3.4

Release notes

Sourced from supertest's releases.

v6.3.4

  • chore: bump deps, remove yarn.lock bc4398a
  • chore: bump deps c823515
  • Merge pull request #811 from ladjs/dependabot/npm_and_yarn/cookiejar-2.1.4 37017b3
  • Merge pull request #814 from siddtheone/patch-1 6b41374
  • Merge pull request #828 from 9renpoto/9renpoto-patch-1 0ff9c02
  • si/visionmedia/ladjs/ 2cba6d4
  • Update package.json 79a69b6
  • Merge pull request #821 from yunnysunny/feature/ci-fix c1b8f9d
  • ci: fix broken github action cache saving 5d48749
  • Merge pull request #818 from lamweili/patch-1 25920e7
  • docs: fixed links (for #621) 3767f9e
  • Update README.md b81d3a4
  • Removing unused import 4b372eb
  • chore(deps): bump cookiejar from 2.1.3 to 2.1.4 ac9327f
  • Merge pull request #646 from dtom90/patch-1 44d5d72
  • Merge pull request #621 from RichieRunner/patch-1 d91ff37
  • Update index.js function definition 9ee6a1b
  • Update README.md 13a2b44

https://github.com/ladjs/supertest/compare/v6.3.3...v6.3.4

Commits
  • fd571c8 6.3.4
  • bc4398a chore: bump deps, remove yarn.lock
  • c823515 chore: bump deps
  • 37017b3 Merge pull request #811 from ladjs/dependabot/npm_and_yarn/cookiejar-2.1.4
  • 6b41374 Merge pull request #814 from siddtheone/patch-1
  • 0ff9c02 Merge pull request #828 from 9renpoto/9renpoto-patch-1
  • 2cba6d4 si/visionmedia/ladjs/
  • 79a69b6 Update package.json
  • c1b8f9d Merge pull request #821 from yunnysunny/feature/ci-fix
  • 5d48749 ci: fix broken github action cache saving
  • Additional commits viewable in compare view


Updates @types/supertest from 6.0.1 to 6.0.2

Commits


Updates typescript from 5.2.2 to 5.3.3

Release notes

Sourced from typescript's releases.

TypeScript 5.3.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.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.3 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.3 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on npm.

Commits


Updates @adonisjs/auth from 9.0.0-9 to 9.1.1

Release notes

Sourced from @​adonisjs/auth's releases.

Update peer dependencies range

  • chore(package): update dependencies 7a0045b

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

Add basic auth guard

This release adds back the basic auth guard. The documentation will follow by the EOD.

Commits

  • fix: typing issues 7eb5278
  • feat: finish basic auth guard implementation b02f8c2
  • feat: implement user provider for basic auth guard bd285e7
  • feat: add basic auth guard 9ed04af

Full Changelog: https://github.com/adonisjs/auth/compare/v9.0.3...v9.1.0

Fix cross DB issues with the tokens and the users providers

Fixes adonisjs/road-to-v6#91

Commits

  • fix: mysql port in .env file a8d7e58
  • ci: install playwright browser 7352f93
  • ci: commit .env and update db name in workflow file da690c2
  • fix: issues related to cross db with tokens and user providers 1c92ff7

Full Changelog: https://github.com/adonisjs/auth/compare/v9.0.2...v9.0.3

Correct definition of withAuthFinder

What's Changed

Full Changelog: https://github.com/adonisjs/auth/compare/v9.0.1...v9.0.2

Throw error when uid or password is missing via verifyCredentials

  • fix: throw error when uid or password is missing 8950749
  • refactor: do not flash password fields and _method d92068f
  • chore: update dependencies d883337

https://github.com/adonisjs/auth/compare/v9.0.0...v9.0.1

Full Changelog: https://github.com/adonisjs/auth/compare/v9.0.0...v9.0.1

Small Improvements

  • ci: update node versions c9398e3
  • refactor: pass HttpContext with all auth events d13572b
  • refactor: use session.flashError method to flash auth errors 7275fd4
  • refactor: use preset for configure hook 24dedf7

... (truncated)

Commits
  • 016cc8c chore(release): 9.1.1
  • 7a0045b chore(package): update dependencies
  • 064414a chore(release): 9.1.0
  • 7eb5278 fix: typing issues
  • b02f8c2 feat: finish basic auth guard implementation
  • bd285e7 feat: implement user provider for basic auth guard
  • 9ed04af feat: add basic auth guard
  • df847f8 chore(release): 9.0.3
  • a8d7e58 fix: mysql port in .env file
  • 7352f93 ci: install playwright browser
  • Additional commits viewable in compare view


Updates @adonisjs/session from 7.0.0-15 to 7.1.1

Release notes

Sourced from @​adonisjs/session's releases.

Make session.config property public

Since the config/session.ts file exports a config provider, there is no way to get configuration raw configuration from it. Instead, you can use the ctx.session.config to get a hold of the raw configuration.

Commits

  • refactor: make session.config property public 4395100

https://github.com/adonisjs/adonis-session/compare/v7.1.0...v7.1.1

Full Changelog:

dependabot[bot] commented 5 months ago

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