<feed xmlns='http://www.w3.org/2005/Atom'>
<title>fscrypt.git/go.mod, branch v0.3.4</title>
<subtitle>Go tool for managing Linux filesystem encryption
</subtitle>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/'/>
<entry>
<title>Switch to google.golang.org/protobuf/proto</title>
<updated>2022-04-09T06:38:01+00:00</updated>
<author>
<name>Eric Biggers</name>
<email>ebiggers@google.com</email>
</author>
<published>2022-04-09T06:16:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=ca7a84b8aea203025acbda193f78ea98946236b5'/>
<id>ca7a84b8aea203025acbda193f78ea98946236b5</id>
<content type='text'>
github.com/golang/protobuf/proto has been deprecated in favor of
google.golang.org/protobuf/proto, so migrate to the non-deprecated one.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
github.com/golang/protobuf/proto has been deprecated in favor of
google.golang.org/protobuf/proto, so migrate to the non-deprecated one.
</pre>
</div>
</content>
</entry>
<entry>
<title>Regenerate go.mod and go.sum with go 1.16</title>
<updated>2022-04-08T23:32:57+00:00</updated>
<author>
<name>Joe Richey</name>
<email>joerichey@google.com</email>
</author>
<published>2022-04-08T23:32:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=8cb1b12197186bdafea5ff90a2a9a7a0d66faaf2'/>
<id>8cb1b12197186bdafea5ff90a2a9a7a0d66faaf2</id>
<content type='text'>
Signed-off-by: Joe Richey &lt;joerichey@google.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Joe Richey &lt;joerichey@google.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade honnef.co/go/tools to latest version</title>
<updated>2022-04-08T23:25:01+00:00</updated>
<author>
<name>Eric Biggers</name>
<email>ebiggers@google.com</email>
</author>
<published>2022-04-08T23:15:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=20ed87d83338d5b86d51b64429fa9d6e8379a771'/>
<id>20ed87d83338d5b86d51b64429fa9d6e8379a771</id>
<content type='text'>
The version of 'staticcheck' (part of honnef.co/go/tools) we were
pinning is incompatible with Go 1.18, as per
https://github.com/dominikh/go-tools/issues/1165.

To allow 'make lint' to work with Go 1.18 and later, upgrade
honnef.co/go/tools to the latest version.

This requires that several other modules be upgraded too.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The version of 'staticcheck' (part of honnef.co/go/tools) we were
pinning is incompatible with Go 1.18, as per
https://github.com/dominikh/go-tools/issues/1165.

To allow 'make lint' to work with Go 1.18 and later, upgrade
honnef.co/go/tools to the latest version.

This requires that several other modules be upgraded too.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump up required Go version to 1.16</title>
<updated>2022-04-08T23:08:12+00:00</updated>
<author>
<name>Eric Biggers</name>
<email>ebiggers@google.com</email>
</author>
<published>2022-04-08T22:55:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=657a1f0f44b61725f1b8041bceef6f262ffcb770'/>
<id>657a1f0f44b61725f1b8041bceef6f262ffcb770</id>
<content type='text'>
Bump up the required Go version to 1.16 so that we can assume that Go
modules are enabled by default.  Go 1.16 is the latest end-of-life
release, so this makes it so that we support the latest end-of-life
release (1.16), the current maintainance release (1.17), the current
release (1.18), and future releases.  This the same approach we took
when we last bumped up the required Go version.

Also update the ci.yml file to test with these versions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bump up the required Go version to 1.16 so that we can assume that Go
modules are enabled by default.  Go 1.16 is the latest end-of-life
release, so this makes it so that we support the latest end-of-life
release (1.16), the current maintainance release (1.17), the current
release (1.18), and future releases.  This the same approach we took
when we last bumped up the required Go version.

Also update the ci.yml file to test with these versions.
</pre>
</div>
</content>
</entry>
<entry>
<title>cmd/fscrypt: use golang.org/x/term</title>
<updated>2021-04-22T19:27:31+00:00</updated>
<author>
<name>Tobias Klauser</name>
<email>tklauser@distanz.ch</email>
</author>
<published>2021-04-22T11:53:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=db79840bc68f803c23477e7c093e3cff2a7633ba'/>
<id>db79840bc68f803c23477e7c093e3cff2a7633ba</id>
<content type='text'>
The golang.org/x/crypto/ssh/terminal package is deprecated and merely a
wrapper around golang.org/x/term. Thus, use the latter directly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The golang.org/x/crypto/ssh/terminal package is deprecated and merely a
wrapper around golang.org/x/term. Thus, use the latter directly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade to latest golang.org/x/sys module</title>
<updated>2019-11-27T19:28:14+00:00</updated>
<author>
<name>Eric Biggers</name>
<email>ebiggers@google.com</email>
</author>
<published>2019-11-27T19:28:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=13bc8a6a344c6bfbf685f9e6a3e55f87cef066e4'/>
<id>13bc8a6a344c6bfbf685f9e6a3e55f87cef066e4</id>
<content type='text'>
Upgrade to get the new fscrypt declarations from Linux v5.4.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Upgrade to get the new fscrypt declarations from Linux v5.4.
</pre>
</div>
</content>
</entry>
<entry>
<title>Manage tool versioning with Go modules (#161)</title>
<updated>2019-10-26T00:26:49+00:00</updated>
<author>
<name>Joseph Richey</name>
<email>joerichey@google.com</email>
</author>
<published>2019-10-26T00:26:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=a3434e41bd482fc1b35703f66c24c9d1ec3b0be2'/>
<id>a3434e41bd482fc1b35703f66c24c9d1ec3b0be2</id>
<content type='text'>
See: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module

The tool code is never actually built, but the versions are still lock
in `go.mod` and `go.sum`. We can also simplify the Makefile.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module

The tool code is never actually built, but the versions are still lock
in `go.mod` and `go.sum`. We can also simplify the Makefile.</pre>
</div>
</content>
</entry>
<entry>
<title>Delete vendored code and update CI to Go 1.13 (#158)</title>
<updated>2019-10-26T00:15:27+00:00</updated>
<author>
<name>Joseph Richey</name>
<email>joerichey@google.com</email>
</author>
<published>2019-10-26T00:15:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=b24e4ccd245861f7537f17c3e01be2cbefb1b29e'/>
<id>b24e4ccd245861f7537f17c3e01be2cbefb1b29e</id>
<content type='text'>
As the Go community transitions to using the modules ecosystem,
we want to only support one way of managing dependencies.
So this change moves to only using Go modules for dependency management.

This means that our effective minimum Go version increases to Go 1.11.
To account for this, we also update:
  - the documentation
  - Makefile
  - CI scripts</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As the Go community transitions to using the modules ecosystem,
we want to only support one way of managing dependencies.
So this change moves to only using Go modules for dependency management.

This means that our effective minimum Go version increases to Go 1.11.
To account for this, we also update:
  - the documentation
  - Makefile
  - CI scripts</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare v0.2.5 (#147)</title>
<updated>2019-09-12T00:00:09+00:00</updated>
<author>
<name>Joseph Richey</name>
<email>joerichey@google.com</email>
</author>
<published>2019-09-12T00:00:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=672cce613a8b3acf66e0f288206b1fcbff7d41cd'/>
<id>672cce613a8b3acf66e0f288206b1fcbff7d41cd</id>
<content type='text'>
Also add go version attrubute to go.mod</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also add go version attrubute to go.mod</pre>
</div>
</content>
</entry>
<entry>
<title>Update dependancies to lastest version</title>
<updated>2018-08-30T09:24:33+00:00</updated>
<author>
<name>Joe Richey joerichey@google.com</name>
<email>joerichey@google.com</email>
</author>
<published>2018-08-30T09:24:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=630c8d1d002286cc26bafec78a7f120b5c0e78af'/>
<id>630c8d1d002286cc26bafec78a7f120b5c0e78af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
