<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/ext/digest, branch v3_4_9</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>[ruby/digest] Bump up v3.2.0</title>
<updated>2024-12-16T03:31:55+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2024-12-16T03:31:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=379128dcbf19c0777333b8c1a86bf52469633c9a'/>
<id>379128dcbf19c0777333b8c1a86bf52469633c9a</id>
<content type='text'>
https://github.com/ruby/digest/commit/26c757fe9a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/digest/commit/26c757fe9a
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/digest] Bump up v3.2.0.pre0, preparing to stable release</title>
<updated>2024-12-11T08:02:34+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2024-12-11T08:00:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=824642e883cf43ed6bf053b37ed7ee02f749c062'/>
<id>824642e883cf43ed6bf053b37ed7ee02f749c062</id>
<content type='text'>
https://github.com/ruby/digest/commit/d19c84fd68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/digest/commit/d19c84fd68
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/digest] Remove obsolete test runner [ci skip]</title>
<updated>2024-11-20T15:14:26+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-11-20T14:22:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f9623944816c3ce88cda23f2d2d88f1c96b437ad'/>
<id>f9623944816c3ce88cda23f2d2d88f1c96b437ad</id>
<content type='text'>
This file is platform dependent, outdated and already not working.
Use `rake` instead.

https://github.com/ruby/digest/commit/a2a917dc71
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This file is platform dependent, outdated and already not working.
Use `rake` instead.

https://github.com/ruby/digest/commit/a2a917dc71
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/digest] Fix `-Wundef` warnings</title>
<updated>2024-11-19T03:42:43+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-11-19T03:42:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=727b2a29990022fc96eddb4c63271f0eac60d926'/>
<id>727b2a29990022fc96eddb4c63271f0eac60d926</id>
<content type='text'>
https://github.com/ruby/digest/commit/0ea3ac9926
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/digest/commit/0ea3ac9926
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/digest] Adjust styles [ci skip]</title>
<updated>2024-11-18T07:43:33+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-11-18T07:36:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=0f75ac83800b7149364ae559fbd1cb93a81a82ca'/>
<id>0f75ac83800b7149364ae559fbd1cb93a81a82ca</id>
<content type='text'>
- Use the C90 standard style for comments, since this gem supports
  versions prior to ruby 2.7.

- Adjust the indentation.

https://github.com/ruby/digest/commit/4751402e50
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use the C90 standard style for comments, since this gem supports
  versions prior to ruby 2.7.

- Adjust the indentation.

https://github.com/ruby/digest/commit/4751402e50
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/digest] Fix loading of digest ext libraries with `--with-static-linked-ext`</title>
<updated>2024-11-18T04:34:40+00:00</updated>
<author>
<name>Yuta Saito</name>
<email>kateinoigakukun@gmail.com</email>
</author>
<published>2024-11-15T21:49:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=29fdb73c5b3904ffcc420058533988adc4a16d1e'/>
<id>29fdb73c5b3904ffcc420058533988adc4a16d1e</id>
<content type='text'>
`rb_ext_resolve_symbol` is not always available on some platforms
including WASI, and we don't need to use it when the extension is built
as a static library. This commit prefers to use `rb_digest_wrap_metadata`
directly when the extension is built as a static library to avoid the
unnecessary use of `rb_ext_resolve_symbol`.

https://github.com/ruby/digest/commit/f8ff014622
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`rb_ext_resolve_symbol` is not always available on some platforms
including WASI, and we don't need to use it when the extension is built
as a static library. This commit prefers to use `rb_digest_wrap_metadata`
directly when the extension is built as a static library to avoid the
unnecessary use of `rb_ext_resolve_symbol`.

https://github.com/ruby/digest/commit/f8ff014622
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/digest] Cast via `uintptr_t` function pointer between object pointer</title>
<updated>2024-10-10T14:45:49+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-10-10T02:28:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=146ff6617326893130e5f29935cdaeae0836cfb5'/>
<id>146ff6617326893130e5f29935cdaeae0836cfb5</id>
<content type='text'>
https://github.com/ruby/digest/commit/661d4643ef
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/digest/commit/661d4643ef
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/digest] Import patches for old macOS from MacPorts</title>
<updated>2024-09-26T04:56:36+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-09-25T20:24:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a3fd24e22e4f7c38db891e1ddf8ea3461d28659f'/>
<id>a3fd24e22e4f7c38db891e1ddf8ea3461d28659f</id>
<content type='text'>
https://github.com/ruby/digest/commit/07a5db2f77
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/digest/commit/07a5db2f77
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/digest] Suppress md5 deprecation warnings by gcc as well as clang</title>
<updated>2024-09-06T05:58:21+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-07-31T15:26:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7387a0979158c50ca37884f14bad2b493d3e2f0a'/>
<id>7387a0979158c50ca37884f14bad2b493d3e2f0a</id>
<content type='text'>
https://github.com/ruby/digest/commit/76878e3201
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/digest/commit/76878e3201
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove digest.def that fails on older Ruby versions</title>
<updated>2024-06-09T09:22:06+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-06-09T09:22:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=1b7aabb90dd884bd720b1eac417a8845a0b53503'/>
<id>1b7aabb90dd884bd720b1eac417a8845a0b53503</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
