Debian Package Tracker
Register | Log in
Subscribe

golang-github-golang-mock

Choose email to subscribe with

general
  • source: golang-github-golang-mock (main)
  • version: 1.3.1-2
  • maintainer: Debian Go Packaging Team (DMD)
  • uploaders: Dmitry Smirnov [DMD] – Anthony Fok [DMD]
  • arch: all any
  • std-ver: 4.4.0
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • oldstable: 0.0~git20150821.0.06883d9-1
  • stable: 1.0.0-1
  • stable-bpo: 1.3.1-2~bpo10+1
  • testing: 1.3.1-2
  • unstable: 1.3.1-2
versioned links
  • 0.0~git20150821.0.06883d9-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 1.0.0-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 1.3.1-2~bpo10+1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 1.3.1-2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • golang-github-golang-mock-dev (1 bugs: 0, 1, 0, 0)
  • mockgen
action needed
A new upstream version is available: 1.4.4 high
A new upstream version 1.4.4 is available, you should consider packaging it.
Created: 2020-06-29 Last update: 2021-01-19 01:06
1 bug tagged patch in the BTS normal
The BTS contains patches fixing 1 bug, consider including or untagging them.
Created: 2020-10-19 Last update: 2021-01-19 02:31
Multiarch hinter reports 1 issue(s) normal
There are issues with the multiarch metadata for this package.
  • golang-github-golang-mock-dev could be marked Multi-Arch: foreign
Created: 2017-08-10 Last update: 2021-01-18 22:07
36 new commits since last upload, is it time to release? normal
vcswatch reports that this package seems to have new commits in its VCS but has not yet updated debian/changelog. You should consider updating the Debian changelog and uploading this new version into the archive.

Here are the relevant commit logs:
commit 2c8d874d7439ff2c25f059b6417f04a4ffddd33e
Author: Anthony Fok <foka@debian.org>
Date:   Wed Feb 26 23:43:23 2020 -0700

    debian/gbp.conf: Set debian-branch to debian/sid
    
    for DEP-14 conformance.

commit 55eb4d8b840270ec80bceb263f3faea92794b844
Merge: 25f6526 a596b9d
Author: Anthony Fok <foka@debian.org>
Date:   Wed Feb 26 23:43:02 2020 -0700

    Update upstream source from tag 'upstream/1.4.1'
    
    Update to upstream version '1.4.1'
    with Debian dir 1237a7b6b76a788c0120b3668b6a5496fbb13854

commit a596b9dbb2a205b4e8dd7a415b7e0ea3e2be0774
Merge: 2b3fcf9 b48cb66
Author: Anthony Fok <foka@debian.org>
Date:   Wed Feb 26 23:42:57 2020 -0700

    New upstream version 1.4.1

commit b48cb6623c04dae64c28537143aca42d16561daf
Author: Oleksandr Plakhotnii <alex.plahotniy@gmail.com>
Date:   Sun Feb 23 00:34:44 2020 +0300

    Improve performance of mock generation (#397)
    
    Optimizes resolving correct package name with `go list` command. Instead of calling go list for each import in file, now we do it for all imports in one call.

commit 01885017f0dd9e24b0828b360111471f71c1b98d
Author: Filip Nguyen <nguyenfilip@google.com>
Date:   Wed Feb 5 21:59:35 2020 +0100

    Goreleaser (#394)
    
    When publishing binaries using Goreleaser use build flags.
    
    Also remove custom archives and checksum name_templates because
    Goreleaser has reasonable defaults, see https://goreleaser.com/customization/#Archive

commit 41fe4f72a4e79118df09d8c37a246886fe4abac0
Author: Filip Nguyen <nguyenfilip@google.com>
Date:   Mon Feb 3 11:38:05 2020 +0100

    Reflect in Current Directory First (#390)
    
    Some users have intention to run mockgen in a module aware directory with
    version pinned to those in `go.mod`.
    
    Always try to run reflect program in current working directory first.

commit 5c854953686b77e986f7c6af8198e8e120623d03
Author: Sam Xie <xsambundy@gmail.com>
Date:   Mon Feb 3 00:30:58 2020 +0800

    Use "." to refer to the current path's package in reflect mode (#387)
    
    * feat: use "." to refer to the current path's package
    
    * doc: update reflect mode
    
    * fix: generated code lose package name

commit 3dcdcb6994c4de42a73bd2e4790178be3ed4554b
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Mon Jan 20 12:21:39 2020 -0700

    fix not resolving go module major versions (#385)
    
    This change now makes use of go list to check for package names. This
    tool is module aware and allows for better named imports.
    
    To test this change I needed to also add a small package to our mod
    file. To keep this import from disappearing from go.mod I made use
    of the tools file strategy.
    
    Note this change will change the import names in generated code. This
    should not be a breaking change in user code.
    
    Fixes #326

commit f165686a09100bc62360cc2949deae2a0be47fde
Author: Filip Nguyen <nguyen.filip@gmail.com>
Date:   Mon Jan 20 20:21:18 2020 +0100

    Add Mockgen Version Flag (#362)
    
    Add -version flag that shows a version provided by Go modules.
    
    This strategy works well for module aware invocations of `go get` and `go
    run` (which means using GO111MODULE=on).
    
    If we ever plan to distribute built binaries, it is necessary to amend
    the strategy with build flags.
    
    GOPATH mode versioning is unsupported.

commit e00cb15c9dfcea1ae89ecc1492d9c45b109ef7a6
Author: Zhongpeng Lin <zplin@uber.com>
Date:   Mon Jan 13 20:10:01 2020 -0800

    Always remove self_package import (#343)

commit 0800f9a0a23697185ced11f532eea4904043d4f0
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Sun Jan 12 12:07:31 2020 -0700

    refactor method names for reflect/source (#376)
    
    The reflect method should be renamed so it does not collide with
    the reflect package name. As is, it makes import reflect in the
    code non-idiomatic. Also renamed sourceMode to stay consistent.
    
    Noticed this here: #371
    
    Also, refactor slice equals method

commit 1b95bd9455516546c59b6f6d1e9c87dcd537e446
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Sun Jan 12 12:01:40 2020 -0700

    fix: avoid constructing improper import graph (#383)
    
    Fixes #380
    Fixes #381
    Fixes #382

commit 3251ae506452bc37c7b801277640f853fcb0943b
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Sun Jan 12 11:59:11 2020 -0700

    fix tests passing when they should not (#378)

commit 817c00c51bc737428ebc35ec43a49d72c04440e2
Author: Edgar Sipki <36490979+ZergsLaw@users.noreply.github.com>
Date:   Tue Dec 31 03:26:58 2019 +0300

    fix generates non-compilable code (#371)
    
    mocks will supply arg names when underscore is used in interfaces.

commit 29da2892dec6d95fb6ea42b89d3281532effc713
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Fri Dec 27 16:20:20 2019 -0700

    fix several linting warnings (#374)

commit de9f6c5b031641cbc1a252d847408786f1f5220c
Author: Cole Wippern <cgwippern@gmail.com>
Date:   Fri Dec 27 13:37:27 2019 -0800

    add benchmark for parse file (#372)

commit 1bf84fa8d4e5fedaedb9b103bb5b947e25bf5d8e
Author: Shude Li <islishude@gmail.com>
Date:   Sat Dec 28 00:08:31 2019 +0800

    Allow AssignableToTypeOf reflect.Type (#365)
    
    Fixes #320

commit b4b7d2139f51c2a0de2327eaff590f565c29994f
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Mon Dec 23 09:01:27 2019 -0700

    add Len matcher (#368)
    
    This matcher will check the length with any type that allows this
    behavior via reflection. Implementation inspired by #189.

commit 9be48080ab7aaa067fcd194e46acf7741c6b4e06
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Fri Dec 20 13:39:52 2019 -0700

    add All matcher (#367)
    
    This matcher is to be used to combine multiple matches into one
    statement. Implmentation inspired by #189.

commit 693e3a88199b958522fdb9d6adbe14aa18ddb795
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Fri Dec 20 10:42:20 2019 -0700

    fix pr template (#366)

commit 0d12903930a70221dc610187c92260fc599132ce
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Fri Dec 20 08:56:20 2019 -0700

    fix feature request template (#364)

commit 7968cefc3ea3857abddb0d258b7d971ee0edcfa1
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Fri Dec 20 08:51:15 2019 -0700

    Update issue templates (#363)

commit 193ff6fb84318822e130a22216c0a2c00e2ec050
Author: Cole Wippern <cgwippern@gmail.com>
Date:   Fri Dec 20 07:21:54 2019 -0800

    #358 add template for PR and bug report (#361)
    
    * add template for PR and bug report
    * add issue template config
    * add feature request template

commit 45682d7a0f2f689cf644b54128efa52e4029b10f
Author: Filip Nguyen <nguyen.filip@gmail.com>
Date:   Fri Dec 20 16:18:14 2019 +0100

    Pass -build_flags as Multiple Args (#357)
    
    Value of -build_flags was passed to 'go' as a single argument.
    For example when passing -build_flags "-mod vendor", the invoked
    commandline was `go -mod\ vendor` and the go command errored out because
    there is no such arg.
    
    That has caused confusion, e.g. in #296
    
    Solve this by splitting the argument by a space.

commit d1dd49bb2b161a1a9ca972ae327b5db2769c16e4
Author: deelawn <dboltz03@gmail.com>
Date:   Fri Dec 20 07:13:14 2019 -0800

    Added self_package option to readme (#355)

commit 41e7e9a91aa20115266b326233308d17079ea51c
Author: Jesse Lang <jesse@jesselang.com>
Date:   Fri Dec 13 14:57:53 2019 -0600

    Add a CI check for go vet and go lint (#345)

commit 112dfb85f71efc679eef2a9763162fa83fbee449
Author: Andrew Poydence <poy@google.com>
Date:   Wed Nov 27 11:00:39 2019 -0700

    Adds GotFormatter interface and WantFormatter func (#236)
    
    - WantFormatter is used to modify a Matcher's String() method.
    - GotFormatter is used to format the Got value for printing a failure message.

commit 3fae80861dc1910bcd85db91ad2bef93971a4ed8
Author: Sebastian Cevallos <sebastianlcevallos@gmail.com>
Date:   Wed Nov 20 09:19:19 2019 -0800

    include binaries with tagged releases via GoReleaser (#229)
    
    Fixes: #147

commit 0b73a1dbc3e1197079e9b9db31ab2879a5c9a095
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Wed Oct 23 22:23:07 2019 -0600

    refactor to unify README styles (#338)

commit 577071b75553c5c4f183feef60186da0390eb3c5
Author: Cody Oss <6331106+codyoss@users.noreply.github.com>
Date:   Wed Oct 23 21:27:34 2019 -0600

    ci: add 1.13 testing (#337)

commit 0e690d0f7837d8b6456afa3aa76d563aae39f3aa
Author: Ronak Patel <5393382+rkpatel7@users.noreply.github.com>
Date:   Tue Oct 22 23:23:39 2019 +0000

    Update documentation on MinTimes and MaxTimes (#334)
    
    Closes: #331

commit 2b692abeee300713217dcb542d4c2627ba1a4592
Author: Christian Muehlhaeuser <muesli@gmail.com>
Date:   Fri Jul 19 07:57:48 2019 +0200

    Simplified Go code
    
    - Replaced range loops with an append
    - No need to specify slice capacity that's equal to the length

commit 176c208e84d0191d463e1c14eeb52e31ca8b2f69
Author: Zhongpeng Lin <zplin@uber.com>
Date:   Fri May 31 22:28:45 2019 -0700

    Allow mockgen to execute from outside go modules

commit cbd2e353ab04dfb7bd2e19ab7aa041c3440ad2c5
Author: Andrew Poydence <poy@google.com>
Date:   Tue Jul 9 16:53:26 2019 -0600

    Update mockgen installation docs
    
    fixes #308

commit dd8d2a22370e4c8a334e80ca8477f71356c8e4bb
Author: Ruslan Abelharisov <abelharisov@gmail.com>
Date:   Sat Jul 13 13:24:42 2019 +0300

    fix small typo in comments (#314)

commit 140ae90f29eaaadc229f8d4b78f074b7f0611c1e
Author: James Bowes <jbowes@repl.ca>
Date:   Fri May 17 11:58:38 2019 -0300

    Fix small typo in Controller example (#295)
Created: 2020-02-27 Last update: 2021-01-14 22:08
Standards version of the package is outdated. wishlist
The package should be updated to follow the last version of Debian Policy (Standards-Version 4.5.1 instead of 4.4.0).
Created: 2019-09-29 Last update: 2020-11-17 05:41
news
[rss feed]
  • [2020-12-08] Accepted golang-github-golang-mock 1.3.1-2~bpo10+1 (source all amd64) into buster-backports, buster-backports (Debian FTP Masters) (signed by: Anthony Fok)
  • [2019-08-15] golang-github-golang-mock 1.3.1-2 MIGRATED to testing (Debian testing watch)
  • [2019-08-11] Accepted golang-github-golang-mock 1.3.1-2 (source) into unstable (Anthony Fok)
  • [2019-08-01] Accepted golang-github-golang-mock 1.3.1-1 (source) into unstable (Anthony Fok)
  • [2017-09-26] golang-github-golang-mock 1.0.0-1 MIGRATED to testing (Debian testing watch)
  • [2017-09-13] Accepted golang-github-golang-mock 1.0.0-1 (source) into unstable (Martín Ferrari)
  • [2017-08-14] golang-github-golang-mock 0.0~git20150821.0.06883d9-2 MIGRATED to testing (Debian testing watch)
  • [2017-08-09] Accepted golang-github-golang-mock 0.0~git20150821.0.06883d9-2 (source all amd64) into unstable (Konstantinos Margaritis)
  • [2016-11-29] Accepted golang-github-golang-mock 0.0~git20150821.0.06883d9-1~bpo8+1 (source all amd64) into jessie-backports, jessie-backports (Tim Potter) (signed by: Timothy Potter)
  • [2015-09-17] golang-github-golang-mock 0.0~git20150821.0.06883d9-1 MIGRATED to testing (Britney)
  • [2015-09-11] Accepted golang-github-golang-mock 0.0~git20150821.0.06883d9-1 (source all amd64) into unstable, unstable (Dmitry Smirnov)
bugs [bug history graph]
  • all: 1
  • RC: 0
  • I&N: 1
  • M&W: 0
  • F&P: 0
  • patch: 1
links
  • homepage
  • lintian
  • buildd: logs, checks, clang, reproducibility, cross
  • popcon
  • browse source code
  • edit tags
  • other distros
  • debci
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 1.3.1-2build1

Debian Package Tracker — Copyright 2013-2018 The Distro Tracker Developers
Report problems to the tracker.debian.org pseudo-package in the Debian BTS.
Documentation — Bugs — Git Repository — Contributing