Skip to content

Commit

Permalink
V101
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Dec 27, 2022
1 parent b1f925f commit c5353e1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## v101

- Fix `?bundle` mode with illegal paths (close [#476](https://github.com/ije/esm.sh/issues/476)).
- Fix `?worker` mode doesn't support CORS.

## v100

- Improve self-hosting configuration. check [HOSTING.md](./HOSTING.md) for more details.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,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=v100"
import React from "https://esm.sh/[email protected]?pin=v101"
```

## 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 = 100
VERSION = 101
nodejsMinVersion = 16
denoStdVersion = "0.170.0"
nodejsLatestLTS = "16.18.1"
Expand Down

0 comments on commit c5353e1

Please sign in to comment.