-
Notifications
You must be signed in to change notification settings - Fork 167
new package: mail/mailsend #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A simple command line program to send mail via SMTP protocol.
Collaborator
|
Committed, thanks! |
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jul 17, 2017
…hael Moll in #4. From the DESCR: mailsend is a simple command line program to send mail via SMTP protocol. The program does not use any config file and everything needed to compose mails (and attachments) is driven via command line parameters.
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Aug 10, 2017
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Sep 8, 2017
Release 2.2.4 Sat Auguest 19 2017
Bug fixes:
#115 Fix copying of partial characters for UTF-8 input
Other changes:
#109 Fix "make check" for non-x86 architectures that default
to unsigned type char (-128..127 rather than 0..255)
#109 coverage.sh: Cover -funsigned-char
Autotools: Introduce --without-xmlwf argument
#65 Autotools: Replace handwritten Makefile with GNU Automake
#43 CMake: Auto-detect high quality entropy extractors, add new
option USE_libbsd=ON to use arc4random_buf of libbsd
#74 CMake: Add -fno-strict-aliasing only where supported
#114 CMake: Always honor manually set BUILD_* options
#114 CMake: Compile man page if docbook2x-man is available, only
#117 Include file tests/xmltest.log.expected in source tarball
(required for "make run-xmltest")
#117 Include (existing) Visual Studio 2013 files in source tarball
Improve test suite error output
#111 Fix some typos in documentation
Version info bumped from 7:5:6 to 7:6:6
Special thanks to:
Jakub Wilk
Joe Orton
Lin Tian
Rolf Eike Beer
Release 2.2.3 Wed August 2 2017
Security fixes:
#82 CVE-2017-11742 -- Windows: Fix DLL hijacking vulnerability
using Steve Holme's LoadLibrary wrapper for/of cURL
Bug fixes:
#85 Fix a dangling pointer issue related to realloc
Other changes:
Increase code coverage
#91 Linux: Allow getrandom to fail if nonblocking pool has not
yet been initialized and read /dev/urandom then, instead.
This is in line with what recent Python does.
#81 Pre-10.7/Lion macOS: Support entropy from arc4random
#86 Check that a UTF-16 encoding in an XML declaration has the
right endianness
#4 #5 #7 Recover correctly when some reallocations fail
Repair "./configure && make" for systems without any
provider of high quality entropy
and try reading /dev/urandom on those
Ensure that user-defined character encodings have converter
functions when they are needed
Fix mis-leading description of argument -c in xmlwf.1
Rely on macro HAVE_ARC4RANDOM_BUF (rather than __CloudABI__)
for CloudABI
#100 Fix use of SIPHASH_MAIN in siphash.h
#23 Test suite: Fix memory leaks
Version info bumped from 7:4:6 to 7:5:6
Special thanks to:
Chanho Park
Joe Orton
Pascal Cuoq
Rhodri James
Simon McVittie
Vadim Zeitlin
Viktor Szakats
and
Core Infrastructure Initiative
Release 2.2.2 Wed July 12 2017
Security fixes:
#43 Protect against compilation without any source of high
quality entropy enabled, e.g. with CMake build system;
commit ff0207e6076e9828e536b8d9cd45c9c92069b895
#60 Windows with _UNICODE:
Unintended use of LoadLibraryW with a non-wide string
resulted in failure to load advapi32.dll and degradation
in quality of used entropy when compiled with _UNICODE for
Windows; you can launch existing binaries with
EXPAT_ENTROPY_DEBUG=1 in the environment to inspect the
quality of entropy used during runtime; commits
* 95b95032f907ef1cd17ee7a9a1768010a825d61d
* 73a5a2e9c081f49f2d775cf7ced864158b68dc80
[MOX-006] Fix non-NULL parser parameter validation in XML_Parse;
resulted in NULL dereference, previously;
commit ac256dafdffc9622ab0dc2c62fcecb0dfcfa71fe
Bug fixes:
#69 Fix improper use of unsigned long long integer literals
Other changes:
#73 Start requiring a C99 compiler
#49 Fix "==" Bashism in configure script
#50 Fix too eager getrandom detection for Debian GNU/kFreeBSD
#52 and macOS
#51 Address lack of stdint.h in Visual Studio 2003 to 2008
#58 Address compile warnings
#68 Fix "./buildconf.sh && ./configure" for some versions
of Dash for /bin/sh
#72 CMake: Ease use of Expat in context of a parent project
with multiple CMakeLists.txt files
#72 CMake: Resolve mistaken executable permissions
#76 Address compile warning with -DNDEBUG (not recommended!)
#77 Address compile warning about macro redefinition
Special thanks to:
Alexander Bluhm
Ben Boeckel
Cătălin Răceanu
Kerin Millar
László Böszörményi
S. P. Zeidler
Segev Finer
Václav Slavík
Victor Stinner
Viktor Szakats
and
Radically Open Security
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Sep 17, 2017
Changes in 0.22 --------------- - RT 108273 remove PREREQ_FATAL Changes in 0.21 --------------- - Fix bug relating to scopes and change required field. It's a temporary Fix until something more permanent can be put into place; effectively, it just forces the change-required field to match properly. Changes in 0.20 --------------- - Add capability to get any number of fields starting with a specific string. - Misc fixes and documentation amendments from Miniconf NYC. Changes in 0.19 --------------- - Add 'scopes' capability to fields. Changes in 0.18 --------------- - Bugfix Github issue #1 regarding expression concatenation. - Bugfix Github issue #4 regarding perldoc parse problems in Net::Gnats. - Fixed stubbed subroutines which caused test failures for Perl 5.10.1. - Added additional tests and documentation for Net::Gnats::Command. - Added additional tests and documentation for Net::Gnats::Command::ADMV. - Removed dead code from Net::Gnats::Session. - Bugfix Github issue #6 regarding wrong type returned for query() method. - Added additional tests and documentation for Net::Gnats get_field_type. Changes in 0.17 --------------- - Added ability to submit a PR from a PR object. Changes in 0.16 --------------- - Set consistent versioning across all modules. - Added 'strictures' to PREREQ_PM. Changes in 0.15 --------------- - Completely reworked sessions and issuing commands. - Comprehensive tests, removing all stubs. - Known issue: attachments not managed - Known issue: after submit of PR, new PR number not captured into the PR object.
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Sep 18, 2017
0.35 -- 2016-09-01 -- Sebastien Aperghis-Tramoni (SAPER) [Security] - CPAN RT #116543: CVE-2016-1238: avoid loading optional modules from default . (Tony Cook). Patch rewrote to no longer depend upon @inc. [Documentation] - openlog() options: mention the version of Sys::Syslog they were added. - Update HISTORY. - Update some broken links. [Distribution] - Converted the Changes file to CPAN::Changes::Spec format. - Improved a bit the readability of the ticket numbers. [Tests] - GitHub PR #4: use lexical instead of global filehandles (Alex Balhatchet).
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Oct 1, 2017
Update DEPENDS and test dependencies.
-------------------------------------------
version 0.0200 at 2017-09-29 01:03:32 +0000
-------------------------------------------
Change: b0ceabb33df843b11871a21209e5fd4bf1831fb9
Author: Naveed Massjouni <naveed@vt.edu>
Date : 2017-09-28 21:02:24 +0000
v0.0200
Change: 86a1ec89187cdd64286444448e5a3cab788859b8
Author: Naveed Massjouni <naveedm9@gmail.com>
Date : 2017-03-02 10:25:46 +0000
Merge pull request #5 from PerlDancer/sawyer/feature/reentrant-schema
Make schema() possibly reentrant
Change: d319f5adbd6accadde265a294176b3454fc950a0
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-16 00:52:33 +0000
Add test for feature
Change: 2e6d0056b2342debce14ecfd41f362e2ef9eff81
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-16 00:52:33 +0000
Add support for schema configuration in schema() call:
What troubles me is that this module is not reentrant. You will
always get the same schema object and you can only configure it once.
Configuring it once is great, but having to argue with the code over
at which point to do it is annoying.
(Example: Issue #12 in Dancer2-Plugin-DBIC.)
This now allows the schema() function to also receive parameters to
use instead of the default configuration. It tries todo it in a
non-intrusive way for the code with minimal code changes and without
altering anything outside this function (like the global
configuration).
Change: 21a44eb576168081e0ec5793671b26b586347e2d
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-16 00:52:33 +0000
Retrieve the options before fetching the schema:
The previous logic would try to look up the schema and return it, and
if it didn't exist, it would fetch the options and try to create one.
This makes sense.
However, this also means that if we want to create a schema without
rummaging in the cache, you will have to check whether to even check
the cache.
Instead, we simply retrieve the relevant information for creation
before deciding what to do. Then we could either create a new one
with this configuration or return one.
Change: b406d522942e8596affe45f47b679d44d22e1f5a
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-16 00:52:33 +0000
Refactor: Move creation of schemas outside schema():
The schema() function is in charge of finding the right plugin, but
also creates them. Ths makes it difficult to have logic that allows
creating without saving or retrieval. We just split the creation into
its own function.
I also added comments to make it a bit clearer.
Change: bc90045822e7d3fc0f4e8f0d10a45044bcba9773
Author: Naveed Massjouni <naveedm9@gmail.com>
Date : 2017-02-13 10:04:52 +0000
Merge pull request #4 from PerlDancer/sawyer/fixes
Various fixes and cleanups
Change: bcee651ab7580e899ad906be872c4874f333d156
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-13 10:56:10 +0000
Revert "Cleanup: Explicitly use DBIx::Class::Schema::Loader:"
This reverts commit 4f80a6f9ef3c994ffda9991d7fe7839307b6abbf.
Change: 9e527d272a25e4be0a64454d8b258211f171211e
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 11:12:43 +0000
Do not add DBIx::Class::Schema::Loader as hard prereq:
Currently DBIx::Class::Schema::Loader is loaded optionally, but
reported as a hard dependency. (See previous commit.)
This makes it recommended, but optional.
Change: 4f80a6f9ef3c994ffda9991d7fe7839307b6abbf
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 11:12:39 +0000
Cleanup: Explicitly use DBIx::Class::Schema::Loader:
In Dancer2-Plugin-DBIC, DBIx::Class::Schema::Loader is mentioned as a
requirement. It's a lazy optional one. It's also hard to spot because
it's being loaded as a string using Module::Load.
Instead, this makes it a bit clearer by using 'require' directly.
It would be better to make this an optional requirement instead of a
default one.
Change: 1b545771aec22a89989c284f950526270ae272b5
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 10:58:09 +0000
Cleanup: Replace die() with croak():
croak() is used in some places but not everywhere, so might as well
report from the caller everywhere.
Change: c6f2031977572bcfd4352e131eb274cbc0be14d0
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 10:56:38 +0000
Cleanup: Simply conditions code
Change: d9042c990068eb816b21396573704012d66c2ead
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 10:56:20 +0000
Cleanup: Fix extra or missing semicolons
Change: 30166bce0c49ca7e979c9bbd82b582850805df7d
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 10:56:20 +0000
Add provides metadata:
The following plugin will add the provides metadata to the
distribution, which is considered a best practice.
Change: 35e6040f94c561ab29811fe1db8164f03492d87f
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 10:56:20 +0000
Provide META.json file in distribution:
The following plugin adds the META.json file. This is considered the
more modern META data format.
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Oct 22, 2017
Update DEPENDS and test dependencies.
-------------------------------------------
version 0.0200 at 2017-09-29 01:03:32 +0000
-------------------------------------------
Change: b0ceabb33df843b11871a21209e5fd4bf1831fb9
Author: Naveed Massjouni <naveed@vt.edu>
Date : 2017-09-28 21:02:24 +0000
v0.0200
Change: 86a1ec89187cdd64286444448e5a3cab788859b8
Author: Naveed Massjouni <naveedm9@gmail.com>
Date : 2017-03-02 10:25:46 +0000
Merge pull request #5 from PerlDancer/sawyer/feature/reentrant-schema
Make schema() possibly reentrant
Change: d319f5adbd6accadde265a294176b3454fc950a0
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-16 00:52:33 +0000
Add test for feature
Change: 2e6d0056b2342debce14ecfd41f362e2ef9eff81
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-16 00:52:33 +0000
Add support for schema configuration in schema() call:
What troubles me is that this module is not reentrant. You will
always get the same schema object and you can only configure it once.
Configuring it once is great, but having to argue with the code over
at which point to do it is annoying.
(Example: Issue #12 in Dancer2-Plugin-DBIC.)
This now allows the schema() function to also receive parameters to
use instead of the default configuration. It tries todo it in a
non-intrusive way for the code with minimal code changes and without
altering anything outside this function (like the global
configuration).
Change: 21a44eb576168081e0ec5793671b26b586347e2d
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-16 00:52:33 +0000
Retrieve the options before fetching the schema:
The previous logic would try to look up the schema and return it, and
if it didn't exist, it would fetch the options and try to create one.
This makes sense.
However, this also means that if we want to create a schema without
rummaging in the cache, you will have to check whether to even check
the cache.
Instead, we simply retrieve the relevant information for creation
before deciding what to do. Then we could either create a new one
with this configuration or return one.
Change: b406d522942e8596affe45f47b679d44d22e1f5a
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-16 00:52:33 +0000
Refactor: Move creation of schemas outside schema():
The schema() function is in charge of finding the right plugin, but
also creates them. Ths makes it difficult to have logic that allows
creating without saving or retrieval. We just split the creation into
its own function.
I also added comments to make it a bit clearer.
Change: bc90045822e7d3fc0f4e8f0d10a45044bcba9773
Author: Naveed Massjouni <naveedm9@gmail.com>
Date : 2017-02-13 10:04:52 +0000
Merge pull request #4 from PerlDancer/sawyer/fixes
Various fixes and cleanups
Change: bcee651ab7580e899ad906be872c4874f333d156
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-13 10:56:10 +0000
Revert "Cleanup: Explicitly use DBIx::Class::Schema::Loader:"
This reverts commit 4f80a6f9ef3c994ffda9991d7fe7839307b6abbf.
Change: 9e527d272a25e4be0a64454d8b258211f171211e
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 11:12:43 +0000
Do not add DBIx::Class::Schema::Loader as hard prereq:
Currently DBIx::Class::Schema::Loader is loaded optionally, but
reported as a hard dependency. (See previous commit.)
This makes it recommended, but optional.
Change: 4f80a6f9ef3c994ffda9991d7fe7839307b6abbf
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 11:12:39 +0000
Cleanup: Explicitly use DBIx::Class::Schema::Loader:
In Dancer2-Plugin-DBIC, DBIx::Class::Schema::Loader is mentioned as a
requirement. It's a lazy optional one. It's also hard to spot because
it's being loaded as a string using Module::Load.
Instead, this makes it a bit clearer by using 'require' directly.
It would be better to make this an optional requirement instead of a
default one.
Change: 1b545771aec22a89989c284f950526270ae272b5
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 10:58:09 +0000
Cleanup: Replace die() with croak():
croak() is used in some places but not everywhere, so might as well
report from the caller everywhere.
Change: c6f2031977572bcfd4352e131eb274cbc0be14d0
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 10:56:38 +0000
Cleanup: Simply conditions code
Change: d9042c990068eb816b21396573704012d66c2ead
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 10:56:20 +0000
Cleanup: Fix extra or missing semicolons
Change: 30166bce0c49ca7e979c9bbd82b582850805df7d
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 10:56:20 +0000
Add provides metadata:
The following plugin will add the provides metadata to the
distribution, which is considered a best practice.
Change: 35e6040f94c561ab29811fe1db8164f03492d87f
Author: Sawyer X <xsawyerx@cpan.org>
Date : 2017-02-10 10:56:20 +0000
Provide META.json file in distribution:
The following plugin adds the META.json file. This is considered the
more modern META data format.
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Oct 24, 2017
======================================================================== Release notes for pcb-4.0.1 ======================================================================== Dear Users, This release fixes a number of bugs. Kind regards, The pcb development team Contributors ------------ The following authors contributed to the 4.0.1 release: - Milan Prochac - Charles Parker - Dan McMahill - Sergey Alyoshin - Igor2 - Peter Clifton - bert Please note that names are in no particular order and all e-mail addresses have been removed for privacy. User experience improvements ---------------------------- - reorchestrated the closing of the command window to not crash. - only invalidate the screen after changes to the crosshair or mark are complete. Plugins ------- - none Exporters --------- - fix for gcode dimensions. - added a regression test for the IPC-D-356 exporter. - added more documentation for the IPC-D-356 netlist exporter. Footprints library ------------------ - add macro with more programmability for 2 pin axial components. Use this to add a few IPC-7251 compliant footprints for axial inductors, horizontally mounted. Use this in turn for the TDK B82145A RF chokes family. - add toko category and the 7P variable inductors. - gen_geda_*.awk were nearly identical to gen_*.awk so add 2 lines to geda.inc so we can use the same script for everything. Verified that pcblib-newlib builds with identical results before/after. - for the horizontally mounted axial macro add the missing bits for marking polarity on parts like diodes. - add PKG_RADIAL_MM100 macro for doing more general metric 2 pin radial packages. - add some IPC radial capacitor footprints and use those to create some united chemicon footprints. - add DO-41 diode package, horizontally mounted. - add PKG_MTHOLE_GENERIC macro for fairly generic mounting holes. Use this to define IPC mounting holes for #4 and #6 machine screws with pan heads or flat washers for both "tight" (board < 4") and "loose" (board > 4") fits. - add TO-263 footprint. - add some notes about m4 library development. - fix problem in some possible invocations of the generic mounting hole macro. All footprints pass syntax checks again. - remove an extra empty attribute which is not needed and causes warnings in the mounting hole macro. - fix clearance on the Toko 7P footprint. - in the mounting hole macro, change the calculation of the pad size for the support vias to make them as large as possible without actually changing the copper (the support vias are covered by the main pad). This does not affect the fabricated board but it does remove some false positive DRC complaints. Developer experience improvements --------------------------------- - allow translators to change number of tabs in message. - In the test suite, check for a working X display using xhost before running action script tests - match() with 3 arguments is a gawk extension. Rework the code to avoid using a 3 argument call to match() in one spot. Lets the script run with gawk or NetBSD's awk (20121220). Verified that the generated result is identical to the previous gawk result using both gawk and NetBSDs awk. - change from AC_FD_CC to AS_MESSAGE_LOG_FD - removed the antifork abomination. - disabled one of the checks used to deal with older gdlib installs on some linux systems when building under cygwin as the test has problems. Repairs building for mingw under cygwin. - when building under cygwin, create a pcbtest.bat batch file that allows testing the compiled pcb without installing. This is somewhat analogous to the pcbtest.sh script generated on linux and other unix-like systems. - cleanup the win32 build script a good bit. An important change is that instead of blindly installing all of the mingw cross system root files, only install a set of listed ones. This not only reduces the size of the windows installer but makes sure we have a more repeatable build and know what we are actually bundling into the installer. - fixed the Attribute deletion code. Notes for early adapters ------------------------ - none Changed dependencies -------------------- - none Fixed and committed Launchpad bug reports ----------------------------------------- #700193 Append branch to version string. #917308 m4lib_to_newlib.sh does not work with mawk. #1528040 Gcode export smaller pad size. #1654821 Attribute deletion code is broken. #1659045 gts source do not compile when DEBUG symbol defined. #1659061 Compile warnings when DEBUG symbol is defined. #1660058 Several i18n fixes. #1672886 Crash when reopening command entry window in gtk. #1674133 Last action executed when escaping from command entry. #1682654 Drawing area redrawn twice when crosshair moves. ========================================================================
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Oct 24, 2017
======================================================================== Release notes for pcb-4.0.1 ======================================================================== Dear Users, This release fixes a number of bugs. Kind regards, The pcb development team Contributors ------------ The following authors contributed to the 4.0.1 release: - Milan Prochac - Charles Parker - Dan McMahill - Sergey Alyoshin - Igor2 - Peter Clifton - bert Please note that names are in no particular order and all e-mail addresses have been removed for privacy. User experience improvements ---------------------------- - reorchestrated the closing of the command window to not crash. - only invalidate the screen after changes to the crosshair or mark are complete. Plugins ------- - none Exporters --------- - fix for gcode dimensions. - added a regression test for the IPC-D-356 exporter. - added more documentation for the IPC-D-356 netlist exporter. Footprints library ------------------ - add macro with more programmability for 2 pin axial components. Use this to add a few IPC-7251 compliant footprints for axial inductors, horizontally mounted. Use this in turn for the TDK B82145A RF chokes family. - add toko category and the 7P variable inductors. - gen_geda_*.awk were nearly identical to gen_*.awk so add 2 lines to geda.inc so we can use the same script for everything. Verified that pcblib-newlib builds with identical results before/after. - for the horizontally mounted axial macro add the missing bits for marking polarity on parts like diodes. - add PKG_RADIAL_MM100 macro for doing more general metric 2 pin radial packages. - add some IPC radial capacitor footprints and use those to create some united chemicon footprints. - add DO-41 diode package, horizontally mounted. - add PKG_MTHOLE_GENERIC macro for fairly generic mounting holes. Use this to define IPC mounting holes for #4 and #6 machine screws with pan heads or flat washers for both "tight" (board < 4") and "loose" (board > 4") fits. - add TO-263 footprint. - add some notes about m4 library development. - fix problem in some possible invocations of the generic mounting hole macro. All footprints pass syntax checks again. - remove an extra empty attribute which is not needed and causes warnings in the mounting hole macro. - fix clearance on the Toko 7P footprint. - in the mounting hole macro, change the calculation of the pad size for the support vias to make them as large as possible without actually changing the copper (the support vias are covered by the main pad). This does not affect the fabricated board but it does remove some false positive DRC complaints. Developer experience improvements --------------------------------- - allow translators to change number of tabs in message. - In the test suite, check for a working X display using xhost before running action script tests - match() with 3 arguments is a gawk extension. Rework the code to avoid using a 3 argument call to match() in one spot. Lets the script run with gawk or NetBSD's awk (20121220). Verified that the generated result is identical to the previous gawk result using both gawk and NetBSDs awk. - change from AC_FD_CC to AS_MESSAGE_LOG_FD - removed the antifork abomination. - disabled one of the checks used to deal with older gdlib installs on some linux systems when building under cygwin as the test has problems. Repairs building for mingw under cygwin. - when building under cygwin, create a pcbtest.bat batch file that allows testing the compiled pcb without installing. This is somewhat analogous to the pcbtest.sh script generated on linux and other unix-like systems. - cleanup the win32 build script a good bit. An important change is that instead of blindly installing all of the mingw cross system root files, only install a set of listed ones. This not only reduces the size of the windows installer but makes sure we have a more repeatable build and know what we are actually bundling into the installer. - fixed the Attribute deletion code. Notes for early adapters ------------------------ - none Changed dependencies -------------------- - none Fixed and committed Launchpad bug reports ----------------------------------------- #700193 Append branch to version string. #917308 m4lib_to_newlib.sh does not work with mawk. #1528040 Gcode export smaller pad size. #1654821 Attribute deletion code is broken. #1659045 gts source do not compile when DEBUG symbol defined. #1659061 Compile warnings when DEBUG symbol is defined. #1660058 Several i18n fixes. #1672886 Crash when reopening command entry window in gtk. #1674133 Last action executed when escaping from command entry. #1682654 Drawing area redrawn twice when crosshair moves. ========================================================================
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Feb 23, 2018
2018-02-07 -- 0.8.5
* Changed: The uriparser project has moved from SourceForge to GitHub:
Code + issue tracker: https://github.com/uriparser/uriparser
New website: https://uriparser.github.io/
Please update any links of yours, accordingly. Thank you!
* Fixed: Memleak in out-of-memory clean-up code
of URI normalization, related to SF.net bug #28.
Thanks to Chris Hills for the report!
* Fixed: Fix compilation of uriparse(1) on FreeBSD
Thanks to Ed Schouten for the patch!
* Fixed: Fix C90 compilation errors
Thanks to Joel Cunningham for the patches!
* Fixed: Space requirements documented for uriWindowsFilenameToUriStringA
given URI "file://server1/file1.txt" (SF.net bug #31)
Thanks to threedyd for the report!
* Fixed: Compiler warnings
Thanks to Joel Cunningham for the patches!
* Fixed: Stop exporting internal function RemoveBaseUriImpl
Thanks to Joel Cunningham for the report!
* Fixed: API documentation front page no longer empty with Doxygen 1.8.13
* Fixed: "make -C doc install" fixed for lack of .map files
* Improved: Communicate that absolutePath is always URI_FALSE for URIs
with a host in uriparse CLI tool output and Uri.h header
(GitHub #2, SF.net #30)
* Soname: 1:21:0
2015-10-12 -- 0.8.4
* Fixed: Stack overflow on parsing malformed IPv6 addresses with
more than eigtht quads. Thanks to Alexander Klink for the report!
* Soname: 1:20:0
2015-10-04 -- 0.8.3
* Fixed: uriCompareRange reported NULL pointer and range of
length zero as equal, by mistake.
Thanks to Robert Kausch and his Coverity report.
* Fixed: Use-after-free in out-of-memory code of uriMakeOwner.
Thanks to Chris Hills and his Klocwork-based report (SF.net bug #28)
* Soname: 1:19:0
2015-04-27 -- 0.8.2
* Fixed: Broken conversion from/to Windows network shares (SF.net bug #21)
Thanks to Adam Gross and Dmitry Repkin!
* Fixed: Limit uriCompareRange return values to -1/0/1 (SF.net bug #24)
As a side effect, this fixes the test suite for AArch64.
Thanks to Marcin Juszkiewicz for the patch!
* Fixed: MinGW Makefile:
LIB_DIR fixed from ../../lib leftover to ../../src (SF.net bug #27)
Thanks to Dmytro Zagashev for the report!
* Fixed: Add missing NULL checks to UriStringToFilename (SF.net bug #25)
Thanks to Jerome Custodio for the report!
* Changed: Leave inlining decisions to GCC
* Soname: 1:18:0
2014-10-20 -- 0.8.1
* Fixed: Sync URI_VER_* preprocessor defines (were at 0.7.6, SF.net bug #23)
* Fixed: Bug in internal function that may flip uriEqualsUri results around
* Added: Function uriAddBaseUriEx allowing to resolve URIs with
a scheme identical to that of the base URI to resolve against
as if the URI to resolve had no scheme specified, when flag
URI_RESOLVE_IDENTICAL_SCHEME_COMPAT is specified
(SF.net feature request #4)
* Soname: 1:17:0
2014-07-12 -- 0.8.0.1
* Fixed: ISO C90 warnings (SF.net bug #20)
* Changed: No longer ship RFC documents (to make things easier for Debian)
* Soname: 1:16:0
2013-12-20 -- 0.8.0
* Fixed: Resolution of relative URI "/" broken
Thanks to Mo McRoberts for the patch!
* Fixed: uriAddBaseUri produced uriUri objects with both host
and the absolutePath flag set (while the absolutePath flag
should only be true for URI objects without a host) when
resolving absolute URIs like "/" or "/foo/bar".
Now the absolutePath flag is set to URI_FALSE and an empty
segment is added as necessary
* Fixed: .errorCode could end up unset, previously
Thanks to Radu Hociung for the patch! (SF.net bug #16)
* Fixed: Resolve use of non-POSIX "sed -r" used when building
documentation (SF.net bug #18)
Thanks to Ryan Schmidt for reporting!
* Fixed: Build DLL with -no-undefined on Windows
Thanks to Michel Zou for the patch! (SF.net bug #19)
* Added: Command line tool "uriparse"
Thanks to Radu Hociung for coding! (SF.net feature request #3)
* Soname: 1:15:0
2013-08-24 -- 0.7.9
* Fixed: Error position ended up as NULL for some syntax errors.
Thanks to Daniel Solano Gómez for the patch! (SF.net bug #14)
* Soname: 1:14:0
2013-05-13 -- 0.7.8
* Fixed: Fix dissection of query string "q=hello&x=&y=" (SF.net bug #12)
Thanks to Marc Novakowski for reporting!
* Soname: 1:13:0
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Feb 24, 2018
2018-02-07 -- 0.8.5
* Changed: The uriparser project has moved from SourceForge to GitHub:
Code + issue tracker: https://github.com/uriparser/uriparser
New website: https://uriparser.github.io/
Please update any links of yours, accordingly. Thank you!
* Fixed: Memleak in out-of-memory clean-up code
of URI normalization, related to SF.net bug #28.
Thanks to Chris Hills for the report!
* Fixed: Fix compilation of uriparse(1) on FreeBSD
Thanks to Ed Schouten for the patch!
* Fixed: Fix C90 compilation errors
Thanks to Joel Cunningham for the patches!
* Fixed: Space requirements documented for uriWindowsFilenameToUriStringA
given URI "file://server1/file1.txt" (SF.net bug #31)
Thanks to threedyd for the report!
* Fixed: Compiler warnings
Thanks to Joel Cunningham for the patches!
* Fixed: Stop exporting internal function RemoveBaseUriImpl
Thanks to Joel Cunningham for the report!
* Fixed: API documentation front page no longer empty with Doxygen 1.8.13
* Fixed: "make -C doc install" fixed for lack of .map files
* Improved: Communicate that absolutePath is always URI_FALSE for URIs
with a host in uriparse CLI tool output and Uri.h header
(GitHub #2, SF.net #30)
* Soname: 1:21:0
2015-10-12 -- 0.8.4
* Fixed: Stack overflow on parsing malformed IPv6 addresses with
more than eigtht quads. Thanks to Alexander Klink for the report!
* Soname: 1:20:0
2015-10-04 -- 0.8.3
* Fixed: uriCompareRange reported NULL pointer and range of
length zero as equal, by mistake.
Thanks to Robert Kausch and his Coverity report.
* Fixed: Use-after-free in out-of-memory code of uriMakeOwner.
Thanks to Chris Hills and his Klocwork-based report (SF.net bug #28)
* Soname: 1:19:0
2015-04-27 -- 0.8.2
* Fixed: Broken conversion from/to Windows network shares (SF.net bug #21)
Thanks to Adam Gross and Dmitry Repkin!
* Fixed: Limit uriCompareRange return values to -1/0/1 (SF.net bug #24)
As a side effect, this fixes the test suite for AArch64.
Thanks to Marcin Juszkiewicz for the patch!
* Fixed: MinGW Makefile:
LIB_DIR fixed from ../../lib leftover to ../../src (SF.net bug #27)
Thanks to Dmytro Zagashev for the report!
* Fixed: Add missing NULL checks to UriStringToFilename (SF.net bug #25)
Thanks to Jerome Custodio for the report!
* Changed: Leave inlining decisions to GCC
* Soname: 1:18:0
2014-10-20 -- 0.8.1
* Fixed: Sync URI_VER_* preprocessor defines (were at 0.7.6, SF.net bug #23)
* Fixed: Bug in internal function that may flip uriEqualsUri results around
* Added: Function uriAddBaseUriEx allowing to resolve URIs with
a scheme identical to that of the base URI to resolve against
as if the URI to resolve had no scheme specified, when flag
URI_RESOLVE_IDENTICAL_SCHEME_COMPAT is specified
(SF.net feature request #4)
* Soname: 1:17:0
2014-07-12 -- 0.8.0.1
* Fixed: ISO C90 warnings (SF.net bug #20)
* Changed: No longer ship RFC documents (to make things easier for Debian)
* Soname: 1:16:0
2013-12-20 -- 0.8.0
* Fixed: Resolution of relative URI "/" broken
Thanks to Mo McRoberts for the patch!
* Fixed: uriAddBaseUri produced uriUri objects with both host
and the absolutePath flag set (while the absolutePath flag
should only be true for URI objects without a host) when
resolving absolute URIs like "/" or "/foo/bar".
Now the absolutePath flag is set to URI_FALSE and an empty
segment is added as necessary
* Fixed: .errorCode could end up unset, previously
Thanks to Radu Hociung for the patch! (SF.net bug #16)
* Fixed: Resolve use of non-POSIX "sed -r" used when building
documentation (SF.net bug #18)
Thanks to Ryan Schmidt for reporting!
* Fixed: Build DLL with -no-undefined on Windows
Thanks to Michel Zou for the patch! (SF.net bug #19)
* Added: Command line tool "uriparse"
Thanks to Radu Hociung for coding! (SF.net feature request #3)
* Soname: 1:15:0
2013-08-24 -- 0.7.9
* Fixed: Error position ended up as NULL for some syntax errors.
Thanks to Daniel Solano Gómez for the patch! (SF.net bug #14)
* Soname: 1:14:0
2013-05-13 -- 0.7.8
* Fixed: Fix dissection of query string "q=hello&x=&y=" (SF.net bug #12)
Thanks to Marc Novakowski for reporting!
* Soname: 1:13:0
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Apr 19, 2018
Add missing DEPENDS
Upstream changes:
0.14 2018-04-17 rurban
- add library paths to LIBS from Crypt::OpenSSL::Guess (akiym, PR #6)
0.13 2018-04-14 rurban
- move Crypt::OpenSSL::Guess to configure dependency. (grinnz, PR #4)
0.12 2018-04-13 rurban
- use Crypt::OpenSSL::Guess to resolve OpenSSL include path,
fixes MacOS's homebrew OpenSSL installation problem. (akiym, PR #3)
netbsd-srcmastr
pushed a commit
that referenced
this pull request
May 27, 2018
----------------- 2018-05-21 3.5.1 ----------------- * Fix AttributeError: 'module' object has no attribute 'Signals' when constructing a CalledProcessError exception. [#49] ----------------- 2018-05-13 3.5.0 (3.5.0rc3) ----------------- * Fixed the packaging problem where the stdlib python3_redirect shim is supposed to be installed on Python 3. * Renamed _posixsubprocess to _posixsubprocess32 for consistency. * Unset CLOEXEC on file descriptors given to Popen pass_fds. (GH #4) * Drop support for Python 2.4 and 2.5. * Adds a configure script - run by setup.py - to supply the missing feature #define's for the _posixsubprocess32 extension module for the things that Python 2's own configure generated pyconfig.h does not already provide. ----------------- 2017-10-18 3.5.0rc1 ----------------- * Backport the new subprocess.run() API from Python 3.5. * Backport subprocess.DEVNULL support from 3.3. * Allow stderr to be redirected to stdout even when stdout is not redirected. https://bugs.python.org/issue22274 * Fix subprocess.Popen.wait() when the child process has exited to a a stopped instead of terminated state (ex: when under ptrace). https://bugs.python.org/issue29335 * Include the private API needed by the multiprocessing module for people who want to drop subprocess32 in as a replacement for their standard library subprocess module. * Fix a compilation issue regarding O_CLOEXEC not being defined on ancient Linux distros such as RHEL 5.
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jun 6, 2018
Upstream changes: 4.07 2018-05-28 15:14:54 CEST - Fixing counting number of tests - Fixed adding XSLT stylesheet process instructions #4
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jun 19, 2018
Upstream changes: 1.9103 2018-06-18 - Use ASCII-like regex matching (Github #4) - Convert tests to Test2 - Pass perlcritic tests - Pass Kwalitee tests - Add contributor information - Add protocol() method (just a stub today that will always return 'IPv4') 1.9102 2018-06-18 - DEV release only - Contains most changes that made it to 1.9103. 1.9101 2018-06-02 - fix precision issue on long-double platforms (BAYMAX) - Convert to use Dist::Zilla - Formatting changes 1.9100 2018-06-02 - DEV release only - fix precision issue on long-double platforms (BAYMAX) - Convert to dist.zilla - Minor formatting changes
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Oct 20, 2018
Upstream changes:
1.21 2018-10-06 MANWAR
- Patched issue RT# 67061 (handle warning uninitialsed value).
1.20 2018-10-05 MANWAR
- Merge pull request #4 from jjatria/302-found, changing the
name of 302 statuses from Moved to Found.
1.19 2018-10-04 MANWAR
- Merged pull request #3 from jjatria/max-age, which sets max-age
attribute correctly from constructor.
1.18 2018-10-03 MANWAR
- Merged pull request #2 from jjatria/samesite, adding
SameSite support to Cookie handling.
1.17 2018-10-02 MANWAR
- Merged pull request #7 from asb-capfan/master, should fix
CPAN Testers fail report on some windows box.
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Oct 31, 2018
Changes: Various fixes Add back the special2017 hacks to neogeo driver Update cps1/cps2 drivers Fix darius sound More fixes for konami twin16 driver Fix #249 (most likely, android needs this) Fix #249 + some konami twin16 updates Fix kungfum Some cleanup Fixes for konami twin16 driver Fast save mode for netplay Fix a bunch of warnings Try at fixing neocd sound (#4) Fix a bunch of gcc7 warnings Fix various refresh rates Fix moonwar controls Fix moonwara controls + some galaxian updates Add CPS Changer pause button (#245) Fix gaplus (#243) + input issues (#102) Fix garyoret (#243) Fix various issues (#243) Fix a graphical glitch in jojoba Add a frameskip core option Fix analog inputs for dragngun Fix for twinhawk (#239) Fix for exposing PGM RAM Exposing RAM for most drivers Initialize state_size in retro_serialize/retro_unserialize (#197) Fixes for aso, roadf and contra
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Dec 2, 2018
3.30.1 - fix nasty misrendering of inode-directory-symbolic 3.30.0 - audio-speakers-symbolic rendering glitch (issue #11) - *starred-symbolic 2px outline as per guidelines (issue #7) 3.29.90 - symbolic fingerprint, smartcard reader devices - emoji category icons in symbolic form - render script improvements by Sam Hewitt - general cleanup and maintenance by Sam - SIM status icons (symbolic) - system-log-out-symbolic - screen sharing status (issue #3) - thicked strokes for *starred-symbolic (issue #4) - iput-gaming and application-games consistent (Sam) - bluetooth rendering fix (Sam) - application-x-appliance alignment (Sam) - tab-new, application-x-executable improvements (Sam) - user-bookmarks metaphor (Sam) - general grid alignment fixes by Sam - SVG filesize optimalizations by Sam
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jun 11, 2019
2.60.1 - April 1, 2019 ====================== - Improve reliability of client auth failure tests (#66) - Fix excessive CPU usage after sync handshake (#69) 2.60.0.1 - March 12, 2019 ========================= - Fix build with OpenSSL pkg-config unavailable (Nirbheek Chauhan) 2.60.0 - March 11, 2019 ======================= This is the first stable release featuring the new OpenSSL backend. Please be advised that this new backend is still experimental and known to not work on some systems, including Debian. Linux distributions are encouraged to stick to the default build options, where OpenSSL is not yet enabled. - Fix build with GnuTLS disabled (Nirbheek Chauhan) - Fix build on Windows (Chun-Wei Fan) 2.59.92 - March 4, 2019 ======================= - Many OpenSSL backend fixes for Windows (Nirbheek Chauhan) - GnuTLS: reject sync operations during handshake to avoid deadlocks (#46) - Temporarily disable DTLS and OpenSSL tests due to #49 and #54 2.59.91 - February 18, 2019 =========================== - Update OpenSSL SSL struct when certificate is changed (#55, Fredrik Ternerot) - Fix tests build when GnuTLS is disabled (#59) - Remove Fedora-specific PROFILE=SYSTEM default cipher list (#61) - Fix some problems with the connection tests (Fredrik Ternerot) 2.59.90 - February 4, 2019 ========================== This release adds an OpenSSL backend, obsoleting the glib-openssl project. Credit to all the contributors to the glib-openssl project, especially Ignacio Casal Quinteiro. Also thanks to Xavier Claessens for helping with the transition. The OpenSSL backend seems to be mature, though it is less well-tested for desktop usage than the GnuTLS backend. It will remain disabled by default at build time due to the GPL-incompatible nature of the OpenSSL license -- and the GPLv2-incompatible nature of the Apache license that will be used by future versions of OpenSSL -- and because the GnuTLS backend is sufficient for Linux distros. Use the OpenSSL backend if you are building an embedded system where (GPLv2+ or LGPLv3+) dependencies are unacceptable (e.g. nettle or GMP, both dependencies of GnuTLS) and you are OK with the GPL-incompatible OpenSSL license. If the OpenSSL backend is enabled at build time, you should probably disable build of the GnuTLS backend, or it will take precedence over the OpenSSL backend at runtime. For example, you could configure with: $ mkdir build && cd build $ meson -Dgnutls=disabled -Dopenssl=enabled .. 2.59.2 - January 7, 2019 ======================== - Add support for application layer protocol negotiation (#47, Scott Hutton) 2.59.1 - November 11, 2018 ========================== This release removes the gnutls-pkcs11 backend, which was disabled in 2.57.2, due to lack of any feedback whatsoever regarding its disablement. If you think it is still useful to you, given that the normal gnutls backend now supports PKCS#11, speak up now. This release also includes several changes to properly support TLS 1.3. Other changes: - Perform certificate verification during, not after, TLS handshake - Dramatically improve the reliability of the non-DTLS tests. (DTLS is still having problems.) - Regenerate test certificates to prepare for OpenSSL support - Several meson build system improvements to prepare for OpenSSL support 2.58.0 - September 2, 2018 ========================== - Updated translations 2.57.92 - August 27, 2018 ========================= - Revert fixes for #4 and #6 due to regression (#43) - Fix installed tests (Sébastien Bacher, !7) 2.57.90 - August 12, 2018 ========================= - Properly check for server errors in connection tests (#4) - Perform certificate verification during, not after, TLS handshake (#6) - Avoid trailing dots in SNI hostnames (#11) - Send fallback SCSV with fallback connection attempts - Fail unsafe rehandshake attempts initiated by API request 2.57.3 - July 16, 2018 ====================== - Fix memory leaks when calling g_tls_connection_gnutls_get_certificate() - Use .so for modules on macOS instead of dylib (Nirbheek Chauhan) - Fix build with MSVCC (Nirbheek Chauhan) 2.57.2 - May 21, 2018 ===================== This release disables build of the gnutls-pkcs11 backend by default. Please direct any complaints to https://gitlab.gnome.org/GNOME/glib-networking/issues/7 - Several meson build system improvements (#794978, #795043, and #795982, Xavier Claessens and Nirbheek Chauhan) 2.57.1 - April 16, 2018 ======================= - Use GnuTLS system trust and remove build option to specify cert bundle (#753260) - Fix criticals when child streams outlast the parent GTlsConnection (#792219) - Fix crash when setting client cert without private key (#793712) - Update tests for compatibility with GnuTLS 3.6.2 (#794286) - Never install GIO modules outside build prefix (#794358) - Don't install test files if installed tests are disabled (#794372) - Fix build with -Dpkcs11=false (#794292, Tom Schoonjans) - Allow building as meson subproject (#794709, Mathieu Duponchelle) - g_tls_certificate_verify() no longer manually verifies certificate activation/expiration time, matching the current behavior of g_tls_database_verify_chain().
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jun 12, 2022
Change log: 0.5.0 ====== - Fix for ark (Issue #4) - automake: INCLUDES -> AM_CPPFLAGS - preserve callbacks in tap-provider - remove GSpawnChildSetupFunc usage from tap_backend_run - Adds new README.md - updates AM_INIT_AUTOMAKE macro with foreign option - Add basic GitLab pipeline - Allow zip files (i.e. odt, docx...) to be compressed (Bug #15295) - Start archive application from file's directory (Bug #14773) - Replace AC_PROG_LIBTOOL with IT_PROG_INTLTOOL - Add support for archive manager for MATE - Translation Updates: Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, Eastern Armenian (Russia), English (Australia), English (United Kingdom), Esperanto, Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hindi, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kabyle, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Panjabi (Punjabi), Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Uzbek, Uzbek (Latin), Vietnamese
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Aug 1, 2022
Fixes Fixed not being able to move window under Wayland (#134). Fixed showing add and remove options for tracks in collaborative playlists (#160). Fixed some possible issues with selecting a device (#162). Fixed MPRIS support under KDE (#178). Fixed crash when opening links on some artists. Changes Much improved MPRIS support (#4). Windows builds now use MSVC, and are available in x86 and x64 variants (#109). Added keyboard shortcuts (#118, #152). Added macOS builds (#121). Added high-DPI support on macOS (#123). Added support for playing tracks from outside the application (#136). Added support for selecting multiple tracks (#137). Added an option to use an expanded album cover (#147). Added an option to close application to the tray (#151). Improved detection of spotifyd config files (#154). Added an option to change device type (#161). Added message when queuing tracks (#166). Added AppImage builds for Linux. Replaced custom font option with ability to select font from system. Added an option to disable checking for updates on start.
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Aug 31, 2022
Alan Coopersmith (9):
Fix fd leak when write() fails in WriteToFile()
Update README for gitlab migration
Update configure.ac bug URL for gitlab migration
Pass correct number of atoms from SelectSave to _XawTextSaltAwaySelection
Build xz tarballs instead of bzip2
Fix spelling/wording issues
gitlab CI: add a basic build test
convert ISO8859-1 encoded source files to UTF-8
libXaw3d 1.6.4
Eric Sesterhenn (1):
Bug 24635: File Descriptor leaks in libxaw-1.0.7
Thomas E. Dickey (2):
build-fixes when _CONST_X_STRING is defined
issue #4: configure doesn't fail if flex is not installed
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jan 9, 2023
2.0.0 (2022-05-12) Breaking * This release drops support for Faraday 1.0 What's Changed * Support Faraday 2: replace dependency with require by @notEthan in #1 * CI: Add Ruby 3.1, bundler-cache by @olleolleolle in #3 * refactor: use Gemfile for development dependencies by @olleolleolle in #4 * Depend on Faraday 2.0 by @olleolleolle in #5
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jan 18, 2023
2.0.0 (2022-05-12) Breaking * This release drops support for Faraday 1.0 What's Changed * Support Faraday 2: replace dependency with require by @notEthan in #1 * CI: Add Ruby 3.1, bundler-cache by @olleolleolle in #3 * refactor: use Gemfile for development dependencies by @olleolleolle in #4 * Depend on Faraday 2.0 by @olleolleolle in #5
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jan 27, 2023
Upstream changes:
version 1.01: Fri 11 Feb 11:25:41 CET 2022
Fixes:
- Coercion from Mail::Address to Mail::Message::Full::Address is
too lazy. Mail::Message issue #4
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Feb 11, 2023
Change log: 4.18.0 (2023-02-08) ====== - Changed Orage internal time and data strings to GDateTime (MR !20) - In event list, fixed event hiding when event start at 00:00 and end 00:00 in same date (this kind event can be created when creating full day event, save event and then unset full day option). (MR !20) - Removed bundled libical (Issue #5) - Removed panel plugin (Issue #11) - Removed GlobalTime (Issue #12) - Replaced old Orage icons (Issue #16) and removed 160x160 icons - Replaced deprecated dbus-glib with GDBus (Issue #4) - Changed event attach order in day view window (Issue #15) - Added Wayland support (Issue #2) - Fixed orage_persistent_alarms.txt not found messages (MR !35) - Fixed after wakeup tray icon updating (Issue #14) - Changed alarm_structure to reference counted structure. This fixes warnings about memory leaks (MR !38, replaces MR !8) - Changed libnotify minimum version to 0.7.0 (MR !39) - Disabled sound alarm when sound command is not set (MR !40) - Fixed large ical file import (Issue #8) - Translation Updates: Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (Australia), English (United Kingdom), Esperanto, Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokml, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Apr 23, 2023
Change log: 0.8.5 (2023-04-22) ===== - build: Fix -Wunused-result warning - Update `.gitignore` - Update copyright year - Use "logo-icon-name" instead of "logo" in about dialog - Remove ENABLE_NLS ifdefs - autoconf: Use AC_CONFIG_MACRO_DIRS - build: Fix intltool lock file problem during make distcheck - Update COPYING (Issue #7) - Remove unnecessary code - Use symbolic icons - Escape markup in server information - Replaces siginterrupt with sigaction - Do not close window with ctrl+c (#5) - Fix Text field size setting (#4) - Fix compilation warnings - autoconf: Some updates - Remove "." at the end of Comment string - Remove GSourceFunc casts - Include stdlib.h to get atoi prototype (!2) - Translation Updates: Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Occitan (post 1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Apr 26, 2023
1.4.1
Summary
This is a bug fix release that addresses a race condition that can
occur in multi-threaded programs when memory management is enabled.
In previous versions of the library memory management was enabled
by default. This is no longer the case, and it must be enabled
explicitly at configure time.
Explanation of bug: The global variables used for caching and
reusing allocated structures and the functions that manipulate them
do not currently protect critical sections to guarantee atomicity
which can lead to failures in multithreaded programs. The current
fix is to disable memory management by compiling with the
_NO_MEMORY_MANAGEMENT_ directive such that the thread-unsafe code
must be enabled explicitly. The unsafe code may be removed in future
releases if performance evaluation determines that it is a legacy
feature that no longer provides a tangible performance benefit. If
it does provide a measurable benefit, a thread-safe fix will be
implemented.
1.4.0
Updates
updates to build and installation process, pkg-config
rename package from sexpr to sfsexp to avoid confusion
documentation updates
additional UTF-8 tests
removal of archaic code that is no longer necessary
fix for sexp_to_dotfile looping on empty lists
update sexpvis.c to add arguments
Pull request changes
generate pkgconfig file during configure by @bremner in #5
make _sexp_to_dot static / hidden by @bremner in #4
fix for sexp_to_dotfile looping on empty lists by @bremner in #8
add some simple non-ascii tests by @bremner in #6
remove archive/ by @bremner in #10
Install sfsexp.pc file by @ryoon in #11
Honor LDFLAGS to fix RELRO build, for example by @ryoon in #12
Enhance markdown in README.md by @jpellegrini in #13
Rename sexpr to sfsexp by @mjg in #17
Pkgincludedir by @mjg in #18
netbsd-srcmastr
pushed a commit
that referenced
this pull request
May 5, 2023
Change log: 0.5.3 (2023-04-29) ===== - Fix typos - Translate more strings (Fixes #8) - Fix translated strings (Fixes #5) - Remove deprecated project files - build: Fix compiler warnings - Fix translated string (Fixes #4) - Revert "Remove deprecated project files" - Update copyright year - Remove deprecated project files - Update Makefile.am - Fix strings if song data is not available (#9) - build: Add GLib requirement - build: Fix autotools warnings - Use "logo-icon-name" instead of "logo" in about dialog - build: Fix intltool lock file problem during make distcheck - stream can be toggled from right-click menu - hide contextual menu 'stream' entry if streaming_appl isnt configured/set - add a new 'stream' checkbox to contextual menu - add mpc_stream_toggled callback - add mpc_stop_streaming method - use g_spawn_async instead of xfce_spawn_on_screen_with_child_watch to spawn the streaming appl - make sure error isnt NULL before dereferencing it - launch the streaming client when clicking on play - add mpc_launch_streaming() method - Allow to configure a 'streaming command' - use xfce_spawn_command_line() instead of deprecated xfce_spawn_command_line_on_screen() - Bump copyright year - Fix compilation warnings - autoconf: Some updates - Update `.gitignore` - Add basic GitLab pipeline - Update URLs from goodies.x.o to docs.x.o - Translation Updates: Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (Canada), English (United Kingdom), Estonian, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Korean, Latvian, Lithuanian, Malay, Norwegian Bokml, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jun 9, 2023
2.2.0 (2023-06-05)
* Remove deprecated BlueCloth, Less, and Sigil support (jeremyevans)
* Drop support for RDoc < 4 (jeremyevans)
* Deprecate Tilt::Cache (jeremyevans)
* Deprecate Tilt.current_template (jeremyevans)
* Deprecate support for RedCarpet 1.x (jeremyevans)
* Deprecate CoffeeScriptTemplate.default_no_wrap{,=} aliases of
default_bare{,=} (jeremyevans)
* Deprecate {ERB,Erubis}Template#default_output_variable{,=} (jeremyevans)
* Deprecate non-string template code in PrawnTemplate (jeremyevans)
* Deprecate default lazy loading of handlebars/org/emacs_org/jbuilder
external template engines (jeremyevans)
* Handle locals as a local variable in templates (timriley) (#3)
* Do not cache output in PrawnTemplate#evaluate (jeremyevans)
* Do not mark PrawnTemplate as not allowing script, since it can be used to
execute arbitrary Ruby code (jeremyevans)
* Remove Redcarpet1Template and Redcarpet2Template from the RedCarpet
support (jeremyevans)
* Separate CoffeeScriptTemplate.default_bare and
CoffeeScriptLiterateTemplate.default_bare (jeremyevans)
* Fix possible issue in KramdownTemplate under concurrent use (jeremyevans)
* Do not define yield tag for RadiusTemplate if no block is given to render
(jeremyevans)
* Avoid holding mutex while compiling template methods (jeremyevans)
* Template#prepare no longer needs to be overridden if no preparation work
is needed (jeremyevans)
* Fix potential concurrency issues in Mapping (jeremyevans)
* Stop modifying given locals hash in tilt/prawn (jeremyevans)
* Change visibility of Template#compiled_method to public (jeremyevans)
* Add Tilt::StaticTemplate for templates that return the same output for
every render (jeremyevans)
* Add Tilt::Mapping#finalized and Tilt.finalize! for finalized mappings that
do not require mutex synchronization (jeremyevans)
* Add frozen_string_literal magic comment to all source files (jeremyevans)
* Support templates with frozen compiled source code (jeremyevans)
* Support :skip_compiled_encoding_detection template option to not scan
compiled source code for encoding lines (jeremyevans)
* Ship slim template support with tilt (minad) (#4)
* Template#extract_{encoding,magic_comment} private methods now require a
block (jeremyevans)
The repository switched to https://github.com/jeremyevans/tilt, so issue
references above are for that repository, and issue references below are for
the previous repository (https://github.com/rtomayko/tilt).
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jun 12, 2023
What's Changed - Add NetBSD by @0323pin in #3 - Migrate from tui-rs to ratatui by @AmmarAbouZor in #4 - settings improvements by @AmmarAbouZor in #13 - [Documentation] Create README Badges by @kevinmatthes in #14 - CI Improvements by @AmmarAbouZor in #15 - Changed: Help popup improvements by @AmmarAbouZor in #17 - Added: Export current journal's content by @AmmarAbouZor in #18 - Increase Version by @AmmarAbouZor in #19 - Fixed setting backend path from CLI by @AmmarAbouZor in #22 - Added: Release CD action by @AmmarAbouZor in #24 - Fixed: Export journal extension by @AmmarAbouZor in #25 - Changed: Enhance render loop by @AmmarAbouZor in #28 - Added: CITATION.cff by @kevinmatthes in #26 - Added: Edit current journal content in external editor by @AmmarAbouZor in #29 - Added: configure CHANGELOG maintenance utilities by @kevinmatthes in #16 - Added: Tabs and scrolling to help popup by @AmmarAbouZor in #32 - Fixed: bugs in fragment creation by @kevinmatthes in #33 - Added: Multi-selection for journals by @AmmarAbouZor in #34 - Changed: bump baptiste0928/cargo-install to v2.1.0 by @kevinmatthes in #36 - [Aeruginous] Create CHANGELOG Fragment by @github-actions in #37 - Added: Export Import functions for multiple journals by @AmmarAbouZor in #39 - [Aeruginous] Create CHANGELOG Fragment by @github-actions in #40 - Fixed: Synchronizing problems with sqlite back-end by @AmmarAbouZor in #41 - [Aeruginous] Create CHANGELOG Fragment by @github-actions in #42 - Changed: improve GHA linting speed dramatically by @kevinmatthes in #43 - [Aeruginous] Create CHANGELOG Fragment by @github-actions in #44 - Addd: Option to Use Git Configured Editor as External editor by @AmmarAbouZor in #45 - [Aeruginous] Create CHANGELOG Fragment by @github-actions in #46 - [Aeruginous] Create Missing CHANGELOG Fragments by @AmmarAbouZor in #48 - Chore: Add dependabot by @AmmarAbouZor in #50 - [Aeruginous] Assemble CHANGELOG by @github-actions in #52
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jun 14, 2023
1.4.0 - 2023.01.21
* - BREAKING CONFIG CHANGE - the position of the passwd_feedback in slim
is now relative to the screen, not the panel. This is now consistent
with slimlock and with the session and other messages.
* The selected session is now preserved over failed logins
* When testing themes with the -p option, the size of the window can now
be specified, and the theme is previewed correctly for that size.
* On exit from theme test, the "test message" now reports user and session
* Failed login feedback is now disabled by default or if position negative
* Applied some Devuan patches
- Set the XDG_SESSION_CLASS. This fixes Gentoo bug #727544 - failure to
register sessions with elogind in some instances. The (incorrect) bug
note in the man page has therefore been removed again.
- Use $DISPLAY instead of hardcoding :0.0 in sessionstart/stop commands
- No longer always builds slimlock if using PAM - it must be explicitly
enabled
- Fixed formatting in slimlock man page
- A couple of typos fixed in strings
* Updated the README and encoded in UTF-8
* Corrected the handling of the -n / -nodaemon option so that it doesn't
swallow the next option if given as -n
* Bug fixes in slimlock
- The active entry is for password, so show the password prompt, not the
username one
- Don't react to F1, as it isn't appropriate and used to blank the
screen
- Keep it all on one screen even when the WM hasn't set a "primary" for
RandR purposes
* Fix ticket #4 - the config parser now works properly. Previously it got
confused by option names that were substrings of other option names
* Themes with "background_style color" no longer need a redundant image
file to make them work.
- This needed a bit of a re-write of the image handling, which also
improves efficiency
* New default theme - the old one is retained as "original"
* Some general documentation improvements (man pages, comments in example
files)
1.3.9 - 2022.11.18
* Changed the handling of the "auth failed" message in DM mode so that it
remains on display until a key is pressed.
* Added a command line option to specify the configuration file
* Allow the logfile to be specified as "stderr" to write to stderr
Also now writes all log messages to stderr if they are printed before
the log file is open, including when using the -p option.
* Added a configuration option to retain the user name if authentication
fails (which is probably more helpful if you just mistype your password)
* Applied a modified version of the "wait for the X server" patch from guix
* No longer unnecessarily re-opens an already open X display interface.
Similarly removed a redundant "get root window" call
* Deleted some unused member variables and methods. Various other internal
clean-up
* Reverted the install location definition for the configuration file, as
the CMAKE_INSTALL_SYSCONFDIR wasn't right
* Added a "bug" note to the man page, for the reliance on sessreg, which
causes occasional misbehaviour for some people.
1.3.8 - 2022.03.01
* Fixed some bugs listed on bugs.gentoo.org:
832303 - failed to build with clang, Invalid suffix on string literal
580458 - open fd on /var/log/slim.log passed to session
* Fixed handling of log stream so that all the code uses the same instance
* Handle return values from calls, to clean up warn-unused-result warnings
* Fixed "sessions" config option (the earlier patch was incomplete)
* Several QA improvements
* Updated cmake config - use standard install paths, don't force options
1.3.7 - 2022.01.30
* Imported several bug fixes from the Gentoo package:
libslim-cmake-fixes
disable-ck-for-systemd
reinstate sessions config option as an alternative to sessiondir
systemd session compatibility
remove zlib dependency
envcpy-bad-pointer-arithmetic patch
add-missing-libgen_h
wrong comparison for XCreateGC error return (GCC11 needs it fixed!)
* Fixed a bug in handling expired user accounts with PAM
* Show a message on login failure (using the same method as slimlock)
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jun 26, 2023
- Adding 'center' relay message - Adding focus-main key binding - Adding actions to switch between monitors and move windows between monitors - Adding window rule field for 'initial_placement' - Fixing old and annoying bug around window unmapping - Adding floating option (resolves #4)
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jul 23, 2023
pkgsrc change: update HOMEPAGE. 1.14.0 (2023-07-18) What's Changed * Prefer GitHub Actions for CI. by @ioquatix in #2 * Prefer lower case headers. by @ioquatix in #3 * Documentation updates by @HeroProtagonist in #7 * Update doc generation and deploy to github pages by @HeroProtagonist in #8 * Fix gh pages workflow by @HeroProtagonist in #9 * Adds Ruby 3.2 to the CI matrix by @petergoldstein in #12 * test: Add explicit 'timeout' require by @thesamesam in #14 * Refer to github not rubyforge in docs [ci skip] by @olleolleolle in #15 * Prefer Rack::Headers for Rack 3. by @ioquatix in #4 * Remove unnecessary duplicate lines by @monfresh in #10 New Contributors * @ioquatix made their first contribution in #2 * @HeroProtagonist made their first contribution in #7 * @petergoldstein made their first contribution in #12 * @thesamesam made their first contribution in #14 * @olleolleolle made their first contribution in #15 * @monfresh made their first contribution in #10
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Aug 3, 2023
What's Changed - fix: update piratebay API URL by @tsirysndr in #4 - chore: setup nix flake and devcontainer by @tsirysndr in #5
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jan 11, 2024
- pkgsrc changes
convert HOME PAGE (may not be necessary)
- upstream change (by previous commit, sorry)
Written by:
Sullivan Beck (sbeck@cpan.org)
Any suggestions, bug reports, or donations :-) should be sent to me.
1.10 2023-03-07
- A number of modules were included as test dependencies that are only used
by the author when preparing releases. These have been removed as
dependencies. Petr Pisar on GitHub #3
- Added github tags for all releases. Tomasz Kloczko on GitHub #4
- Fixed a bug where feature wasn't working correctly.
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jan 25, 2024
v0.4.1 What's Changed - Execute expressions from the command line by @OchirErkhembayar in #4 - Tokenise as needed instead of collecting tokens by @OchirErkhembayar in #5 v0.3.0 What's Changed - Add assignment statements and rc file by @OchirErkhembayar in #3
netbsd-srcmastr
pushed a commit
that referenced
this pull request
May 26, 2024
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jul 19, 2024
pkgsrc change: fix ALTERNATIVES (stop warning from pkglint). 0.9 (2024-07-02) * Updated for compatibility with minitar 0.9. Provided in #4 by david22swan. Thanks!
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Nov 24, 2024
version 2.22: Mon 18 Nov 11:08:22 CET 2024 Fixes: - To/Cc/Bcc/From fields may appear only once. github issue #4 [Michael Schout] Improvements: - add .gitignore
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Dec 13, 2024
1.0.7 (2024-12-08) * PR #4: Port to PHP 8
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jan 30, 2025
## 0.1.4 * Using Integer instead of Int in LRUCache. ## 0.1.3 * Simplify `maybeOpenRxWindow` and improve docs [#7](kazu-yamamoto/network-control#7) ## 0.1.2 * introducing a minimum size for window update [#5](kazu-yamamoto/network-control#5) ## 0.1.1 * Change defaultMaxData [#4](kazu-yamamoto/network-control#4)
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jan 30, 2025
## 0.3.0 * Breaking change: fillFileBodyGetNext takes Sentinel instead of IO () to close files on time. ## 0.2.1 * Add outBodyCancel to OutBodyIface [#11](kazu-yamamoto/http-semantics#11) * Documentation improvement. [#10](kazu-yamamoto/http-semantics#10) [#11](kazu-yamamoto/http-semantics#11) ## 0.2.0 * Introduce `responseStreamingIface` [#9](kazu-yamamoto/http-semantics#9) ## 0.1.2 * Avoid buffer overflow in fillBufBuilderOne [#4](kazu-yamamoto/http-semantics#4) ## 0.1.1 * Avoid buffer overflow in runStreamingBuilder [#3](kazu-yamamoto/http-semantics#3) ## 0.1.0 * Make it possible to guarantee that final DATA frame is marked end-of-stream. [#2](kazu-yamamoto/http-semantics#2) ## 0.0.1 * Defining getResponseBodyChunk'. [#1](kazu-yamamoto/http-semantics#1)
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Feb 24, 2025
0.1.8 (2025-02-13) * PD-49865 set Cortex tags to identify repo exposure (#4)
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Feb 24, 2025
0.1.9 (2025-02-13) * PD-49865 set Cortex tags to identify repo exposure (#4)
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Jul 26, 2025
2.1.1 (2025-07-10) What's Changed * Use GitHub Actions instead of Travis CI. by @hsbt in #4 * Unify OS environments for GitHub Actions by @hsbt in #9 * gemspec: Set executables to the empty list by @olleolleolle in #10 * Add dependency to gdbm package on mingw by @larskanis in #6 * Use GPL-2.0-or-later instead of Ruby and BSDL2 by @hsbt in #11 * Added dependabot.yml for actions by @hsbt in #12 * Bump actions/checkout from 2 to 3 by @dependabot in #13 * Bump actions/checkout from 3 to 4 by @dependabot in #14 * Update by @nobu in #16 * Exclude < Ruby 2.5 from macos-latest by @hsbt in #17 * Update README.md by @metacritical in #15 New Contributors * @olleolleolle made their first contribution in #10 * @larskanis made their first contribution in #6 * @dependabot made their first contribution in #13 * @nobu made their first contribution in #16 * @metacritical made their first contribution in #15
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Aug 2, 2025
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Aug 11, 2025
2.0.2 (2025-06-17) What's Changed * chore: update Github Actions to newer version and add dependabot by @saiqulhaq in #4 * Update simplecov requirement from ~> 0.19.0 to ~> 0.22.0 by @dependabot in #5 * Update rubocop requirement from ~> 1.66.0 to ~> 1.67.0 by @dependabot in #6 * Update rubocop requirement from ~> 1.67.0 to ~> 1.68.0 by @dependabot in #7 * Update rubocop requirement from ~> 1.68.0 to ~> 1.69.1 by @dependabot in #8 * Update rubocop requirement from ~> 1.69.1 to ~> 1.70.0 by @dependabot in #9 * Update rubocop requirement from ~> 1.70.0 to ~> 1.71.0 by @dependabot in #10 * Update rubocop requirement from ~> 1.71.0 to ~> 1.72.2 by @dependabot in #11 * Update rubocop requirement from ~> 1.72.2 to ~> 1.73.2 by @dependabot in #12 * Update rubocop requirement from ~> 1.73.2 to ~> 1.74.0 by @dependabot in #13 * Update rubocop requirement from ~> 1.74.0 to ~> 1.75.1 by @dependabot in #14 * Update rubocop requirement from ~> 1.75.1 to ~> 1.76.1 by @dependabot in #15 * CI: Prepare Trusted Publisher for RubyGems by @djsmentya in #16 New Contributors * @saiqulhaq made their first contribution in #4 * @dependabot made their first contribution in #5 * @djsmentya made their first contribution in #16
netbsd-srcmastr
pushed a commit
that referenced
this pull request
Dec 4, 2025
What's Changed
Bump clap from 4.4.16 to 4.4.17 by dependabot[bot] in #4
Add .rustfmt.toml by akiomik in #5
Bump nostr-sdk version to 0.27 by akiomik in #6
Use nostr_sdk::Metadata instead of create::nostr::Metadata by akiomik in #7
Use nip-21 by akiomik in #8
Add NetBSD, fix typo and grammar by 0323pin in #9
Bump clap from 4.4.17 to 4.4.18 by dependabot[bot] in #12
Bump chrono from 0.4.31 to 0.4.33 by dependabot[bot] in #13
Bump serde from 1.0.195 to 1.0.196 by dependabot[bot] in #15
Bump serde_json from 1.0.111 to 1.0.113 by dependabot[bot] in #16
Bump strum from 0.25.0 to 0.26.1 by dependabot[bot] in #14
Bump config from 0.13.4 to 0.14.0 by dependabot[bot] in #18
Bump tokio from 1.35.1 to 1.36.0 by dependabot[bot] in #20
Bump ratatui version to v0.26.0 by akiomik in #21
Bump ratatui from 0.26.0 to 0.26.1 by dependabot[bot] in #24
Bump tui-widget-list from 0.7.0 to 0.7.1 by dependabot[bot] in #23
Bump clap from 4.5.0 to 4.5.1 by dependabot[bot] in #27
Bump chrono from 0.4.33 to 0.4.34 by dependabot[bot] in #22
Bump serde_json from 1.0.113 to 1.0.114 by dependabot[bot] in #30
Bump serde from 1.0.196 to 1.0.197 by dependabot[bot] in #29
Bump mio from 0.8.10 to 0.8.11 by dependabot[bot] in #33
Bump log from 0.4.20 to 0.4.21 by dependabot[bot] in #32
Bump strum from 0.26.1 to 0.26.2 by dependabot[bot] in #36
Bump chrono from 0.4.34 to 0.4.35 by dependabot[bot] in #35
Bump clap from 4.5.1 to 4.5.2 by dependabot[bot] in #34
Bump clap from 4.5.2 to 4.5.3 by dependabot[bot] in #39
Bump color-eyre from 0.6.2 to 0.6.3 by dependabot[bot] in #38
Bump regex from 1.10.3 to 1.10.4 by dependabot[bot] in #40
Bump tokio from 1.36.0 to 1.37.0 by dependabot[bot] in #43
Bump serde_json from 1.0.114 to 1.0.115 by dependabot[bot] in #42
Bump chrono from 0.4.35 to 0.4.37 by dependabot[bot] in #41
Bump h2 from 0.3.24 to 0.3.26 by dependabot[bot] in #44
Bump clap from 4.5.3 to 4.5.4 by dependabot[bot] in #45
Bump ratatui from 0.26.1 to 0.26.2 by dependabot[bot] in #48
Bump rstest from 0.18.2 to 0.19.0 by dependabot[bot] in #46
Bump chrono from 0.4.37 to 0.4.38 by dependabot[bot] in #47
Bump serde from 1.0.197 to 1.0.198 by dependabot[bot] in #52
Bump rustls from 0.21.10 to 0.21.11 in the cargo group across 1 directory by dependabot[bot] in #50
Bump serde_json from 1.0.115 to 1.0.116 by dependabot[bot] in #51
Bump human-panic from 1.2.3 to 2.0.0 by dependabot[bot] in #53
Bump serde from 1.0.198 to 1.0.199 by dependabot[bot] in #55
Bump unicode-width from 0.1.11 to 0.1.12 by dependabot[bot] in #54
Bump tokio-util from 0.7.10 to 0.7.11 by dependabot[bot] in #59
Bump serde from 1.0.199 to 1.0.200 by dependabot[bot] in #58
Bump libc from 0.2.153 to 0.2.154 by dependabot[bot] in #56
Bump serde_json from 1.0.116 to 1.0.117 by dependabot[bot] in #62
Bump serde from 1.0.200 to 1.0.201 by dependabot[bot] in #61
Fix clippy::assigning_clones by akiomik in #69
Use rust-toolchainstable instead of nightly by akiomik in #68
Bump serde from 1.0.201 to 1.0.203 by dependabot[bot] in #67
Bump ratatui from 0.26.2 to 0.26.3 by dependabot[bot] in #65
Bump libc from 0.2.154 to 0.2.155 by dependabot[bot] in #64
Bump tokio from 1.37.0 to 1.38.0 by dependabot[bot] in #72
Bump rstest from 0.19.0 to 0.21.0 by dependabot[bot] in #71
Bump clap from 4.5.4 to 4.5.7 by dependabot[bot] in #76
Bump regex from 1.10.4 to 1.10.5 by dependabot[bot] in #73
Bump nostr-sdk version to 0.28.0 by akiomik in #77
Bump unicode-width from 0.1.12 to 0.1.13 by dependabot[bot] in #75
Bump nostr-sdk version to 0.29 by akiomik in #78
Bump strum from 0.26.2 to 0.26.3 by dependabot[bot] in #81
Bump lazy_static from 1.4.0 to 1.5.0 by dependabot[bot] in #79
Bump clap from 4.5.7 to 4.5.8 by dependabot[bot] in #83
Bump serde_json from 1.0.117 to 1.0.120 by dependabot[bot] in #85
Bump serde from 1.0.203 to 1.0.204 by dependabot[bot] in #86
Bump log from 0.4.21 to 0.4.22 by dependabot[bot] in #89
Bump clap from 4.5.8 to 4.5.9 by dependabot[bot] in #92
Bump serde_json from 1.0.120 to 1.0.121 by dependabot[bot] in #94
Bump rstest from 0.21.0 to 0.22.0 by dependabot[bot] in #97
Bump human-panic from 2.0.0 to 2.0.1 by dependabot[bot] in #98
Bump serde_json from 1.0.121 to 1.0.125 by dependabot[bot] in #100
Bump clap from 4.5.9 to 4.5.16 by dependabot[bot] in #102
Bump libc from 0.2.155 to 0.2.158 by dependabot[bot] in #103
Bump regex from 1.10.5 to 1.10.6 by dependabot[bot] in #104
Bump tokio-util from 0.7.11 to 0.7.12 by dependabot[bot] in #105
Bump pretty_assertions from 1.4.0 to 1.4.1 by dependabot[bot] in #107
Bump serde_json from 1.0.125 to 1.0.132 by dependabot[bot] in #108
Bump human-panic from 2.0.1 to 2.0.2 by dependabot[bot] in #109
Bump config from 0.14.0 to 0.14.1 by dependabot[bot] in #110
Bump sorted-vec from 0.8.3 to 0.8.5 by dependabot[bot] in #111
Bump libc from 0.2.158 to 0.2.164 by dependabot[bot] in #112
Bump futures from 0.3.30 to 0.3.31 by dependabot[bot] in #114
Bump libc from 0.2.164 to 0.2.168 by dependabot[bot] in #116
Bump chrono from 0.4.38 to 0.4.39 by dependabot[bot] in #117
Bump tokio from 1.38.0 to 1.42.0 by dependabot[bot] in #118
Bump tracing-error from 0.2.0 to 0.2.1 by dependabot[bot] in #119
Bump serde from 1.0.204 to 1.0.217 by dependabot[bot] in #120
Bump tracing-subscriber from 0.3.18 to 0.3.19 by dependabot[bot] in #121
Bump serde_json from 1.0.132 to 1.0.137 by dependabot[bot] in #122
Bump regex from 1.10.6 to 1.11.1 by dependabot[bot] in #123
Bump log from 0.4.22 to 0.4.25 by dependabot[bot] in #124
Bump libc from 0.2.168 to 0.2.169 by dependabot[bot] in #126
Bump unicode-width from 0.1.13 to 0.2.0 by dependabot[bot] in #127
Bump serde_json from 1.0.137 to 1.0.139 by dependabot[bot] in #128
Bump libc from 0.2.169 to 0.2.170 by dependabot[bot] in #129
Bump ring from 0.17.7 to 0.17.13 in the cargo group by dependabot[bot] in #130
Bump config from 0.14.1 to 0.15.11 by dependabot[bot] in #131
Bump chrono from 0.4.39 to 0.4.40 by dependabot[bot] in #133
build: fix rust toolchain channel by akiomik in #135
Bump tokio from 1.42.0 to 1.43.1 in the cargo group by dependabot[bot] in #134
Bump log from 0.4.25 to 0.4.27 by dependabot[bot] in #136
Bump tokio from 1.43.1 to 1.44.2 by dependabot[bot] in #137
Bump clap from 4.5.16 to 4.5.18 by dependabot[bot] in #139
Bump strum from 0.26.3 to 0.27.1 by dependabot[bot] in #140
Bump chrono from 0.4.40 to 0.4.41 by dependabot[bot] in #141
Bump sorted-vec from 0.8.5 to 0.8.6 by dependabot[bot] in #142
Bump config from 0.15.11 to 0.15.13 by dependabot[bot] in #143
build(deps): bump tracing-subscriber from 0.3.19 to 0.3.20 in the cargo group by dependabot[bot] in #145
build(deps): bump tokio from 1.44.2 to 1.46.1 by dependabot[bot] in #144
build(deps): bump serde from 1.0.217 to 1.0.226 by dependabot[bot] in #148
build(deps): bump tokio-util from 0.7.12 to 0.7.16 by dependabot[bot] in #149
build(deps): bump directories from 5.0.1 to 6.0.0 by dependabot[bot] in #150
build(deps): bump color-eyre from 0.6.3 to 0.6.5 by dependabot[bot] in #151
build(deps): bump serde from 1.0.226 to 1.0.228 by dependabot[bot] in #152
fix: update human-panic API usage for v2.0 compatibility by akiomik in #153
test: fix config test to work with existing config files by akiomik in #154
build: upgrade Rust toolchain to 1.91.1 and fix clippy warnings by akiomik in #155
feat: update TUI dependencies with API compatibility fixes by akiomik in #156
refactor: migrate from deprecated ListableWidget to PreRender trait by akiomik in #157
feat: update TUI dependencies to latest versions by akiomik in #158
refactor: migrate to tui-widget-list ListView API and remove deprecated warnings by akiomik in #159
feat: upgrade nostr-sdk to 0.31.0 with Tag API migration by akiomik in #160
feat: add EventSet collection to replace manual event deduplication by akiomik in #161
feat: upgrade nostr-sdk to 0.32.0 and fix TagStandard API changes by akiomik in #162
feat: upgrade-nostr-sdk-to-0.33.0 by akiomik in #163
feat: upgrade nostr-sdk to 0.35.0 and fix deprecated API usage by akiomik in #164
feat: update nostr-sdk to 0.36.0 by akiomik in #165
feat: upgrade nostr-sdk to 0.37.0 by akiomik in #166
feat: upgrade nostr-sdk to 0.38.0 with API parameter fixes by akiomik in #167
feat: upgrade to nostr-sdk 0.39.0 with separate timeline and profile subscriptions by akiomik in #168
feat: upgrade to nostr-sdk 0.40.0 and simplify EventId::to_bech32() usage by akiomik in #169
feat: upgrade nostr-sdk to 0.44.0 by akiomik in #170
feat: add lib.rs by akiomik in #171
ci: add spelling workflow by akiomik in #172
chore: bump version to 0.1.1 by akiomik in #173
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
A simple command line program to send mail via SMTP protocol.