Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all non-major dependencies #473

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 18, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config 2.21.1 -> 2.27.3 age adoption passing confidence
@edgedb/generate (source) 0.5.3 -> 0.5.6 age adoption passing confidence
@hono/graphql-server 0.4.3 -> 0.5.1 age adoption passing confidence
@hono/node-server 1.11.4 -> 1.13.2 age adoption passing confidence
@types/node (source) 20.14.8 -> 20.16.13 age adoption passing confidence
edgedb (source) 1.5.7 -> 1.5.12 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
hono (source) 4.4.7 -> 4.6.5 age adoption passing confidence
lint-staged 15.2.7 -> 15.2.10 age adoption passing confidence
nodemon (source) 3.1.4 -> 3.1.7 age adoption passing confidence
pino (source) 9.2.0 -> 9.5.0 age adoption passing confidence
pino-pretty 11.2.1 -> 11.3.0 age adoption passing confidence
pnpm (source) 9.4.0 -> 9.12.2 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
tsx (source) 4.15.7 -> 4.19.1 age adoption passing confidence
typescript (source) 5.5.2 -> 5.6.3 age adoption passing confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v2.27.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.27.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.27.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.27.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.26.1

Compare Source

No significant changes

    View changes on GitHub

v2.26.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.25.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.25.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.25.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.24.1

Compare Source

   🚀 Features
    View changes on GitHub

v2.24.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.23.2

Compare Source

No significant changes

    View changes on GitHub

v2.23.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.23.0

Compare Source

   🚀 Features
  • Introduce type options, enable ts/explicit-function-return-type for lib  -  by @​antfu (3dd7b)
   🐞 Bug Fixes
    View changes on GitHub

v2.22.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.22.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.22.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.22.1

Compare Source

No significant changes

    View changes on GitHub

v2.22.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.21.3

Compare Source

No significant changes

    View changes on GitHub

v2.21.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
edgedb/edgedb-js (@​edgedb/generate)

v0.5.6

Compare Source

v0.5.5

Compare Source

v0.5.4

Compare Source

honojs/middleware (@​hono/graphql-server)

v0.5.1

Compare Source

Patch Changes

v0.5.0

Compare Source

Minor Changes

v0.4.4

Compare Source

Patch Changes
honojs/node-server (@​hono/node-server)

v1.13.2

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.13.1...v1.13.2

v1.13.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.13.0...v1.13.1

v1.13.0

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.12.2...v1.13.0

v1.12.2

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.12.1...v1.12.2

v1.12.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.12.0...v1.12.1

v1.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.11.5...v1.12.0

v1.11.5

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.11.4...v1.11.5

eslint/eslint (eslint)

v8.57.1

Compare Source

honojs/hono (hono)

v4.6.5

Compare Source

Security fix for CSRF Protection Middleware

This release includes a security fix for CSRF Protection Middleware. If you are using CSRF Protection Middleware, please upgrade this hono package immediately.

Before this release, a request without a Content-Type header can bypass the protection. This fix does not allow it. See: GHSA-2234-fmw7-43wr

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.4...v4.6.5

v4.6.4

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.3...v4.6.4

v4.6.3

Compare Source

This release has many new features, but each feature is small, so we've released it as a patch release.

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.2...v4.6.3

v4.6.2

Compare Source

What's Changed

Full Changelog: honojs/hono@v4.6.1...v4.6.2

v4.6.1

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.0...v4.6.1

v4.6.0

Compare Source

Hono v4.6.0 is now available!

One of the highlights of this release is the Context Storage Middleware. Let's introduce it.

Context Storage Middleware

Many users may have been waiting for this feature. The Context Storage Middleware uses AsyncLocalStorage to allow handling of the current Context object even outside of handlers.

For example, let’s define a Hono app with a variable message: string.

type Env = {
  Variables: {
    message: string
  }
}

const app = new Hono<Env>()

To enable Context Storage Middleware, register contextStorage() as middleware at the top and set the message value.

import { contextStorage } from 'hono/context-storage'

//...

app.use(contextStorage())

app.use(async (c, next) => {
  c.set('message', 'Hello!')
  await next()
})

getContext() returns the current Context object, allowing you to get the value of the message variable outside the handler.

import { getContext } from 'hono/context-storage'

app.get('/', (c) => {
  return c.text(getMessage())
})

// Access the variable outside the handler.
const getMessage = () => {
  return getContext<Env>().var.message
}

In the case of Cloudflare Workers, you can also access the Bindings outside the handler by using this middleware.

type Env = {
  Bindings: {
    KV: KVNamespace
  }
}

const app = new Hono<Env>()

app.use(contextStorage())

const setKV = (value: string) => {
  return getContext<Env>().env.KV.put('key', value)
}

Thanks @​marceloverdijk !

New features

Other changes

New Contributors

Full Changelog: honojs/hono@v4.5.11...v4.6.0

v4.5.11

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.5.10...v4.5.11

v4.5.10

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.5.9...v4.5.10

v4.5.9

Compare Source

What's Changed

Full Changelog: honojs/hono@v4.5.8...v4.5.9

v4.5.8

Compare Source

Security Fix for CSRF Protection Middleware

Before this release, in versions 4.5.7 and below, the CSRF Protection Middleware did not treat requests including Content-Types with uppercase letters (e.g., Application/x-www-form-urlencoded) as potential attacks, allowing them to pass.

This could cause unexpected behavior, leading to a vulnerability. If you are using the CSRF Protection Middleware, please upgrade to version 4.5.8 or higher immediately.

For more details, see the report here: GHSA-rpfr-3m35-5vx5

v4.5.7

Compare Source

What's Changed
  • fix(jsx/dom): Fixed a bug that caused Script elements to turn into Style elements. by [@​u

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Dec 18, 2023
@renovate renovate bot changed the title Update dependency @types/node to v20.10.5 Update all non-major dependencies Dec 18, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6d10bd2 to c1cedfe Compare December 24, 2023 18:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from fa827e6 to a9113bf Compare December 30, 2023 01:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2df8b90 to 7c0a470 Compare January 9, 2024 17:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from c4a0ce3 to 64f16a4 Compare January 17, 2024 10:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from dcf2d91 to f9f0565 Compare January 23, 2024 21:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from dd3fe84 to 1fb9073 Compare September 17, 2024 02:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from c4f01b6 to 5067f88 Compare September 24, 2024 04:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from b468434 to f75f4fe Compare September 27, 2024 16:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from bdae3a0 to 1fb2549 Compare October 9, 2024 00:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from d9281e7 to d3b264e Compare October 17, 2024 01:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Development

Successfully merging this pull request may close these issues.

0 participants