Skip to content

Commit 7d013ca

Browse files
committed
Release
- @remix-run/assets: 0.1.0 -> 0.2.0 - @remix-run/auth: 0.1.1 -> 0.2.0 - @remix-run/component: 0.7.0 -> 0.8.0 - @remix-run/compression-middleware: 0.1.5 -> 0.1.6 - @remix-run/data-schema: 0.2.0 -> 0.3.0 - @remix-run/data-table-sqlite: 0.3.0 -> 0.4.0 - @remix-run/fetch-proxy: 0.7.1 -> 0.8.0 - @remix-run/file-storage: 0.13.3 -> 0.13.4 - @remix-run/file-storage-s3: 0.1.0 -> 0.1.1 - @remix-run/form-data-middleware: 0.2.1 -> 0.2.2 - @remix-run/form-data-parser: 0.16.0 -> 0.17.0 - @remix-run/fs: 0.4.2 -> 0.4.3 - @remix-run/lazy-file: 5.0.2 -> 5.0.3 - @remix-run/logger-middleware: 0.1.5 -> 0.2.0 - @remix-run/mime: 0.4.0 -> 0.4.1 - @remix-run/multipart-parser: 0.15.0 -> 0.16.0 - @remix-run/response: 0.3.2 -> 0.3.3 - @remix-run/static-middleware: 0.4.6 -> 0.4.7 - @remix-run/tar-parser: 0.7.0 -> 0.7.1 - @remix-run/terminal: 0.0.0 -> 0.1.0 - @remix-run/test: 0.1.0 -> 0.2.0 - @remix-run/ui: 0.0.0 -> 0.0.1 - remix: 3.0.0-alpha.5 -> 3.0.0-alpha.6
1 parent a46e4b7 commit 7d013ca

69 files changed

Lines changed: 332 additions & 144 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/assets/.changes/minor.expand-script-targets.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/assets/.changes/minor.hoist-compiler-options.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/assets/.changes/minor.styles-support.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/assets/.changes/patch.allow-globs-match-dot-paths.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/assets/.changes/patch.improve-resolved-import-errors.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/assets/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
This is the changelog for [`assets`](https://github.com/remix-run/remix/tree/main/packages/assets). It follows [semantic versioning](https://semver.org/).
44

5+
## v0.2.0
6+
7+
### Minor Changes
8+
9+
- BREAKING CHANGE: `target` configuration is now configured at the top level with an object format, supporting `es` version targets along with browser version targets.
10+
11+
Browser targets are configured with string versions such as `target: { chrome: '109', safari: '16.4' }`, and scripts can specify `es` as a year of `2015` or higher such as `target: { es: '2020' }`.
12+
13+
To migrate existing script configuration, replace `scripts.target` options like `scripts: { target: 'es2020' }` with `target: { es: '2020' }`.
14+
15+
- BREAKING CHANGE: Shared compiler options are now provided at the top level of `createAssetServer()`. Use `sourceMaps`, `sourceMapSourcePaths`, and `minify` directly on the asset server options instead of being nested under `scripts`. This allows these options to also be used for styles as well as scripts.
16+
17+
To migrate existing configuration, move `scripts.minify`, `scripts.sourceMaps`, `scripts.sourceMapSourcePaths` to the top-level asset server options.
18+
19+
- `createAssetServer()` now compiles and serves `.css` files alongside scripts, including local `@import` rewriting, fingerprinting, and shared compiler options for minification, source maps, and browser compatibility targeting.
20+
21+
### Patch Changes
22+
23+
- Fix matching of dot-prefixed files and directories in `allow` and `deny` globs
24+
25+
- Improve asset server import errors to include the resolved file path when a resolved import is later rejected by validation for allow/deny rules, supported file types and `fileMap` configuration.
26+
527
## v0.1.0
628

729
### Minor Changes

packages/assets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/assets",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Fetch-based server for compiling browser JS/TS and CSS assets on demand",
55
"author": "Michael Jackson <mjijackson@gmail.com>",
66
"license": "MIT",

packages/auth/.changes/minor.refresh-external-auth.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/auth/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
This is the changelog for [`auth`](https://github.com/remix-run/remix/tree/main/packages/auth). It follows [semantic versioning](https://semver.org/).
44

5+
## v0.2.0
6+
7+
### Minor Changes
8+
9+
- Added `refreshExternalAuth()` to `@remix-run/auth` so apps can exchange stored refresh tokens for fresh OAuth and OIDC token bundles.
10+
11+
The built-in OIDC providers and X now implement refresh-token exchange. Refreshed token bundles preserve the existing refresh token when the provider omits a rotated value.
12+
513
## v0.1.1
614

715
### Patch Changes

packages/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/auth",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "Browser login, OAuth, and OIDC helpers for Remix",
55
"author": "Michael Jackson <mjijackson@gmail.com>",
66
"license": "MIT",

0 commit comments

Comments
 (0)