Skip to content

Commit b81155c

Browse files
committed
v134
1 parent 907340a commit b81155c

File tree

13 files changed

+174
-164
lines changed

13 files changed

+174
-164
lines changed

.github/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#######################################
66
FROM golang:1.20-alpine AS build-stage
77

8-
ENV ESM_SH_VERSION v133
8+
ENV ESM_SH_VERSION v134
99
ENV ESM_SH_GIT_URL https://github.com/esm-dev/esm.sh
1010

1111
RUN apk update && apk add --no-cache git

.github/workflows/docker-push-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
context: ./.github/docker
3838
platforms: linux/amd64,linux/arm64
3939
push: true
40-
tags: ghcr.io/esm-dev/esm.sh:latest,ghcr.io/esm-dev/esm.sh:v133
40+
tags: ghcr.io/esm-dev/esm.sh:latest,ghcr.io/esm-dev/esm.sh:v134

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v134
4+
5+
- Add `transformOnly` option for build api
6+
- Add `allowList` in config (#745 by @olekenneth)
7+
- Improved Deno CLI (#742 by @Kyiro)
8+
- Worker: fix dist version lookup
9+
- Fix exported names from a dependency (close #729, #750)
10+
- Fix: write `.npmrc` file if `NpmRegistry` is set (close #737) (#751 by @edeustace)
11+
- Upgrade esbuild to **0.19.5**
12+
313
## v133
414

515
- Add `?raw` to support requests for raw package source files (#731 by @johnyanarella)

HOSTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ esm.sh provides an official docker image for deployment. You can pull the contai
6767

6868
```bash
6969
docker pull ghcr.io/esm-dev/esm.sh # latest version
70-
docker pull ghcr.io/esm-dev/esm.sh:v133 # specific version
70+
docker pull ghcr.io/esm-dev/esm.sh:v134 # specific version
7171
docker pull ghcr.io/esm-dev/esm.sh:dev # latest development version
7272
```
7373

@@ -112,5 +112,5 @@ More details check [esm-worker](./packages/esm-worker/README.md).
112112
We also provide a server for [Deno](https://deno.land) which is powered by the [esm-worker](./packages/esm-worker/README.md).
113113

114114
```bash
115-
deno run -A https://esm.sh/v133/server --port=8080
115+
deno run -A https://esm.sh/v134/server --port=8080
116116
```

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@ package version.
273273
```json
274274
{
275275
"imports": {
276-
"react-dom": "https://esm.sh/react-dom@18.2.0?pin=v133&dev",
277-
"react-dom/": "https://esm.sh/react-dom@18.2.0&pin=v133&dev/"
276+
"react-dom": "https://esm.sh/react-dom@18.2.0?pin=v134&dev",
277+
"react-dom/": "https://esm.sh/react-dom@18.2.0&pin=v134&dev/"
278278
}
279279
}
280280
```
@@ -468,9 +468,9 @@ The `?pin` query allows you to specify a specific build version of a module,
468468
which is an **immutable** cached version stored on the esm.sh CDN.
469469

470470
```js
471-
import React from "https://esm.sh/react-dom?pin=v133";
471+
import React from "https://esm.sh/react-dom?pin=v134";
472472
// or use version prefix
473-
import React from "https://esm.sh/v133/react-dom";
473+
import React from "https://esm.sh/v134/react-dom";
474474
```
475475

476476
By using the `?pin` query in the import statement, you can rest assured that the

packages/esm-worker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ all requests of esm.sh at the edge(earth).
1313
## Installation
1414

1515
```bash
16-
npm install esm-worker@^0.133.0
16+
npm install esm-worker@^0.134.0
1717
```
1818

1919
## Configuration

packages/esm-worker/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "esm-worker",
33
"description": "A Cloudflare worker handles all requests of esm.sh at the edge(earth).",
4-
"version": "0.133.0",
4+
"version": "0.134.0",
55
"type": "module",
66
"module": "dist/index.js",
77
"types": "types/index.d.ts",
@@ -16,7 +16,7 @@
1616
"@cloudflare/workers-types": "4.20231002.0",
1717
"@types/ua-parser-js": "0.7.37",
1818
"compare-versions": "6.1.0",
19-
"esbuild": "0.19.4",
19+
"esbuild": "0.19.5",
2020
"ua-parser-js": "1.0.36"
2121
},
2222
"repository": "https://github.com/esm-dev/esm.sh",

0 commit comments

Comments
 (0)