Skip to content
Merged

Dev4 #132

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
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ jobs:
# we specify bash to get pipefail; it guards against the `curl` command
# failing. otherwise `sh` won't catch that `curl` returned non-0
shell: bash
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.31.0/cargo-dist-installer.sh | sh"
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.32.0/cargo-dist-installer.sh | sh"
- name: Cache dist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cargo-dist-cache
path: ~/.cargo/bin/dist
Expand All @@ -82,7 +82,7 @@ jobs:
cat plan-dist-manifest.json
echo "manifest=$(jq -c "." plan-dist-manifest.json)" >> "$GITHUB_OUTPUT"
- name: "Upload dist-manifest.json"
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: artifacts-plan-dist-manifest
path: plan-dist-manifest.json
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
run: ${{ matrix.install_dist.run }}
# Get the dist-manifest
- name: Fetch local artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
pattern: artifacts-*
path: target/distrib/
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:

cp dist-manifest.json "$BUILD_MANIFEST_NAME"
- name: "Upload artifacts"
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: artifacts-build-local-${{ join(matrix.targets, '_') }}
path: |
Expand All @@ -188,14 +188,14 @@ jobs:
persist-credentials: false
submodules: recursive
- name: Install cached dist
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: cargo-dist-cache
path: ~/.cargo/bin/
- run: chmod +x ~/.cargo/bin/dist
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
- name: Fetch local artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
pattern: artifacts-*
path: target/distrib/
Expand All @@ -213,7 +213,7 @@ jobs:

cp dist-manifest.json "$BUILD_MANIFEST_NAME"
- name: "Upload artifacts"
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: artifacts-build-global
path: |
Expand Down Expand Up @@ -241,14 +241,14 @@ jobs:
with:
node-version: 24
- name: Install cached dist
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: cargo-dist-cache
path: ~/.cargo/bin/
- run: chmod +x ~/.cargo/bin/dist
# Fetch artifacts from scratch-storage
- name: Fetch artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
pattern: artifacts-*
path: target/distrib/
Expand All @@ -261,14 +261,14 @@ jobs:
cat dist-manifest.json
echo "manifest=$(jq -c "." dist-manifest.json)" >> "$GITHUB_OUTPUT"
- name: "Upload dist-manifest.json"
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
# Overwrite the previous copy
name: artifacts-dist-manifest
path: dist-manifest.json
# Create a GitHub Release while uploading all files to it
- name: "Download GitHub Artifacts"
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
pattern: artifacts-*
path: artifacts
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ Changelog

* No changes.

Version 0.1.57 -- 2026-Jun-15
-----------------------------

* Simplify and correct the process of sending doc block edits to the server.
* Fix mis-translation when adding newlines to a fenced code block in a doc block
in the Client.

Version 0.1.56 -- 2026-May-22
-----------------------------

Expand Down
24 changes: 12 additions & 12 deletions builder/Cargo.lock

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

2 changes: 1 addition & 1 deletion builder/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ static CLIENT_PATH: &str = "../client";
static BUILDER_PATH: &str = "../builder";
static TEST_UTILS_PATH: &str = "../test_utils";
static NAPI_TARGET: &str = "NAPI_TARGET";
static DIST_VERSION: &str = "0.31.0";
static DIST_VERSION: &str = "0.32.0";

// Code
// ----
Expand Down
26 changes: 13 additions & 13 deletions client/package.json5
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@
'@codemirror/legacy-modes': '^6.5.3',
'@codemirror/state': '^6.6.0',
'@codemirror/view': '6.38.8',
'@hpcc-js/wasm-graphviz': '^1.21.6',
'@hpcc-js/wasm-graphviz': '^1.22.0',
'@mathjax/mathjax-newcm-font': '^4.1.2',
codemirror: '^6.0.2',
mathjax: '^4.1.2',
mermaid: '^11.15.0',
'pdfjs-dist': '5.4.624',
tinymce: '^8.5.1',
'pdfjs-dist': '^6.0.227',
tinymce: '^8.6.0',
'toastify-js': '^1.12.0',
},
devDependencies: {
Expand All @@ -79,22 +79,22 @@
'@types/dom-navigation': '^1.0.7',
'@types/js-beautify': '^1.14.3',
'@types/mocha': '^10.0.10',
'@types/node': '^24.12.4',
'@types/node': '^24.13.2',
'@types/toastify-js': '^1.12.4',
'@typescript-eslint/eslint-plugin': '^8.59.4',
'@typescript-eslint/parser': '^8.59.4',
'@typescript-eslint/eslint-plugin': '^8.61.0',
'@typescript-eslint/parser': '^8.61.0',
chai: '^6.2.2',
esbuild: '^0.28.0',
eslint: '^10.4.0',
esbuild: '^0.28.1',
eslint: '^10.5.0',
'eslint-config-prettier': '^10.1.8',
'eslint-plugin-import': '^2.32.0',
'eslint-plugin-prettier': '^5.5.5',
'eslint-plugin-prettier': '^5.5.6',
globals: '^17.6.0',
mocha: '^11.7.5',
'npm-check-updates': '^22.2.0',
prettier: '^3.8.3',
mocha: '^11.7.6',
'npm-check-updates': '^22.2.3',
prettier: '^3.8.4',
typescript: '^6.0.3',
'typescript-eslint': '^8.59.4',
'typescript-eslint': '^8.61.0',
},
scripts: {
test: 'echo "Error: no test specified" && exit 1',
Expand Down
Loading
Loading