From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx.spodhuis.org (smtp.spodhuis.org [IPv6:2a02:898:31:0:48:4558:736d:7470]) by mail.toke.dk (Postfix) with ESMTPS id B274295DE27 for ; Wed, 27 Apr 2022 01:33:54 +0200 (CEST) Authentication-Results: mail.toke.dk; dkim=pass (2048-bit key; secure) header.d=spodhuis.org header.i=@spodhuis.org header.a=rsa-sha256 header.s=d202202 header.b=qS4a/5/i; dkim=pass (512-bit key; secure) header.d=spodhuis.org header.i=@spodhuis.org header.a=ed25519-sha256 header.s=d202202e2 header.b=Vb57JDfY DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=spodhuis.org; s=d202202; h=OpenPGP:In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:To:From:Date:From:Reply-To:Subject:Date:To:Cc: Content-Transfer-Encoding:Content-ID:Content-Description:OpenPGP:Organization :Auto-Submitted; bh=s3u2XNvSf2DULbRIf3W2N/e9FiwEUnKn7EzjLAfQzhU=; t=1651016034; x=1652225634; b=qS4a/5/i1+xJzx4m4HbcM+Vadc1/027+PMADRbRECtHR5OW eBjnn6eV9fC+TJrbiP/9Yy1C/8A0pUgDMCIAr5hfEVjpnFFDnt1aMsL50Ots+8hHS+9LFcZHpxZ9b Go2fvtQDWtSUoV3DSWNN3AWzwDAo2DVzEHJTP7L1EaI4PjKmET9rKdIGN7zaoEgiG6EiMqdV3STxR Xi+VZJ+l6y4a1aFnxrb36AnS5u3OPiwudtbFYoWGXXNoYS5VtTRvR3OOfZ3siA/4vLEnoOSYshJzm XzvF9uzlY6CJ5/UaH6x4kHE5LoHr9Aia7vRYn6U7p5rE2C2MZEKIYfQdCbiqpwtA==; DKIM-Signature: v=1; a=ed25519-sha256; q=dns/txt; c=relaxed/relaxed; d=spodhuis.org; s=d202202e2; h=OpenPGP:In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:To:From:Date:From:Reply-To:Subject:Date:To:Cc: Content-Transfer-Encoding:Content-ID:Content-Description:OpenPGP:Organization :Auto-Submitted; bh=s3u2XNvSf2DULbRIf3W2N/e9FiwEUnKn7EzjLAfQzhU=; t=1651016034; x=1652225634; b=Vb57JDfY4bRDBrQZJFwXKHIQdj257z3Ru0F9aKqMJkUZHty cEuaLbsHCxswUdFnbAbzAghEQtb6rMexXVhesDw==; Received: from authenticated user by smtp.spodhuis.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) id 1njUgq-000D0K-5Z; Tue, 26 Apr 2022 23:33:52 +0000 Date: Tue, 26 Apr 2022 19:33:49 -0400 From: Phil Pennock To: galene@lists.galene.org Message-ID: Mail-Followup-To: galene@lists.galene.org References: <878rrzfxc9.wl-jch@irif.fr> <10CC81BD-7927-4F42-8A8A-263835D762FE@rouillier.fr> <878rrtbevo.wl-jch@irif.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <878rrtbevo.wl-jch@irif.fr> OpenPGP: url=https://www.security.spodhuis.org/PGP/keys/keys-2013rsa-2020cv25519.asc Message-ID-Hash: BDO7WXZKIFTWSHXSPK2MFPGGNKJPCQBG X-Message-ID-Hash: BDO7WXZKIFTWSHXSPK2MFPGGNKJPCQBG X-MailFrom: prvs=0115ef333a=galene-phil@spodhuis.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.5 Precedence: list Subject: [Galene] Re: ANNOUNCE: galene-0.5.2 List-Id: =?utf-8?q?Gal=C3=A8ne_videoconferencing_server_discussion_list?= Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: On 2022-04-25 at 13:07 +0200, Juliusz Chroboczek wrote: > > go: github.com/pion/ice/v2@v2.2.6: parsing /home/pion/ice/go.mod: open > > /home/pion/ice/go.mod: no such file or directory > > As Toke rightly noted, I've forgotten to remove a "replace" directive that > was used for debugging. I'll release 0.5.3 straight away. FWIW, I saw this and then saw that 0.5.2 did _not_ include that replace directive, so when building a deploy image I just made sure to actually build 0.5.2, not HEAD. Also FWIW: with Go 1.18 you can theoretically use a `go.work` file in a parent directory to handle a common set of dependencies in sub-dir repos, to handle cross-repo parallel development without having to update go.mod per-repo. In my experience, it really is for repos which update in-sync, you can't just say "if you see dependency X, use the one which is here" as instead it tries to get a consistent set of dependencies for _every_ repo covered. But still, might help with preventing recurrence. -Phil