Skip to content
Merged
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
29 changes: 29 additions & 0 deletions content/releases/nim-libp2p-v1.15.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
+++
title = "Announcing the release of nim-libp2p v1.15.2"
description = "An overview of changes and updates in the v1.15.2 release"
date = 2026-02-02
slug = "2026-02-02-nim-libp2p"

[taxonomies]
tags = ["nim-libp2p"]

[extra]
author = "Richard Ramos"
header_image = "/img/blog/js-libp2p-v1-header.png"
version = "v1.15.2"
implementation = "nim"
breaking = false
security = false
github_release = "https://github.com/vacp2p/nim-libp2p/releases/tag/v1.15.2"
+++
`nim-libp2p v1.15.2` has just shipped.

## Hotfix

- fix(gossipsub): race condition issue causing nil pointer exception when sendConn is not set by [@chaitanyaprem](https://github.com/chaitanyaprem) in [#2049](https://github.com/vacp2p/nim-libp2p/pull/2049)

## Contributors

- [@chaitanyaprem](https://github.com/chaitanyaprem)

**Full Changelog:** [v1.15.1...v1.15.2](https://github.com/vacp2p/nim-libp2p/compare/v1.15.1...v1.15.2)
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tags = ["tag", "py-libp2p"]
author = "Paul Robinson"
header_image = "/img/blog/js-libp2p-v1-header.png"
version = "v0.5.0"
implementation = "python"
implementation = "py"
breaking = false
security = false
github_release = "https://github.com/libp2p/py-libp2p/releases/tag/v0.5.0"
Expand Down
10 changes: 10 additions & 0 deletions sass/sections/_releases.scss
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,16 @@
background-color: #fce7f3;
color: #be185d;
}

&--py {
background-color: #dcfce7;
color: #166534;
}

&--nim {
background-color: #fef9c3;
color: #854d0e;
}
}

&__date {
Expand Down
1 change: 1 addition & 0 deletions templates/releases/section.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ <h1 class="releases-header__title">Releases</h1>
<button class="releases-filters__btn" data-filter="rust">rust-libp2p</button>
<button class="releases-filters__btn" data-filter="js">js-libp2p</button>
<button class="releases-filters__btn" data-filter="py">py-libp2p</button>
<button class="releases-filters__btn" data-filter="nim">nim-libp2p</button>
</div>

{# Timeline #}
Expand Down
Loading