Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
remix-run-bot committed Sep 15, 2023
1 parent 0f48e50 commit 4cb1607
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/start/tutorial.md
Expand Up @@ -36,7 +36,7 @@ npm install
npm run dev
```

You should be able to open up [http://localhost:3000][http-localhost-3000] and see an unstyled screen that looks like this:
You should be able to open up \[http\://localhost:3000]\[http-localhost-3000] and see an unstyled screen that looks like this:

<img class="tutorial" src="/docs-images/contacts/03.webp" />

Expand Down
29 changes: 21 additions & 8 deletions packages/remix-deno/CHANGELOG.md
Expand Up @@ -4,27 +4,40 @@

### Major Changes

- Removed/adjusted types to prefer `unknown` over `any` and to align with underlying React Router types ([#7319](https://github.com/remix-run/remix/pull/7319), [#7354](https://github.com/remix-run/remix/pull/7354)):
- Removed/adjusted types to prefer `unknown` over `any` and to align with
underlying React Router types
([#7319](https://github.com/remix-run/remix/pull/7319),
[#7354](https://github.com/remix-run/remix/pull/7354)):
- Renamed the `useMatches()` return type from `RouteMatch` to `UIMatch`
- Renamed `LoaderArgs`/`ActionArgs` to `LoaderFunctionArgs`/`ActionFunctionArgs`
- Renamed `LoaderArgs`/`ActionArgs` to
`LoaderFunctionArgs`/`ActionFunctionArgs`
- `AppData` changed from `any` to `unknown`
- `Location["state"]` (`useLocation.state`) changed from `any` to `unknown`
- `UIMatch["data"]` (`useMatches()[i].data`) changed from `any` to `unknown`
- `UIMatch["handle"]` (`useMatches()[i].handle`) changed from `{ [k: string]: any }` to `unknown`
- `UIMatch["handle"]` (`useMatches()[i].handle`) changed from
`{ [k: string]: any }` to `unknown`
- `Fetcher["data"]` (`useFetcher().data`) changed from `any` to `unknown`
- `MetaMatch.handle` (used in `meta()`) changed from `any` to `unknown`
- `AppData`/`RouteHandle` are no longer exported as they are just aliases for `unknown`
- `AppData`/`RouteHandle` are no longer exported as they are just aliases for
`unknown`
- Require Node >=18.0.0 ([#6939](https://github.com/remix-run/remix/pull/6939))
- The route `meta` API now defaults to the new "V2 Meta" API ([#6958](https://github.com/remix-run/remix/pull/6958))
- Please refer to the ([docs](https://remix.run/docs/en/2.0.0/route/meta) and [Preparing for V2](https://remix.run/docs/en/2.0.0/start/v2#route-meta) guide for more information.
- The route `meta` API now defaults to the new "V2 Meta" API
([#6958](https://github.com/remix-run/remix/pull/6958))
- Please refer to the ([docs](https://remix.run/docs/en/2.0.0/route/meta) and
[Preparing for V2](https://remix.run/docs/en/2.0.0/start/v2#route-meta)
guide for more information.

### Minor Changes

- Re-export the new `redirectDocument` method from React Router ([#7040](https://github.com/remix-run/remix/pull/7040), [#6842](https://github.com/remix-run/remix/pull/6842)) ([#7040](https://github.com/remix-run/remix/pull/7040))
- Re-export the new `redirectDocument` method from React Router
([#7040](https://github.com/remix-run/remix/pull/7040),
[#6842](https://github.com/remix-run/remix/pull/6842))
([#7040](https://github.com/remix-run/remix/pull/7040))

### Patch Changes

- Export proper `ErrorResponse` type for usage alongside `isRouteErrorResponse` ([#7244](https://github.com/remix-run/remix/pull/7244))
- Export proper `ErrorResponse` type for usage alongside `isRouteErrorResponse`
([#7244](https://github.com/remix-run/remix/pull/7244))
- Updated dependencies:
- `@remix-run/server-runtime@2.0.0`

Expand Down

0 comments on commit 4cb1607

Please sign in to comment.