Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
Update heartwood and radicle-httpd releases
Sebastian Martinez committed 1 year ago
commit 30647fbb262f79a86b0b65a568685c3821e3e7ff
parent 139bab5
6 files changed +11 -5
modified config/default.json
@@ -1,7 +1,7 @@
{
  "nodes": {
    "fallbackPublicExplorer": "https://app.radicle.xyz/nodes/$host/$rid$path",
-
    "apiVersion": "5.0.0",
+
    "apiVersion": "6.0.0",
    "defaultHttpdPort": 443,
    "defaultHttpdScheme": "https"
  },
modified radicle-httpd/src/api.rs
@@ -33,7 +33,7 @@ use crate::Options;

pub const RADICLE_VERSION: &str = env!("RADICLE_VERSION");
// This version has to be updated on every breaking change to the radicle-httpd API.
-
pub const API_VERSION: &str = "5.0.0";
+
pub const API_VERSION: &str = "6.0.0";

#[derive(Clone)]
pub struct Context {
modified tests/e2e/node.spec.ts
@@ -22,7 +22,7 @@ test("node metadata", async ({ page, peerManager }) => {
  await page.goto(peer.uiUrl());

  await expect(page.getByText(shortNodeRemote).first()).toBeVisible();
-
  await expect(page.getByText("/radicle:1.0.0-rc.13/")).toBeVisible();
+
  await expect(page.getByText("/radicle:1.0.0-rc.16/")).toBeVisible();
});

test("node repos", async ({ page }) => {
modified tests/support/fixtures.ts
@@ -282,6 +282,7 @@ export async function createCobsFixture(peer: RadiclePeer) {
      "--message",
      "This is a multiline comment\n\nWith some more text.",
      "--quiet",
+
      "--no-announce",
    ],
    createOptions(repoFolder, 2),
  );
@@ -301,6 +302,7 @@ export async function createCobsFixture(peer: RadiclePeer) {
      "--reply-to",
      commentIssueOne,
      "--quiet",
+
      "--no-announce",
    ],
    createOptions(repoFolder, 3),
  );
@@ -318,6 +320,7 @@ export async function createCobsFixture(peer: RadiclePeer) {
      "--message",
      "A root level comment after a reply, for margins sake.",
      "--quiet",
+
      "--no-announce",
    ],
    createOptions(repoFolder, 4),
  );
@@ -376,6 +379,7 @@ export async function createCobsFixture(peer: RadiclePeer) {
      "--reply-to",
      commentPatchOne,
      "--quiet",
+
      "--no-announce",
    ],
    createOptions(repoFolder, 2),
  );
@@ -389,6 +393,7 @@ export async function createCobsFixture(peer: RadiclePeer) {
      "--reply-to",
      commentPatchOne,
      "--quiet",
+
      "--no-announce",
    ],
    createOptions(repoFolder, 3),
  );
@@ -414,6 +419,7 @@ export async function createCobsFixture(peer: RadiclePeer) {
      "--reply-to",
      commentTwo,
      "--quiet",
+
      "--no-announce",
    ],
    createOptions(repoFolder, 5),
  );
modified tests/support/heartwood-release
@@ -1 +1 @@
-
1.0.0-rc.13

\ No newline at end of file
+
1.0.0-rc.16

\ No newline at end of file
modified tests/support/radicle-httpd-release
@@ -1 +1 @@
-
0.16.0

\ No newline at end of file
+
0.17.0

\ No newline at end of file