Skip to content

Commit

Permalink
v100
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Dec 25, 2022
1 parent e752b97 commit ddd1fa6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
# Change Log

## v100

- Improve self-hosting configuration. check [HOSTING.md](./HOSTING.md) for more details.
- Support `browser` field when it's an es6 module (close [#381](https://github.com/ije/esm.sh/issues/381)).
- Purge headers from unpkg.com to avoid repeated `Access-Control-Allow-Origin` header (close [#453](https://github.com/ije/esm.sh/issues/453)).
- Fix content compression (close [#460](https://github.com/ije/esm.sh/issues/460)).
- Fix alias export (close [#471](https://github.com/ije/esm.sh/issues/471)).
- Fix cycle importing (close [#464](https://github.com/ije/esm.sh/issues/464)).
- Fix scenarios where module/es2015 are shims (maps).
- Fix worker cors issue.
- Upgrade `esbuild` to **0.16.10**.
- Upgrade `deno/std` to **0.170.0**.

## v99

- Improve CDN cache performance, now you can get faster response time of `.d.ts`, `.wasm` and other static files.
- Remove `?deps` purge (close [#422](https://github.com/ije/esm.sh/issues/420))
- Remove `?deps` purge (close [#420](https://github.com/ije/esm.sh/issues/420))
- Remove `?export` query of sub build task
- Upgrade `deno/std` to **0.165.0**.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ import unescape from "https://esm.sh/lodash/unescape?no-dts"
Since we update esm.sh server frequently, sometime we may break packages that work fine previously by mistake, the server will rebuild all modules when the patch pushed. To avoid this, you can **pin** the build version by the `?pin=BUILD_VERSON` query. This will give you an **immutable** cached module.

```javascript
import React from "https://esm.sh/[email protected]?pin=v99"
import React from "https://esm.sh/[email protected]?pin=v100"
```

## Global CDN
Expand Down
2 changes: 1 addition & 1 deletion server/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package server

const (
// esm.sh build version
VERSION = 99
VERSION = 100
nodejsMinVersion = 16
denoStdVersion = "0.170.0"
nodejsLatestLTS = "16.18.1"
Expand Down

0 comments on commit ddd1fa6

Please sign in to comment.