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

fix(deps): update dependency hono to v4.6.14 #107

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
hono (source) 4.2.6 -> 4.6.14 age adoption passing confidence

Release Notes

honojs/hono (hono)

v4.6.14

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.13...v4.6.14

v4.6.13

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.12...v4.6.13

v4.6.12

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.11...v4.6.12

v4.6.11

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.10...v4.6.11

v4.6.10

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.9...v4.6.10

v4.6.9

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/hono@v4.6.8...v4.6.9

v4.6.8

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.7...v4.6.8

v4.6.7

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.6...v4.6.7

v4.6.6

Compare Source

What's Changed

New Contributors

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

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
New Contributors

Full Changelog: honojs/hono@v4.5.6...v4.5.7

v4.5.6

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.5.5...v4.5.6

v4.5.5

Compare Source

What's Changed

Full Changelog: honojs/hono@v4.5.4...v4.5.5

v4.5.4

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/hono@v4.5.3...v4.5.4

v4.5.3

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.5.2...v4.5.3

v4.5.2

Compare Source

What's Changed

Full Changelog: honojs/hono@v4.5.1...v4.5.2

v4.5.1

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.5.0...v4.5.1

v4.5.0

Compare Source

v4.4.13

Compare Source

What's Changed

**Full


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

Copy link

vercel bot commented Apr 23, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
next-shadcn-sample ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 14, 2024 3:26pm

@renovate renovate bot changed the title fix(deps): update dependency hono to v4.2.7 fix(deps): update dependency hono to v4.2.8 Apr 26, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from c5a7346 to 119509d Compare April 26, 2024 12:17
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.2.8 fix(deps): update dependency hono to v4.2.9 Apr 29, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 119509d to 7f88d2b Compare April 29, 2024 08:23
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 7f88d2b to 1c8d615 Compare May 3, 2024 13:51
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.2.9 fix(deps): update dependency hono to v4.3.0 May 3, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 1c8d615 to 499f212 Compare May 4, 2024 10:30
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.3.0 fix(deps): update dependency hono to v4.3.1 May 4, 2024
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.3.1 fix(deps): update dependency hono to v4.3.2 May 5, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 499f212 to ce16f65 Compare May 5, 2024 01:25
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from ce16f65 to df7d19d Compare May 8, 2024 08:19
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.3.2 fix(deps): update dependency hono to v4.3.3 May 8, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from df7d19d to 96dc009 Compare May 9, 2024 16:20
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.3.3 fix(deps): update dependency hono to v4.3.4 May 9, 2024
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.3.4 fix(deps): update dependency hono to v4.3.5 May 12, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 96dc009 to e3704e6 Compare May 12, 2024 08:11
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from e3704e6 to 0f9128a Compare May 13, 2024 00:28
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.3.5 fix(deps): update dependency hono to v4.3.6 May 13, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 0f9128a to 028e570 Compare May 15, 2024 18:43
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 7567e3c to 2a67489 Compare October 22, 2024 08:56
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.6.5 fix(deps): update dependency hono to v4.6.6 Oct 22, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 2a67489 to 625d32d Compare October 26, 2024 04:56
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.6.6 fix(deps): update dependency hono to v4.6.7 Oct 26, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 625d32d to f85792b Compare October 29, 2024 07:48
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.6.7 fix(deps): update dependency hono to v4.6.8 Oct 29, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from f85792b to 55bf460 Compare November 4, 2024 07:14
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.6.8 fix(deps): update dependency hono to v4.6.9 Nov 4, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 55bf460 to ec5bd0a Compare November 13, 2024 11:04
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.6.9 fix(deps): update dependency hono to v4.6.10 Nov 13, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from ec5bd0a to 2c62597 Compare November 20, 2024 01:59
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.6.10 fix(deps): update dependency hono to v4.6.11 Nov 20, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from 2c62597 to c810233 Compare November 25, 2024 06:58
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.6.11 fix(deps): update dependency hono to v4.6.12 Nov 25, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from c810233 to ede5e80 Compare December 6, 2024 08:21
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.6.12 fix(deps): update dependency hono to v4.6.13 Dec 6, 2024
@renovate renovate bot force-pushed the renovate/hono-4.x-lockfile branch from ede5e80 to 242770b Compare December 14, 2024 15:25
@renovate renovate bot changed the title fix(deps): update dependency hono to v4.6.13 fix(deps): update dependency hono to v4.6.14 Dec 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants