Skip to content

Commit

Permalink
v134
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Nov 14, 2023
1 parent 907340a commit b81155c
Show file tree
Hide file tree
Showing 13 changed files with 174 additions and 164 deletions.
2 changes: 1 addition & 1 deletion .github/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#######################################
FROM golang:1.20-alpine AS build-stage

ENV ESM_SH_VERSION v133
ENV ESM_SH_VERSION v134
ENV ESM_SH_GIT_URL https://github.com/esm-dev/esm.sh

RUN apk update && apk add --no-cache git
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-push-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
context: ./.github/docker
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/esm-dev/esm.sh:latest,ghcr.io/esm-dev/esm.sh:v133
tags: ghcr.io/esm-dev/esm.sh:latest,ghcr.io/esm-dev/esm.sh:v134
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v134

- Add `transformOnly` option for build api
- Add `allowList` in config (#745 by @olekenneth)
- Improved Deno CLI (#742 by @Kyiro)
- Worker: fix dist version lookup
- Fix exported names from a dependency (close #729, #750)
- Fix: write `.npmrc` file if `NpmRegistry` is set (close #737) (#751 by @edeustace)
- Upgrade esbuild to **0.19.5**

## v133

- Add `?raw` to support requests for raw package source files (#731 by @johnyanarella)
Expand Down
4 changes: 2 additions & 2 deletions HOSTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ esm.sh provides an official docker image for deployment. You can pull the contai

```bash
docker pull ghcr.io/esm-dev/esm.sh # latest version
docker pull ghcr.io/esm-dev/esm.sh:v133 # specific version
docker pull ghcr.io/esm-dev/esm.sh:v134 # specific version
docker pull ghcr.io/esm-dev/esm.sh:dev # latest development version
```

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

```bash
deno run -A https://esm.sh/v133/server --port=8080
deno run -A https://esm.sh/v134/server --port=8080
```
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ package version.
```json
{
"imports": {
"react-dom": "https://esm.sh/[email protected]?pin=v133&dev",
"react-dom/": "https://esm.sh/[email protected]&pin=v133&dev/"
"react-dom": "https://esm.sh/[email protected]?pin=v134&dev",
"react-dom/": "https://esm.sh/[email protected]&pin=v134&dev/"
}
}
```
Expand Down Expand Up @@ -468,9 +468,9 @@ The `?pin` query allows you to specify a specific build version of a module,
which is an **immutable** cached version stored on the esm.sh CDN.
```js
import React from "https://esm.sh/react-dom?pin=v133";
import React from "https://esm.sh/react-dom?pin=v134";
// or use version prefix
import React from "https://esm.sh/v133/react-dom";
import React from "https://esm.sh/v134/react-dom";
```
By using the `?pin` query in the import statement, you can rest assured that the
Expand Down
2 changes: 1 addition & 1 deletion packages/esm-worker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ all requests of esm.sh at the edge(earth).
## Installation

```bash
npm install esm-worker@^0.133.0
npm install esm-worker@^0.134.0
```

## Configuration
Expand Down
4 changes: 2 additions & 2 deletions packages/esm-worker/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "esm-worker",
"description": "A Cloudflare worker handles all requests of esm.sh at the edge(earth).",
"version": "0.133.0",
"version": "0.134.0",
"type": "module",
"module": "dist/index.js",
"types": "types/index.d.ts",
Expand All @@ -16,7 +16,7 @@
"@cloudflare/workers-types": "4.20231002.0",
"@types/ua-parser-js": "0.7.37",
"compare-versions": "6.1.0",
"esbuild": "0.19.4",
"esbuild": "0.19.5",
"ua-parser-js": "1.0.36"
},
"repository": "https://github.com/esm-dev/esm.sh",
Expand Down
Loading

0 comments on commit b81155c

Please sign in to comment.