Skip to content

Commit c5298ea

Browse files
authored
Update compression and morgan packages (#10740)
1 parent 6bfad4e commit c5298ea

File tree

7 files changed

+30
-28
lines changed

7 files changed

+30
-28
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,8 @@ Date: 2025-09-11
280280

281281
### Patch Changes
282282

283+
- `remix-serve` - Update `compression` and `morgan` dependencies to latest versions
284+
- `@remix-run/eslint-config` - Update deprecation warning with proper link to sample v2 eslint config file
283285
- `@remix-run/react` - Escape HTML in `meta()` JSON-LD content
284286

285287
**Full Changelog**: [`v2.17.0...v2.17.1`](https://github.com/remix-run/remix/compare/[email protected]@2.17.1)

packages/remix-eslint-config/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ console.warn(
1818
"⚠️ REMIX FUTURE CHANGE: The `@remix-run/eslint-config` package is deprecated " +
1919
"and will not be included in React Router v7. We recommend moving towards a " +
2020
"streamlined ESLint config such as the ones included in the Remix templates. " +
21-
"See https://github.com/remix-run/remix/blob/main/templates/remix/.eslintrc.cjs."
21+
"See https://github.com/remix-run/remix/blob/v2/templates/remix/.eslintrc.cjs."
2222
);
2323

2424
const OFF = 0;

packages/remix-serve/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"@remix-run/express": "workspace:*",
2222
"@remix-run/node": "workspace:*",
2323
"chokidar": "^3.5.3",
24-
"compression": "^1.7.4",
24+
"compression": "^1.8.1",
2525
"express": "^4.20.0",
2626
"get-port": "5.1.1",
27-
"morgan": "^1.10.0",
27+
"morgan": "^1.10.1",
2828
"source-map-support": "^0.5.21"
2929
},
3030
"devDependencies": {

pnpm-lock.yaml

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/playground/template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"express": "^4.19.2",
2828
"get-port": "^6.1.2",
2929
"isbot": "^4.1.0",
30-
"morgan": "^1.10.0",
30+
"morgan": "^1.10.1",
3131
"react": "^18.2.0",
3232
"react-dom": "^18.2.0",
3333
"tiny-invariant": "^1.2.0"

templates/classic-remix-compiler/express/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
"@remix-run/express": "*",
1515
"@remix-run/node": "*",
1616
"@remix-run/react": "*",
17-
"compression": "^1.7.4",
17+
"compression": "^1.8.1",
1818
"cross-env": "^7.0.3",
1919
"express": "^4.19.2",
2020
"isbot": "^4.1.0",
21-
"morgan": "^1.10.0",
21+
"morgan": "^1.10.1",
2222
"react": "^18.2.0",
2323
"react-dom": "^18.2.0",
2424
"source-map-support": "^0.5.21"

templates/express/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
"@remix-run/express": "*",
1414
"@remix-run/node": "*",
1515
"@remix-run/react": "*",
16-
"compression": "^1.7.4",
16+
"compression": "^1.8.1",
1717
"cross-env": "^7.0.3",
1818
"express": "^4.19.2",
1919
"isbot": "^4.1.0",
20-
"morgan": "^1.10.0",
20+
"morgan": "^1.10.1",
2121
"react": "^18.2.0",
2222
"react-dom": "^18.2.0"
2323
},

0 commit comments

Comments
 (0)