Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Unleash/unleash-edge
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ca41c36fceec5192039533921b4a5caa8e4498db
Choose a base ref
..
head repository: Unleash/unleash-edge
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a3b9e218c64c991e7f40b474082a033b74d0e14b
Choose a head ref
Showing with 234 additions and 286 deletions.
  1. +1 −1 .github/workflows/release.yml
  2. +127 −237 Cargo.lock
  3. +0 −25 Cargo.toml
  4. +1 −1 README.md
  5. +27 −0 dist-workspace.toml
  6. +19 −0 docs/deploying.md
  7. +42 −6 server/CHANGELOG.md
  8. +13 −13 server/Cargo.toml
  9. +1 −1 server/README.md
  10. +2 −1 server/src/metrics/client_metrics.rs
  11. +1 −1 server/src/types.rs
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ 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.22.1/cargo-dist-installer.sh | sh"
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.23.0/cargo-dist-installer.sh | sh"
- name: Cache cargo-dist
uses: actions/upload-artifact@v4
with:
Loading