Skip to content

Commit ad9e61f

Browse files
feat: v6 release branch (#1148)
Sets up a `v6` release branch. This should clean up our packages dependencies where we've been aliasing `6.87.1` to various names. It should also enable us to apply bug fixes if we really need to.
1 parent ad07529 commit ad9e61f

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
node-version:
11-
- lts/-1
12-
- lts/*
13-
- latest
14-
react: [16, 17, 18]
10+
node-version: [20]
11+
react: [16, 18]
1512
steps:
1613
- uses: actions/checkout@v3
1714

@@ -39,7 +36,7 @@ jobs:
3936
runs-on: ubuntu-latest
4037
strategy:
4138
matrix:
42-
node-version: [20.x]
39+
node-version: [20]
4340
react: [18]
4441

4542
steps:
@@ -49,7 +46,7 @@ jobs:
4946
run: make ci
5047

5148
- name: Upload snapshot diffs
52-
uses: actions/upload-artifact@v3
49+
uses: actions/upload-artifact@v4
5350
if: ${{ failure() }}
5451
with:
5552
name: snapshots-diffs
@@ -60,7 +57,7 @@ jobs:
6057
run: make updateSnapshot
6158

6259
- name: Upload snapshots
63-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6461
if: ${{ failure() }}
6562
with:
6663
name: image-snapshots

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- main
66
- beta
7+
- v6
78

89
jobs:
910
Release:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN apk update && apk add \
1313
font-roboto \
1414
chromium
1515

16-
RUN npm install -g npm@latest
16+
RUN npm install -g npm@10
1717

1818
ENV DOCKER_WORKSPACE=/markdown
1919
WORKDIR ${DOCKER_WORKSPACE}

Dockerfile.legacy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN apk update && apk add \
1818
font-roboto \
1919
chromium
2020

21-
RUN npm install -g npm@latest
21+
RUN npm install -g npm@10
2222

2323
ENV DOCKER_WORKSPACE=/markdown
2424
WORKDIR ${DOCKER_WORKSPACE}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
> [!WARNING]
2+
> This is the deprecated v6 branch. It is no longer being actively maintained.
3+
14
# @readme/markdown
25

36
<img align="right" width="26%" src="https://owlbertsio-resized.s3.amazonaws.com/Reading.psd.full.png">

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@readme/markdown",
3-
"description": "ReadMe's React-based Markdown parser",
2+
"name": "@readme/markdown-legacy",
3+
"description": "ReadMe's React-based Legacy Markdown parser",
44
"author": "Rafe Goldberg <[email protected]>",
55
"version": "6.87.1",
66
"main": "dist/main.node.js",

0 commit comments

Comments
 (0)