Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: honojs/node-server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.13.8
Choose a base ref
...
head repository: honojs/node-server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.14.0
Choose a head ref
  • 5 commits
  • 10 files changed
  • 3 contributors

Commits on Feb 3, 2025

  1. chore: use Bun as a package manager (#224)

    * chore: use Bun as a package manager
    
    * remove `yarn.lock`
    
    * fix `hono` version
    
    * update dependencies and fix the tests
    yusukebe authored Feb 3, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    bagder Daniel Stenberg
    Copy the full SHA
    c2395b2 View commit details

Commits on Mar 19, 2025

  1. fix: #230 use node:fs vs. fs import (#231)

    firxworx authored Mar 19, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    bagder Daniel Stenberg
    Copy the full SHA
    1ebb26e View commit details

Commits on Mar 22, 2025

  1. feat: accept absolute-form URI for request-target (#232)

    * feat: accept absolute-form for request-target
    
    * refactor: use :scheme for request URL's scheme if it's HTTP/2
    
    * Update tests
    usualoma authored Mar 22, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    bagder Daniel Stenberg
    Copy the full SHA
    c32bab2 View commit details
  2. fix: fix the return type of responseViaCache (#234)

    yusukebe authored Mar 22, 2025
    Copy the full SHA
    89bda94 View commit details
  3. 1.14.0

    yusukebe committed Mar 22, 2025
    Copy the full SHA
    99ad170 View commit details
Showing with 1,870 additions and 5,477 deletions.
  1. +6 −5 .github/workflows/ci.yml
  2. +1,711 −0 bun.lock
  3. +2 −2 package.json
  4. +1 −1 src/listener.ts
  5. +34 −8 src/request.ts
  6. +2 −2 src/serve-static.ts
  7. +108 −1 test/request.test.ts
  8. +1 −1 test/serve-static.test.ts
  9. +5 −4 test/server.test.ts
  10. +0 −5,453 yarn.lock
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -23,8 +23,9 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn format
- run: yarn lint
- run: yarn build
- run: yarn test
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run format
- run: bun run lint
- run: bun run build
- run: bun run test
Loading