Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/release/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y ca-certificates curl dumb-init sudo

RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -s - && \
apt-get install -y nodejs
RUN npx playwright@1.52.0 install --with-deps chromium
RUN npx playwright@1.61.1 install --with-deps chromium

RUN adduser --gecos '' --disabled-password debian \
&& echo "debian ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
Expand Down
2 changes: 1 addition & 1 deletion d2cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"strings"
"time"

"github.com/playwright-community/playwright-go"
"github.com/mxschmitt/playwright-go"
"github.com/spf13/pflag"
"go.uber.org/multierr"

Expand Down
6 changes: 3 additions & 3 deletions go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 6 additions & 8 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/png/png.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
exif "github.com/dsoprea/go-exif/v3"
exifcommon "github.com/dsoprea/go-exif/v3/common"
pngstruct "github.com/dsoprea/go-png-image-structure/v2"
"github.com/playwright-community/playwright-go"
"github.com/mxschmitt/playwright-go"

"oss.terrastruct.com/d2/lib/compression"
"oss.terrastruct.com/d2/lib/version"
Expand Down Expand Up @@ -104,7 +104,7 @@ func InitPlaywrightWithPrompt() (Playwright, error) {
return startPlaywright(pw)
}

fmt.Print("D2 needs to install Chromium v130.0.6723.19 to render non-SVG images. Continue? (y/N): ")
fmt.Print("D2 needs to install Chromium v149.0.7827.55 to render non-SVG images. Continue? (y/N): ")
reader := bufio.NewReader(os.Stdin)
response, err := reader.ReadString('\n')
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion lib/xgif/xgif.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
d2png "oss.terrastruct.com/d2/lib/png"

"github.com/ericpauley/go-quantize/quantize"
"github.com/playwright-community/playwright-go"
"github.com/mxschmitt/playwright-go"

"oss.terrastruct.com/util-go/go2"
)
Expand Down
Loading