@remix-run/serve 1.6.7 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # `@remix-run/serve`
2
2
 
3
+ ## 1.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - We've added a new type: `SerializeFrom`. This is used to infer the ([#4013](https://github.com/remix-run/remix/pull/4013))
8
+ JSON-serialized return type of loaders and actions.
9
+ - `MetaFunction` type can now infer `data` and `parentsData` types from route loaders ([#4022](https://github.com/remix-run/remix/pull/4022))
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies:
14
+ - `@remix-run/express@1.7.0`
15
+
16
+ ## 1.6.8
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies:
21
+ - `@remix-run/express@1.6.8`
22
+
3
23
  ## 1.6.7
4
24
 
5
25
  ### Patch Changes
package/dist/cli.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * @remix-run/serve v1.6.7
3
+ * @remix-run/serve v1.7.0
4
4
  *
5
5
  * Copyright (c) Remix Software Inc.
6
6
  *
package/dist/env.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/serve v1.6.7
2
+ * @remix-run/serve v1.7.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/serve v1.6.7
2
+ * @remix-run/serve v1.7.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remix-run/serve",
3
- "version": "1.6.7",
3
+ "version": "1.7.0",
4
4
  "description": "Production application server for Remix",
5
5
  "bugs": {
6
6
  "url": "https://github.com/remix-run/remix/issues"
@@ -17,7 +17,7 @@
17
17
  "remix-serve": "dist/cli.js"
18
18
  },
19
19
  "dependencies": {
20
- "@remix-run/express": "1.6.7",
20
+ "@remix-run/express": "1.7.0",
21
21
  "compression": "^1.7.4",
22
22
  "express": "^4.17.1",
23
23
  "morgan": "^1.10.0"