# 🔦 Highlights
switches to ESM only, upgrades to libp2p 0.37.x and brings lightweight PeerIds
js-IPFS@0.63.0
is rocketing forward with major improvements to its foundations along with many small bug fixes and performance improvements!
# 🧱 ESM
A module system lets us organise our code in way that makes sense for our application. Without a module system, everything is one big file and/or namespace and total chaos.
ECMAScript Modules (opens new window) are the module system for JavaScript.
Other modules systems have been implemented in the past (e.g., CommonJS (opens new window), RequireJS (opens new window)), but these have all been userland solutions to the problem of how to organize your JavaScript; none of them have ever been part of the language.
This means in order to take advantage of a module system, you need to run your code through a bundler such as webpack (opens new window) or esbuild (opens new window), which introduces a build step and means you can't just run a js file. We've got so used to needing the platform (e.g., node) to support a userland module system (e.g., CommonJS) or needing all this additional tooling that adds complexity and makes things slow.
The beginning of change started in 2015 with ES6 (opens new window), which among other things introduced the module specification.
By now the import
/export
syntax for modules should be familiar. It's used in TypeScript (opens new window), React (opens new window) and other environments, mostly via transpilation by such tools as babel (opens new window).
Back in 2018, FireFox shipped v60
, which meant all major browsers supported ES modules. Node.js was the final platform that needed support. Node.js actually released support behind a flag in v8.5.0
in 2017 but it was only with v13.2.0
in 2019 that it came out from behind that flag and with v14.8.0
in 2021 that top-level await
was also enabled by default.
With v16
becoming Active LTS in October last year it meant we were finally able (opens new window) to upgrade to ESM an embrace the bright new bundlerless future.
With libp2p@0.37.x
and ipfs@0.63.x
both modules are published exclusively as ESM.
There are migration guides available for libp2p (opens new window) and ipfs (opens new window).
If you are running in a CJS environment (e.g., node before v14.8
), you'll need to either convert your codebase to ESM, or use the dynamic import
function (opens new window) to load ipfs
and/or libp2p
. Note that ipfs
and libp2p
are only tested fully on Active and Current LTS versions, which is v16
+ at the time of writing.
# libp2p in TypeScript
With the libp2p@0.37.x
release, libp2p
has been entirely rewritten from the ground up in TypeScript.
This has given us a more stable and predictable base on which to build next generation distributed projects, as well as better support for automated tooling, code completion, docs and a generally greatly improved developer experience.
A large scale re-evaluation of the exposed interfaces has taken place which is a breaking change. Please see the libp2p@0.37.x migration guide (opens new window) for any changes you will need to make to your application.
# lightweight PeerId
s
The PeerId (opens new window) is a core concept of libp2p
. PeerIds let us identify remote peers and verify data those peers send to us, since they are either a hash of a public key in the case of an RSA (opens new window) derived PeerId
, or the public key itself in the case of an Ed25519 (opens new window) PeerId
.
Prior to libp2p@0.37.x
, the PeerId
concept was implemented by the peer-id (opens new window) module. The class exported by this module was capable of all sorts of encryption-related operations, some of which required heavyweight JavaScript modules such as node-forge (opens new window) since the web-crypto API (opens new window) lacks certain algorithms and operations that are used by the libp2p/IPFS ecosystems.
Depending on these modules carries a significant cost for browser bundles, and the operations they are supposed to support are not used in places like ipfs-http-client
rendering the peer-id
module unsuitable for use in lightweight front-end applications that may only orchestrate a remote IPFS node.
This has meant that PeerId
s are represented as strings throughout the IPFS core-api (opens new window) which makes them very hard to reason about in parts of the API where a string could be a PeerId
, a multiaddr (opens new window), an IPNS Name (opens new window) or something else.
With the new @libp2p/peer-id (opens new window) module, this is no longer the case and implementations of the PeerId
interface (opens new window) are essentially thin wrappers around Uint8Array
s that contain the serialized forms of the public and/or private keys, so we can now pass them back to front-end code and have all the benefits of type safety.
The cryptographic operations and the heavy deps they require are now encapsulated within the @libp2p/crypto (opens new window) module which in general is not used by front end code.
This is also a breaking change. Please see the ipfs@0.63.x
upgrade guide (opens new window) for any changes you will need to make to your application.
# ⚠ BREAKING CHANGES
- This module is now ESM only and the return types of some methods have changed.
Please see the ipfs@0.63.x
upgrade guide (opens new window) for any changes you will need to make to your application.
# Features
- update to libp2p 0.37.x (#4092 (opens new window)) (74aee8b (opens new window))
# Dependencies
- The following workspace dependencies were updated
- dependencies
- ipfs-cli bumped from ^0.12.3 to ^0.13.0
- ipfs-core bumped from ^0.14.3 to ^0.15.0
- devDependencies
- interface-ipfs-core bumped from ^0.154.2 to ^0.155.0
- ipfs-client bumped from ^0.7.8 to ^0.8.0
- ipfs-core-types bumped from ^0.10.3 to ^0.11.0
- ipfs-http-client bumped from ^56.0.3 to ^57.0.0
- dependencies
# 😍 Huge thank you to everyone that made this release possible
- @0xjjpa (opens new window) (1 comment)
- @12345-ilyas (opens new window) (1 issue)
- @2color (opens new window) (1 PR, 2 comments)
- @413umc (opens new window) (1 commit, 1 PR)
- @4everlandorg (opens new window) (1 PR)
- @68Darius68 (opens new window) (1 issue)
- @6d7a (opens new window) (3 commits, 1 PR)
- @8ceff4d9b6839867689b7265ca375c2390e5821 (opens new window) (1 issue)
- @abetaev (opens new window) (1 commit, 3 PRs, 4 comments)
- @abir-sharma (opens new window) (1 comment)
- @achingbrain (opens new window) (599 commits, 427 PRs, 18 issues, 171 comments)
- @ackintosh (opens new window) (1 commit, 1 PR)
- @act28 (opens new window) (1 comment)
- @ademcaglin (opens new window) (1 issue)
- @AgeManning (opens new window) (4 commits, 3 PRs, 1 issue, 17 comments)
- @Agin-DropDisco (opens new window) (1 issue, 1 comment)
- @agrohs (opens new window) (1 issue)
- @ahollmann (opens new window) (2 comments)
- @akhileshthite (opens new window) (1 issue)
- @akimoto72738 (opens new window) (1 issue, 1 comment)
- @Aksh-Bansal-dev (opens new window) (1 issue)
- @aksoni21 (opens new window) (1 comment)
- @alanshaw (opens new window) (2 commits, 3 PRs, 2 issues)
- @alexander-camuto (opens new window) (1 issue, 3 comments)
- @Alexis-ROYER (opens new window) (1 issue, 4 comments)
- @AlexMesser (opens new window) (1 issue, 3 comments)
- @AlexxNica (opens new window) (4 comments)
- @AllanOricil (opens new window) (4 comments)
- @allegorywrite (opens new window) (1 issue, 1 comment)
- @altoidkind (opens new window) (1 issue)
- @altonen (opens new window) (1 issue, 1 comment)
- @alvin-reyes (opens new window) (5 commits, 5 PRs, 1 issue, 3 comments)
- @amandesai01 (opens new window) (5 comments)
- @Amdela79 (opens new window) (1 comment)
- @andrasfuchs (opens new window) (1 comment)
- @andrewtookay (opens new window) (1 PR, 3 comments)
- @andrey-savov (opens new window) (1 issue)
- @andyschwab (opens new window) (1 commit, 1 PR)
- @Annamarie2019 (opens new window) (1 issue, 1 comment)
- @AnthonyAkentiev (opens new window) (1 comment)
- @aomini (opens new window) (2 commits, 2 PRs, 1 issue, 2 comments)
- @aouahib (opens new window) (1 comment)
- @appaquet (opens new window) (1 issue, 6 comments)
- @Apple1204 (opens new window) (1 issue, 2 comments)
- @AppleMayExist (opens new window) (1 issue)
- @appleseed-iii (opens new window) (1 comment)
- @Arlodotexe (opens new window) (1 issue)
- @armujahid (opens new window) (1 commit, 2 PRs)
- @arseniy-gl (opens new window) (1 issue)
- @artegoser (opens new window) (1 issue)
- @aschmahmann (opens new window) (11 commits, 6 PRs, 3 issues, 7 comments)
- @askender (opens new window) (1 issue, 1 comment)
- @ASPPIBRA (opens new window) (2 issues, 4 comments)
- @AtHeartEngineer (opens new window) (1 commit, 2 PRs, 1 comment)
- @atordvairn (opens new window) (1 issue)
- @AuHau (opens new window) (1 comment)
- @aurium (opens new window) (1 comment)
- @autonome (opens new window) (2 issues, 3 comments)
- @avelguenin (opens new window) (1 issue, 2 comments)
- @b1018043 (opens new window) (1 PR, 1 issue)
- @b5 (opens new window) (1 issue)
- @badkk (opens new window) (1 commit)
- @Barabazs (opens new window) (1 commit, 1 PR)
- @ben221199 (opens new window) (1 issue)
- @bgins (opens new window) (1 issue, 1 comment)
- @bhaskarvilles (opens new window) (1 PR, 2 comments)
- @BigLep (opens new window) (1 commit, 1 PR, 3 issues, 87 comments)
- @binarybaron (opens new window) (1 PR)
- @bitruss (opens new window) (2 PRs)
- @BlocksOnAChain (opens new window) (1 comment)
- @bluebob1 (opens new window) (1 issue)
- @bogosj (opens new window) (3 comments)
- @book-s (opens new window) (2 issues, 2 comments)
- @bradley-ray (opens new window) (1 commit, 1 PR)
- @BrandonFassberg (opens new window) (1 issue)
- @brandonros (opens new window) (1 issue, 2 comments)
- @brickpop (opens new window) (1 comment)
- @Brycewetzel (opens new window) (1 issue)
- @BullishBabyApes (opens new window) (1 issue)
- @burdiyan (opens new window) (2 issues)
- @caleb-mabry (opens new window) (1 commit, 1 PR)
- @callezenwaka (opens new window) (1 comment)
- @CallumGrindle (opens new window) (1 comment)
- @canewsin (opens new window) (1 PR, 2 issues, 12 comments)
- @captvicky (opens new window) (1 issue)
- @Carlos7687 (opens new window) (1 comment)
- @Carson12345 (opens new window) (2 PRs, 4 comments)
- @carsonfarmer (opens new window) (1 commit, 1 PR, 2 comments)
- @casey (opens new window) (1 comment)
- @Cceciliaa (opens new window) (1 issue)
- @chadlupkes (opens new window) (1 issue, 1 comment)
- @chamber32 (opens new window) (1 issue)
- @chenyulun (opens new window) (1 comment)
- @ChisVR (opens new window) (1 commit, 2 PRs)
- @chitoadinugraha (opens new window) (1 issue)
- @chrisjowen (opens new window) (1 issue, 1 comment)
- @chrispanag (opens new window) (1 issue, 1 comment)
- @christroutner (opens new window) (4 issues, 5 comments)
- @ChungMasterFlex (opens new window) (1 comment)
- @ciprianiacobescu (opens new window) (1 comment)
- @ckevinroque (opens new window) (1 issue)
- @CLAassistant (opens new window) (5 comments)
- @clarkjoao (opens new window) (1 comment)
- @Clothing999 (opens new window) (1 issue)
- @cobward (opens new window) (1 commit, 1 PR)
- @codeyager (opens new window) (1 commit)
- @ContactJake (opens new window) (1 issue)
- @cooz2 (opens new window) (2 issues, 3 comments)
- @copyNdpaste (opens new window) (1 issue)
- @CountZer0 (opens new window) (1 issue)
- @CreativerseMC (opens new window) (1 commit, 1 PR)
- @CryptoGodfatherVA38 (opens new window) (1 PR)
- @CSFM93 (opens new window) (1 PR, 1 comment)
- @cwaring (opens new window) (1 PR)
- @cyphercider (opens new window) (1 issue)
- @D4di69 (opens new window) (1 issue, 1 comment)
- @D4nte (opens new window) (4 commits, 3 PRs, 3 issues, 10 comments)
- @dadepo (opens new window) (4 commits, 4 PRs)
- @daedaem (opens new window) (1 issue)
- @danicuki (opens new window) (1 commit, 2 PRs, 2 comments)
- @danielb2 (opens new window) (1 issue)
- @danimesq (opens new window) (1 comment)
- @DannyS03 (opens new window) (1 comment)
- @Danolantern1 (opens new window) (1 issue)
- @dapplion (opens new window) (13 commits, 10 PRs, 4 issues, 56 comments)
- @DaveSchmid (opens new window) (1 issue, 2 comments)
- @davidd8 (opens new window) (1 commit)
- @davux (opens new window) (1 issue)
- @DDecoene (opens new window) (1 issue)
- @ddevkim (opens new window) (1 issue)
- @deanpress (opens new window) (3 comments)
- @demfabris (opens new window) (1 commit, 2 PRs, 1 issue, 13 comments)
- @DemiMarie (opens new window) (7 comments)
- @denali49 (opens new window) (2 issues, 2 comments)
- @dendmi (opens new window) (1 issue)
- @Dentrax (opens new window) (1 issue, 1 comment)
- @denyncrawford (opens new window) (1 comment)
- @dharmapunk82 (opens new window) (3 issues, 1 comment)
- @DiegoRBaquero (opens new window) (1 PR, 1 comment)
- @dignifiedquire (opens new window) (2 commits, 3 PRs, 15 comments)
- @diliplilaramani (opens new window) (1 issue)
- @divagant-martian (opens new window) (6 commits, 6 PRs, 2 issues, 22 comments)
- @DJTHIEVES (opens new window) (1 issue)
- @Dnouv (opens new window) (1 comment)
- @do-nothing (opens new window) (1 issue)
- @douglaz (opens new window) (1 comment)
- @dragoonzx (opens new window) (1 commit, 1 PR)
- @dschoon (opens new window) (1 commit, 1 PR)
- @dvc94ch (opens new window) (1 commit, 3 issues, 24 comments)
- @eerkaijun (opens new window) (1 commit, 1 PR)
- @eh-93 (opens new window) (1 comment)
- @eightoneoh (opens new window) (1 issue)
- @eko (opens new window) (1 PR)
- @elenaf9 (opens new window) (10 commits, 10 PRs, 1 issue, 37 comments)
- @elmazzun (opens new window) (1 comment)
- @elmo504 (opens new window) (1 PR)
- @elvinest (opens new window) (1 comment)
- @emilymvaughan (opens new window) (24 PRs, 2 comments)
- @emmyoh (opens new window) (1 issue, 3 comments)
- @energizerbumy (opens new window) (1 issue, 2 comments)
- @enOehTsIsihT (opens new window) (1 comment)
- @enricobottazzi (opens new window) (1 PR)
- @EnzoVezzaro (opens new window) (1 commit)
- @ericevenchick (opens new window) (2 commits, 1 PR)
- @Eris7090 (opens new window) (1 issue)
- @esotericbyte (opens new window) (1 commit, 1 PR, 8 comments)
- @estebanabaroa (opens new window) (1 commit, 1 PR)
- @ethdev279 (opens new window) (1 issue, 1 comment)
- @expede (opens new window) (2 comments)
- @expenses (opens new window) (1 issue)
- @fanux (opens new window) (1 issue, 1 comment)
- @FazioNico (opens new window) (1 issue)
- @filipesoccol (opens new window) (1 commit)
- @finlaydotb (opens new window) (1 issue)
- @fishseabowl (opens new window) (4 issues)
- @flaki (opens new window) (2 commits, 2 PRs)
- @flencrypto (opens new window) (1 issue)
- @FlorianRuen (opens new window) (1 commit, 1 PR, 2 comments)
- @flyingnobita (opens new window) (1 commit)
- @flynnhou (opens new window) (2 comments)
- @Foemass (opens new window) (1 issue, 8 comments)
- @folex (opens new window) (2 commits, 3 PRs, 1 issue, 12 comments)
- @Fomalhauthmj (opens new window) (1 comment)
- @Foreplay241 (opens new window) (1 issue)
- @Freakytedy18 (opens new window) (1 commit)
- @Frederik-Baetens (opens new window) (4 commits, 7 PRs, 5 issues, 30 comments)
- @freemasonrysquared (opens new window) (1 issue)
- @fsvieira (opens new window) (2 issues, 2 comments)
- @funmaker (opens new window) (1 issue)
- @fusetim (opens new window) (3 comments)
- @galargh (opens new window) (9 commits, 14 PRs, 15 comments)
- @GaponkaGapon (opens new window) (1 comment)
- @Garrick-hr (opens new window) (1 issue)
- @gary02 (opens new window) (1 comment)
- @gaspan (opens new window) (1 comment)
- @geotro (opens new window) (1 comment)
- @ghostdevv (opens new window) (1 comment)
- @gitaaron (opens new window) (1 PR, 1 issue, 6 comments)
- @githubdoramon (opens new window) (1 commit, 1 PR)
- @gluax (opens new window) (1 issue, 1 comment)
- @gmelodie (opens new window) (1 PR, 1 comment)
- @gnomadic (opens new window) (1 comment)
- @go69 (opens new window) (1 commit, 1 PR)
- @gobengo (opens new window) (3 commits, 3 PRs, 1 issue, 3 comments)
- @goralbaris (opens new window) (1 issue)
- @gouravkhator (opens new window) (1 issue, 3 comments)
- @Gozala (opens new window) (9 commits, 39 PRs, 18 issues, 42 comments)
- @GreenLunar (opens new window) (2 issues)
- @greenSnot (opens new window) (2 comments)
- @gregarican (opens new window) (3 comments)
- @gRoussac (opens new window) (2 comments)
- @grzegorzjudas (opens new window) (1 issue)
- @guanzo (opens new window) (1 commit, 1 PR)
- @guest271314 (opens new window) (1 comment)
- @guseggert (opens new window) (1 commit, 1 PR, 1 comment)
- @h1z1 (opens new window) (1 issue, 1 comment)
- @H3xept (opens new window) (1 comment)
- @hacdias (opens new window) (1 commit, 28 PRs, 3 issues, 109 comments)
- @hamamo (opens new window) (1 PR, 2 issues, 6 comments)
- @Hamza5 (opens new window) (2 comments)
- @Hamzakkan (opens new window) (1 issue, 1 comment)
- @hanabi1224 (opens new window) (1 commit, 1 PR, 1 comment)
- @hayzamjs (opens new window) (1 commit)
- @hcliff (opens new window) (1 issue)
- @Helletons (opens new window) (1 issue, 1 comment)
- @hellno (opens new window) (1 comment)
- @hjkl451203 (opens new window) (1 comment)
- @HODLHearts (opens new window) (1 issue, 1 comment)
- @holdengreen (opens new window) (1 comment)
- @Hrushi20 (opens new window) (1 comment)
- @hrxi (opens new window) (2 commits, 3 PRs, 1 issue, 3 comments)
- @hsanjuan (opens new window) (46 commits, 13 PRs, 1 issue, 3 comments)
- @hsn10 (opens new window) (1 issue, 2 comments)
- @hu-xili (opens new window) (1 issue)
- @hugomrdias (opens new window) (1 PR, 2 comments)
- @i-norden (opens new window) (13 commits, 2 comments)
- @i001962 (opens new window) (1 commit)
- @i1i1 (opens new window) (1 PR)
- @ibnesayeed (opens new window) (1 PR, 2 comments)
- @icidasset (opens new window) (1 comment)
- @icodestuljh (opens new window) (1 issue)
- @ilienongithub (opens new window) (1 issue)
- @ilijapet (opens new window) (1 commit, 1 PR)
- @inverted-capital (opens new window) (1 issue, 1 comment)
- @iohzrd (opens new window) (1 PR)
- @itm-platform (opens new window) (1 comment)
- @itsKV (opens new window) (1 commit, 1 PR, 1 comment)
- @jacklund (opens new window) (1 PR, 1 issue, 5 comments)
- @jacobheun (opens new window) (2 comments)
- @Jacquelinevv0693 (opens new window) (1 PR)
- @JAGDISH0008 (opens new window) (1 comment)
- @jakehemmerle (opens new window) (1 issue)
- @jamescallumyoung (opens new window) (1 PR)
- @jamesrwaugh (opens new window) (1 comment)
- @JamesTheAwesomeDude (opens new window) (1 issue, 7 comments)
- @jamongeon1 (opens new window) (6 PRs)
- @Jan877 (opens new window) (1 issue)
- @janaSunrise (opens new window) (1 comment)
- @Janmajayamall (opens new window) (1 commit, 1 PR, 1 issue, 2 comments)
- @jarrillaga (opens new window) (1 comment)
- @jay0x5 (opens new window) (1 issue)
- @jayschwa (opens new window) (1 PR)
- @jbenet (opens new window) (1 comment)
- @jchris (opens new window) (1 commit, 1 PR, 4 comments)
- @jdheeter (opens new window) (1 issue)
- @jejdouay (opens new window) (1 issue, 1 comment)
- @jenkijo (opens new window) (1 commit)
- @jenks-guo-filecoin (opens new window) (1 comment)
- @jensenhertz (opens new window) (1 issue)
- @Jerrody (opens new window) (1 commit, 2 PRs, 7 issues, 10 comments)
- @JerryHue (opens new window) (1 comment)
- @jimmynsfw (opens new window) (2 issues, 2 comments)
- @jitendrapal080791 (opens new window) (1 issue)
- @jlrinho (opens new window) (1 comment)
- @jmmaloney4 (opens new window) (2 comments)
- @jnicholls (opens new window) (2 comments)
- @jochasinga (opens new window) (1 PR, 6 comments)
- @joeangel (opens new window) (2 comments)
- @johanneskares (opens new window) (1 issue)
- @johnb8005 (opens new window) (1 commit, 2 PRs, 4 comments)
- @johnnymatthews (opens new window) (3 commits, 7 PRs, 9 comments)
- @jonapaniagua (opens new window) (1 PR, 2 issues)
- @jonaswre (opens new window) (1 PR, 3 comments)
- @Jorropo (opens new window) (1 commit, 1 PR, 1 issue)
- @Josiassejod1 (opens new window) (1 commit, 1 PR, 17 comments)
- @jousi592 (opens new window) (1 issue)
- @jrem13 (opens new window) (1 PR)
- @jsdanielh (opens new window) (1 issue)
- @Jsn2win (opens new window) (1 issue)
- @jthomerson (opens new window) (2 comments)
- @jtmckay (opens new window) (1 comment)
- @jwahdatehagh (opens new window) (1 comment)
- @jwarshack (opens new window) (1 issue)
- @jyooru (opens new window) (1 commit, 1 PR)
- @JzJordan01 (opens new window) (1 issue)
- @kalikho (opens new window) (1 PR)
- @Karakatiza666 (opens new window) (1 comment)
- @Karan-U-Kanthawar (opens new window) (1 issue)
- @Kcchouette (opens new window) (2 commits, 1 comment)
- @kebian (opens new window) (1 issue)
- @KEINOS (opens new window) (3 comments)
- @kelson42 (opens new window) (3 comments)
- @KenniVelez (opens new window) (1 issue)
- @KennyDxsale (opens new window) (2 comments)
- @kevinji (opens new window) (1 commit, 1 PR, 1 comment)
- @kevinXmichael (opens new window) (1 comment)
- @KevTale (opens new window) (1 commit)
- @ki4jgt (opens new window) (1 issue, 4 comments)
- @kidcdf (opens new window) (1 issue, 2 comments)
- @kimgysen (opens new window) (1 comment)
- @kirill-dev-pro (opens new window) (1 issue)
- @kmkhami (opens new window) (1 issue)
- @kn0wmad (opens new window) (1 comment)
- @koushiro (opens new window) (1 issue, 3 comments)
- @kpp (opens new window) (1 commit, 1 PR, 8 comments)
- @kshinn (opens new window) (1 issue, 1 comment)
- @kstuart (opens new window) (1 issue)
- @kunalgoyal9 (opens new window) (1 comment)
- @laptou (opens new window) (4 commits, 7 PRs, 1 issue, 4 comments)
- @laurentsenta (opens new window) (3 commits, 3 PRs, 8 comments)
- @lcy101u (opens new window) (1 issue, 1 comment)
- @ldongting (opens new window) (3 issues)
- @leeswlwpl (opens new window) (2 issues, 3 comments)
- @LesnyRumcajs (opens new window) (2 commits, 2 PRs, 2 comments)
- @lessneek (opens new window) (1 comment)
- @leviathanbeak (opens new window) (1 commit, 1 PR, 4 comments)
- @lfnpcsoft (opens new window) (1 issue)
- @lidel (opens new window) (23 commits, 45 PRs, 24 issues, 318 comments)
- @LIPUU (opens new window) (2 comments)
- @listenaddress (opens new window) (1 commit, 1 PR)
- @Liujinliang1987413 (opens new window) (1 issue)
- @ljmf00 (opens new window) (1 issue, 4 comments)
- @ljoez (opens new window) (1 issue)
- @lmedury (opens new window) (1 commit)
- @locriacyber (opens new window) (1 issue)
- @LordWilliamsr (opens new window) (1 issue, 3 comments)
- @luck453 (opens new window) (1 issue)
- @maitret (opens new window) (1 issue)
- @manalejandro (opens new window) (1 issue, 1 comment)
- @Manwe-777 (opens new window) (1 comment)
- @MarcelRaschke (opens new window) (1 PR)
- @marciob (opens new window) (1 issue)
- @MarcoCiaramella (opens new window) (1 issue, 1 comment)
- @MarcoPolo (opens new window) (1 commit, 2 PRs, 5 comments)
- @MarcusAvouris (opens new window) (1 PR)
- @Mark-Wu (opens new window) (1 issue)
- @markg85 (opens new window) (2 comments)
- @marten-seemann (opens new window) (12 commits, 12 PRs, 12 comments)
- @Martinligabue (opens new window) (1 issue, 2 comments)
- @maschad (opens new window) (1 commit, 3 PRs, 14 comments)
- @masih (opens new window) (1 commit, 1 PR)
- @master-hax (opens new window) (1 issue, 1 comment)
- @mateuszjarzewski (opens new window) (3 issues, 3 comments)
- @matheus23 (opens new window) (1 comment)
- @mathiversen (opens new window) (1 issue, 6 comments)
- @MattJohnsonMusic (opens new window) (2 issues, 21 comments)
- @MattVurtly (opens new window) (1 issue)
- @mcclure (opens new window) (4 comments)
- @mdonoughe (opens new window) (1 comment)
- @meandavejustice (opens new window) (3 PRs, 1 issue, 9 comments)
- @meehow (opens new window) (1 commit, 1 PR)
- @melekes (opens new window) (1 PR, 2 comments)
- @melMass (opens new window) (1 comment)
- @melwong (opens new window) (1 commit, 1 PR)
- @Mendel-Chodaton (opens new window) (2 issues)
- @Menduist (opens new window) (1 issue)
- @Meyanis95 (opens new window) (1 commit, 1 PR)
- @mgwidmann (opens new window) (1 issue)
- @MicrowaveDev (opens new window) (1 issue)
- @miguelgargallo (opens new window) (1 issue, 1 comment)
- @Mikaela (opens new window) (1 comment)
- @mikeal (opens new window) (2 comments)
- @mikeeus (opens new window) (1 PR)
- @milahu (opens new window) (2 issues, 1 comment)
- @Mircas001 (opens new window) (1 issue)
- @mishmosh (opens new window) (1 commit, 2 comments)
- @mistermoe (opens new window) (1 issue, 1 comment)
- @MitaliBo (opens new window) (1 commit, 1 PR, 1 comment)
- @miyamotomusashi79 (opens new window) (1 issue)
- @mlgx (opens new window) (2 comments)
- @mmaker7 (opens new window) (1 PR)
- @MMercer8 (opens new window) (1 issue)
- @mobrine1 (opens new window) (1 issue)
- @momack2 (opens new window) (2 commits, 1 PR, 3 issues, 10 comments)
- @montanaflynn (opens new window) (1 issue)
- @MOUNIKASIMHADRI17 (opens new window) (1 commit, 1 PR)
- @mpetrunic (opens new window) (36 commits, 13 PRs, 2 issues, 50 comments)
- @mrheyday (opens new window) (1 issue)
- @mriise (opens new window) (1 issue, 2 comments)
- @mrlp4 (opens new window) (1 comment)
- @mrtngrsbch (opens new window) (1 issue)
- @msufyanalibutt (opens new window) (1 issue)
- @mubeenghauri (opens new window) (1 issue)
- @mvdan (opens new window) (2 commits, 2 PRs, 1 issue, 4 comments)
- @mxinden (opens new window) (53 commits, 54 PRs, 13 issues, 297 comments)
- @NAWAISJAN (opens new window) (1 issue)
- @nazar-pc (opens new window) (2 commits, 2 PRs, 2 issues, 7 comments)
- @nazarhussain (opens new window) (1 PR, 2 comments)
- @Nazeh (opens new window) (1 comment)
- @nblogist (opens new window) (1 comment)
- @netlify (1 comment)
- @newthinnakorn (opens new window) (1 PR, 1 comment)
- @nft-legends (opens new window) (1 comment)
- @nikoPLP (opens new window) (1 comment)
- @nokemono (opens new window) (2 issues)
- @noraft75 (opens new window) (1 issue)
- @noryev (opens new window) (1 commit, 2 PRs, 1 comment)
- @Nousnouss (opens new window) (1 issue)
- @nrz123 (opens new window) (1 issue)
- @NukeManDan (opens new window) (1 issue, 1 comment)
- @odesenfans (opens new window) (1 commit, 1 PR, 4 issues, 6 comments)
- @oed (opens new window) (2 issues, 6 comments)
- @olizilla (opens new window) (2 comments)
- @Openwrtfunboy (opens new window) (1 issue)
- @OrderAndCh4oS (opens new window) (1 comment)
- @originalninja01 (opens new window) (1 issue, 2 comments)
- @orvn (opens new window) (2 comments)
- @ov-wagle (opens new window) (1 comment)
- @OwenLittleWhite (opens new window) (1 issue)
- @panick-carousel (opens new window) (2 issues, 2 comments)
- @paullouisageneau (opens new window) (2 comments)
- @paulmillr (opens new window) (1 commit, 2 PRs, 8 comments)
- @pawanjay176 (opens new window) (1 commit, 1 PR, 1 comment)
- @PencilsDown (opens new window) (1 issue, 2 comments)
- @PeterHindes (opens new window) (1 comment)
- @Pfed-prog (opens new window) (1 commit, 1 PR)
- @PhilippGackstatter (opens new window) (2 comments)
- @philknows (opens new window) (2 commits, 2 PRs, 1 comment)
- @piboistudios (opens new window) (4 issues, 2 comments)
- @pimterry (opens new window) (1 issue, 2 comments)
- @PixsaOJ (opens new window) (1 issue)
- @pj50 (opens new window) (1 PR, 2 issues, 2 comments)
- @placer14 (opens new window) (1 issue, 1 comment)
- @planetoryd (opens new window) (1 issue)
- @pmuens (opens new window) (1 comment)
- @poolsar42 (opens new window) (1 commit, 1 PR, 1 issue, 5 comments)
- @PowVT (opens new window) (1 commit)
- @Radderz81 (opens new window) (1 comment)
- @raduciobanu22 (opens new window) (1 comment)
- @raisayon (opens new window) (1 issue)
- @rajan-31 (opens new window) (1 comment)
- @rakeshbhatt10 (opens new window) (1 comment)
- @rand0m-cloud (opens new window) (1 commit, 1 PR, 2 comments)
- @RangerMauve (opens new window) (10 commits, 4 PRs, 4 issues, 33 comments)
- @raress96 (opens new window) (2 comments)
- @rasos (opens new window) (1 comment)
- @ratik21 (opens new window) (2 issues, 1 comment)
- @rayswchiu (opens new window) (1 issue)
- @razakyermal (opens new window) (1 issue)
- @rbensonevans (opens new window) (1 commit)
- @realitymeetsdreams (opens new window) (1 issue, 2 comments)
- @redactedscribe (opens new window) (1 comment)
- @redaphid (opens new window) (1 comment)
- @remixonwin (opens new window) (1 issue)
- @resession (opens new window) (3 comments)
- @revichnr (opens new window) (1 issue)
- @rezad1393 (opens new window) (1 issue)
- @rhysburnie (opens new window) (1 issue, 1 comment)
- @richburdon (opens new window) (2 comments)
- @rigan0707 (opens new window) (1 comment)
- @Rinse12 (opens new window) (1 issue, 2 comments)
- @Rio-Lv (opens new window) (1 comment)
- @rkuhn (opens new window) (2 commits, 2 PRs, 6 issues, 50 comments)
- @robbiemu (opens new window) (1 issue, 1 comment)
- @robertkiel (opens new window) (2 commits, 5 PRs, 6 comments)
- @robin-thomas (opens new window) (1 commit, 1 PR)
- @roderik (opens new window) (1 comment)
- @RookiePJ (opens new window) (1 issue)
- @rubdos (opens new window) (4 comments)
- @RubenKelevra (opens new window) (1 PR, 11 issues, 36 comments)
- @ruifortes (opens new window) (1 issue, 1 comment)
- @runvnc (opens new window) (1 comment)
- @rvagg (opens new window) (34 commits, 19 PRs, 2 issues, 110 comments)
- @rysiekpl (opens new window) (2 comments)
- @sa8 (opens new window) (1 PR, 1 issue, 1 comment)
- @Sameer-472 (opens new window) (1 comment)
- @SamNormcoreWayne (opens new window) (2 comments)
- @sankesireddy (opens new window) (1 issue)
- @SanYaYuLang (opens new window) (1 issue)
- @saricden (opens new window) (3 comments)
- @SatoshiDoll (opens new window) (1 issue)
- @sauerburger (opens new window) (1 commit, 1 PR)
- @SaulMoonves (opens new window) (1 issue)
- @sawsrinath (opens new window) (1 issue, 1 comment)
- @schuelermine (opens new window) (1 PR)
- @Scott16546 (opens new window) (1 issue)
- @sd70mac (opens new window) (1 issue, 2 comments)
- @sebastiendan (opens new window) (1 comment)
- @senitskiy (opens new window) (2 PRs, 3 comments)
- @SgtPooki (opens new window) (3 commits, 12 PRs, 26 issues, 87 comments)
- @ShehanAT (opens new window) (1 PR)
- @shivani7q (opens new window) (1 commit, 1 PR)
- @ShogunPanda (opens new window) (1 commit, 1 PR, 2 comments)
- @ShravanSunder (opens new window) (2 comments)
- @ShubhGohil (opens new window) (1 issue)
- @siepra (opens new window) (2 comments)
- @sigwo (opens new window) (1 commit, 1 PR)
- @simondebbarma (opens new window) (1 comment)
- @simonloewe (opens new window) (3 comments)
- @SionoiS (opens new window) (1 issue, 1 comment)
- @sireliah (opens new window) (1 commit, 1 PR, 1 issue)
- @skins2000 (opens new window) (1 issue)
- @sleeping-barber (opens new window) (1 commit, 1 PR)
- @slonigiraf (opens new window) (1 PR)
- @slrslr (opens new window) (1 issue)
- @sly13 (opens new window) (1 PR)
- @smoelius (opens new window) (1 PR, 1 issue, 2 comments)
- @smrz2001 (opens new window) (2 comments)
- @sneaker1 (opens new window) (1 commit, 1 PR, 1 issue, 1 comment)
- @socketdown (opens new window) (1 issue)
- @SoftCreatR (opens new window) (1 commit, 1 comment)
- @SomajitDey (opens new window) (2 commits)
- @stale (14 comments)
- @starkers (opens new window) (1 commit, 1 PR)
- @StaticDave (opens new window) (1 issue, 2 comments)
- @stbrody (opens new window) (2 commits, 1 PR, 1 issue, 7 comments)
- @stcee (opens new window) (1 comment)
- @Stebalien (opens new window) (1 commit, 2 issues, 12 comments)
- @StefanoSetti (opens new window) (3 issues, 5 comments)
- @stephhuynh18 (opens new window) (1 PR, 1 issue)
- @StorryTV (opens new window) (1 commit, 1 PR, 4 comments)
- @stupid-boar (opens new window) (1 issue, 1 comment)
- @sundyloveme (opens new window) (1 issue)
- @sunmur (opens new window) (2 issues)
- @surajsingla333 (opens new window) (1 commit, 1 PR, 2 comments)
- @SusaPereg (opens new window) (1 PR)
- @suud (opens new window) (1 commit, 1 PR)
- @svvimming (opens new window) (1 PR)
- @Szymongib (opens new window) (1 commit, 1 PR)
- @T2JOESl4m2ZpNC (opens new window) (2 comments)
- @tabcat (opens new window) (1 issue, 1 comment)
- @Tatsu0809 (opens new window) (1 PR)
- @tdelabro (opens new window) (1 comment)
- @tennox (opens new window) (1 issue, 1 comment)
- @Thaina (opens new window) (1 issue, 1 comment)
- @thattommyhall (opens new window) (1 commit, 1 PR, 1 comment)
- @TheDiscordian (opens new window) (35 comments)
- @TheDutchCoder (opens new window) (1 issue, 2 comments)
- @TheFoolishPupil (opens new window) (3 issues, 7 comments)
- @thelamer (opens new window) (1 issue)
- @Theo-Farnole (opens new window) (1 comment)
- @TheWeb3DAO (opens new window) (1 PR)
- @Thidieulinh (opens new window) (1 comment)
- @thisisommore (opens new window) (1 commit, 1 PR)
- @thomaseizinger (opens new window) (3 commits, 9 PRs, 1 issue, 52 comments)
- @tiannalu1229 (opens new window) (1 issue)
- @TimDaub (opens new window) (8 commits, 9 PRs, 5 issues, 5 comments)
- @timfpark (opens new window) (1 issue, 1 comment)
- @TkKonstantin (opens new window) (3 comments)
- @tniessen (opens new window) (1 commit, 1 PR)
- @token0 (opens new window) (1 issue)
- @tomaka (opens new window) (1 issue, 9 comments)
- @TomzBench (opens new window) (1 issue, 1 comment)
- @Toni-d-e-v (opens new window) (1 issue, 1 comment)
- @Tonyce (opens new window) (1 issue)
- @toorop (opens new window) (1 comment)
- @TotalKrill (opens new window) (1 commit, 1 PR)
- @TriLogic (opens new window) (1 issue, 3 comments)
- @tristanisham (opens new window) (1 PR, 1 comment)
- @trymeouteh (opens new window) (1 issue)
- @tuckernickman (opens new window) (1 issue)
- @turbo-a (opens new window) (1 PR)
- @tuyennhv (opens new window) (31 commits, 31 PRs, 14 issues, 28 comments)
- @TwoPair (opens new window) (1 commit, 1 PR)
- @twopercent (opens new window) (2 comments)
- @tylerferrara (opens new window) (1 comment)
- @tysonzero (opens new window) (1 issue, 1 comment)
- @ukstv (opens new window) (1 PR, 1 issue, 6 comments)
- @ungarson (opens new window) (1 issue)
- @unrival-protocol (opens new window) (1 issue, 1 comment)
- @v-stickykeys (opens new window) (1 comment)
- @VandeurenGlenn (opens new window) (1 commit, 1 PR)
- @vans163 (opens new window) (2 commits, 2 PRs)
- @vasanthsteve23 (opens new window) (1 commit)
- @vasco-santos (opens new window) (9 commits, 3 PRs, 22 comments)
- @vbalien (opens new window) (1 PR, 1 issue)
- @vegetable-edu (opens new window) (1 issue)
- @verifyfirst (opens new window) (1 issue, 1 comment)
- @victor-wei126 (opens new window) (1 issue, 1 comment)
- @vigasdeep (opens new window) (1 comment)
- @vitush93 (opens new window) (2 commits, 2 PRs)
- @vladfaust (opens new window) (2 comments)
- @VladimirMikulic (opens new window) (1 issue, 1 comment)
- @vmx (opens new window) (7 commits, 6 PRs, 2 issues, 9 comments)
- @vogdb (opens new window) (9 commits, 12 PRs, 1 issue, 29 comments)
- @volkriss (opens new window) (1 comment)
- @vsthakur1quytech (opens new window) (1 comment)
- @vyanedgar (opens new window) (1 PR)
- @vyzo (opens new window) (3 commits, 4 PRs, 13 comments)
- @walkerlj0 (opens new window) (3 commits, 5 PRs, 1 issue, 2 comments)
- @wandyyd (opens new window) (1 issue, 5 comments)
- @warpfork (opens new window) (27 commits, 6 PRs, 3 issues, 21 comments)
- @waybackarchiver (opens new window) (1 PR)
- @wdv4758h (opens new window) (1 commit, 1 PR)
- @websoftwares (opens new window) (1 commit, 1 PR, 2 comments)
- @webtech2412 (opens new window) (1 issue, 1 comment)
- @wellcaffeinated (opens new window) (2 issues, 1 comment)
- @wemeetagain (opens new window) (28 commits, 4 PRs, 5 issues, 43 comments)
- @wernermoecke-mcd (opens new window) (1 comment)
- @wetezos (opens new window) (1 PR)
- @whiteowl3 (opens new window) (1 comment)
- @willscott (opens new window) (2 commits, 1 PR, 1 issue, 5 comments)
- @winksaville (opens new window) (2 commits, 2 PRs, 3 comments)
- @Winterhuman (opens new window) (4 issues, 2 comments)
- @wngr (opens new window) (3 comments)
- @Xendergo (opens new window) (1 issue)
- @xoayxoay (opens new window) (1 issue, 2 comments)
- @xxxxj-up (opens new window) (1 issue)
- @yingshaoxo (opens new window) (2 comments)
- @YoshieraHuang (opens new window) (1 commit, 1 PR, 3 issues, 7 comments)
- @younasm (opens new window) (2 comments)
- @yusefnapora (opens new window) (5 commits, 3 PRs, 1 issue, 5 comments)
- @Zaba505 (opens new window) (1 commit, 1 PR, 1 issue, 2 comments)
- @zeim839 (opens new window) (1 commit, 2 PRs, 1 issue, 2 comments)
- @ZeroCool22 (opens new window) (2 issues, 2 comments)
- @zeroxbt (opens new window) (2 issues)
- @zhaoyiming0803 (opens new window) (1 issue)
- @zouantchaw (opens new window) (1 issue)
- @zyb1101 (opens new window) (1 issue)