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 all non-major dependencies #37

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 22, 2024

This PR contains the following updates:

Package Type Update Change OpenSSF
@hono/node-server dependencies minor 1.11.0 -> 1.13.7 OpenSSF Scorecard
@types/node (source) devDependencies minor 20.12.7 -> 20.17.10 OpenSSF Scorecard
hono (source) dependencies minor 4.2.5 -> 4.6.14 OpenSSF Scorecard
pino (source) devDependencies minor 9.1.0 -> 9.5.0 OpenSSF Scorecard
pino-pretty devDependencies minor 11.0.0 -> 11.3.0 OpenSSF Scorecard
reflect-metadata (source) dependencies patch 0.2.1 -> 0.2.2 OpenSSF Scorecard
tsx (source) devDependencies minor 4.7.2 -> 4.19.2 OpenSSF Scorecard
zod (source) devDependencies minor 3.22.5 -> 3.24.1 OpenSSF Scorecard

Release Notes

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

v1.13.7

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.13.6...v1.13.7

v1.13.6

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.13.5...v1.13.6

v1.13.5

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.13.4...v1.13.5

v1.13.4

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.13.3...v1.13.4

v1.13.3

Compare Source

What's Changed

New Contributors

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

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

v1.11.4

Compare Source

What's Changed

New Contributors

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

v1.11.3

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.11.2...v1.11.3

v1.11.2

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.11.1...v1.11.2

v1.11.1

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.11.0...v1.11.1

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


Configuration

📅 Schedule: Branch creation - "before 6am" in timezone Asia/Jakarta, 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 requested a review from ikr4-m as a code owner April 22, 2024 17:10
Copy link

changeset-bot bot commented Apr 22, 2024

⚠️ No Changeset found

Latest commit: f5f6151

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from e288aed to 3a469e5 Compare April 26, 2024 07:25
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Apr 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from cfafad7 to fe4942f Compare May 3, 2024 14:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from f0f0c41 to fba0a0a Compare May 8, 2024 08:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 6cc329c to b06f574 Compare August 22, 2024 08:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from f2fb9cd to fa5d7c3 Compare August 31, 2024 03:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from c7315dc to 921ab15 Compare September 4, 2024 21:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 287cac0 to 30fdd82 Compare September 17, 2024 03:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 6d91ec5 to 3335f44 Compare September 26, 2024 00:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3335f44 to f5f6151 Compare September 27, 2024 19:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants