Skip to content

Commit cdb5d80

Browse files
author
Tim Bruijnzeels
authored
Merge pull request #336 from NLnetLabs/v0.8.0-release
V0.8.0 release
2 parents 3a270eb + 7686072 commit cdb5d80

File tree

8 files changed

+21
-7
lines changed

8 files changed

+21
-7
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
# Note: some of these values are also used when building Debian packages below.
33
name = "krill"
4-
version = "0.8.0-rc2"
4+
version = "0.8.0"
55
edition = "2018"
66
authors = [ "The NLnet Labs RPKI team <[email protected]>" ]
77
description = "Resource Public Key Infrastructure (RPKI) daemon"

Changelog.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
Please see [here](https://github.com/NLnetLabs/krill/projects?query=is%3Aopen+sort%3Aname-asc)
44
for planned releases.
55

6+
## 0.8.0 'The Art of ROA Maintenance'
7+
8+
This release includes all changes from the -rc1 and -rc2 release candidates. In addition to this
9+
the main UI (everything except the testbed pages) now includes Spanish translations.
10+
11+
In summary this upgrade is recommended to all Krill users. It offers improved ROA guidance support
12+
in the UI, better status reporting on interactions between your CA and its parent and repository,
13+
and a number of improvements aimed at improving resiliency.
14+
15+
Furthermore, we would like to draw attention once more to our [testbed](https://blog.nlnetlabs.nl/testing----123-delegated-rpki/)
16+
which allows new users to get familiar with Krill, and existing users to try out new functionality
17+
before upgrading.
18+
619
## 0.8.0-rc2 'The Small Print'
720

821
Because of some changes we decided to have another RC release before 0.8.0, which is now planned

doc/openapi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: "3.0.2"
22
info:
33
title: Krill RPKI Server API
4-
version: 0.8.0-rc1
4+
version: 0.8.0
55
description: |
66
# Introduction
77
Welcome to the documentation for the Krill server API, a JSON based

lagosta/js/app.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lagosta/js/app.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/daemon/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ impl Config {
401401
let use_ta = true;
402402
let repo_enabled = true;
403403
let repo_retain_old_seconds = 1;
404-
let testbed_enabled = false;
404+
let testbed_enabled = true;
405405
let https_mode = HttpsMode::Generate;
406406
let data_dir = data_dir.clone();
407407
let archive_threshold_days = Some(0);

src/test.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use crate::commons::crypto::SignSupport;
3131
use crate::commons::remote::rfc8183;
3232
use crate::commons::remote::rfc8183::{ChildRequest, RepositoryResponse};
3333
use crate::commons::util::httpclient;
34-
use crate::constants::{KRILL_ENV_TEST, KRILL_ENV_TEST_ANN, KRILL_ENV_TEST_UNIT_DATA};
34+
use crate::constants::{KRILL_ENV_TEST, KRILL_ENV_TESTBED_ENABLED, KRILL_ENV_TEST_ANN, KRILL_ENV_TEST_UNIT_DATA};
3535
use crate::daemon::ca::{ta_handle, ResourceTaggedAttestation, RtaContentRequest, RtaPrepareRequest};
3636
use crate::daemon::http::server;
3737

@@ -64,6 +64,7 @@ pub async fn start_krill() -> PathBuf {
6464
env::set_var(KRILL_ENV_TEST_UNIT_DATA, dir.to_string_lossy().to_string());
6565
env::set_var(KRILL_ENV_TEST_ANN, "1");
6666
env::set_var(KRILL_ENV_TEST, "1");
67+
env::set_var(KRILL_ENV_TESTBED_ENABLED, "1");
6768

6869
tokio::spawn(server::start());
6970

0 commit comments

Comments
 (0)