Projects
Kolab:16:TestingLinked
erlang-eimap
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 18
View file
erlang-eimap.spec
Changed
@@ -8,7 +8,7 @@ %define lock_version() %{1}%{?_isa} = %(rpm -q --queryformat "%%{VERSION}" %{1}) Name: erlang-%{realname} -Version: 0.4.3 +Version: 0.4.4 Release: 1%{?dist} Summary: Erlang IMAP client Group: Development/Libraries @@ -77,6 +77,9 @@ %changelog +* Mon May 05 2021 Christian Mollekopf <mollekopf@kolabsys.com> - 0.4.4-1 +- Upstream release 0.4.4 + * Wed Oct 28 2020 Christian Mollekopf <mollekopf@kolabsys.com> - 0.4.3-1 - Upstream release 0.4.3
View file
debian.changelog
Changed
@@ -1,3 +1,9 @@ +erlang-eimap (0.4.4-1.1) unstable; urgency=medium + + * Package the 0.4.4 release + + -- Christian Mollekopf <mollekopf@kolabsys.com> Mon, 31 May 2021 00:44:10 +0200 + erlang-eimap (0.4.3-1.1) unstable; urgency=medium * Package the 0.4.3 release
View file
erlang-eimap-0.4.3.tar.gz/CHANGELOG.md -> erlang-eimap-0.4.4.tar.gz/CHANGELOG.md
Changed
@@ -11,6 +11,10 @@ ### Fixed ### Security +## 0.4.4 - 2021-05-31 +### Fixed +- LITERAL+ support + ## 0.4.3 - 2020-10-28 ### Fixed - Throttle reading of responses if the target process's inbox is getting full.
View file
erlang-eimap-0.4.3.tar.gz/rebar.config -> erlang-eimap-0.4.4.tar.gz/rebar.config
Changed
@@ -13,7 +13,7 @@ %%{require_otp_vsn, "17"}. {pre_hooks, {clean, "rm -rf ebin priv erl_crash.dump"}}. -{ relx, { release, { eimap, "0.4.3" }, eimap}, +{ relx, { release, { eimap, "0.4.4" }, eimap}, { dev_mode, false }, { include_erts, false }
View file
erlang-eimap-0.4.3.tar.gz/src/eimap.app.src -> erlang-eimap-0.4.4.tar.gz/src/eimap.app.src
Changed
@@ -2,7 +2,7 @@ {application, eimap, { description, "IMAP client implementation" }, - { vsn, "0.4.3" }, + { vsn, "0.4.4" }, { registered, }, { applications, kernel,
View file
erlang-eimap-0.4.3.tar.gz/src/eimap_utils.erl -> erlang-eimap-0.4.4.tar.gz/src/eimap_utils.erl
Changed
@@ -123,7 +123,13 @@ { Buffer, 0 }; confirm_continuation(Buffer, OpenBracePos) -> BufferSize = size(Buffer), - try binary_to_integer(binary:part(Buffer, OpenBracePos + 1, BufferSize - OpenBracePos - 2)) of + % Strip any '+' following the literal size (due to LITERAL+) + LiteralSize = case binary:at(Buffer, BufferSize - 2) of + $+ -> binary:part(Buffer, OpenBracePos + 1, BufferSize - OpenBracePos - 3); + _ -> binary:part(Buffer, OpenBracePos + 1, BufferSize - OpenBracePos - 2) + end, + + try binary_to_integer(LiteralSize) of Result -> { binary:part(Buffer, 0, OpenBracePos), Result } catch _:_ -> { Buffer, 0 }
View file
erlang-eimap-0.4.3.tar.gz/test/eimap_utils_tests.erl -> erlang-eimap-0.4.4.tar.gz/test/eimap_utils_tests.erl
Changed
@@ -192,7 +192,8 @@ { <<"abcd{aa0}">>, { <<"abcd{aa0}">>, 0 } }, { <<"abcd{10aa0}">>, { <<"abcd{10aa0}">>, 0 } }, { <<"abcd100}">>, { <<"abcd100}">>, 0 } }, - { <<"abcd100}">>, { <<"abcd100}">>, 0 } } + { <<"abcd100}">>, { <<"abcd100}">>, 0 } }, + { <<"abcd{5+}">>, { <<"abcd">>, 5 } } , lists:foldl(fun({ Input, Output}, Acc) -> ?_assertEqual(Output, eimap_utils:num_literal_continuation_bytes(Input)) | Acc end, , Data).
View file
erlang-eimap.dsc
Changed
@@ -2,7 +2,7 @@ Source: erlang-eimap Binary: erlang-eimap Architecture: any -Version: 0.4.3-1.1 +Version: 0.4.4-1.1 Maintainer: Christoph Erhardt <kolab@sicherha.de> Homepage: https://git.kolab.org/diffusion/EI/eimap.git Standards-Version: 3.9.6 @@ -10,5 +10,5 @@ Package-List: erlang-eimap deb devel extra Files: - 00000000000000000000000000000000 0 erlang-eimap-0.4.3.tar.gz + 00000000000000000000000000000000 0 erlang-eimap-0.4.4.tar.gz 00000000000000000000000000000000 0 debian.tar.gz
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.