Skip to content

Commit

Permalink
chore: Update version for release (#260)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Logan McAnsh <[email protected]>
  • Loading branch information
3 people authored Feb 3, 2024
1 parent 9300c22 commit eaaff4a
Show file tree
Hide file tree
Showing 8 changed files with 2,696 additions and 6,321 deletions.
13 changes: 0 additions & 13 deletions .changeset/gentle-dingos-sit.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@fastify/early-hints": "^1.0.1",
"@fastify/static": "^6.12.0",
"@mcansh/remix-fastify": "3.2.1",
"@mcansh/remix-fastify": "3.2.2",
"@remix-run/css-bundle": "*",
"@remix-run/node": "*",
"@remix-run/react": "*",
Expand Down
2 changes: 1 addition & 1 deletion examples/unstable-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@fastify/middie": "^8.3.0",
"@fastify/static": "^6.12.0",
"@mcansh/remix-fastify": "3.2.1",
"@mcansh/remix-fastify": "3.2.2",
"@remix-run/node": "*",
"@remix-run/react": "*",
"cross-env": "^7.0.3",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@
"validate": "run-p lint format publint typecheck",
"typecheck": "pnpm run --recursive typecheck",
"changeset": "changeset",
"changeset:version": "changeset version && node ./scripts/remove-prerelease-changelogs.js && pnpm install --lockfile-only",
"changeset:version": "changeset version && node ./scripts/remove-prerelease-changelogs.js && pnpm install --lockfile-only && node ./scripts/post-changeset.js",
"changeset:release": "pnpm run build && changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"@manypkg/get-packages": "^2.2.0",
"@npmcli/package-json": "^5.0.0",
"@remix-run/eslint-config": "2.5.1",
"@types/npmcli__package-json": "^4.0.3",
"chalk": "^5.3.0",
"eslint": "^8.56.0",
"eslint-plugin-prefer-let": "^3.0.1",
Expand Down
14 changes: 14 additions & 0 deletions packages/remix-fastify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @mcansh/remix-fastify

## 3.2.2

### Patch Changes

- 9300c22: feat: allow http2/https servers

previously using `fastify({ http2: true })` or `fastify({ https: {...} })` resulted in type errors for the handler when passing the request
![image](https://github.com/mcansh/remix-fastify/assets/11698668/7a02b889-a9a9-4ddb-8686-ef6cda8d1bae)

this has been fixed by passing the server type to all uses of the request and reply internally
![image](https://github.com/mcansh/remix-fastify/assets/11698668/ff23882b-c169-4b61-bc5f-90683c52fc1b)

this PR allows any server that extends `http.Server | https.Server | http2.Http2Server | http2.Http2SecureServer;`

## 3.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/remix-fastify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mcansh/remix-fastify",
"version": "3.2.1",
"version": "3.2.2",
"description": "Fastify server request handler for Remix",
"repository": "mcansh/remix-fastify",
"license": "MIT",
Expand Down
Loading

0 comments on commit eaaff4a

Please sign in to comment.