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 25 updates #10

Closed dependabot[bot] closed 7 months ago

dependabot[bot] commented 7 months ago

Bumps the minor-upgrades group with 25 updates:

Package From To
@adonisjs/auth 9.0.0-10 9.1.1
@adonisjs/core 6.1.5-38 6.3.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
@remix-run/css-bundle 2.4.1 2.8.0
@remix-run/node 2.4.1 2.8.0
@remix-run/react 2.4.1 2.8.0
@remix-run/serve 2.4.1 2.8.0
@vinejs/vine 1.7.0 1.7.1
edge.js 6.0.0 6.0.1
sqlite3 5.1.6 5.1.7
@adonisjs/assembler 7.0.0-1 7.2.3
@adonisjs/eslint-config 1.2.1 1.2.2
@adonisjs/prettier-config 1.2.1 1.2.2
@adonisjs/tsconfig 1.2.1 1.2.2
@remix-run/dev 2.4.1 2.8.0
@swc/core 1.3.101 1.4.2
@types/luxon 3.3.7 3.4.2
@types/node 20.10.5 20.11.24
@types/react 18.2.45 18.2.61
@types/react-dom 18.2.18 18.2.19
eslint 8.56.0 8.57.0
pino-pretty 10.3.0 10.3.1
prettier 3.1.1 3.2.5

Updates @adonisjs/auth from 9.0.0-10 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

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/core from 6.1.5-38 to 6.3.1

Release notes

Sourced from @​adonisjs/core's releases.

Fix add command

Changes

  • The ace add command was incorrectly available under the name ace install. ace add command is now available

Commits

  • fix: rename node ace install to node ace add 9e5c21e2
  • chore: update assembler b3775534

Full Changelog: https://github.com/adonisjs/core/compare/v6.3.0...v6.3.1

New codemods APIs, ace add command, and experimental assembler 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

... (truncated)

Commits
  • acd7b4e chore(release): 6.3.1
  • 9e5c21e fix: rename node ace install to node ace add
  • b377553 chore: update assembler
  • 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
  • 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: https://github.com/adonisjs/session/compare/v7.1.0...v7.1.1

Do not flash password fields when using flashValidationErrors

The session.flashValidationErrors will not flash _method, _csrf, password, password_confirmation fields.

Commits

  • refactor: update flashExcept list to exlcude password fields 9e1d030
  • chore: update dependencies 4809acb

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

Stable major release

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

Commits

  • chore: publish under latest tag 4eb791c
  • Merge pull request #82 from adonisjs/next a3b9959
  • refactor: export stubsRoot path f64df34
  • chore: bundle types.ts file via tsup as well 5a3e1ff
  • chore: update dependencies 8c99a2a

What's Changed

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

Commits
  • 7e1a696 chore(release): 7.1.1
  • 4395100 refactor: make session.config property public
  • ca82c19 chore(release): 7.1.0
  • 9e1d030 refactor: update flashExcept list to exlcude password fields
  • 4809acb chore: update dependencies
  • 8e9ff8f chore(release): 7.0.0
  • 4eb791c chore: publish under latest tag
  • a3b9959 Merge pull request #82 from adonisjs/next
  • f64df34 refactor: export stubsRoot path
  • 5a3e1ff chore: bundle types.ts file via tsup as well
  • Additional commits viewable in compare view


Updates @adonisjs/shield from 8.0.0-10 to 8.1.1

Release notes

Sourced from @​adonisjs/shield's releases.

Fix shieldApiClient plugin export function

  • fix: japa plugin export function 7e7f6c7
  • chore: update dependencies 7c64030
  • docs: update readme e4bc2b8
  • chore: update dependencies 6073a54

Full Changelog: https://github.com/adonisjs/shield/compare/v8.1.0...v8.1.1

Optionally read CSRF exception error message via i18n

This release adds support for reading CSRF error message from i18n integration. You can define the translation message for CSRF errors inside the errors.json file as follows.

{
  "E_BAD_CSRF_TOKEN": "Session expired"
}

Also, fixed the bug to include input data when sending CSRF error via flash messages

Commits

  • feat: add csrf error message using i18n 49537e7
  • refactor: move tests_helpers file to test directory as helpers.ts 9d462f6
  • test: update failing tests d5141ae
  • chore: update dependencies 68e2da9
  • fix: flash input data on CSRF error 0273f51
  • chore: update dependencies bbb1d94

Full Changelog: https://github.com/adonisjs/shield/compare/v8.0.1...v8.1.0

Fix peer dependencies range

  • fix: peer dependencies range f3c7818

Full Changelog: https://github.com/adonisjs/shield/compare/v8.0.0...v8.0.1

Stable major release

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

Commits

  • chore: publish under latest tag f9c6235
  • Merge pull request #40 from adonisjs/next bf81729
  • refactor: export stubsRoot and bundle types using tsup as well 910b768
  • chore: update dependencies 681cafd

... (truncated)

Commits
  • 7182ed0 chore(release): 8.1.1
  • 7e7f6c7 fix: japa plugin export function
  • 7c64030 chore: update dependencies
  • e4bc2b8 docs: update readme
  • 6073a54 chore: update dependencies
  • f7d2bfb chore(release): 8.1.0
  • 49537e7 feat: add csrf error message using i18n
  • 9d462f6 refactor: move tests_helpers file to test directory as helpers.ts
  • d5141ae test: update failing tests
  • 68e2da9 chore: update dependencies
  • Additional commits viewable in compare view


Updates @adonisjs/static from 1.0.4 to 1.1.1

Release notes

Sourced from @​adonisjs/static's releases.

Rename config stub to match the convention of other packages

  • refactor: rename config stub path to match the convention of other packages 23de8f8

Full Changelog: https://github.com/adonisjs/static/compare/v1.1.0...v1.1.1

Small improvements

  • refactor: compute middleware default config from defineConfig helper c02a641
  • chore: bundle types.ts file via tsup as well 88ece42
  • chore: update dependencies d766fd9

Full Changelog: https://github.com/adonisjs/static/compare/v1.0.4...v1.1.0

Commits
  • a227b35 chore(release): 1.1.1
  • 23de8f8 refactor: rename config stub path to match the convention of other packages
  • 7bd82ac chore(release): 1.1.0
  • c02a641 refactor: compute middleware default config from defineConfig helper
  • 88ece42 chore: bundle types.ts file via tsup as well
  • d766fd9 chore: update dependencies
  • See full diff in compare view


Updates @remix-run/css-bundle from 2.4.1 to 2.8.0

Release notes

Sourced from @​remix-run/css-bundle's releases.

v2.8.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v280

v2.7.2

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v272

v2.7.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v271

v2.7.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v270

v2.6.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v260

v2.5.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v251

v2.5.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v250

Changelog

Sourced from @​remix-run/css-bundle's changelog.

2.8.0

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.8.0.

2.7.2

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.7.2.

2.7.1

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.7.1.

2.7.0

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.7.0.

2.6.0

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.6.0.

2.5.1

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.5.1.

2.5.0

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.5.0.

Commits


Updates @remix-run/node from 2.4.1 to 2.8.0

Release notes

Sourced from @​remix-run/node's releases.

v2.8.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v280

v2.7.2

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v272

v2.7.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v271

v2.7.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v270

v2.6.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v260

v2.5.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v251

v2.5.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v250

Changelog

Sourced from @​remix-run/node's changelog.

2.8.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.8.0

2.7.2

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.7.2

2.7.1

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.7.1

2.7.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.7.0

2.6.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.6.0

2.5.1

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.5.1

2.5.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.5.0
Commits


Updates @remix-run/react from 2.4.1 to 2.8.0

Release notes

Sourced from @​remix-run/react's releases.

v2.8.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v280

v2.7.2

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v272

v2.7.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v271

v2.7.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v270

v2.6.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v260

v2.5.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v251

v2.5.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v250

Changelog

Sourced from @​remix-run/react's changelog.

2.8.0

Patch Changes

  • Fix the default root ErrorBoundary component so it leverages the user-provided Layout component (#8859)
  • Fix the default root HydrateFallback component so it leverages any user-provided Layout component (#8892)
  • Ensure @remix-run/react re-exports everything from react-router-dom for SPA mode (#8929)
  • Updated dependencies:
    • @remix-run/server-runtime@2.8.0

2.7.2

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.7.2

2.7.1

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.7.1

2.7.0

Minor Changes

  • Allow an optional Layout export from the root route (#8709)
  • Vite: Add a new basename option to the Vite plugin, allowing users to set the internal React Router basename in order to to serve their applications underneath a subpath (#8145)

Patch Changes

  • Fix a bug with SPA mode when the root route had no children (#8747)
  • Updated dependencies:
    • @remix-run/server-runtime@2.7.0

2.6.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.6.0

2.5.1

Patch Changes

  • Only use active matches in <Meta>/<Links> in SPA mode (#8538)
  • Remove leftover unstable_ prefix from Blocker/BlockerFunction types (#8530)

... (truncated)

Commits


Updates @remix-run/serve from 2.4.1 to 2.8.0

Release notes

Sourced from @​remix-run/serve's releases.

v2.8.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v280

v2.7.2

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v272

v2.7.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v271

v2.7.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v270

v2.6.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v260

v2.5.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v251

v2.5.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v250

Changelog

Sourced from @​remix-run/serve's changelog.

2.8.0

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.8.0
    • @remix-run/node@2.8.0

2.7.2

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.7.2
    • @remix-run/node@2.7.2

2.7.1

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.7.1
    • @remix-run/node@2.7.1

2.7.0

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.7.0
    • @remix-run/node@2.7.0

2.6.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@2.6.0
    • @remix-run/express@2.6.0

2.5.1

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.5.1
    • @remix-run/node@2.5.1

2.5.0

... (truncated)

Commits


Updates @vinejs/vine from 1.7.0 to 1.7.1

Release notes

Sourced from @​vinejs/vine's releases.

Bug fix and performance improvements

  • fix: unix timetamp validation with x format bcebea5
  • style: format source code 9dd9d85
  • chore: update dependencies 6e412b2
  • refactor: performance optimizations 3e35b83
  • chore: update dependencies 4c88fa1
  • refactor: dynamic import node:dns 92a48c8

What's Changed

Full Changelog: https://github.com/vinejs/vine/compare/v1.7.0...v1.7.1

Commits


Updates edge.js from 6.0.0 to 6.0.1

Release notes

Sourced from edge.js's releases.

Update dependencies

  • chore: update dependencies 41df71e
  • docs: update github workflow badge url a2d0a4c

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

Commits


Updates sqlite3 from 5.1.6 to 5.1.7

Release notes

Sourced from sqlite3's releases.

v5.1.7

What's Changed

New Contributors

Full Changelog: https://github.com/TryGhost/node-sqlite3/compare/v5.1.6...v5.1.7

v5.1.7-rc.0

Please install v5.1.7 instead.

Full Changelog: https://github.com/TryGhost/node-sqlite3/compare/v5.1.6...v5.1.7-rc.0

Commits
  • ba4ba07 v5.1.7
  • d04c1fb Removed Node version from matrix title
  • 03d6e75 v5.1.7-rc.0
  • 8398daa Fixed uploading assets from Docker
  • 8b86e41 Fixed uploading release assets on Windows
  • 83c8c0a Configured releases to be created as prereleases
  • f792f69 Update dependency node-addon-api to v7
  • 4ef11bf Removed extraneous parameter to event emit function
  • e99160a Inlined init() functions into class header files
  • 3372130 Improved RowToJS performance by removing Napi::String::New instantiation
  • Additional commits viewable in compare view


Updates @adonisjs/assembler from 7.0.0-1 to 7.2.3

Release notes

Sourced from @​adonisjs/assembler's releases.

Fix addVitePlugin when using defineConfig

  • fix(codemods): fails to add Vite plugin when using defineConfig 0e92531

Full Changelog: https://github.com/adonisjs/assembler/compare/v7.2.2...v7.2.3

Hooks fix

  • test: increase timeouts for hooks registering tests a0612a2
  • fix: wait for assembler hooks node to be resolved de9a026

Full Changelog: https://github.com/adonisjs/assembler/compare/v7.2.1...v7.2.2

DevServer hooks bugfix

  • test: use another port in dev server test 92eb2c6
  • fix: dev hooks not executing 6304c94

Full Changelog: https://github.com/adonisjs/assembler/compare/v7.2.0...v7.2.1

Hooks and Codemods

Changes

This version adds several new features:

  • An addVitePlugin method in the Codemods API that can be used by package creators to add a new Vite plugin to the end-user configuration
  • Makes the project property of the codemods api public. This allows package authors to have direct access to ts-morph when they need to perform more specific modifications in the end-user code.
  • Added bundler and dev server hooks. See #75

Commits

  • feat: add bundler and dev server hooks (#75) 38a2835
  • refactor: make project public 5a476d6
  • chore: update readme db8b35a
  • feat: add addVitePlugin method 95f0cfa

What's Changed

Full Changelog: https://github.com/adonisjs/assembler/compare/v7.1.1...v7.2.0

Rewrite builded Ace file

During the build process, we now rewrite from-scratch the ace.js file included in the build folder so as to remove all references to ts-node. That way, you can now run node ace my-command in your build project without having to install ts-node.

See this issue that explains the problem : adonisjs/core#4361

[!WARNING] Any modifications to the ace.js file will be lost during the build process since the file is rewritten from scratch. If you want to have any additional code that runs before Ace starts, you should instead do it inside the bin/console.ts file.

... (truncated)

Commits
  • 3484326 chore(release): 7.2.3
  • 0e92531 fix(codemods): fails to add Vite plugin when using defineConfig
  • eb0734a chore(release): 7.2.2
  • a0612a2 test: increase timeouts for hooks registering tests
  • de9a026 fix: wait for assembler hooks node to be resolved
  • 9595eb9 chore(release): 7.2.1
  • 92eb2c6 test: use another port in dev server test
  • 6304c94 fix: dev hooks not executing
  • c11f9d2 chore(release): 7.2.0
  • 38a2835 feat: add bundler and dev server hooks (#75)
  • Additional commits viewable in compare view


Updates @adonisjs/eslint-config from 1.2.1 to 1.2.2

Updates @adonisjs/prettier-config from 1.2.1 to 1.2.2

Updates @adonisjs/tsconfig from 1.2.1 to 1.2.2

Updates @remix-run/dev from 2.4.1 to 2.8.0

Release notes

Sourced from @​remix-run/dev's releases.

v2.8.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v280

v2.7.2

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v272

v2.7.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v271

v2.7.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v270

v2.6.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v260

v2.5.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v251

v2.5.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v250

Changelog

Sourced from @​remix-run/dev's changelog.

2.8.0

Minor Changes

  • Pass... _Description has been truncated_
dependabot[bot] commented 7 months ago

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