Commit Graph

14 Commits

Author SHA1 Message Date
David Hill
e26e71a9a2 multi: replace godoc.org with pkg.go.dev 2020-02-18 19:35:19 -06:00
Dave Collins
a5610ccf15
release: Remove build metadata from master branch.
Releases will now use the empty string for the prerelease field and
"release.local" for build metadata.  This indicates that the code is for
a release, but the release was built from the repo or using go get
without the release build tool.

Development versions will use "pre" for the prerelease and default to
no build metadata.

In particular, this will result in the following cases:

- Development builds performed on the master branch will show as
  "version X.Y.Z-pre" (where either X or Y is one version greater than
  the current release)
- Builds performed on the release branch without using reproducible
  build tools will show as "version X.Y.Z+release.local"
- Builds performed on the release branch using reproducible build tools
  will show as "version X.Y.Z+release"

Consequently, this this removes the "dev" marker from the build metadata
on the master branch.
2020-01-28 10:37:52 -06:00
Dave Collins
737bb9e611
mempool: Associated tag with orphan txns.
This allows a caller-provided tag to be associated with orphan
transactions.  This is useful since the caller can use the tag for
purposes such as keeping track of which peers orphans were first seen
from.

Also, since a parameter is required now anyways, it associates the peer
ID with processed transactions from remote peers.
2019-11-04 11:44:51 -06:00
Dave Collins
b8812354e4
rpcserver: Add basic initial package documentation. 2019-10-24 21:37:44 -05:00
Dave Collins
46af0a96ed
rpcserver: Add logging to internal package. 2019-10-24 21:37:27 -05:00
Dave Collins
817d721769
rpcserver: Move rpc syncmgr iface to internal pkg.
This continues progress towards being able to split the rpcserver into a
separate internal package.

It moves the rpcserverSyncManager interface to the internal package as
the SyncManager interface so it becomes rpcserver.SyncManager and
updates the code to use the moved interface.
2019-10-24 21:37:24 -05:00
Dave Collins
4f80183be5
rpcserver: Move rpc connmgr iface to internal pkg.
This continues progress towards being able to split the rpcserver into a
separate internal package.

It moves the rpcserverConnManager interface to the internal package as
the ConnManager interface so it becomes rpcserver.ConnManager and
updates the code to use the moved interface.
2019-10-24 21:36:28 -05:00
Dave Collins
4ce2a6c618
rpcserver: Start separate internal package impl.
This is the first of a series of commits that aims to make progress
towards being able to split the rpcserver into a separate internal
package.

It consists of creating the package, moving the rpcserverPeer interface
to the new package as the Peer interface so it becomes rpcserver.Peer
and updating the code to use the moved interface.
2019-10-24 21:34:39 -05:00
Dave Collins
5952f125fe
release: Bump for 1.6 release cycle. 2019-10-16 15:45:00 -05:00
Dave Collins
3e2208f8c1
build: Replace TravisCI with CI via Github actions. 2019-09-20 19:59:04 -05:00
David Hill
893aa30dce multi: Use https links where available. 2019-06-18 14:20:06 -05:00
Dave Collins
c6f60e2c10
release: Bump for 1.5 release cycle. 2018-12-12 16:47:10 -06:00
Dave Collins
61cdcb81fc
limits: Make limits package internal. 2018-09-06 15:19:25 -05:00
Dave Collins
999ee7d863
multi: Make use of new internal version package.
This introduces a new internal package named version to house the
version information and updates the various code to use it.  This allows
both dcrd and dcrctl to make use of the package so the version
information only needs to be bumped in one place and also ensure that
any link-time overrides to the pre-release and/or build metadata apply
to both.

Also, while here, include the OS and architecture in the version log at
start of day as well as the output from the version CLI flag.
2018-09-04 17:34:31 -05:00