Skip to content
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

influxdb 1.7.5 #194

Closed
wants to merge 1 commit into from
Closed

Conversation

hww3
Copy link

@hww3 hww3 commented Apr 26, 2019

Hi, I've merged your port of influxdb with mine and updated it to 1.7.5. pkglint seems happy and I've tested it on Darwin and SmartOS.

Please have a look and let me know what you think. I'll incorporate any feedback in the other influx packages.

Also, if a diff or other format would be better, just let me know!

netbsd-srcmastr pushed a commit to NetBSD/pkgsrc that referenced this pull request May 15, 2019
InfluxDB is an open source time series database with no external
dependencies.  It is useful for recording metrics, events, and
performing analytics.

Patches and testing provided by Bill Welliver in TritonDataCenter#194
@jperkin
Copy link
Collaborator

jperkin commented May 15, 2019

This is now integrated, thanks!

@jperkin jperkin closed this May 15, 2019
@jperkin jperkin self-assigned this May 15, 2019
netbsd-srcmastr pushed a commit to NetBSD/pkgsrc that referenced this pull request May 19, 2019
InfluxDB is an open source time series database with no external
dependencies.  It is useful for recording metrics, events, and
performing analytics.

Patches and testing provided by Bill Welliver in TritonDataCenter#194
jperkin pushed a commit that referenced this pull request Jul 1, 2019
Changelog:
New Libraries

    Outcome: A set of tools for reporting and handling function failures in contexts where directly using C++ exception handling is unsuitable, from Niall Douglas.
    Histogram: Fast and extensible multi-dimensional histograms with convenient interface for C++14, from Hans Dembinski.

Updated Libraries

    Asio:
        This release includes a number of new features, bug fixes, performance enhancements, and documentation improvements. Notable changes include:
            Added the ability to use custom I/O executors with I/O objects (such as sockets).
            Added a new async_result form with an initiate static member function.
            Updated the Coroutines TS support and promoted it to the asio namespace.
            Added a new DynamicBuffer_v2 concept which is CopyConstructible.
            Added a new async_compose function that simplifies the implementation of user-defined asynchronous operations.
            Added a make_strand helper function.
            Relaxed the completion condition type requirements to only require move-constructibility rather than copy-constructibility.
            Added a constructor for local::basic_endpoint that takes a string_view.
            Added the noexcept qualifier to various functions.
            Added a new BOOST_ASIO_DISABLE_VISIBILITY configuration #define.
            Enabled recycling of the memory used to type-erase a function object with the polymorphic executor.
            Changed receive operations to return the correct number of bytes transferred when truncation (error::message_size) occurs on a datagram-oriented socket.
            Fixed calculation of absolute timeout when the backend uses pthread_cond_timedwait.
            Changed the range-based asynchronous connect operation to deduce the EndpointSequence iterator type.
            Fixed buffer_sequence_begin and buffer_sequence_end to prevent implicit conversion.
            Ensured SSL handshake errors are propagated to the peer before the local operation completes.
            Suppressed the eof error on SSL shutdown as it actually indicates success.
            Added a fallback error code for when we OpenSSL produces an SSL_ERROR_SYSCALL result without an associated error.
            Changed composed asynchronous read and write operations to move buffer sequence objects.
            Fixed a macOS-specific warning about the deprecation of OSMemoryBarrier.
            Fixed compile errors that occur when using the composed read and write operations with MSVC 11.0.
            Improved dispatch, post and defer documentation.
            Fixed a Windows-specific memory leak that may occur when system_executor is used.
        Consult the Revision History for further details.
    Beast: BIG Update!!!
        Some APIs have changed.
        The reference shows a star ★ next to each new item.
        Beast needs your help!
            Tell Us how you or your company use Beast
            Please report any bugs, feature requests, or general feedback
            Join the C++ Slack Workspace for free and chat with us in the #beast and #boost channels
            Don't forget to star the repository ⭐!
        More tutorials, code like the pros!
            Networking Refresher teaches you from the ground up.
            Updated Asynchronous Echo example
            Updated Detect SSL composed operation tutorial
            websocket-chat-multi threaded chat server with a JavaScript browser client
        basic_stream and tcp_stream offer:
            Timeouts: async_read_some, async_write_some complete with error::timeout on expiration!
            Traffic-shaping policies simple and unlimited, or a user-defined RatePolicy!
            Put the strand directly on the socket using P1322R0, no more bind_executor at call sites!
        Base classes async_base and stable_async_base and handle all composed operation boilerplate for you.
        ssl_stream provides a movable, assignable SSL stream with a flat write optimization.
        All asynchronous operations use Asio's async_initiate for efficient integration with Coroutines TS.
        ⚡ faster compilation, define BOOST_BEAST_SEPARATE_COMPILATION and #include <boost/beast/src.hpp> in one of your .cpp files!
        See the full Release Notes for a complete list of changes.
    Context:
        #91: cleanup of stack if creating ucontext fails
        #97: add missing BOST_CONTEXT_DECL in stack_context
        #98: fix jump_i386_sysv_macho writing garbage to the x87 control word
    Coroutine2:
        #28: don't crash on pthread_cancel
    DLL:
        New macro BOOST_DLL_USE_STD_FS. Define it to 1 to make the Boost.DLL use C++17's std::filesystem::path, std::system_error and std::error_code (#21). Note that exception types change from boost::system::system_error to std::system_error, so make sure to update catches.
        Significant rewrite of the dynamic loadable detection and decoration logic. More precise errors are now reported in case of loading failures. Added shared_library::decorate() function that returns a decorated path to the library without doing any platform related queries and detections. Prefer using shared_library::load and shared_library constructors for better results (many thanks to Loïc Touraine for the work PR#23).
        CI hardening, docs updates, typos fixes, cleanups and mg
        #196: fix high contention on remote_ready_splk_
    Filesystem:
        Fixed a few instances of dereferencing std::string::end() in path implementation.
        Fixed program termination in case of out of memory condition in directory iteratorsnce to error_code. (#58)
        Fixed possible linking errors caused by missing definitions of static members of path. (#12759)
        Fixed possible use of uninitialized data in directory iterator increment operation on Linux.
        Added support fortatus query overloads for directory_entry. This avoids a relatively expensive OS query when file status is requested for a result of dereferencing a directory iterator. (PR#55)
        Reworked current_path and read_symlink implementation to avoid possiblfilesystems. The functions now have an internal limit of the path size they will accept from the OS, which is currently 16 MiB.
        Increased the size of the internal buffer used by copy_file.
    Integer:
        Added Extended Euclidean Algorithm and Modular Multiplicative Inverse function. (Nick Thompson, PR#11)
    Log:
        New features:
            Added support for generating another log file name before collecting the file in the text file sink backend. This allows to combine appending to aexisting log file with timestamps and file counters in log filenames, and, consequently, file collection in general.
        See changelog for more details.
    Math:
        New features:
            Add Lanczos smoothing derivatives
            Move numols/ to boost/math/differentiation/finite_difference.hpp.
            Add mean, variance, skewness, kurtosis, median, Gini coefficient, and median absolute deviation to tools/univariate_statistics.hpp.
            Add correlation coefficients and covariand absolute Gini coefficient, Hoyer sparsity, oracle SNR, and the M[sub 2]M[sub 4] SNR estimator to tools/signal_statistics.hpp.
            Add total variation, l0, l1, l2, and sup norms, as well as corresponding distance functions to tools/norms.hpp.
   for polynomials, support complex coefficients, add .prime() and .integrate() methods.
            Add quadratic_roots to tools/roots.hpp.
            Add support for complex-valued functions to Newton's method in roots.hpp.
            Add Catmull-Rom inted mp_invoke to mp_invoke_q
        Added mp_similar
        Added mp_set_union, mp_set_intersection, mp_set_difference
        Added mp_not_fn
        Added mp_transform_first, mp_transform_second, mp_transform_third
        Added mp_filter
        Addedp_valid_q
        Added mp_back, mp_pop_back
    Multi-index Containers:
        size_type and difference_type are now defined as the allocator's same-named types. This will not make any difference in the vast majority of cases, but allows for some degreevia user-defined allocator types (see issue #17 for motivation). For the moment being, this change is not documented in the reference section (i.e., it has semi-official status).
        Maintenance work.
    Multiprecision:
        Fix various conversioncheck for compatibility with Boost.Optional.
        Prevent instantiation of std::numeric_limits on any old type when checking for convertibility. See #98.
        Update variable precision code to account for arbitrary precision integers. See #103.
    lization archives.
        Fix bug in fixed precision iostream formatting in mpf_float and mpfr_float. See #113.
        Add more overloads for special functions which are better handled natively by MPFR.
        Fixed bug in generic exp implementation wh.
        Fixed generic conversion from float to integer to avoid undefined behaviour. See #110.
    PolyCollection:
        Improved handling of stateful allocators and allocator propagation traits, after an error reported by Billy O'Neal (PR#9).
       ug with an internal cache structure.
    Spirit:
        Removed use of deprecated boost/detail/iterator.hpp header. PR#432
        X3
            Integer parsers should now handle user defined types. PR#429
            Note: The check_overflow trait defan std::numeric_limits<T>::is_bounded instead of boost::integer_traits<T>::is_integral.
            Removed sequence into plain parsing. Now it triggers a compile time error instead of silently parsing the the sequence and taking the last value as a resulte_rule instantiation with BOOST_SPIRIT_INSTANTIATE when:
                A rule has no attribute. PR#455
                An actual attribute is not of type a rule was declared with. PR#456 #457
            A huge thanks goes out to Xeverous for reporting    Fixed unneded attribute synthesization and no-transformation attribute reference pass-through in rules. #444 PR#449 PR#452
            Removed broken 1.0#INF parser. It was poorly documented and never worked. #415 PR#458 #8699
            The undocumenoved due to bugs PR#449 and to simplify attribute transformation. PR#460
            If you were using it to workaround bugs in attribute transformation - they should not be needed anymore as of this release.
            The integer value parser now respe10 value. PR#469
            Fixed underflow check for a (Min % Base) == 0 corner case. PR#469
            Fixed an output value on overflow of IgnoreOverflowDigits=true integer parser. PR#470
            Container attribute elements were copyied, but notial handling of references in transform_attribute was removed. PR#480
        V2
            Macro name collisions and namespace conflicts with Boost.Endian were fixed. PR#349 PR#482
            utree
                Fixed UB in tag getter due to left shi            Fixed double-conversion (spirit::string -> std::string -> spirit::string). PR#462
            Qi
                Added static asserts for rule skipper type problems. PR#427
                The check_overflow trait default implementation now reoost::integer_traits<T>::is_integral PR#429
                Integer parsers should now handle user defined types. PR#429
                Note: The check_overflow trait default implementation now relies on std::numeric_limits<T>::is_bounded instead of boosl.
                Removed broken 1.0#INF parser. It was poorly documented and never worked. #415 PR#458 #8699
                The undocumented make_attribute trait was merged into transform_attribute trait. PR#471
                The pre_transform, post_tility functions were removed in favor of directly using pre/post/fail of the transform trait. PR#467
                The integer value parser now respects std::numeric_limits<T>::digits10 value. PR#469
                Fixed underflow check for a (Min % B            Fixed an output value on overflow of IgnoreOverflowDigits=true integer parser. PR#470
                Special handling of references in transform_attribute was removed. PR#480
            Lex
                Fixed UB in default constructor of ken type. PR#420
        Classic:
            Fixed position_iterator forming reference to local when the underlying iterator dereference operator returns a non-reference type. PR#422 #9737
    Stacktrace:
        Build fix for iOS 32-bit ARM (many thanksng the fix PR#70)
        Fixed multiple typos, warnings and updated the docs.
    Test:
        Boost.test v3.10 see the Changes log for more details.
        Breaking changes:
            Boost.Test minimal.hpp is now showing a deprecation warning,
    omparison may fail tests that were silently not using the floating point comparison logic prior to this release,
            Internal API change to unit_test_log_formatter, see detailed change log,
        New feature:
            Floating point compariso non-floating point and arithmetic operands: expressions like BOOST_TEST(3.0001 == 3) now use floating point support of Boost.Test,
            Custom datasets are not required to declare the sample type field anymore,
            Extending template test riadic definition,
            Windows support for timed tests,
            Timed test on test-suites,
            Removed dependency to Boost.Timer,
            New macro BOOST_TEST_INFO_SCOPE for scoped context declaration,
            Improved BOOST_TE and pull requests:
            Trac tickets: #7397, #9434, #13106, #13418
            GitHub Issues: #133, #138, #141, #157, #160, #174, #176, #177, #180, #181, #194, #196, #198, #199, #202, #203, #204
            GitHub Pull Requests: PR#171, PR#172, PR PR#195, PR#195, PR#197, PR#205
    TypeIndex:
        Support for the GHS C++ compiler added (many thanks to Brandon Castellano for providing the patch PR#28)
        Optimized string and type comparisons (many thanks to Andrey Semashev for providing the-win compilation (many thanks to Peter Dimov for providing the patch PR#25)
        CI hardening.
    TypeTraits:
        Added is_bounded_array and is_unbounded_array (Glen Fernandes).
        Added copy_reference and copy_cv_ref (Glen Fernandes).
       /clr option.
        Misc compiler compatibility fixes.
    Variant:
        Many cleanups and internal improvements, many thanks to Nikita Kniazev (PR#55, PR#56, PR#57) and Louis Dionne (PR#51)
        CI hardening.
    uBlas:
        Addition of tensorassoy PR#65)
        Addition of basic OpenCL support (many thanks to Fady Essam PR#59)
        Integration of basic benchmark suite (many thanks to Stefan Seefeld PR#57)
        CI integration and hardening

Compilers Tested

Boost's primary test compileang: 3.0, 4.0.1, 6.0.1
        Clang, C++0x: 3.0
        Clang, C++11: 3.0, 3.1, 3.2, 3.3, 3.4, 4.0.1, 6.0.1, 7.0.0, 8.0.0
        Clang, C++14: 3.5.0, 3.6.0, 3.7.1, 3.8.0, 3.9.1, 4.0.0, 4.0.1, 5.0.2, 6.0.1, 7.0.0, 8.0.0
        Clang, C++17: 5.0.2, 6.0.17, 4.5.3, 4.6.3, 5.4.0, 8.0.1
        GCC, C++0x: 4.4.7
        GCC, C++11: 4.7.3, 4.8.5, 4.9.4, 5.4.0, 6.4.0, 7.1.0, 8.0.1
        GCC, C++14: 5.4.0, 5.5.0, 6.4.0, 7.1.0, 7.3.0, 8.0.1
        GCC, C++17: 7.3.0, 8.0.1
        Intel, C++14: 18.0
    OS X:
, 9.1.0, 10.0.0
        Apple Clang, C++11: 9.0.0, 9.1.0, 10.0.0
        Apple Clang, C++14: 9.0.0, 9.1.0, 10.0.0
        Apple Clang, C++17: 9.1.0, 10.0.0
        Apple Clang, C++1z: 9.0.0
        Apple Clang, C++2a: 10.0.0
    Windows:
        GCC: 3.4.4.0, 4.5.4
        GCC, C++0x: 4.6.4
        GCC, C++11: 4.7.3, 4.8.1, 4.9.3
        GCC, C++14: 5.1.0, 5.2.0, 5.3.0, 6.1.0, 6.2.0, 6.3.0, 6.4.0
        GCC, C++17: 7.1.0, 7.2.0, 7.3.0
        Visual C++: 7.1, 8.0, 9.0, 10.0, 11.0, 12.0, 14.0, 14.1
    Fr
        Clang, C++11: 4.0.0
        Clang, C++14: 4.0.0
        Clang, C++1z: 4.0.0

Boost's additional test compilers include:

    Linux:
        Clang: 3.0, 3.8.1, 3.9.1, 4.0.1, 5.0.2, 6.0.1
        Clang, C++0x: 3.0
        Clang, C++11: 3.0, 3.1, 3..0.0, 8.0.0
        Clang, C++14: 3.5.0, 3.6.0, 3.7.1, 3.8.0, 3.9.1, 4.0.0, 4.0.1, 5.0.2, 6.0.1, 7.0.0, 8.0.0
        Clang, C++17: 5.0.2, 6.0.1, 7.0.0, 8.0.0
        GCC: 4.4.7, 4.5.3, 4.6.3, 4.9.4, 5.4.0, 5.5.0, 8.0.1
        GCC, C++0x: 4.4.7
        G9.4, 5.4.0, 6.4.0, 7.1.0, 8.0.1
        GCC, C++14: 5.4.0, 5.5.0, 6.3.0, 6.4.0, 7.1.0, 7.3.0, 8.0.1, 8.1.0
        GCC, C++17: 7.3.0, 8.0.1
        Intel, C++14: 18.0
    OS X:
        Apple Clang: 9.0.0, 9.1.0, 10.0.0
        Apple Clang, C++11: 9.0.0, 9ang, C++14: 9.0.0, 9.1.0, 10.0.0
        Apple Clang, C++17: 9.1.0, 10.0.0
        Apple Clang, C++1z: 9.0.0
        Apple Clang, C++2a: 10.0.0
    Windows:
        GCC: 3.4.5, 4.1.2, 4.2.4, 4.3.3, 4.4.0, 4.5.4
        GCC, C++0x: 4.6.4
        GCC, C++11 GCC, C++14: 5.1.0, 5.2.0, 5.3.0, 6.1.0, 6.2.0, 6.3.0, 6.4.0
        GCC, C++17: 7.1.0, 7.2.0, 7.3.0
        Visual C++: 7.1, 8.0, 9.0, 10.0, 11.0, 12.0, 14.0, 14.1
    FreeBSD:
        Clang: 4.0.0
        Clang, C++11: 4.0.0
        Clang, C++14: 4.0.0
jperkin pushed a commit that referenced this pull request Jan 3, 2020
1.2.4.0
* Add TH Lift instances for Data.Text.Text and Data.Text.Lazy.Text
  (gh-232)
* Update Haddock documentation to better reflect fusion eligibility;
  improve fusion rules for takeWhileEnd and length (gh-241, ghc-202)
* Optimise Data.Text.replicate from O(n) to O(log n) (gh-209)
* Support base-4.13.0.0

1.2.3.1
* Make decodeUtf8With fail explicitly for unsupported non-BMP
  replacement characters instead silent undefined behaviour (gh-213)
* Fix termination condition for file reads via Data.Text.IO operations
  (gh-223)
* A serious correctness issue affecting uses of take and drop with
  negative counts has been fixed (gh-227)
* A bug in the case-mapping functions resulting in unreasonably large
  allocations with large arguments has been fixed (gh-221)

1.2.3.0
* Spec compliance: toCaseFold now follows the Unicode 9.0 spec
  (updated from 8.0).
* Bug fix: the lazy takeWhileEnd function violated the lazy text
  invariant (gh-184).
* Bug fix: Fixed usage of size hints causing incorrect behavior
  (gh-197).
* New function: unsnoc (gh-173).
* Reduce memory overhead in encodeUTF8 (gh-194).
* Improve UTF-8 decoder error-recovery (gh-182).
* Minor documentation improvements (@SInCE annotations, more examples,
  clarifications).

1.2.2.2
* The toTitle function now correctly handles letters that immediately
  follow punctuation. Before, "there's" would turn into
  "There'S". Now, it becomes "There's".
* The implementation of unstreaming is faster, resulting in operations
  such as map and intersperse speeding up by up to 30%, with smaller
  code generated.
* The optimised length comparison function is now more likely to be
  used after some rewrite rule tweaking.
* Bug fix: an off-by-one bug in takeEnd is fixed.
* Bug fix: a logic error in takeWord16 is fixed.

1.2.2.1
* The switch to integer-pure in 1.2.2.0 was apparently mistaken. The
  build flag has been renamed accordingly. Your army of diligent
  maintainers apologizes for the churn.
* Spec compliance: toCaseFold now follows the Unicode 8.0 spec
  (updated from 7.0)
* An STG lint error has been fixed
jperkin pushed a commit that referenced this pull request Mar 7, 2020
ChangeLog:

v5.6.2

Bug fixes:

    #271 fixes a corner-case bug with more than 100 CSV/TSV files with
    headers of varying lengths.

Documentation:

    The new http://johnkerl.org/miller/doc/whyc-details.html is an
    elaboration on http://johnkerl.org/miller/doc/whyc.html which answers
    a question posed by @BurntSushi on Reddit a couple years ago which
    I did not address in detail at the time.

v5.6.1

    The only change is that http://johnkerl.org/miller/doc is now
    more mobile-friendly.  All build artifacts are the same as at
    https://github.com/johnkerl/miller/releases/tag/v5.6.0

v5.6.0

    The new system DSL function allows you to run arbitrary shell commands
    and store them in field values. Some example usages are documented
    here. This is in response to issues #246 and #209.

    There is now support for ASV and USV file formats. This is in response
    to issue #245.

    The new format-values verb allows you to apply numerical formatting
    across all record values. This is in response to issue #252.

Documentation:

    The new DKVP I/O in Python sample code now works for Python 2 as
    well as Python 3.

    There is a new cookbook entry on doing multiple joins. This is in
    response to issue #235.

Bugfixes:

    The toupper, tolower, and capitalize DSL functions
    are now UTF-8 aware, thanks to @sheredom's marvelous
    https://github.com/sheredom/utf8.h. The internationalization page
    has also been expanded. This is in response to issue #254.

    #250 fixes a bug using in-place mode in conjunction with verbs
    (such as rename or sort) which take field-name lists as arguments.

    #253 fixes a bug in the label when one or more names are common
    between old and new.

    #251 fixes a corner-case bug when (a) input is CSV; (b) the last
    field ends with a comma and no newline; (c) input is from standard
    input and/or --no-mmap is supplied.

v5.5.0

    The new positional-indexing feature resolves #236 from @aborruso. You
    can now get the name of the 3rd field of each record via $[[3]], and
    its value by $[[[3]]]. These are both usable on either the left-hand
    or right-hand side of assignment statements, so you can more easily
    do things like renaming fields progrmatically within the DSL.

    There is a new capitalize DSL function, complementing the
    already-existing toupper. This stems from #236.

    There is a new skip-trivial-records verb, resolving #197. Similarly,
    there is a new remove-empty-columns verb, resolving #206. Both are
    useful for data-cleaning use-cases.

    Another pair is #181 and #256. While Miller uses mmap internally
    (and invisibily) to get approximately a 20% performance boost over
    not using it, this can cause out-of-memory issues with reading either
    large files, or too many small ones. Now, Miller automatically avoids
    mmap in these cases. You can still use --mmap or --no-mmap if you
    want manual control of this.

    There is a new --ivar option for the nest verb which complements
    the already-existing --evar. This is from #260 thanks to @jgreely.

    There is a new keystroke-saving urandrange DSL function:
    urandrange(low, high) is the same as low + (high - low) *
    urand(). This arose from #243.

    There is a new -v option for the cat verb which writes a low-level
    record-structure dump to standard error.

    There is a new -N option for mlr which is a keystroke-saver for
    --implicit-csv-header --headerless-csv-output.

Documentation:

    The new FAQ entry
    http://johnkerl.org/miller/doc/faq.html#How_to_escape_'%3F'_in_regexes%3F
    resolves #203.

    The new FAQ entry
    http://johnkerl.org/miller/doc/faq.html#How_can_I_filter_by_date%3F
    resolves #208.

    #244 fixes a documentation issue while highlighting the need for #241.

Bugfixes:

    There was a SEGV using nest within then-chains, fixed in response
    to #220.

    Quotes and backslashes weren't being escaped in JSON output with
    --jvquoteall; reported on #222.

v5.4.0

    The new clean-whitespace verb resolves #190 from @aborruso. Along with
    the new functions strip, lstrip, rstrip, collapse_whitespace, and
    clean_whitespace, there is now both coarse-grained and fine-grained
    control over whitespace within field names and/or values. See the
    linked-to documentation for examples.

    The new altkv verb resolves #184 which was originally opened via an
    email request. This supports mapping value-lists such as a,b,c,d to
    alternating key-value pairs such as a=b,c=d.

    The new fill-down verb resolves #189 by @aborruso. See the linked-to
    documentation for examples.

    The uniq verb now has a uniq -a which resolves #168 from @sjackman.

    The new regextract and regextract_or_else functions resolve #183
    by @aborruso.

    The new ssub function arises from #171 by @dohse, as a simplified way
    to avoid escaping characters which are special to regular-expression
    parsers.

    There are new localtime functions in response to #170 by
    @sitaramc. However note that as discussed on #170 these do
    not undo one another in all circumstances. This is a non-issue
    for timezones which do not do DST. Otherwise, please use with
    disclaimers: localdate, localtime2sec, sec2localdate, sec2localtime,
    strftime_local, and strptime_local.

Builds:

    Windows build-artifacts are now available in Appveyor at
    https://ci.appveyor.com/project/johnkerl/miller/build/artifacts,
    and will be attached to this and future releases. This resolves #167,
    #148, and #109.

    Travis builds at https://travis-ci.org/johnkerl/miller/builds now
    run on OSX as well as Linux.

    An Ubuntu 17 build issue was fixed by @singalen on #164.

Documentation:

    put/filter documentation was confusing as reported by @NikosAlexandris
    on #169.

    The new FAQ entry
    http://johnkerl.org/miller-releases/miller-head/doc/faq.html#How_to_rectangularize_after_joins_with_unpaired?
    resolves #193 by @aborruso.

    The new cookbook entry
    http://johnkerl.org/miller/doc/cookbook.html#Options_for_dealing_with_duplicate_rows
    arises from #168 from @sjackman.

    The unsparsify documentation had some words missing as reported by
    @tst2005 on #194.

    There was a typo in the cookpage page
    http://johnkerl.org/miller/doc/cookbook.html#Full_field_renames_and_reassigns
    as fixed by @tst2005 in #192.

Bugfixes:

    There was a memory leak for TSV-format files only as reported by
    @treynr on #181.

    Dollar sign in regular expressions were not being escaped properly
    as reported by @dohse on #171.

v5.3.0

    Comment strings in data files: mlr --skip-comments allows
    you to filter out input lines starting with #, for all file
    formats. Likewise, mlr --skip-comments-with X lets you specify
    the comment-string X. Comments are only supported at start of data
    line. mlr --pass-comments and mlr --pass-comments-with X allow you
    to forward comments to program output as they are read.

    The count-similar verb lets you compute cluster sizes by cluster
    labels.

    While Miller DSL arithmetic gracefully overflows from 64-integer
    to double-precision float (see also here), there are now the
    integer-preserving arithmetic operators .+ .- .* ./ .// for those
    times when you want integer overflow.

    There is a new bitcount function: for example, echo x=0xf0000206 |
    mlr put '$y=bitcount($x)' produces x=0xf0000206,y=7.

    Issue 158: mlr -T is an alias for --nidx --fs tab, and mlr -t is an
    alias for mlr --tsvlite.

    The mathematical constants π and e have been renamed from PI and
    E to M_PI and M_E, respectively. (It's annoying to get a syntax
    error when you try to define a variable named E in the DSL, when
    A through D work just fine.) This is a backward incompatibility,
    but not enough of us to justify calling this release Miller 6.0.0.

Documentation:

    As noted here, while Miller has its own DSL there will always be
    things better expressible in a general-purpose language. The new page
    Sharing data with other languages shows how to seamlessly share data
    back and forth between Miller, Ruby, and Python. SQL-input examples
    and SQL-output examples contain detailed information the interplay
    between Miller and SQL.

    Issue 150 raised a question about suppressing numeric conversion. This
    resulted in a new FAQ entry How do I suppress numeric conversion?,
    as well as the longer-term follow-on issue 151 which will make
    numeric conversion happen on a just-in-time basis.

    To my surprise, csvlite format options weren’t listed in mlr --help
    or the manpage. This has been fixed.

    Documentation for auxiliary commands has been expanded, including
    within the manpage.

Bugfixes:

    Issue 159 fixes regex-match of literal dot.

    Issue 160 fixes out-of-memory cases for huge files. This is an old
    bug, as old as Miller, and is due to inadequate testing of huge-file
    cases. The problem is simple: Miller prefers memory-mapped I/O
    (using mmap) over stdio since mmap is fractionally faster. Yet as
    any processing (even mlr cat) steps through an input file, more and
    more pages are faulted in -- and, unfortunately, previous pages are
    not paged out once memory pressure increases. (This despite gallant
    attempts with madvise.) Once all processing is done, the memory is
    released; there is no leak per se. But the Miller process can crash
    before the entire file is read. The solution is equally simple: to
    prefer stdio over mmap for files over 4GB in size. (This 4GB threshold
    is tunable via the --mmap-below flag as described in the manpage.)

    Issue 161 fixes a CSV-parse error (with error message "unwrapped
    double quote at line 0") when a CSV file starts with the UTF-8
    byte-order-mark ("BOM") sequence 0xef 0xbb 0xbf and the header line
    has double-quoted fields. (Release 5.2.0 introduced handling for
    UTF-8 BOMs, but missed the case of double-quoted header line.)

    Issue 162 fixes a corner case doing multi-emit of aggregate variables
    when the first variable name is a typo.

    The Miller JSON parser used to error with Unable to parse JSON data:
    Line 1 column 0: Unexpected 0x00 when seeking value on empty input,
    or input with trailing whitespace; this has been fixed.
jperkin pushed a commit that referenced this pull request Mar 25, 2020
Update ruby-rbnacl to 7.1.1.


## [7.1.1] (2020-01-27)

- Test on Ruby 2.7 ([#208])
- Add project metadata to the gemspec ([#207])
- Resolve FFI deprecation warning ([#206])

## [7.1.0] (2019-09-07)

- Attached signature API ([#197], [#202])
- Fix the `generichash` state definition ([#200])

## [7.0.0] (2019-05-23)

- Drop support for Ruby 2.2 ([#194])

## [6.0.1] (2019-01-27)

- Add fallback `sodium_constants` for Argon2 ([#189])
- Support libsodium versions used by Heroku ([#186])
- Sealed boxes ([#184])
jperkin pushed a commit that referenced this pull request Mar 25, 2020
Update ruby-puppet-resource_api to 1.8.12.

## [1.8.7](https://github.com/puppetlabs/puppet-resource_api/tree/1.8.7) (2019-09-11)
[Full Changelog](puppetlabs/puppet-resource_api@1.8.6...1.8.7)

**Fixed bugs:**

- \(FM-8092\) Fix caching scope of transport schemas [\#200](puppetlabs/puppet-resource_api#200) ([DavidS](https://github.com/DavidS))

**Merged pull requests:**

- \(FM-8485\) - Addition of CODEOWNERS file [\#203](puppetlabs/puppet-resource_api#203) ([david22swan](https://github.com/david22swan))
- \(MODULES-9258\) Improve referencing and add summary [\#199](puppetlabs/puppet-resource_api#199) ([MaxMagill](https://github.com/MaxMagill))
- \(maint\) Pin both Jruby cells to use `dist: trusty` [\#197](puppetlabs/puppet-resource_api#197) ([da-ar](https://github.com/da-ar))

## [v1.8.6](https://github.com/puppetlabs/puppet-resource_api/tree/v1.8.6) (2019-07-01)
[Full Changelog](puppetlabs/puppet-resource_api@1.8.5...v1.8.6)

**Implemented enhancements:**

- \(SERVER-2470\) list\_all\_transports implementation for puppetserver [\#187](puppetlabs/puppet-resource_api#187) ([DavidS](https://github.com/DavidS))

**Fixed bugs:**

- \(MODULES-9428\) make the composite namevar implementation usable [\#174](puppetlabs/puppet-resource_api#174) ([DavidS](https://github.com/DavidS))

**Merged pull requests:**

- Merge 1.6.x [\#194](puppetlabs/puppet-resource_api#194) ([da-ar](https://github.com/da-ar))
- \(maint\) test fixes [\#193](puppetlabs/puppet-resource_api#193) ([DavidS](https://github.com/DavidS))
- \(packaging\) Revert to version '1.8.5' \[no-promote\] [\#192](puppetlabs/puppet-resource_api#192) ([gimmyxd](https://github.com/gimmyxd))
- \(packaging\) Bump to version '1.9.0' \[no-promote\] [\#191](puppetlabs/puppet-resource_api#191) ([gimmyxd](https://github.com/gimmyxd))

## [1.8.5](https://github.com/puppetlabs/puppet-resource_api/tree/1.8.5) (2019-06-24)
[Full Changelog](puppetlabs/puppet-resource_api@1.8.4...1.8.5)

**Fixed bugs:**

- \(maint\) Mergeup 1.6.x: FM-7839, desc/docs cleanup [\#186](puppetlabs/puppet-resource_api#186) ([DavidS](https://github.com/DavidS))

**Merged pull requests:**

- \(maint\) reduce debug noise caused by `feature?` [\#189](puppetlabs/puppet-resource_api#189) ([da-ar](https://github.com/da-ar))
- \(FM-8265\) Merge branch '1.6.x' into master [\#188](puppetlabs/puppet-resource_api#188) ([da-ar](https://github.com/da-ar))
- \(maint\) test fixes [\#185](puppetlabs/puppet-resource_api#185) ([DavidS](https://github.com/DavidS))
- \(maint\) make test order really random [\#175](puppetlabs/puppet-resource_api#175) ([DavidS](https://github.com/DavidS))
- \(packaging\) Update reported version to 1.8.4 \[no-promote\] [\#171](puppetlabs/puppet-resource_api#171) ([gimmyxd](https://github.com/gimmyxd))

## [1.8.4](https://github.com/puppetlabs/puppet-resource_api/tree/1.8.4) (2019-06-12)
[Full Changelog](puppetlabs/puppet-resource_api@1.8.3...1.8.4)

**Implemented enhancements:**

- \(FM-7839\) Implement `to\_json` method for ResourceShim [\#168](puppetlabs/puppet-resource_api#168) ([da-ar](https://github.com/da-ar))

**Fixed bugs:**

- \(maint\) backport minor fixes from master to 1.6.x [\#184](puppetlabs/puppet-resource_api#184) ([DavidS](https://github.com/DavidS))
- \(PUP-9747\) Relax validation for bolt [\#182](puppetlabs/puppet-resource_api#182) ([DavidS](https://github.com/DavidS))
- \(maint\) Add to\_hash function to resourceShim for compatibility [\#180](puppetlabs/puppet-resource_api#180) ([da-ar](https://github.com/da-ar))
- \(maint\) implement `desc`/`docs` fallback [\#177](puppetlabs/puppet-resource_api#177) ([DavidS](https://github.com/DavidS))

**Closed issues:**

- ResourceShim should respond to to\_hash [\#179](puppetlabs/puppet-resource_api#179)

**Merged pull requests:**

- \(maint\) Merge 1.6.x to master  [\#183](puppetlabs/puppet-resource_api#183) ([mihaibuzgau](https://github.com/mihaibuzgau))
- \(maint\) Fixup Gemfile for JRuby 1.7 installs [\#173](puppetlabs/puppet-resource_api#173) ([da-ar](https://github.com/da-ar))
- \(maint\) test cleanups [\#172](puppetlabs/puppet-resource_api#172) ([DavidS](https://github.com/DavidS))

## [1.8.3](https://github.com/puppetlabs/puppet-resource_api/tree/1.8.3) (2019-04-12)
[Full Changelog](puppetlabs/puppet-resource_api@1.8.2...1.8.3)

**Fixed bugs:**

- \(FM-7867\) Always throw when transport schema validation fails [\#169](puppetlabs/puppet-resource_api#169) ([da-ar](https://github.com/da-ar))

**Merged pull requests:**

- \(PA-2496\) Bump version and remove v from version number [\#170](puppetlabs/puppet-resource_api#170) ([mihaibuzgau](https://github.com/mihaibuzgau))

## [1.8.2](https://github.com/puppetlabs/puppet-resource_api/tree/1.8.2) (2019-04-10)
[Full Changelog](puppetlabs/puppet-resource_api@v1.6.4...1.8.2)

**Merged pull requests:**

- \(packaging\) Update reported version to 1.8.2 \[no-promote\] [\#167](puppetlabs/puppet-resource_api#167) ([mihaibuzgau](https://github.com/mihaibuzgau))

## [v1.6.4](https://github.com/puppetlabs/puppet-resource_api/tree/v1.6.4) (2019-03-25)
[Full Changelog](puppetlabs/puppet-resource_api@v1.8.1...v1.6.4)

**Merged pull requests:**

- Add `implementations` to reserved bolt keywords [\#165](puppetlabs/puppet-resource_api#165) ([DavidS](https://github.com/DavidS))
- \(MAINT\) Bump version [\#164](puppetlabs/puppet-resource_api#164) ([sebastian-miclea](https://github.com/sebastian-miclea))
- Release prep for v1.8.1 [\#163](puppetlabs/puppet-resource_api#163) ([DavidS](https://github.com/DavidS))

# Changelog

All significant changes to this repo will be summarized in this file.


## [v1.8.1](https://github.com/puppetlabs/puppet-resource_api/tree/v1.8.1) (2019-03-13)
[Full Changelog](puppetlabs/puppet-resource_api@v1.8.0...v1.8.1)

**Fixed bugs:**

- \(maint\) Fixes sensitive transport values where absent keys are wrapped [\#161](puppetlabs/puppet-resource_api#161) ([da-ar](https://github.com/da-ar))

**Merged pull requests:**

- 1.6.x mergeup [\#162](puppetlabs/puppet-resource_api#162) ([DavidS](https://github.com/DavidS))
- \(FM-7829\) Update README with transports examples [\#160](puppetlabs/puppet-resource_api#160) ([willmeek](https://github.com/willmeek))
- \(maint\) update release docs [\#159](puppetlabs/puppet-resource_api#159) ([DavidS](https://github.com/DavidS))
- Improve travis cells and testing [\#145](puppetlabs/puppet-resource_api#145) ([DavidS](https://github.com/DavidS))

## [v1.8.0](https://github.com/puppetlabs/puppet-resource_api/tree/v1.8.0) (2019-02-26)
[Full Changelog](puppetlabs/puppet-resource_api@v1.7.0...v1.8.0)

**Implemented enhancements:**

- \(FM-7695\) Transports - the remote content framework [\#157](puppetlabs/puppet-resource_api#157) ([DavidS](https://github.com/DavidS))
- \(FM-7698\) implement `sensitive:true` handling [\#156](puppetlabs/puppet-resource_api#156) ([da-ar](https://github.com/da-ar))
- \(PDK-1271\) Allow a transport to be wrapped and used like a device [\#155](puppetlabs/puppet-resource_api#155) ([da-ar](https://github.com/da-ar))
- \(FM-7701\) Support device providers when using Transport Wrapper [\#154](puppetlabs/puppet-resource_api#154) ([da-ar](https://github.com/da-ar))
- \(FM-7726\) implement `context.transport` to provide access [\#152](puppetlabs/puppet-resource_api#152) ([DavidS](https://github.com/DavidS))
- \(FM-7674\) Allow wrapping a Transport in a legacy Device [\#149](puppetlabs/puppet-resource_api#149) ([da-ar](https://github.com/da-ar))
- \(FM-7600\) Add Transport.connect method [\#148](puppetlabs/puppet-resource_api#148) ([da-ar](https://github.com/da-ar))

**Fixed bugs:**

- \(FM-7690\) Fix transports cache to be environment aware [\#151](puppetlabs/puppet-resource_api#151) ([da-ar](https://github.com/da-ar))

**Merged pull requests:**

- \(FM-7726\) cleanups for the transport  [\#153](puppetlabs/puppet-resource_api#153) ([DavidS](https://github.com/DavidS))
- \(FM-7691,FM-7696\) refactoring definition handling in contexts [\#150](puppetlabs/puppet-resource_api#150) ([DavidS](https://github.com/DavidS))

## [v1.7.0](https://github.com/puppetlabs/puppet-resource_api/tree/v1.7.0) (2019-01-07)
[Full Changelog](puppetlabs/puppet-resource_api@v1.6.3...v1.7.0)

**Implemented enhancements:**

- \(maint\) Validate Type Schema [\#142](puppetlabs/puppet-resource_api#142) ([da-ar](https://github.com/da-ar))

**Merged pull requests:**

- \(maint\) Bundler 2.0 dropped support for Ruby versions \< 2.2 [\#147](puppetlabs/puppet-resource_api#147) ([da-ar](https://github.com/da-ar))
-  \(FM-7597\) RSAPI Transport register function [\#146](puppetlabs/puppet-resource_api#146) ([da-ar](https://github.com/da-ar))
- \(packaging\) Update version to 1.7.0 [\#144](puppetlabs/puppet-resource_api#144) ([branan](https://github.com/branan))

## [v1.6.3](https://github.com/puppetlabs/puppet-resource_api/tree/v1.6.3) (2018-12-11)
[Full Changelog](puppetlabs/puppet-resource_api@v1.6.2...v1.6.3)

**Closed issues:**

- Trying to understand stubbing in the examples [\#136](puppetlabs/puppet-resource_api#136)

**Merged pull requests:**

- \(packaging\) Update version to 1.6.3 [\#143](puppetlabs/puppet-resource_api#143) ([branan](https://github.com/branan))
- Move parameter and property logic to separate classes [\#140](puppetlabs/puppet-resource_api#140) ([bpietraga](https://github.com/bpietraga))
- \(maint\) Predeclare Puppet module before ResourceApi [\#139](puppetlabs/puppet-resource_api#139) ([caseywilliams](https://github.com/caseywilliams))
- \(maint\) minor fix to make data\_type\_handling change work [\#138](puppetlabs/puppet-resource_api#138) ([DavidS](https://github.com/DavidS))
- \(maint\) extract data type handling code [\#137](puppetlabs/puppet-resource_api#137) ([bpietraga](https://github.com/bpietraga))
- Release prep for v1.6.2 [\#135](puppetlabs/puppet-resource_api#135) ([DavidS](https://github.com/DavidS))
jperkin pushed a commit that referenced this pull request Sep 9, 2020
pkgsrc changes:
 - Fix a typo in DISTNAME/PKGNAME: it is now go-ffuf (instead of go-fuff)
 - Only installs bin/ffuf and its README
 - Reset MAINTAINERship, requested by <nikita>

Changes:
1.1.0
-----
 - Add unsupported arch/os to goreleaser ignore list (#267)
 - Release 1.1 (#266)
 - Fix crash with 3xx requests without location header (#265)
 - Update random seed logic (#262)
 - fix file get thing (#226)
 - Update CONTRIBUTORS.md to add bsysop (#258)
 - Fixed behavior of wordlist:keyword separator in Windows (#240)
 - Add Host information to JSON output file (#223)
 - Support outputting all file formats concurrently (#218)
 - Increase default rows per page on html report (#217)
 - Add the wordlists to the header information (#211)
 - Fix error with missing usage info (#195)
 - Feature178 (#186)
 - Fix for #193 (#194)
 - Fix for issue #179 (#180)
 - Prepare for 1.1.0-git (#176)
jperkin pushed a commit that referenced this pull request Sep 16, 2020
Update ruby-logging package to 2.3.0.


== 2.3.0 / 2020-07-04

Enhancements

- all appender output is now synchronized [PR #219]
- renamed the `LogEvent#method` to no longer conflict with `Kernel#method`
  [PR #218]
- @bhuga (not the Fortnite star) added a `raise_errors` method for debugging
  [PR #203]
- thanks to @olleolleolle for keeping on top of Travis and Ruby versions

Bug Fixes
- conosle appenders can be reopened [PR #220]
- fixed a race condition in the rolling file appender [PR #216]
- fixed a race condition when opening log file destinations [PR #208 #217]
- @MikaelSmith fixed a race condition in Logger creation [PR #201]
- documentation bug fixes [PR #184 #185 #188 #194 #209]
jperkin pushed a commit that referenced this pull request Sep 18, 2020
0.60:

Asciidoc:
 * Introduce "compat" option to parse like asciidoc or asciidoctor.

Text (and Markdown):
 * Fix the support of nested lists (GitHub's #131).

Other:
 * Remove the experimental C extension that was never built,
   distributed, tested nor modified since 2007.

XML:
 * Provide a meaningful message when the translators butcher the
   <placeholder> attributes instead of truncating the file.
   (GitHub's #254)


0.59.1:

po4a tool:
 * Really fix --srcdir and --destdir handling (Debian's #960892 again).
   Even with the previous fix, the aptitude package was still broken.

Documentation:
 * Clarify the syntax of -o parameters (GitHub's #233).

Sgml:
 * Sort the attributes. Without this, msgids are randomly fuzzied.
   (Debian's #725931 and Debian's #810988)


0.59:

po4a tool:
 * Fix --srcdir handling (GitHub's #237 and Debian's #960892).
   This bug was breaking the build of several packages, including dpkg.

Addendum:
 * New mode 'eof' to easily add at the end of the file (Debian's #960949).

Documentation:
 * Fix many typos and glitches
 * Start a section about external projects using po4a

Tests:
 * po4a: Add a test for the [po_directory] feature

Overall:
 * Improve the displayed messages, don't translate debug messages.


0.58.1:

Documentation:
 * Document an option of the XML parser (GitHub's #223).
 * Small glitches found during the translations.

Tests:
 * Also ignore 'Project-Id-Version' when diffing PO files (GitHub's #224)
 * asciidoc: reactivate tablecells tests

AsciiDoc:
 * Fix management of images in tables (Github's #226)
 * Tolerate underline length variations in two lines titles (Github's #212)


0.58:

AsciiDoc:
 * Accept numbered list items beginning with any number of dots
   (GitHub's #210)

Markdown:
 * Avoid translating Markdown fenced code block info string (GitHub's #194)
 * List Markdown fenced code block info string as text type (GitHub's #195)
 * Support YAML Front Matter (GitHub's #196). This requires YAML::Tiny.
 * Introduce options yfm_keys and yfm_skip_array to respectively
   specify which YAML keys should be translated, and that the array
   content should not be translated.
 * Work around a bug in YAML::Tiny that quotes numbers (GitHub's #217)
 * Add gettext flag "markdown-text" for relevant entries (GitHub's #208)

Text:
 * Honor the (existing) --neverwrap option to handle every content verbatim.

Texinfo:
 * Add the comments starting with 'TRANSLATORS:' to the po file
   (GitHub's #162)

XHTML:
 * Don't fail nor warn when a closing tag is missing, that's legit in HTML.
   (GitHub's #179)

XML and DocBook:
 * Allow attributes with no value (GitHub's #178).
 * Processing Instructions are handled as inline tags by default, but
   you can change them back to breaking with '-o break-pi' (GitHub's #170)

Yaml:
 * Introduce option to skip array values. (GitHub's #187)

po4a tool:
 * Cleanups and fixups about options' parsing (now tested and documented)
     _
    / \  You may need to upgrage your po4a.conf if you were using
   /_!_\ "unwanted features" (ie, bugs) of the previous implementation.

 * Do not touch source dir when --destdir is provided (Debian #602387)
 * Pass --add-location=file to msgmerge when receiving option porefs.
   (requires gettext >= 0.19 -- June 2014)
 * Option --master-charset sets the charset of the generated POT file.
 * Option --master-language sets the language of the generated POT file.
 * Add support for addendum path in po4a_paths (Debian #823189)
 * Stop pretending that --porefs can control the wrapping of reference
   comments, as the gettext tools used internally always rewrap them.

Scripts:
 * Rename po4aman-display-po to po4a-display-man
 * Rename po4apod-display-po to po4a-display-pod

Core:
 * Use UTF-8 by default (the 20th century is over -- Debian #862460)
   po4a used to prefer ascii unless it proved impossible. But the
   underlying detection would fail, possibly for document containing
   UTF-8 chars composed on printable ascii chars only.
 * Add a --wrap-po option to control how the po file is wrapped, and
   chose between either nicely wrapped files that tend to produce git
   conflicts, or ugly files that are easy to automatically deal with.

Tests:
 * Completely refactor most tests. They are now more reliable and the
   error messages are much more useful to understand the issues.
 * Many bugs to po4a and the core were ironed out in the process.
 * PO files content are now tested too (GitHub's #67)

Documentation:
 * Various cleanups by Golubev Alexander (GitHub's #190 & #191)
jperkin pushed a commit that referenced this pull request Nov 6, 2020
Version 1.64.1
--------------

- The BigInt type is now _actually_ available, as it wasn't enabled in the
  1.64.0 release even though it was mentioned in the release notes.

- Closed bugs and merge requests:
  * testCommandLine's Unicode tests failing on Alpine Linux [Philip Chimento,
    #296, !399]
  * build: Various clean-ups [Jan Tojnar, !403]
  * Correctly handle vfunc inout parameters [Marco Trevisan, !404]
  * Fix failed redirect of output in CommandLine tests [Liban Parker, !409]

Version 1.58.6
--------------

- Various backports:
  * Correctly handle vfunc inout parameters [Marco Trevisan]
  * Fix failed redirect of output in CommandLine tests [Liban Parker]
  * Avoid filename conflict when tests run in parallel [Philip Chimento]

Version 1.64.0
--------------

- No change from 1.63.92.

Version 1.63.92
---------------

- Closed bugs and merge requests:
  * object: Use g_irepository_get_object_gtype_interfaces [Colin Walters, Philip
    Chimento, #55, !52]
  * Add -fno-semantic-interposition to -Bsymbolic-functions [Jan Alexander
    Steffens (heftig), #303, !397]
  * examples: add a dbus-client and dbus-service example [Andy Holmes, !398]
  * Various GNOME Shell crashes during GC, mozjs68 regression [Jan Alexander
    Steffens (heftig), Philip Chimento, #301, !396]

Version 1.63.91
---------------

- Closed bugs and merge requests:
  * [mozjs68] Reorganize modules for ESM. [Evan Welsh, Philip Chimento, !383]
  * Various maintenance [Philip Chimento, !388]
  * Fix building GJS master with Visual Studio and update build instructions
    [Chun-wei Fan, !389]
  * Resolve "Gnome Shell crash on GC run with mozjs68" [Philip Chimento, !391]
  * installed-tests/js: Add missing dep on warnlib_typelib [Jan Alexander
    Steffens, !393]
  * object: Cache known unresolvable properties [Daniel van Vugt, Philip
    Chimento, !394, #302]

Version 1.58.5
--------------

- Closed bugs and merge requests:
  * Fix Visual Studio builds of gnome-3-34 (1.58.x) branch [Chun-wei Fan, !392]
  * Can not access GObject properties of classes without GI information [Juan
    Pablo Ugarte, !385, #299]

Version 1.63.90
---------------

- New JS API: The GObject module has gained new overrides:
  GObject.signal_handler_find(), GObject.signal_handlers_block_matched(),
  GObject.signal_handlers_unblock_matched(), and
  GObject.signal_handlers_disconnect_matched(). These overrides replace the
  corresponding C API, which was not idiomatic for JavaScript and was not fully
  functional because it used bare C pointers for some of its functionality.
  See modules/overrides/GObject.js for API documentation.

- New JavaScript features! This version of GJS is based on SpiderMonkey 68, an
  upgrade from the previous ESR (Extended Support Release) of SpiderMonkey 60.
  Here are the highlights of the new JavaScript features.
  For more information, look them up on MDN or devdocs.io.

  * New language features
    + The BigInt type, currently a stage 3 proposal in the ES standard, is now
      available.

  * New syntax
    + `globalThis` is now the ES-standard supported way to get the global
      object, no matter what kind of JS environment. The old way, `window`, will
      still work, but is no longer preferred.
    + BigInt literals are expressed by a number with "n" appended to it: for
      example, `1n`, `9007199254740992n`.

  * New APIs
    + String.prototype.trimStart() and String.prototype.trimEnd() now exist and
      are preferred instead of trimLeft() and trimRight() which are nonstandard.
    + String.prototype.matchAll() allows easier access to regex capture groups.
    + Array.prototype.flat() flattens nested arrays, well-known from lodash and
      similar libraries.
    + Array.prototype.flatMap() acts like a reverse filter(), allowing adding
      elements to an array while iterating functional-style.
    + Object.fromEntries() creates an object from iterable key-value pairs.
    + Intl.RelativeTimeFormat is useful for formatting time differences into
      human-readable strings such as "1 day ago".
    + BigInt64Array and BigUint64Array are two new typed array types.

  * New behaviour
    + There are a lot of minor behaviour changes as SpiderMonkey's JS
      implementation conforms ever closer to existing ECMAScript standards and
      adopts new ones. For complete information, read the Firefox developer
      release notes:
      https://developer.mozilla.org/en-US/Firefox/Releases/61#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/62#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/63#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/64#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/65#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/66#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/67#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/68#JavaScript

  * Backwards-incompatible changes
    + The nonstandard String generics were removed. These had only ever been
      implemented by Mozilla and never made it into a standard. (An example of a
      String generic is calling a string method on something that might not be a
      string like this: `String.endsWith(foo, 5)`. The proper way is
      `String.prototype.endsWith.call(foo, 5)` or converting `foo` to a string.)
      This should not pose much of a problem for existing code, since in the
      previous version these would already print a deprecation warning whenever
      they were used.
      You can use `moz68tool` from mozjs-deprecation-tools
      (https://gitlab.gnome.org/ptomato/moz60tool) to scan your code for this
      nonstandard usage.

- Closed bugs and merge requests:
  * invalid import on signal.h [#295, !382, Philip Chimento]
  * SpiderMonkey 68 [#270, !386, Philip Chimento]
  * GObject: Add override for GObject.handler_block_by_func [#290, !371, Philip
    Chimento]

Version 1.63.3
--------------

- Closed bugs and merge requests:
  * JS ERROR: TypeError: this._rooms.get(...) is undefined [Philip Chimento,
    #289, !367]
  * Run CI build with --werror [Philip Chimento, #286, !365]
  * build: Remove Autotools build system [Philip Chimento, !364]
  * gjs-symlink script is incompatible with distro builds [Michael Catanzaro,
    Bastien Nocera, #291, !369, !370]
  * installed-tests: Don't hardcode the path of bash [Ting-Wei Lan, !372]
  * Update Visual Studio build instructions (after migrating to full Meson-based
    builds) [Chun-wei Fan, !375]
  * object: Warn when setting a deprecated property [Florian Müllner, !378]
  * CI: Create mozjs68 CI images [Philip Chimento, !379]
  * Various maintenance [Philip Chimento, !374, !380, !381]

Version 1.58.4
--------------

- Now prints a warning when constructing an unregistered object inheriting from
  GObject (i.e. if you forgot to use GObject.registerClass.) In 1.58.2 this
  would throw an exception, which broke some existing code, so that change was
  reverted in 1.58.3. In this version the check is reinstated, but we log a
  warning instead of throwing an exception, so that people know to fix their
  code, but without breaking things.
  NOTE: In 1.64 (the next stable release) the warning will be changed back into
  an exception, because code with this problem can be subtly broken and cause
  unexpected errors elsewhere. So make sure to fix your code if you get this
  warning.

- Closed bugs and merge requests:
  * GSettings crash fixes [Andy Holmes, !373]

- Memory savings for Cairo objects [Philip Chimento, !374]

- Fix for crash in debug functions [Philip Chimento, !374]

Version 1.63.2
--------------

- There is an option for changing the generated GType name for GObject classes
  created in GJS to a new scheme that is less likely to have collisions. This
  scheme is not yet the default, but you can opt into it by setting
  `GObject.gtypeNameBasedOnJSPath = true;` as early as possible in your
  prograṁ. Doing this may require some changes in Glade files if you use
  composite widget templates.

  We recommend you make this change in your codebase as soon as possible, to
  avoid any surprises in the future.

- New JS API: GObject.Object has gained a stop_emission_by_name() method which
  is a bit more idiomatic than calling GObject.signal_stop_emission_by_name().

- It's now supported to use the "object" attribute in a signal connection in a
  composite widget template in a Glade file.

- Closed bugs and merge requests:
  * CI: Tweak eslint rule for unneeded parentheses [Florian Müllner, !353]
  * Smarter GType name computation [Marco Trevisan, !337]
  * Meson CI [Philip Chimento, !354]
  * Visual Studio builds using Meson [Chun-wei Fan, !355]
  * Hide internal symbols from ABI [Marco Trevisan, #194, !352]
  * Allow creating custom tree models [Giovanni Campagna, #71]
  * build: Fix dist files [Florian Müllner, !357]
  * GObject: Add convenience wrapper for signal_stop_emission_by_name() [Florian
    Müllner, !358]
  * Various maintenance [Philip Chimento, !356]
  * object_instance_props_to_g_parameters should do more check on argv [Philip
    Chimento, #63, !359]
  * Support flat C arrays of structures [Philip Chimento, !361]
  * Gtk Templates: support connectObj argument [Andy Holmes, !363]

- Various build fixes [Philip Chimento]

Version 1.58.2
--------------

- Closed bugs and merge requests:
  * GObject based class initialization checks [Marco Trevisan, Philip Chimento,
    !336]
  * Silently leaked return value of callbacks [Xavier Claessens, Philip
    Chimento, #86, !44]
  * Crash when calling Gio.Initable.async_init with not vfunc_async_init
    implementation [Philip Chimento, #287, !362]
  * [cairo] insufficient checking [Philip Chimento, #49, !360]

- Various crash fixes backported from the development branch that didn't close
  a bug or merge request.

Version 1.63.1
--------------

- Note that the 1.59, 1.60, 1.61, and 1.62 releases are hereby skipped, because
  we are calling the next stable series 1.64 to match gobject-introspection and
  GLib.

- GJS now includes a Meson build system. This is now the preferred way to build
  it; however, the old Autotools build system is still available for a
  transitional period.

- Closed bugs and merge requests:
  * GObject: Add convenience wrapper for signal_handler_(un)block() [Florian
    Müllner, !326]
  * GObject based class initialization checks [Marco Trevisan, Philip Chimento,
    !336]
  * Meson port [Philip Chimento, !338]
  * add http client example [Sonny Piers, !342]
  * Smaller CI, phase 2 [Philip Chimento, !343]
  * add websocket client example [Sonny Piers, !344]
  * Fix Docker images build [Philip Chimento, !345]
  * CI: Use new Docker images [Philip Chimento, !346]
  * docs: Update internal links [Andy Holmes, !348]
  * Don't pass generic marshaller to g_signal_newv() [Niels De Graef, !349]
  * tests: Fail debugger tests if command failed [Philip Chimento, !350]
  * Minor CI image fixes [Philip Chimento, !351]
  * Various fixes [Marco Trevisan, Philip Chimento]

Version 1.58.1
--------------

- Closed bugs and merge requests:
  * Import wiki documentation [Sonny Piers, !341]
  * Smaller CI, phase 1 [Philip Chimento, !339]
  * Crashes after setting child property 'icon-name' on GtkStack then displaying
    another GtkStack [Florian Müllner, #284, !347]
  * GLib.strdelimit crashes [Philip Chimento, #283, !340]

Version 1.58.0
--------------

- No change from 1.57.92.

Version 1.57.92
---------------

- Closed bugs and merge requests:
  * tests: Enable regression test cases for GPtrArrays and GArrays of structures
    [Stéphane Seng, !334]
  * Various maintenance [Philip Chimento, !333, !335]

Version 1.57.91
---------------

- GJS no longer links to libgtk-3. This makes it possible to load the Gtk-4.0
  typelib in GJS and write programs that use GTK 4.

- The heapgraph tool has gained some improvements; it is now possible to print a
  heap graph of multiple targets. You can also mark an object for better
  identification in the heap graph by assigning a magic property: for example,
  myObject.__heapgraph_name = 'Button' will make that object identify itself as
  "Button" in heap graphs.

- Closed bugs and merge requests:
  * Remove usage of Lang in non legacy code [Sonny Piers, !322]
  * GTK4 [Florian Müllner, #99, !328, !330]
  * JS syntax fixes [Marco Trevisan, Philip Chimento, !306, !323]
  * gi: Avoid infinite recursion when converting GValues [Florian Müllner, !329]
  * Implement all GObject-introspection test suites [Philip Chimento, !327,
    !332]
  * Heapgraph improvements [Philip Chimento, !325]

Version 1.57.90
---------------

- New JS API: GLib.Variant has gained a recursiveUnpack() method which
  transforms the variant entirely into a JS object, discarding all type
  information. This can be useful for dealing with a{sv} dictionaries, where
  deepUnpack() will keep the values as GLib.Variant instances in order to
  preserve the type information.

- New JS API: GLib.Variant has gained a deepUnpack() method which is exactly the
  same as the already existing deep_unpack(), but fits with the other camelCase
  APIs that GJS adds.

- Closed bugs and merge requests:
  * Marshalling of GPtrArray broken [#9, !311, Stéphane Seng]
  * Fix locale chooser [!313, Philip Chimento]
  * dbus-wrapper: Remove interface skeleton flush idle on dispose [!312, Marco
    Trevisan]
  * gobject: Use auto-compartment when getting property as well [!316, Florian
    Müllner]
  * modules/signals: Use array destructuring in _emit [!317, Jonas Dreßler]
  * GJS can't call glibtop_init function from libgtop [#259, !319,
    Philip Chimento]
  * GLib's VariantDict is missing lookup [#263, !320, Sonny Piers]
  * toString on an object implementing an interface fails [#252, !299, Marco
    Trevisan]
  * Regression in GstPbutils.Discoverer::discovered callback [#262, !318, Philip
    Chimento]
  * GLib.Variant.deep_unpack not working properly with a{sv} variants [#225,
    !321, Fabián Orccón, Philip Chimento]
  * Various maintenance [!315, Philip Chimento]

- Various CI fixes [Philip Chimento]

Version 1.57.4
--------------

- Closed bugs and merge requests:
  * gjs 1.57 requires a recent sysprof version for sysprof-capture-3 [#258,
    !309, Olivier Fourdan]

- Misc documentation changes [Philip Chimento]

Version 1.57.3
--------------

- The GJS profiler is now integrated directly into Sysprof 3, via the
  GJS_TRACE_FD environment variable. Call stack information and garbage
  collector timing will show up in Sysprof. See also GNOME/Initiatives#10

- New JS API: System.addressOfGObject(obj) will return a string with the hex
  address of the underlying GObject of `obj` if it is a GObject wrapper, or
  throw an exception if it is not. This is intended for debugging.

- New JS API: It's now possible to pass a value from Gio.DBusProxyFlags to the
  constructor of a class created by Gio.DBusProxy.makeProxyWrapper().

- Backwards-incompatible change: Trying to read a write-only property on a DBus
  proxy object, or write a read-only property, will now throw an exception.
  Previously it would fail silently. It seems unlikely any code is relying on
  the old behaviour, and if so then it was probably masking a bug.

- Closed bugs and merge requests:
  * Build failure on Continuous [#253, !300, Philip Chimento]
  * build: Bump glib requirement [!302, Florian Müllner]
  * profiler: avoid clearing 512 bytes of stack [!304, Christian Hergert]
  * system: add addressOfGObject method [!296, Marco Trevisan]
  * Add support for GJS_TRACE_FD [!295, Christian Hergert]
  * Gio: Make possible to pass DBusProxyFlags to proxy wrapper [!297, Marco
    Trevisan]
  * Various maintenance [!301, Philip Chimento]
  * Marshalling of GPtrArray broken [#9, !307, Stéphane Seng]
  * Build fix [!308, Philip Chimento]
  * Gio: sync dbus wrapper properties flags [!298, Marco Trevisan]
  * GjsMaybeOwned: Reduce allocation when used as Object member [!303, Marco
    Trevisan]

Version 1.57.2
--------------

- There are now overrides for Gio.SettingsSchema and Gio.Settings which avoid
  aborting the whole process when trying to access a nonexistent key or child
  schema. The original API from GLib was intended for apps, since apps should
  have complete control over which settings keys they are allowed to access.
  However, it is not a good fit for shell extensions, which may need to access
  different settings keys depending on the version of GNOME shell they're
  running on.

  This feature is based on code from Cinnamon which the copyright holders have
  kindly agreed to relicense to GJS's license.

- New JS API: It is now possible to pass GObject.TypeFlags to
  GObject.registerClass(). For example, passing
  `GTypeFlags: GObject.TypeFlags.ABSTRACT` in the class info object, will create
  a class that cannot be instantiated. This functionality was present in
  Lang.Class but has been missing from GObject.registerClass().

- Closed bugs and merge requests:
  * Document logging features [#230, !288, Andy Holmes]
  * Support optional GTypeFlags value in GObject subclasses [!290, Florian
    Müllner]
  * Ensure const-correctness in C++ objects [#105, !291, Onur Şahin]
  * Programmer errors with GSettings cause segfaults [#205, !284, Philip
    Chimento]
  * Various maintenance [!292, Philip Chimento]
  * debugger: Fix summary help [!293, Florian Müllner]
  * context: Use Heap pointers for GC objects stored in vectors [!294, Philip
    Chimento]

Version 1.56.2
--------------

- Closed bugs and merge requests:
  * Crash in BoxedInstance when struct could not be allocated directly [#240,
    !285, Philip Chimento]
  * Cairo conversion bugs [!286, Philip Chimento]
  * Gjs crashes when binding inherited property to js added gobject-property
    [#246, !289, Marco Trevisan]
  * console: Don't accept --profile after the script name [!287, Philip
    Chimento]

Version 1.57.1
--------------

- Closed bugs and merge requests:
  * Various maintenance [!279, Philip Chimento]
  * mainloop: Assign null to property instead of deleting [!280, Jason Hicks]
  * Added -d version note README.md [!282, Nauman Umer]
  * Extra help for debugger commands [#236, !283, Nauman Umer]
  * Crash in BoxedInstance when struct could not be allocated directly [#240,
    !285, Philip Chimento]
  * Cairo conversion bugs [!286, Philip Chimento]

Version 1.56.1
--------------

- Closed bugs and merge requests:
  * Calling dumpHeap() on non-existent directory causes crash [#134, !277,
    Philip Chimento]
  * Using Gio.MemoryInputStream.new_from_data ("string") causes segfault [#221,
    !278, Philip Chimento]
  * Fix gjs_context_eval() for non-zero-terminated strings [!281, Philip
    Chimento]

Version 1.56.0
--------------

- No change from 1.55.92.

Version 1.55.92
---------------

- Closed bugs and merge requests:
  * Fix CI failures [!269, Philip Chimento]
  * Possible memory allocation/deallocation bug (possibly in js_free() in GJS)
    [!270, Chun-wei Fan, Philip Chimento]
  * cairo-context: Special-case 0-sized vector [!271, Florian Müllner]
  * Add some more eslint rules [!272, Florian Müllner]
  * win32/NMake: Fix introspection builds [!274, Chun-wei Fan]
  * NMake/libgjs-private: Export all the public symbols there [!275, Chun-wei
    Fan]

Version 1.55.91
---------------

- The problem of freezing while running the tests using GCC's sanitizers was
  determined to be a bug in GCC, which was fixed in GCC 9.0.1.

- Closed bugs and merge requests:
  * gnome-sound-recorder crashes deep inside libgjs [#223, !266, Philip
    Chimento]
  * Various maintenance [!267, Philip Chimento]
  * wrapperutils: Define $gtype property as non-enumerable [!268, Philip
    Chimento]

Version 1.55.90
---------------

- New JS API: It's now possible to call and implement DBus methods whose
  parameters or return types include file descriptor lists (type signature 'h'.)
  This involves passing or receiving a Gio.UnixFDList instance along with the
  parameters or return values.

  To call a method with a file descriptor list, pass the Gio.UnixFDList along
  with the rest of the parameters, in any order, the same way you would pass a
  Gio.Cancellable or async callback.

  For return values, things are a little more complicated, in order to avoid
  breaking existing code. Previously, synchronously called DBus proxy methods
  would return an unpacked GVariant. Now, but only if called with a
  Gio.UnixFDList, they will return [unpacked GVariant, Gio.UnixFDList]. This
  does not break existing code because it was not possible to call a method with
  a Gio.UnixFDList before, and the return value is unchanged if not calling with
  a Gio.UnixFDList. This does mean, unfortunately, that if you have a method
  with an 'h' in its return signature but not in its argument signatures, you
  will have to call it with an empty FDList in order to receive an FDList with
  the return value, when calling synchronously.

  On the DBus service side, when receiving a method call, we now pass the
  Gio.UnixFDList received from DBus to the called method. Previously, sync
  methods were passed the parameters, and async methods were passed the
  parameters plus the Gio.DBusInvocation object. Appending the Gio.UnixFDList to
  those parameters also should not break existing code.

  See the new tests in installed-tests/js/testGDBus.js for examples of calling
  methods with FD lists.

- We have observed on the CI server that GJS 1.55.90 will hang forever while
  running the test suite compiled with GCC 9.0.0 and configured with the
  --enable-asan and --enable-ubsan arguments. This should be addressed in one of
  the following 1.55.x releases.

- Closed bugs and merge requests:
  * GDBus proxy overrides should support Gio.DBusProxy.call_with_unix_fd_list()
    [#204, !263, Philip Chimento]
  * Add regression tests for GObject vfuncs [!259, Jason Hicks]
  * GjsPrivate: Sources should be C files [!262, Philip Chimento]
  * build: Vendor last-good version of AX_CODE_COVERAGE [!264, Philip Chimento]

Version 1.55.4
--------------

- Closed bugs and merge requests:
  * Various maintenance [!258, Philip Chimento]
  * Boxed copy constructor should not be called, split Boxed into prototype and
    instance structs [#215, !260, Philip Chimento]

Version 1.55.3
--------------

- Closed bugs and merge requests:
  * Manually constructed ByteArray toString segfaults [#219, !254, Philip
    Chimento]
  * signals: Add _signalHandlerIsConnected method [!255, Jason Hicks]
  * Various maintenance [!257, Philip Chimento]

Version 1.52.5
--------------

- This was a release consisting only of backports from the GNOME 3.30 branch to
  the GNOME 3.28 branch.

- This release includes the "Big Hammer" patch from GNOME 3.30 to reduce memory
  usage. For more information, read the blog post at
  https://feaneron.com/2018/04/20/the-infamous-gnome-shell-memory-leak/
  It was not originally intended to be backported to GNOME 3.28, but in practice
  several Linux distributions already backported it, and it has been working
  well to reduce memory usage, and the bugs have been ironed out of it.

  It does decrease performance somewhat, so if you don't want that then don't
  install this update.

- Closed bugs and merge requests:

  * Ensure not to miss the force_gc flag [#150, !132, Carlos Garnacho]
  * Make GC much more aggressive [#62, !50, Giovanni Campagna, Georges Basile
    Stavracas Neto, Philip Chimento]
  * Queue GC when a GObject reference is toggled down [#140, !114, !127, Georges
    Basile Stavracas Neto]
  * Reduce memory overhead of g_object_weak_ref() [#144, !122, Carlos Garnacho,
    Philip Chimento]
  * context: Defer and therefore batch forced GC runs [performance] [!236,
    Daniel van Vugt]
  * context: use timeout with seconds to schedule a gc trigger [!239, Marco
    Trevisan]
  * Use compacting GC on RSS size growth [!133, #151, Carlos Garnacho]
  * GType memleak fixes [!244, Marco Trevisan]

Version 1.55.2
--------------

- Closed bugs and merge requests:
  * Gnome-shell crashes on destroying cached param specs [#213, !240, Marco
    Trevisan]
  * Various maintenance [!235, !250, Philip Chimento]
  * Auto pointers builder [!243, Marco Trevisan]
  * configure.ac: Update bug link [!245, Andrea Azzarone]
  * SIGSEGV when exiting gnome-shell [#212, !247, Andrea Azzarone, Philip
    Chimento]
  * Fix build with --enable-dtrace and create CI job to ensure it doesn't break
    in the future [#196, !237, !253, Philip Chimento]
  * Delay JSString-to-UTF8 conversion [!249, Philip Chimento]
  * Annotate return values [!251, Philip Chimento]
  * Fix a regression with GError toString() [!252, Philip Chimento]
  * GType memleak fixes [!244, Marco Trevisan]
  * Atoms refactor [!233, Philip Chimento, Marco Trevisan]
  * Write a "Code Hospitable" README file [#17, !248, Philip Chimento, Andy
    Holmes, Avi Zajac]
  * object: Method lookup repeatedly traverses introspection [#54, !53, Colin
    Walters, Philip Chimento]
  * Handler of GtkEditable::insert-text signal is not run [#147, !143, Tomasz
    Miąsko, Philip Chimento]

Version 1.54.3
--------------

- Closed bugs and merge requests:
  * object: Fix write-only properties [!246, Philip Chimento]
  * SIGSEGV when exiting gnome-shell [#212, !247, Andrea Azzarone]
  * SelectionData.get_targets crashes with "Unable to resize vector" [#201,
    !241, Philip Chimento]
  * Gnome-shell crashes on destroying cached param specs [#213, !240, Marco
    Trevisan]
  * GType memleak fixes [!244, Marco Trevisan]
  * Fix build with --enable-dtrace and create CI job to ensure it doesn't break
    in the future [#196, !253, Philip Chimento]

Version 1.54.2
--------------

- Closed bugs and merge requests:
  * context: Defer and therefore batch forced GC runs [performance] [!236,
    Daniel van Vugt]
  * context: use timeout with seconds to schedule a gc trigger [!239, Marco
    Trevisan]
  * fundamental: Check if gtype is valid before using it [!242, Georges Basile
    Stavracas Neto]

- Backported a fix for a crash in the interactive interpreter when executing
  something like `throw "foo"` [Philip Chimento]

- Backported various maintenance from 3.31 [Philip Chimento]

Version 1.55.1
--------------

- New API for programs that embed GJS: gjs_memory_report(). This was already an
  internal API, but now it is exported.

- Closed bugs and merge requests:

  * object: Implement newEnumerate hook for GObject [!155, Ole Jørgen Brønner]
  * Various maintenance [!228, Philip Chimento]
  * ByteArray.toString should stop at null bytes [#195, !232, Philip Chimento]
  * Byte arrays that represent encoded strings should be 0-terminated [#203,
    !232, Philip Chimento]
  * context: Defer and therefore batch forced GC runs [performance] [!236,
    Daniel van Vugt]
  * context: use timeout with seconds to schedule a gc trigger [!239, Marco
    Trevisan]
  * arg: Add special-case for byte arrays going to C [#67, !49, Jasper
    St. Pierre, Philip Chimento]

Version 1.52.4
--------------

- This was a release consisting only of backports from the GNOME 3.30 branch to
  the GNOME 3.28 branch.

- Closed bugs and merge requests:

  * `ARGV` encoding issues [#22, !108, Evan Welsh]
  * Segfault on enumeration of GjSFileImporter properties when a searchpath
    entry contains a symlink [#154, !144, Ole Jørgen Brønner]
  * Possible refcounting bug around GtkListbox signal handlers [#24, !154,
    Philip Chimento]
  * Fix up GJS_DISABLE_JIT flag now the JIT is enabled by default in
    SpiderMonkey [!159, Christopher Wheeldon]
  * Expose GObject static property symbols. [!197, Evan Welsh]
  * Do not run linters on tagged commits [!181, Claudio André]
  * gjs-1.52.0 fails to compile against x86_64 musl systems [#132, !214, Philip
    Chimento]
  * gjs no longer builds after recent autoconf-archive updates [#149, !217,
    Philip Chimento]

Version 1.54.1
--------------

- Closed bugs and merge requests:
  * legacy: Ensure generated GType names are valid [!229, Florian Müllner]
  * Fix GJS profiler with MozJS 60 [!230, Georges Basile Stavracas Neto]
  * Regression with DBus proxies [#202, !231, Philip Chimento]

Version 1.54.0
--------------

- Compatibility fix for byte arrays: the legacy toString() behaviour of byte
  arrays returned from GObject-introspected functions is now restored. If you
  use the functionality, a warning will be logged asking you to upgrade your
  code.

- Closed bugs and merge requests:
  * byteArray: Add compatibility toString property [Philip Chimento, !227]

Version 1.53.92
---------------

- Technology preview of a GNOME 3.32 feature: native Promises for GIO-style
  asynchronous operations. This is the result of Avi Zajac's summer internship.
  To use it, you can opt in once for each specific asynchronous method, by
  including code such as the following:

      Gio._promisify(Gio.InputStream.prototype, 'read_bytes_async',
          'read_bytes_finish');

  After executing this, you will be able to use native Promises with the
  Gio.InputStream.prototype.read_async() method, simply by not passing a
  callback to it:

      try {
          let bytes = await stream.read_bytes_async(count, priority, cancel);
      } catch (e) {
          logError(e, 'Failed to read bytes');
      }

  Note that any "success" boolean return values are deleted from the array of
  return values from the async method. That is,

      let [contents, etag] = file.load_contents_async(cancel);

  whereas the callback version still returns a useless [ok, contents, etag]
  that can never be false, since on false an exception would be thrown. In the
  callback version, we must keep this for compatibility reasons.

  Note that due to a bug in GJS (https://gitlab.gnome.org/GNOME/gjs/issues/189),
  promisifying methods on Gio.File.prototype and other interface prototypes will
  not work. We provide the API Gio._LocalFilePrototype on which you can
  promisify methods that will work on Gio.File instances on the local disk only:

      Gio._promisify(Gio._LocalFilePrototype, 'load_contents_async',
          'load_contents_finish');

  We estimate this will cover many common use cases.

  Since this is a technology preview, we do not guarantee API stability with
  the version coming in GNOME 3.32. These APIs are marked with underscores to
  emphasize that they are not stable yet. Use them at your own risk.

- Closed bugs and merge requests:
  * Added promisify to GJS GIO overrides [!225, Avi Zajac]
  * Temporary fix for Gio.File.prototype [!226, Avi Zajac]

Version 1.53.91
---------------

- Closed bugs and merge requests:
  * CI: add webkit and gtk-app tests [!222, Claudio André]
  * Fix example eslint errors [!207, Claudio André, Philip Chimento]
  * Fix more "lost" GInterface properties [!223, Florian Müllner]
  * Fix --enable-installed-tests when built from a tarball [!224, Simon
    McVittie]

Version 1.53.90
---------------

- GJS now depends on SpiderMonkey 60 and requires a compiler capable of C++14.

- GJS includes a simple debugger now. It has basic stepping, breaking, and
  printing commands, that work like GDB. Activate it by running the GJS console
  interpreter with the -d or --debugger flag before the name of the JS program
  on the command line.

- New API for programs that embed GJS: gjs_context_setup_debugger_console().
  To integrate the debugger into programs that embed the GJS interpreter, call
  this before executing the JS program.

- New JavaScript features! This version of GJS is based on SpiderMonkey 60, an
  upgrade from the previous ESR (Extended Support Release) of SpiderMonkey 52.
  Here are the highlights of the new JavaScript features.
  For more information, look them up on MDN or devdocs.io.

  * New syntax
    + `for await (... of ...)` syntax is used for async iteration.
    + The rest operator is now supported in object destructuring: e.g.
      `({a, b, ...cd} = {a: 1, b: 2, c: 3, d: 4});`
    + The spread operator is now supported in object literals: e.g.
      `mergedObject = {...obj1, ...obj2};`
    + Generator methods can now be async, using the `async function*` syntax,
      or `async* f() {...}` method shorthand.
    + It's now allowed to omit the variable binding from a catch statement, if
      you don't need to access the thrown exception: `try {...} catch {}`

  * New APIs
    + Promise.prototype.finally(), popular in many third-party Promise
      libraries, is now available natively.
    + String.prototype.toLocaleLowerCase() and
      String.prototype.toLocaleUpperCase() now take an optional locale or
      array of locales.
    + Intl.PluralRules is now available.
    + Intl.NumberFormat.protoype.formatToParts() is now available.
    + Intl.Collator now has a caseFirst option.
    + Intl.DateTimeFormat now has an hourCycle option.

  * New behaviour
    + There are a lot of minor behaviour changes as SpiderMonkey's JS
      implementation conforms ever closer to ECMAScript standards. For complete
      information, read the Firefox developer release notes:
      https://developer.mozilla.org/en-US/Firefox/Releases/53#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/54#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/55#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/56#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/57#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/58#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/59#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/60#JavaScript

  * Backwards-incompatible changes
    + Conditional catch clauses have been removed, as they were a Mozilla
      extension which will not be standardized. This requires some attention in
      GJS programs, as previously we condoned code like `catch (e if
      e.matches(Gio.IOError, Gio.IOError.EXISTS))`  with a comment in
      overrides/GLib.js, so it's likely this is used in several places.
    + The nonstandard `for each (... in ...)` loop was removed.
    + The nonstandard legacy lambda syntax (`function(x) x*x`) was removed.
    + The nonstandard Mozilla iteration protocol was removed, as well as
      nonstandard Mozilla generators, including the Iterator and StopIteration
      objects, and the Function.prototype.isGenerator() method.
    + Array comprehensions and generator comprehensions have been removed.
    + Several nonstandard methods were removed: ArrayBuffer.slice() (but not
      the standard version, ArrayBuffer.prototype.slice()),
      Date.prototype.toLocaleFormat(), Function.prototype.isGenerator(),
      Object.prototype.watch(), and Object.prototype.unwatch().

- Many of the above backwards-incompatible changes can be caught by scanning
  your source code using https://gitlab.gnome.org/ptomato/moz60tool, or
  https://extensions.gnome.org/extension/1455/spidermonkey-60-migration-validator/

- Deprecation: the custom ByteArray is now discouraged. Instead of ByteArray,
  use Javascript's native Uint8Array. The ByteArray module still contains
  functions for converting between byte arrays, strings, and GLib.Bytes
  instances.

  The old ByteArray will continue to work as before, except that Uint8Array
  will now be returned from introspected functions that previously returned a
  ByteArray. To keep your old code working, change this:

      let byteArray = functionThatReturnsByteArray();

  to this:

      let byteArray = new ByteArray.ByteArray(functionThatReturnsByteArray());

  To port to the new code:

  * ByteArray.ByteArray -> Uint8Array
  * ByteArray.fromArray() -> Uint8Array.from()
  * ByteArray.ByteArray.prototype.toString() -> ByteArray.toString()
  * ByteArray.ByteArray.prototype.toGBytes() -> ByteArray.toGBytes()
  * ByteArray.fromString(), ByteArray.fromGBytes() remain the same

  * Unlike ByteArray, Uint8Array's length is fixed. Assigning an element past
    the end of a ByteArray would lengthen the array. Now, it is ignored.
    Instead use Uint8Array.of(), for example, this code:

        let a = ByteArray.fromArray([97, 98, 99, 100]);
        a[4] = 101;

    should be replaced by this code:

        let a = Uint8Array.from([97, 98, 99, 100]);
        a = Uint8Array.of(...a, 101);

    The length of the byte array must be set at creation time. This code will
    not work anymore:

        let a = new ByteArray.ByteArray();
        a[0] = 255;

    Instead, use "new Uint8Array(1)" to reserve the correct length.

- Closed bugs and merge requests:

  * Run tests using real software [#178, !192, Claudio André]
  * Script tests are missing some errors [#179, !192, Claudio André]
  * Create a '--disable-readline' option and use it [!196, Claudio André]
  * CI: stop using Fedora for clang builds [!198, Claudio André]
  * Expose GObject static property symbols. [!197, Evan Welsh]
  * CI fixes [!200, Claudio André]
  * Docker images creation [!201, Claudio André]
  * Get Docker images built and stored in GJS registry [#185, !203, !208,
    Claudio André, Philip Chimento]
  * Clear the static analysis image a bit more [!205, Claudio André]
  * Rename the packaging job to flatpak [!210, Claudio André]
  * Create SpiderMonkey 60 docker images [!202, Claudio André]
  * Debugger [#110, !204, Philip Chimento]
  * Add convenience g_object_set() replacement [!213, Florian Müllner]
  * Add dependencies of the real tests (examples) [!215, Claudio André]
  * CWE-126 [#174, !218, Philip Chimento]
  * gjs no longer builds after recent autoconf-archive updates [#149, !217,
    Philip Chimento]
  * gjs-1.52.0 fails to compile against x86_64 musl systems [#132, !214, Philip
    Chimento]
  * Run the GTK real tests (recently added) [!212, Claudio André]
  * Fix thorough tests failures [!220, Philip Chimento]
  * Port to SpiderMonkey 60 [#161, !199, Philip Chimento]
  * Replace ByteArray with native ES6 TypedArray [#5, !199, Philip Chimento]
  * Overriding GInterface properties broke [#186, !216, Florian Müllner, Philip
    Chimento]
  * Avoid segfault when checking for GByteArray [!221, Florian Müllner]

- Various build fixes [Philip Chimento]
jperkin pushed a commit that referenced this pull request Dec 28, 2020
Change since 1.3.1 from RELEASE_NOTES

1.4.0           2018/06/??
        Add ARC support.  Extensive work contributed by ValiMail.
        Add "DomainWhitelist" and "DomainWhitelistFile" config options.
        Extract client IP address for ARC reports when provided via
                Authentication-Results.
        Update SQL schema to support new reporting functionality for DKIM
                selectors and ARC local policy overrides (refer to the example
                schema.mysql file).
        Add experimental support for reporting of ARC local policy overrides.
        Add support for recording and reporting of DKIM selectors.
        Override a DMARC "fail" if an ARC "pass" is recorded in conjunction with
                an ARC policy pass.
        Fix bug #137: Handle base64 inside AR tokens that are values.
                Problem reported by Joseph Coffland.
        LIBOPENDMARC: Fix bug #203: Reject DMARC records that have duplicate
                tags in them.  Reported by Dirk Stoecker.
        REPORTS: Feature request #146: Add option to pull input from a file.
        REPORTS: Fix bug #153: Suppress duplicate results from the same
                domain.  Patch from Tomki Camp.

1.3.2           2017/03/04
        Feature request #86: Change meaning of "RequiredHeaders" such that
                header validity is always checked, but messages are only
                rejected on that basis when the flag is set.  Based
                on a patch from Andreas Schulze.
        Feature request #127: Log SPF results when rejecting.  Requested
                by Patrick Wagner; patch from Andreas Schulze, follow-up
                patch from Juri Haberland.
        Feature request #138: Inculde policy and disposition information
                in an Authentication-Results comment.  Based on a patch
                from Juri Haberland.
        Feature request #139: Include the client host name if known
                in failure reports.  Suggested by Roland Turner;
                patch by Andreas Schulze.
        Fix bug #95: Assume IPv6 for SPF operations.  Patch from Juri Haberland.
        Fix bug #120: Fix control logic around the SPF result.
                Reported by Christophe Wolfhugel; patch from Andreas Schulze.
        Fix bug #122: Don't skip the HELO milter phase when SPF is enabled.
                Reported by Christophe Wolfhugel.
        Fix bug #157: Fix logging of implicit authserv-ids.  Reported
                by Andreas Schulze; patch from Juri Haberland.
        Fix bug #158: Log ignored connections.  Patch from Andreas Schulze.
        Fix bug #160: Fix "SyslogFacility" handling.  Patch from
                Juri Haberland.
        Fix bug #163: Use a larger buffer for the raw MAIL FROM value.
                Based on a patch from Andreas Schulze.
        Fix bug #174: Trim "!" suffixes from reporting addresses.  Problem
                noted by Juri Haberland.
        Fix bug #186: When reloading the configuration file, the public
                suffix list was read in with the wrong comment indicator.
                Patch from Federico Omoto.
        Fix bug #194: Fix inappropriate DMARC status when "p=none" is
                discovered.  Patch from Juri Haberland.
        Fix bug #195: When parsing Received-SPF, use the correct constants
                in the history file entries.  Patch from Juri Haberland.
        LIBOPENDMARC: Fix bug #115: Fix type mismatch.  Patch from
                Sebastian A. Siewior via Scott Kitterman.
        LIBOPENDMARC: Fix bug #121: Fix IPv6 CIDR matching in SPF code.
                Patch from Christophe Wolfhugel.
        LIBOPENDMARC: Fix bug #125: Compile time IPv6 fix.  Reported by
                Christophe Wolfhugel.
        LIBOPENDMARC: Fix bug #131: Fix alignment bug.  Patch from
                Andreas Schulze.
        LIBOPENDMARC: Fix bug #147: Fix stripping of whitespace from
                DMARC DNS records.  Based on a patch from Job Noorman.
        LIBOPENDMARC: Fix bug #149: Apply "sp" setting, if present and
                applicable.  Patch from Petr Novak.
        LIBOPENDMARC: Fix bug #154: Fix "rf" and "fo" processing logic.
        LIBOPENDMARC: Fix bug #156: Fix variable name.  Patch by
                Andreas Schulze.
        LIBOPENDMARC: Fix bug #165: Fix logic in checking which SPF
                identifier was used.  Patches from Marco Favero and
                Juri Haberland.
        LIBOPENDMARC: Fix bug #167: Don't return "fail" when we should
                return "none".  Patch from Marco Favero.
        REPORTS: Fix bug #134: Handle SMTP errors correctly.  Patch from
                Andreas Schulze.
        REPORTS: Fix bug #141: Set the HELO parameter correctly.
                Reported by Alan Smith; patch from Andreas Schulze.
        REPORTS: Fix bug #143: Fix logic in table truncation.
                Reported by Wayne Andersen; patch from Juri Haberland.
        REPORTS: Fix bug #162: Always report "sp" in aggregate reports.
                Patch from Juri Haberland.
        REPORTS: Fix bug #166: Fix report start/end time logic.
                Patch from Juri Haberland.
        REPORTS: Fix bug #188: Don't delete inputs too early in
                opendmarc-reports.  Patch from Juri Haberland.
        TOOLS: Fix bug #161: "Forensic" reports were renamed "Failure"
                reports.  Patch from Andreas Schulze.
        TOOLS: Fix bug #164: Handle IPv6 test addresses.  Reported by
                Andreas Schulze; patch from Juri Haberland.
        DOCS: Patch #189: Replace the DMARC RFC with an HTML page
                referencing the relevant specs, since Debian doesn't
                consider RFCs to be "free".  Patch from Scott Kitterman
                via Juri Haberland.
jperkin pushed a commit that referenced this pull request Jan 13, 2021
1.4.1 (2020-10-27)

* Adapters::Mongo - deprecate :db option, document :database option (#194)
* Adapters::Mongo - add retries to increment operation
jperkin pushed a commit that referenced this pull request May 6, 2021
  - Rework release script (#199)
  - add armv7/aarch64 support to installer (#198)
  - Multi-select for zoxide remove -i (#192)
  - _ZO_EXCLUDE_DIRS should default to "$HOME" (#194)
  - Fix return values in Bash hook (#196)
  - Add default prompt for nushell (#191)
  - Compile-time warning when git is missing (#187)
  - Performance improvements for queries (#185)
  - Add manpage (#183)
  - Fix cd - on fish (#179)
  - Update README
jperkin pushed a commit that referenced this pull request Jun 4, 2021
# callr 3.7.0

* Reporting errors is much faster now (#185).

* The `user_profile` option of `r_vanilla()` defaults to `FALSE` now (#194).

* It is now possible to set R environment variables (`R_ENVIRON_USER`,
  `R_PROFILE_USER`, etc.) via the `env` argument (#193).

# callr 3.6.0

* callr now supports starting an R process with a different architecture,
  so on Windows 64-bit R can start a 32-bit R background process, and
  vice-versa (#95).

* callr now handles symbolic arguments properly, and does not evaluate them.
  E.g. `callr::r(function(x) x, list(quote(foobar)))` works now (#175).

* `callr::r_session` does not leak file descriptors now in the sub-process
  (#184).
jperkin pushed a commit that referenced this pull request Jun 15, 2021
htmltools 0.5.1.1
--------------------------------------------------------------------------------

* Added shiny as a suggested package.


htmltools 0.5.1
--------------------------------------------------------------------------------

## New Features & Improvements

* Added a new `tagFunction()` for generating `tags` and/or
  `htmlDependency()`s conditional on the rendering context. For an
  example, see `?tagFunction`. (#180)

* Closed #104: `save_html()`'s `file` argument now properly handles
  relative paths. (@haozhu233, #105, #192)

* `save_html()` now has a `lang` parameter that can be used to set the
  lang attribute of `<html>`. (@ColinFay, #185)

* Closed #101: `htmlDependency` & `renderDependencies` now allow the
  `script` argument to be given as a named list containing the
  elements: `src`, `integrity`, `crossorigin`. (@matthewstrasiotto,
  #188)

* Closed #189: `validateCssUnit()` now accepts `fit-content`. (#190)

* `htmlPreserve()` can now optionally use the Pandoc `raw_attribute`
  extension to enclose HTML.

## Breaking Changes

* Closed #161: `parseCssColors(x)` now requires `x` to be a character
  vector (it no longer accepts a `list()` of strings) and an error is
  no longer thrown when `mustWork = FALSE` and `x` contains `NA`
  value(s). (#194)

## Bug fixes

* `print(as.tags(x))` no longer results in error when `x` is a generic
  `list()` of tag-like objects. (#181)


htmltools 0.5.0
--------------------------------------------------------------------------------

* `tags` is now generated by a script which collects all
  [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML/Element) and
  [SVG](https://developer.mozilla.org/en-US/docs/Web/SVG/Element) element tags
  documented in [MDN Web Docs](https://developer.mozilla.org).  This feature
  only appends to the existing set of `tags` (#159)

* Removed the Rcpp depedency and the compiled code now uses C rather than C++ (#158)

* BREAKING CHANGE: Fixed #57, #153: `htmlTemplate` output no longer inserts
  extra whitespace around {{...}} replacement values. (#154)

* `HTML()` now takes `.noWS` argument, which can be used to suppress surrounding
  whitespace (similar to the new argument for tags in htmltools 0.4.0). (#154)

* `css()` now returns `NULL` instead of `""` when no non-empty properties are
  specified. (#145)

* `save_html(tags$body(...))` no longer results in double <body> tags being
  written to the .html file. (Note that `save_html(tags$html(...))` is not
  supported at this time.) (#145)

* Trailing commas now permited in `...` arguments to `css()`, `tagList()`, and
  the var-arg mutation functions: `tagAppendAttributes()`, `tagSetChildren()`,
  and `tagAppendChildren()`. (#145)

* Added `capturePlot` and `plotTag` functions, for easily creating image files
  and HTML <img> tags (respectively) from plot expressions. (#150)

* Added `parseCssColors` function, for normalizing the various CSS
  color formats into #RRGGBB(AA) strings. (#155)

* Fixed #156: Now `extractPreserveChunks()` handles strings contain
  Emoji Unicode strings correctly on Windows. (#157)

* The `.noWS` parameter for suppressing whitespace can now take an `"inside"`
  value (equivalent to `c("after-start", "before-end")`). (#163)

htmltools 0.4.0
--------------------------------------------------------------------------------

* Fixed #128: Added support for trailing commas in tagLists and the predefined
  tags. (#135)

* Added some HTML tag functions to `tags` that were missing. (#111)

* Updated RcppExports for new version of Rcpp. (#93)

* `as.character.shiny.tags()` will handle non-ASCII attributes correctly if they
  are not encoded in native encoding.

* Fixed #99: `NA` attributes were sometimes rendered as `"NA"` in the HTML,
  instead of being blank. (#100)

* The error message for trailing commas in tag functions now provides context
  and useful information. (#109)

* Stopped using inline styles to set background color for `save_html`, as doing so
  makes it difficult to override using other CSS rules. (#123)

* Added a `.noWS` argument to `tag()` and `tags` which can be used to suppress
  the automatically generated whitespace around a particular tag. (#131)

* Added a shim for `system.file()` so that htmltools works with `htmlDependency`
  objects created by a package that was loaded with `devtools::load_all()`.
  (#129)

* `validateCssUnit()` now accepts `ch`, `rem`, and `calc()`. (#134)

* Fixed #125: `print.html` removes html dependencies. (#126)

* Stopped extra carriage returns from being inserted by `save_html` on Windows.
  (#137)
jperkin pushed a commit that referenced this pull request Jun 15, 2021
httpuv 1.6.1
============

* The `timegm()` function is a non-standard GNU extension, so it has
  been replaced with an internal `timegm2()` function. (#300)

httpuv 1.6.0
============

* Remove BH dependency. httpuv now requires a compiler which supports
  C++11. (#297)

httpuv 1.5.5
============

* Fix SHA1 calculation, and thus WebSocket server handshakes, on
  big-endian systems. (#284)

* Fixed #195: Responses required `headers` to be a named list. Now it
  can also be `NULL`, an empty unnamed list, or it can be
  unset. (#289)

* Allow responses to omit `body` (or set it as `NULL`) to avoid
  sending a body or setting the `Content-Length` header. This is
  intended for use with HTTP 204/304 responses. (#288)

httpuv 1.5.4
============

* Fixed #275: Large HTTP request headers could get truncated if they
  spanned more than one TCP message. (#277)

* Fixed build for Solaris. (#271)

* Fixed a test that had incorrect logic. (#272)

httpuv 1.5.3.1
==============

* Updated libuv to version 1.37.0. (#266)

* Fixed #204: On UBSAN builds of R, there were warnings about
  unaligned memory access. (#246)

* Avoid creating a new Rook error stream object for each request. This
  should improve performance. (#245)

* Resolved #247: httpuv no longer returns a HTTP 400 code for static
  files when the "Content-Length" header is 0. This Content-Length
  header is inserted by some proxies even for messages without
  payloads. (#248)

* Resolved #253: Setting the FRAMEWORK environment variable would
  break compilation.  This change removes any dependency on that
  variable. (#254)

httpuv 1.5.2
============

* In the static file-serving code path, httpuv previously looked for a
  `Connection: upgrade` header; if it found this header, it would not
  try to serve a static file, and it would instead forward the HTTP
  request to the R code path. However, some proxies are configured to
  always set this header, even when the connection is not actually
  meant to be upgraded. Now, instead of looking for a `Connection:
  upgrade` header, httpuv looks for the presence of an `Upgrade`
  header (with any value), and should be more robust to
  incorrectly-configured proxies. (#215)

* Fixed handling of messages without payloads: (#219)

* Fixed #224: Static file serving on Windows did not work correctly if
  it was from a path that contained non-ASCII characters. (#227)

* Resolved #194, #233: Added a `quiet` option to `startServer`, which
  suppresses startup error messages that are normally printed to
  console (and can't be intercepted with `capture.output()`). (#234)

* Added a new function `randomPort()`, which returns a random
  available port for listening on. (#234)

* Added a new (unexported) function `logLevel()`, for controlling
  debugging information that will be printed to the
  console. Previously, httpuv occasionally printed messages like
  `ERROR: [uv_write] broken pipe` and `ERROR: [uv_write] bad file
  descriptor` by default. This happened when the server tried to write
  to a pipe that was already closed, but the situation was not
  harmful, and was already being handled correctly. Now these messages
  are printed only if the log level is set to `INFO` or
  `DEBUG`. (#223)

* If an application's `$call()` method is missing, it will now give a
  404 response instead of a 500 response. (#237)

* Disallowed backslash in static path, to prevent path traversal attacks. (#235)

* Static file serving on Windows could fail if multiple requests
  accessed the same file simultaneously. (#239)
jperkin pushed a commit that referenced this pull request Jun 15, 2021
# forcats 0.5.1

* Re-license as MIT (#277).

* `fct_lump_n()` no longer uses a partial argument name (@malcolmbarrett, #276).

# forcats 0.5.0

* `as_factor()` gains a logical method that always returns a factor with
  levels "FALSE" and "TRUE" (#185).

* `fct_c()`, `fct_collapse()` and `fct_recode()` are now explicitly
  documented as using [dynamic dots](https://rlang.r-lib.org/reference/dyn-dots.html)
  (@labouz, #234).

* `fct_collapse()` now accepts a `other_level` argument, to allow a
   user-specified `Other` level (@gtm19, #194). It now correctly collapses
   factors when `other_level` is not `NULL` (#172), and makes `"Other"` the
   last level (#202) (@gtm19, #172 & #202)

* `fct_count()` no longer converts implicit NAs into explicit NAs (#151).

* `fct_inseq()` behaves more robustly when factor levels aren't all numbers
  (#221).

* `fct_lump()` has been split up into three new functions: `fct_lump_prop()`,
  `fct_lump_n()`, and `fct_lump_lowfreq()`. (@jonocarroll, #167, #142).
  All `fct_lump_()` functions check their inputs more carefully
  (@robinson_es, #169)

* `fct_reorder2()` gains a helper function `first2()`, that sorts `.y` by the
  first value of `.x` (@jtr13).
jperkin pushed a commit that referenced this pull request Aug 17, 2021
v 11.2.11
============================================================
x [nscl] Fixed JavaScript access to CSS rules broken on
  Chromium when unrestricted CSS is disabled - issue #204
x Prevent Chromium builds from being sent to AMO for signing
x [nscl] Fixed CPU/RAM overload on some pages with
  unrestricted CSS disabled but scripting enabled (not
  recommended setting) - issue #194, issue #199
x [nscl] Fixed CPU spikes on Chromium triggered by automatic
  file downloads (thanks ptheborg for report)

v 11.2.10
============================================================
x Cross-browser file naming consistency, in spite of version
  numbering incompatibilities
x [nscl] Fix for potential race conditions on certain page
  transitions (issue #205)
x Handle exception when accessing navigator.serviceWorker on
  sandboxed frames
x MS Edge support

v 11.2.9
============================================================
x [L10n] Updated de, mk
x Replace deprecated extension.getURL() with
  runtime.getURL()
x REUSE-compliant licensing boilerplate
x Remove unused/refactored-out files
x Relicensing as GPL3+
x [nscl] Fixed infinite recursion issue on window.open
  wrappers
x Avoid treating JavaScript files as embeddings when opened
  as top-level documents
jperkin pushed a commit that referenced this pull request Sep 20, 2021
# NLopt Release Notes

## NLopt 2.6.2

15 April 2020

* Fixed forced stop exception with dimension elimination ([#317])

* Fixed `get_initial_step` wrapping ([#319])

* Various build fixes ([#314], [#308], [#303], [#278])

## NLopt 2.6.1

13 April 2019

* Fix `nlopt_version` result for 2.6.x and update soname.

## NLopt 2.6

12 April 2019

* New `nlopt_set_upper_bound` and `nlopt_set_lower_bound` functions in the low-level C API to set one bound at a time ([#257]).

* There is no longer a separate `libnlopt_cxx` library: C++ algorithms (STOGO and AGS) are compiled and included by default ([#198]).

* Various build fixes ([#197], [#216], [#245], [#250], [#230], [#261], etc.), other fixes ([#242], [#258]).

## NLopt 2.5

26 July 2018

* New AGS global solver ([#194]), thanks to Vladislav Sovrasov.

* New `nlopt_get_numevals` function providing a built-in evaluation counter ([#160]).

* New `nlopt_get_errmsg` function for more descriptive error messages.

* Build system is converted to `cmake` ([#49]), thanks to Julien Schueller

* Plugins updated for recent Octave and Guile versions.

* Various other build fixes and minor bug fixes.
jperkin pushed a commit that referenced this pull request Nov 28, 2021
Changes since 0.1.1:

> This version has some breaking changes in the config file and, you will
need to regenerate the config for all features to work.

## Notable changes
- The tool is now compatible with next-gen/team-managed project.
- New filters when listing issues, viz:
  - Filter by parent: This will allow you to list all sub-tasks of a task.
  - Order by filter: This will allow you to display a list sorted by their
    rank for example.
- You can now assign epic to the issue on creation.
- You can add issues to the sprint with `jira sprint add`

## What's added?
- feat: Allow to assign epic on create #194
- feat: Cmd to add issues to sprint #205
- feat: Allow to filter by parent #197
- feat: Add order-by filter #206
- feat: Add type on project listing #190

## What's fixed?
- fix: Make epic add work in next-gen project #195
- fix: Epic creation for next-gen project #192
- fix: Make epic remove work in next-gen project #196
- fix: Make epic list work for next-gen project #201
- fix: Segmentation fault on view #202
- fix(tui): Link/key copy is broken for altered key col #204

## Config changes
- cfg!: Expand config to include project type #191
- cfg!: Rename field to name and add link field to epic #193

## Dependency updates
- dep: Upgrade rivo/tview #176
- dep: Upgrade outdated deps to latest #177
- dep: Use Go 1.17 #178


**Full Changelog**: ankitpokhrel/jira-cli@v0.1.1...v0.2.0
jperkin pushed a commit that referenced this pull request Nov 28, 2021
0.5.8 (2021-11-10)

Added

* Added more documentation files to packaged gem, e.g. SECURITY.md,
  CODE_OF_CONDUCT.md

Fixed

* Removed reference to RUBY_VERSION from gemspec, as it depends on rake
  release, which is problematic on some ruby engines. (by @pboling)

0.5.7 (2021-11-02)

Added

* Setup Rubocop (#205, #208 by @pboling)
* Added CODE_OF_CONDUCT.md (#217, #218 by @pboling)
* Added FUNDING.yml (#217, #218 by @pboling)
* Added Client Certificate Options: :ssl_client_cert and :ssl_client_key
  (#136, #220 by @pboling)
* Handle a nested array of hashes in OAuth::Helper.normalize (#80, #221 by
  @pboling)

Changed

* Switch from TravisCI to Github Actions (#202, #207, #176 by @pboling)
* Upgrade webmock to v3.14.0 (#196 by @pboling)
* Upgrade em-http-request to v1.1.7 (#173 by @pboling)
* Upgrade mocha to v1.13.0 (#193 by @pboling)
* HISTORY renamed to CHANGELOG.md, and follows Keep a Changelog (#214, #215
  by @pboling)
* CHANGELOG, LICENSE, and README now ship with packaged gem (#214, #215 by
  @pboling)
* README.rdoc renamed to README.md (#217, #218 by @pboling)
* Require plaintext signature method by default (#135 by @confiks &
  @pboling)

Fixed

* Fixed Infinite Redirect in v0.5.5, v0.5.6 (#186, #210 by @pboling)
* Fixed NoMethodError on missing leading slash in path (#194, #211 by
  @pboling)
* Fixed NoMethodError on nil request object (#165, #212 by @pboling)
* Fixed Unsafe String Comparison (#156, #209 by @pboling and @drosseau)
* Fixed typos in Gemspec (#204, #203, #208 by @pboling)
* Copyright Notice in LICENSE - added correct years (#217, #218 by @pboling)
* Fixed request proxy Class constant reference scopes - was missing :: in
  many places (#225, #226 by @pboling)

Removed

* Remove direct development dependency on nokogiri (#299 by @pboling)
jperkin pushed a commit that referenced this pull request May 1, 2022
# cpp11 0.4.2

* Romain François is now the maintainer.

# cpp11 0.4.1

* Fix crash related to unwind protect optimization (#244)

# cpp11 0.4.0

## New Features

* New  opt-in  message  formatting  with the  {fmt}  C++  library  for
  `cpp11::messages()` `cpp11::stop()` and `cpp11::warning()`.  Set the
  `CPP11_USE_FMT`    macro   to    use    this    feature   in    your
  package. (@sbearrows, #169, #208)

* New `as_double()` and `as_integer()` methods to coerce integers to
  doubles and doubles to integers to doubles (@sbearrows, #46)

* `cpp11::matrix` iterators can now be used either row-wise or
  column-wise (the default) depending on the user's choice (@alyst,
  #229)

## Improvements and fixes

* Read-only matrix accessors are now marked const (#234)

* `writable::r_vector` default constructors now return a 0 length
  vector when converted to `SEXP` (#166)

* Read-only `r_vector` constructors now disallow implicit construction
  with named arguments (#237)

* Read-only `r_vector.attr()` methods now return const objects, so it
  is a compile time error to try to assign to them (#237)

* Fixed `+` and `+=` operators of `r_vector::[const_]iterator` to
  conform the *iterators* concept: `+=` updates the iterator, and `+`
  returns the updated copy, while keeping the original unchanged
  (@alyst, #231)

* Remove undefined behavior when constructing global `cpp11::sexp`s (#224)

* Removed redundant `.Call calls` in cpp11.cpp file (@sbearrows, #170)

* Error messages now output original file name rather than the
  temporary file name (@sbearrows, #194)

* `cpp_register()` now includes `attribute_visible` in the init
  function, so packages compiled with `C_VISIBILITY` will find the
  init function.

* Fixed bug when running `cpp_source()` on the same file more than
  once (@sbearrows, #202)

* Allow cpp11 decorators of the form `cpp11::linking_to` (@sbearrows,
  #193)

* Removed internal instances of `cpp11::stop()` and replaced with C++
  exceptions (@sbearrows, #203)

* Names of named lists are now resized along with the list elements
  (@sbearrows, #206)
jperkin pushed a commit that referenced this pull request Jul 4, 2022
4.30 2022-06-14 (rurban)
        - Fix perl 5.37 utf8n_to_uvuni deprecation. GH #196

4.29 2022-05-27 (rurban)
        - Hack: Revert native bool (unblessed) overloads via JSON::PP 4.08.
          JSON::PP ignores unblessed bools for now. GH #194

4.28 2022-05-05 (rurban)
        - Validate the JSON struct which might get corrupted by wrong FREEZE/THAW
          methods, or other serializers, or corrupting our magic object. (GH #192)
        - Improve our DESTROY and END methods to avoid NULL dereferences.
          Fixes perl-compiler/#438
        - Fix 3 tests in t/20_unknown.t with the latest 5.35.10 bool enhancements
          and JSON::PP (GH #194)
        - Fix t/118_type.t with Windows ivtype long long. (GH #178)
        - Added github actions

4.27 2021-10-13 (rurban)
        - Only add -Werror=declaration-after-statement for 5.035004 and earlier (PR #186 nwc)
	- Fix 125_shared_boolean.t for threads (PR #184 Sinan Unur)

4.26 2021-04-12 (rurban)
        - Fix compilation with C++ (GH #177)

4.25 2020-10-28 (rurban)
        - Fix decode relaxed with comment at the end of the buffer (GH #174 fgaspar), a regression
          introduced with 3.0220, to fix n_number_then_00.
        - Possible fix for a gcc-9 optimizer bug (GH #172)

4.24 2020-10-02 (rurban)
        - Fix decode_json(scalar, 0) (GH #171 plicease), check 2nd arg for true-ness
jperkin pushed a commit that referenced this pull request Jul 24, 2022
## Version 4.9 - release 2022-07-20

- Remove debug logging from `rsa/key.py`
  ([#194](sybrenstuvel/python-rsa#194)).
- Remove overlapping slots in `PrivateKey` and `PublicKey`.
  ([#189](sybrenstuvel/python-rsa#189)).
- Do not include CHANGELOG/LICENSE/README.md in wheel
  ([#191](sybrenstuvel/python-rsa#191)).
- Fixed Key Generation Unittest: Public and Private keys are assigned the wrong way around
  ([#188](sybrenstuvel/python-rsa#188)).
jperkin pushed a commit that referenced this pull request Sep 28, 2022
============
Glade 3.40.0
============
	- Remove survey
	- Add user manual menu item (Sabri Ünal)
	- 'Clear' action in "Setup Text Attributes" dialog now clears only selected attributes (crvi)
	- Fix issue #502 sync draw-indicator on setting xalign (Caolán McNamara)
	- Fix issue #499 and #509 "Drop overzealous check using only the first child"
	- Fix Segfault in gnome-builder when widget doesn't have a name (Peter Maatman)
	- Fix issue #373 "Move separator in hamburger menu one up, to be consistent with other GNOME applications"
	- Fix build against Python 3.9
	- Fix issue #484 "Crash with GtkRecentChooserDialog"
	- Fix issue #194 "Using List Store can result in program crash."
	- Fix issue #53 "Can't choose a FileChooserDialog for a FileChooserButton"
	- Fix issue #98 #491
	- Fix issue #355 "Make notification text selectable"
	- Fix windows build on msys
	- Fix issue #360 "No examples in documentation on using custom catalogues with gtkBuilder"
	- Fix issue #406 "AtkObject::accessible-role should not be translatable"
	- Fix issue #479 "Glade 3.36.0 segfaults when opening a file"
	- Fix issue #471 "XML not updated after adding element"
	- Fix issue #474 "GtkLabel: setup text attribute issues"
	- Fix issue #480 "version field not always updated in XML"
	- Fix issue pasing widget with ctrl+v in GtkGrid
	- Fix issue #470 "Widgets of type need placeholders to add children"
	- Fix issue #472 "gnome-nightly: About dialog should display git commit rev"


============
Glade 3.38.0
============

	- Load template files as new GTypes and add them to "User templates" widget group automatically without the need of a catalog
	- Added JavaScript widget support
	- Use version data from gir to improve deprecation/target tests
	- Implement survey using new backend at surveys.gnome.org
	- Keep survey state in config file
	- Associate with application/x-gtk-builder (Caolán McNamara)
	- Project properties dialog improvements. (Use headerbar, stack and stach switcher, add warnings textview)
	- Improve toolkit target version selection in project properties dialog
	- Improve treemodel char data type handling
	- Remove autotools (Iñigo Martínez)
	- New gjs-1.0 1.64 dependency
	- Bump Gtk dependency to 3.24
	- Bump webkit2gtk dependency to 2.28
	- Fixed all compiler/gir warnings
	- Issue #385: GtkCellRendererText causes deprecated warnings for ghost properties
	- Issue #444: show-emoji-icon is missing "minimum version"/since constraint
	- Issue #367: Glade removes double/triple slashes from URLs
	- Issue #452: GtkComboBox cell renderers editor is too hard to discover
	- Issue #363: Toplevel windows are leaked when closing a project
	- Issue #462: Crash when creating a new GtkAssistant and pressing it
	- Issue #463: Specify file on command line
	- Issue #461: Glade resets number of rows and columns in GtkGrid
	- Issue #460: 3.37.0: test suite fails because glade uses incorrectly asserts in test units
	- Issue #412: Fix inconsistent "top-level", "top level", "toplevel" spelling in translatable strings
	- Issue #281: GladeProperty: Do not replace - with _
	- Issue #389: GladeProject: show message on invalid GtkBuilder file
	- Issue #446: GladeGtkListBox: fix size request issue
	- Issue #432: GladeStandarStock, GladeStandarStockImage: fix get_type() functions for introspection
	- Issue #447: GladeGtkWindow: Fix CSD support
	- Issue #456: Utils: use g_param_spec_uchar() for uchar types
	- Issue #459: Gtk catalog: add GtkRecentChooserMenu to Display group
	- Issue #433: Implement survey using new backend at surveys.gnome.org
	- Build: use gtk-mac-integration only when creating bundle (Tom Schoonjans)
	- Ignore locale when saving numeric values (Alberto Fanjul)
	- Remove config for external builds (Alberto Fanjul)
	- Python plugin: fix linking error
	- Tests: add python and javascript test case
	- gtk: Add GtkScrolledWindow propagate-natural-width property (Corentin Noël)
	- GladeScrolledWindowEditor: Squeeze width/height properties in two columns
	- Gtk plugin: add missing displayable values
	- Webkit2gtk plugin: add missing displayable values and sandbox web view
	- dtd: Make init-function an element, not an attribute (Adrien Plazas)

Added/updated translations

	- ca, courtesy of Gil Forcada
	- ca, courtesy of Miquel-Àngel Burgos i Fradeja
	- cs, courtesy of Marek Černocký
	- da, courtesy of Ask Hjorth Larsen
	- da, courtesy of Last-Translator: scootergrisen
	- de, courtesy of Tim Sabsch
	- en_GB, courtesy of Bruce Cowan
	- es, courtesy of Daniel Mustieles
	- eu, courtesy of Asier Sarasua Garmendia
	- fr, courtesy of Thibault Martin
	- gl, courtesy of Fran Dieguez
	- hi, courtesy of Last-Translator:Sunny Sharma
	- hu, courtesy of Balázs Úr
	- id, courtesy of Kukuh Syafaat
	- kk, courtesy of Baurzhan Muftakhidinov
	- ko, courtesy of Changwoo Ryu
	- lt, courtesy of Aurimas Černius
	- pl, courtesy of Piotr Drąg
	- pt_BR, courtesy of Rafael Fontenelle
	- ro, courtesy of Florentina Mușat
	- sl, courtesy of Matej Urbančič
	- sv, courtesy of Anders Jonsson
	- tr, courtesy of Emin Tufan Çetin
	- uk, courtesy of Yuri Chornoivan
	- zh_CN, courtesy of Mandy Wang

============
Glade 3.36.0
============

	- widget: canonicalize support-warning property name
	- tests: Include back GtkTreeViewColumn
	- gtk+: properly cast to avoid warnings
	- gtk+: workaround truncation warning by being safer
	- gladeui: remove unused type_func variable
	- gladeui: Ensure that we write the "type-func" property when a get-type-function is defined in the catalog
	- Allow to specify placeholder to GtkListBox
	- gtk+: Allow to use GtkResponseType with GtkDialog and GtkInfobar buttons
	- gladeui: Change the boolean parsing logic to be the same as Gtk
	- Appdata: update app-id
	- Update FSF address
	- gladeui: Modernize GladeSignalEditor codebase
	- RDNN appdata & desktop file
	- gtk+: Add homogeneous property to GtkStackSwitcher
	- gladeui: Fix wrong pointer convertion in GladeDesignView
	- gtk+: Provide Gtk 3.22 properties for GtkScrolledWindow
	- gtk+: Add missing 3.22 enum/flag values
	- gladeui: Modernize GladeWidgetAdaptor definition
	- gtk+: Keep internationalization context in Atk properties
	- gladeui: Plug tiny leak on Drag & Drop
	- gladeui: Fix crash on drag-n-drop
	- gladeui: fix several tiny memory leaks found with valgrind
	- Make it easier to track GladeXML elements and be GObject Introspection friendly by registering boxed types
	- gladeui: Replace the last occurences of GladeWidgetClass with GladeWidgetAdaptor in the comments
	- gladeui: Use G_DECLARE_FINAL_TYPE for GladeObjectStub
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeNamedIconChooserDialog
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeInspector
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeEditorProperty
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeEditor
	- gladeui: Use G_DECLARE_INTERFACE for GladeEditable
	- gladeui: Use G_DECLARE_INTERFACE for GladeDrag
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeDesignView
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeDesignLayout
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeCommand
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeClipboard
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeCellRendererIcon
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeBaseEditor
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeApp
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeAdaptorChooserWidget
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeEditorSkeleton
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeEditorTable
	- dnd: Enable Drag&Drop on wayland
	- gladeui: remove implicit cast in assignment
	- build: remove G_CONST_RETURN usage
	- gladeui: ignore various GParameter deprecations
	- Fix on debug traces after rename GladePropertyClass to GladePropertyDef
	- meson: Activate enable-debug variables
	- Prevent dragging an ancestor inside a child
	- GladePopup: Clear add item when adding as toplevel
	- GtkImage: Fix icon size being reset
	- build: Fix OSX support in meson
	- build: Do not use a system variable only for Windows
	- Fix loading dylibs on OSX
	- Set the "About Dialogue" as modal
	- Fix split sentense in GladeProject
	- Adding "Glade" to "About" section.
	- Respect the Glade namespace for macros and defines
	- Rename *Klass to *Class as there are no name collision anymore
	- Fix two memory leaks discovered with valgrind
	- GladeSignalDef: fix documentation for glade_signal_def_set_deprecated
	- Rename GWActionClass to GladeWidgetActionDef to use the right namespace
	- Rename GladePropertyClass to GladePropertyDef and declare it as boxed
	- Rename GladeSignalClass to GladeSignalDef and declare it as boxed
	- Create GladeSettings to hold the settings instead of using a Gtk widget for holding it
	- Add GDK_VERSION_MIN_REQUIRED
	- Utils: get the absolute path but avoid accessing it
	- Fix several compiler warnings
	- Replace some functions by Gtk 3.22 ones
	- GladeSignalClass: rename glade_signal_class_get_type
	- Allow to use GtkFileChooserNative
	- GladeProperty: Keep the bind-source, bind-property and bind-flags elements
	- Couple of fixes for memory leaks found with valgrind
	- GtkLinkButton: allow to edit the label
	- gladeui: Fix several memory leaks with GladeWidgetAdaptor
	- gladeui: Fix leak of create_type in GladePropertyClass
	- gladeui: fix memory leak in GWActionClass
	- introspection: Add many annotations to sources
	- No wide handles in `center_paned` and `left_paned`
	- flatpak: Set meson as buildsystem
	- build: Port to meson build system
	- gtk+: Add deprecated flag to GtkButton and GtkImage stock properties
	- doc: remove missing xml files
	- doc: Modernize the documentation
	- docs: Make some changes to fix warnings with the documentation
	- Add metadata information about releases
	- i18n: Do not use input file for not translated files
	- Fix xgettext string extraction for catalogs
	- snap: update for icon filename changes
	- Add translator comments to the .desktop file
	- gladeui-2.0.pc: Data paths relative to datadir
	- icon: update app icon
	- GladeProject: escape markup in parser errors
	- Use autoreconf instead deprecated gnome-common
	- Stop defaulting missing images to deprecated stock icons
	- Migrate from intltool to gettext
	- gladeui: Fix GIR package reference and add c-include
	- dtd: Add several new elements
	- Add initial implementation of Automatic Templates
	- GladeIntro: fix regresion in find_widget_forall()
	- GladeProject: add handler signals
	- GladeEditor: expose signal editor widget as a property
	- GladeIntro: use name and buildable name to find widgets
	- GladeWindow: simplify pointer mode actions
	- GladeWindow: move actions to GtkApplication
	- GladeEPropAttrs: use sane adjustment values for size and scale attrs
	- GtkActionable: add action-target property
	- Fix tab/space identation
	- GladeWidgetAdaptor: add glade_widget_adaptor_get_display_name()
	- GladeWindow: port to GtkApplication
	- Remove GladeInstantiable prefix from UI
	- GladeGtkBin: add initial support for GtkBin abstract class
	- GladeWidget: add support for abstract classes
	- widget-editor: Replace margin right/left for end/start
	- GladeModelButton: improve editor
	- GladeEditorProperty, GladePropertyClass, GladeWidgetAdaptor:
	- GladeModelButton: enable icon/iconic properties
	- Gtk plugin: add support for GFileIcon
	- Add initial support for GFile type properties
	- Bump Gtk required version to 3.22
	- GladeGtkBox: improve children sort function
	- GladeGtkHeaderBar: Improve position packing property handling
	- Add OARS tags
	- Gtk catalog: mark GtkImageMenuItem as deprecated since 3.10
	- GladeWidgetAdaptor: added deprecated-since metadata
	- GladeImageItemEditor: use display name for commands names
	- GladeCommand: ensure widget name on object properties
	- GladeGtkAdjustment: add digits virtual property
	- GladeEPropNumeric: bind precision property to spin button
	- GladeProperty: add precision property
	- GladePropertyClass: round floating point values to epsilon
	- ui/widget: Make template ver# warning more useful
	- GladeCommand: ignore special child types placeholders in add command. GladeGtkWindow: mark titlebar placeholder as special child type.
	- Gtk Catalog: add back GtkStatusbar
	- GladeGtkHeaderBar: mark title and subtitle as translatable
	- GladeGtkDialog: chain up post_create() method
	- GladeGtkWindow: remove get_children() method
	- GladeAdaptorChooser: add missing translation domain
	- GladeGtkWidget: save accessible-role atk property
	- GladeGtkWindow: fix regression in csd handling

============
Glade 3.22.0
============

	- Fix bug 774994 "in treeview columns editor contextual menu does nothing"
	- Simplified GladeBaseEditor
	- Fix formatting / layout of project verification details (Daniel P. Berrange)
	- Widget chooser: activate treeview with single click and enable Drag & Drop
	- Fix Design view selected state
	- Fixes bug 793036 "GtkCellRenderer Properties not loaded from glade file" (peter Onion)
	- Fix bug in action widgets response-id parsing on 32bits system
	- Fix bug 772485 "File Name property of GtkImage is copied to all other GtkImage"
	- GladeProject: always treat resource properties as relative
	- Fix bug 793652 "Crash when deleting a list"
	- Fix bug 793757 "Gtk-CRITICAL **: _gtk_window_add_popover: assertion '_gtk_widget_get_parent (popover) == NULL' failed"
	- Add GDK_SUPER_MASK accelerator handling (Sebastian Stang)
	- Fix bug #778537 "ActionBar need placeholder"
	- Fix bug #794141 - Gtk.IconView disappeared from glade (Albfan)

============
Glade 3.21.0
============

	- Main window UI overhaul
	- An enhanced enum integer editor based on patch contributed by Lukas K
	- Added GtkGLArea object to gtk+ catalog
	- Initial support for WebKit2GTK+ library
	- Add GtkStackSidebar to control and display widget group
	- Bug 767812 "Please don't list 'Taiwan' as 'Taiwan, Province of China' in the country list"
	- Bug 763188 - Use correct tag when referring to Palette (Sebastian Rasmussen)
	- Fix typo in translatable string; fixing old bug 746531 (Tristan)
	- Fix markup typos (Andre Klapper)

============
Glade 3.20.2
============

	- Fix bug 763624 "Glade interface designer eating ram & cpu" (Arnaud Rebillout)
	- Install appstream metadata to non-deprecated location (Jeremy Bicha)
	- Fix bug 790452 "Glade saves invalid GtkBuilder XML"
	- Fix bug 782645 "GtkLabel xalign and halign appeared in GTK+ 3.16 and are not deprecated" (Arnaud Rebillout)
	- Fix bug 773669 "add background class to GladeDesignLayout children" (Lukas K)

============
Glade 3.20.1
============

	- Fixed glib g_ptr_array_find() name clash
	- Fixed survey css matching error on CSD
	- Fixed bug #773997 "GLADE 3.20: crash on changing ToolItem type"
	- Fixes bug #765562 "Using Spacebar to change menu selction causes crash"
	- Fixed "format not a string literal" warnings (Bastien Nocera)
	- Fixed bug #765885 "client side decoration, no space to add header bar"
	- Fixed bug #589306 - Clicking in ... swap order of accelerators (Roberto Guido)
	- Fixed bug #761651 "[Wayland] glade previewer is resizing windows until it crashes gnome-shell"

============
Glade 3.20.0
============

	- Workspace layout: render frame and selection box with CSS
	- GtkWindow: don't set the same titlebar multiple times (Ben Iofel)
	- Fixed bug 761839: Fix 'glade' command name in user manual (Anders Jonsson)
	- Fixed bug 536840 - Save palette small icon preference (Tristan)
	- Fixed bug 430445 - null string default title for GtkFileChooserButton (Tristan)
	- Integrate new properties in editor for GtkLabel, GtkTextView, GtkPopover, GtkStackSwitcher (Tristan)
	- Fixed bug 750985 - GtkMisc property deprecations (Tristan)
	- Fixed bug 759872 - Show popovers hidden by model buttons (Tristan)
	- Fixed bug 751234 - Ignore tearoff-state property in the workspace (Tristan)
	- Fixed bug 759455 - Avoid showing window decorations in Glade's workspace (Tristan)
	- Fixed bug 759395 - Ignore ESC key press from popovers (Tristan)
	- Fixed bug 760610: Disable scroll events on property editor widgets (Tristan)
	- Support id-less builder files (DX hackfest)
	- Added missing tags to the AppData file (Richard Hughes)
	- Fixed bug 759847 "Don't crash when popover menu children have no visible-submenu set" Руслан Ижбулатов
	- Added support for GtkActionBar and GtkFlowBox (Matthias Clasen)
	- Main UI frontend: Use wide paned handles (Tristan)
	- Fixed warning about imbalanced children in GtkNotebook support (Tristan)
	- Added support for GtkPopoverMenu and GtkModelButton (Matthias Clasen)
	- Added support for GtkPopover bug 740104 (Matthias Clasen)
	- Fixed bug 754131 "Avoid crashes when loading boxes with center-child children"
	- Added <kudos> section to app data as requested by Richard Hughes.
	- Added missing displayable values bugs 758290, 758289, 758288, 758287 (Matthias Clasen)
	- Deprecate GtkAction, GtkActivatable, and friends bug 757609 (Ben Iofel)
	- Avoid GTK+ style context warnings bugs 758296, 758297, 758299, 758300 (Matthias Clasen)
	- Drop deprecated style properties in GladeCloseButton bug 758280 (Matthias Clasen)
	- Replace use of deprecated gdk_cursor_new (Ben Iofel)
	- Add "Stack" to "Add parent" menu bug 754030 (Florian Richter)
	- Fixed bug 741923 "build: Add dependency on libm for floor() and ceil()" (Philip Withnall)

============
Glade 3.19.0
============

	- Bug 732328 "New: add python3 support" (Bohuslav "Slavek" Kabrda)
	- Added new symbolic variant of the app icon (747024 - Jakub Steiner)
	- Bug #741165 "Previewer crashes when taking PNG screenshot"
	- Added GtkSidebarWidget support (Matthias Clasen)
	- Added GtkStack and GtkStackSwitcher support (738480 - Matthias Clasen)
	- Added GtkHeaderBar support (bug 700914 - Matthias Clasen)
	- Improved undo/redo command list handling.
	- Added GtkBox center-widget support (bug 738473 - Matthias Clasen)
	- Added GtkSearchBar support (bug 738493 - Matthias Clasen)
	- Support CSD windows (Bug 700914 - Matthias Clasen)
	- Use current gtk-mac-integration API (bug 738339 - Philip Chimento)
	- Fixed bug 732575 "Changed the type hint on the "Edit Separately" window to 'utility'" (Tristan)
	- Fixed bug "Missing plural form for UI string: emited %d time(s)"
	- Avoid reading freed data in glade_project_read_requires (David Shea)
	- Added class chooser popover to workspace. (Bug 708146 "Catalog search entry")
	- Added GThemedIcon support.
	- GladePreviewer: show handler information in infobar when a signal is emited.
	- Migrated UI from stock icons to icon names.
	- Seal needed deprecated API and replaced deprecared API.
	- GladeWindow: only show found recent files.
	- Added GtkLockButton support.

============
Glade 3.18.3
============

	- Fixed property editor focus lost bug with construct-only properties
	- GladePreviewer: Fixed bug previewing templates.
	- Fixed Bug 727914 "Logo is not shown in About-dialog"
	- Fixed Bug 353002 "wrong cursor over widgets"
	- Fixed bug 728377 "sensitivity of mnemonic-widget entry is not correct when loading file" (David Shea)
	- Fixed bug 728348 "impossible to set non-integer values for scale in text attribute dialog" (David Shea)
	- Fixed bug 726410 "Save palette appearance between sessions" (TingPing)

============
Glade 3.18.2
============

	- Added dialog at start up to advertise user survey.
	  Fixes bug 726800 "New: UI break: add dialog to advertise user survey"
	- Fixes bug 727992 "Editing UI and saving does not remove deleted Combo with Entry"
	- Fixed bug 364064 "Property Editor / Common tab: width & height request checkboxes have no effect"

============
Glade 3.18.1
============

	- Fixed Bug 727014 "32 bit builds fail with -Werror=format-security"
	- GtkDialog: disabled use-header-bar property untill Glade supports GtkHeaderBar
	- Fixed bug in numeric property editors (Box size)

============
Glade 3.18.0
============

	- Added License property to Glade project
	- Added realtime preview for custom CSS
	- Added support for previewing templates
	- glade-previewer added --slideshow option
	- Fixed Bug 702314 "Cancelling an Add Parent action is destructive"
	- pango attribute editor: don't write on cancel for color/font (Timm Bäder)
	- Fixed bug 711568 "[PATCH] glade crashes upon startup" (thanks to Lubomir Rintel)
	- Fixed Bug 712289 "Glade silently fails to open malformed ui file"
	- Sort object dependancy before saving using a topological sorting algorithm
	- Fixed Bug 709609 "[PATCH] Change way of sorting before writing XML output."
	- Fixed Bug 711858 "editing glade project results in long CPU usage spikes after upgrading to 3.16 and GTK+3.10"
	- Fixed <requires> tag output
	- Fixed cellrenderer model column combobox chooser.
	- Fixed issue with numeric property editors.
	- Restored shortcuts function in workspace.
	- Added new jhbuild based bundling system for 64bit linux bundles. (Tristan Van Berkom)
	- Bug 720585 - Fix order of customized property output.
	- gladeui: fix a pair of printf security problems (Ryan Lortie)
	- Added Registration & User Survey Dialog in Help menu
	- Fixed bug 723819 "Correct bounds checking for design view highlight" (Chris Johns)
	- Fixed bug #721098 "Anjuta hangs when opening project"
	- GtkGrid: Don't save width/height at their default values (Kalev Lember)

============
Glade 3.16.0
============

	- Added AppData for gnome-software to pick up glade
	  Fixes bug 708641 "Please include an AppData file"

============
Glade 3.15.4
============

	- Fixed bug when copying a button with custom content.
	- Added workaround for Bug 625867 "RadioButton information lost on cut+paste, add/remove parent, etc"
	- Fixes bug that prevented the runtime object to show the right pixbuf when copying a GtkImage.
	- Fixed Bug 679079 "Glade changes the "homogenous" packing property of toolbar buttons to "yes""
	- Improved pango text integer attributes editors. This should be enough to close Bug 679006
	  "The "size" attribute for labels only accepts integer values (not strings like "larger")"
	- Fixed bug 643923 "Should not use markup for GtkFrame's label"
	- Fixed bug 584381 "Saving as an existing file name except the extension overwrites without confirmation."
	- Fixed Bug 652655 "Setting entry on combobox moves the widget"
	- Fixed Bug 706304 "Python plugin broken by over-zealous version check" Bumped pygobject version to 3.8.0
	- Fixed regresion that prevented loading extra catalog path at init time.

============
Glade 3.15.3
============

	- Add man pages bug 703013 (Matthias Clasen)
	- Fixed bug #700730 - Weird windows showing up when a dock is moved while editing a GtkBuilder file
	  (Sébastien Granjoux)
	- Double click on a toplevel border select the widget even if there is a child selected.
	- Support document level comments present before the root element.
	- Save glade version used to create the file in a comment.
	- Add GtkRevealer to the Gtk+ catalog (Timm Bäder)
	- Add GtkListBox support (Kalev Lember)
	- Added GtkOverlay support
	- Improved Drag&Drop support, made inspector a drag source
	- Added GtkApplicationWindow basic support
	- Added GtkSearchEntry icons
	- Fix autogen with latest gnome-common bug 706832 (Seán de Búrca)
	- Fix a few typos bug 707173 (Christian Kirbach)
	- Fixed Bug 703621 - Signals treeview: click on user data moves the selected row below (Miguel Azevedo)

============
Glade 3.15.2
============
	- Add GtkPlacesSidebar to GTK+ catalog (Federico Mena Quintero)
	- New icon for GtkMenuButton (Paolo Borelli)
	- GTK+ catalog version now bumped to 3.10, include new translatable enumeration values
          and updated new versions and deprecations
	- Added --enable-debug option and some debug flags to be set with GLADE_DEBUG environment variable
	- Enable word wrapping in combo boxes (used to edit enumeration properties)
	- Split up the GTK+ plugin into mini source files, each one implementing it's own widget adaptor
	  code (instead of one huge glade-gtk.c file)
	- Fix GtkIconFactory sources editor (was very broken)
	- Allow setting the "id" attributes of items set in a GtkComboBoxText
	- Avoid calling gtk_stock_list_ids() when gdk_display_get_default() is NULL, allows GIRs to
	  build on some build machines.
	- Avoid updating the inspector treeview if the same project is set twice (Marco Diego Aurélio Mesquita)
	- Escape key cancels a query dialog instead of approves creation of the new widget
	- Many minor bugs and random crasher bugs also fixed
	- Alsmost all widget types have their own custom editors now

============
Glade 3.15.1
============

	- Much UI fixing and refactoring (Juan Pablo Ugarte)
	- Added new --css and --screenshot options to glade-preview (Juan Pablo Ugarte)
	- Fix main window shortcuts (bug 695866 Juan Pablo Ugarte)
	- Implemented Project Properties dialog with Glade as a composite tempalte (Juan Pablo Ugarte)
	- Support editing the GtkWidget:name property (useful for CSS theming)
	- Improved project inter-widget dependancy calculation and project serialization ordering,
	  object output ordering (and signal ordering) is now consistent and sorted.
	- GtkButton: response-id for dialogs is now optional (allowing adding dialog buttons that
          have no dialog response)
	- GtkImage: Support the new "resource" property
	- GTK+ catalog updated to cover widgets in GTK+ 3.8
	- Now show warnings in the UI for deprecated properties and signals
	- Now show warnings in the Inspector view if any deprecated widgets, signals
	  or properties are used (or if anything is used which is not available in
	  the project's target version).
	- Optional properties are now always saved if they are enabled, allowing
	  to explicitly set them to the default value (eg. GtkWidget:hexpand/vexpand)
	- Inspector search entry: Restore completions to work nicely again and filter
	  the treeview with a search-in-text algorithm.
	- Inspector: Add a feature to expand-all
	- Property editor title-bar is now optional in the View menu
	- Fixed many deprecation warnings in Glade's compile
	- Added Glade's first 2 ever unit tests
	- Fixed Devhelp doc search for properties (Juan Pablo Ugarte)
	- Make Drag'n'Drop work on regular clicks without entering Drag Mode
	  and restored old Drag/Resize functionality when SHIFT is pressed (Juan Pablo Ugarte)
	- Improved Drag/Resize which has been rather broken for a while
	- Added Autosave and Automatic backup of previous file features, configurable
	  in Glade's preferences Dialog
	- Support Composite GtkBuilder template editing (mark a toplevel GtkWidget as
	  the "composite template" widget in the Project Properties dialog or
	  property editor).
	- Support editing of the project domain in the project properties dialog (Juan Pablo Ugarte)
	- Properties in the Project Properties dialog are now undoable
	- GladeSignalEditor: Automatically expand rows which have signal callbacks assigned when
	  loading a widget
	- Add options to decide what types of warnings should be presented at project save time,
	  configurable in Glade's preferences dialog.
	- Added new property editor components GladePropertyLabel, GladePropertyShell and
	  GladeEditorSkeleton, allowing us to create custom property editors using Glade.
	- Add "Grid" option to "Add parent" menu (Dmitrijs Ledkovs)
	- Added Gladeui catalog for IDE's and embedders to design Glade frontends with Glade
	- Added private catalog to allow the GTK+ plugin to embed editors that it provides
	- Added new GladeEpropCheck boolean property editor, to be used in some cases for
	  boolean properties.
	- Added new adaptor methods GladeWidgetAdaptor->write_widget_after() and
	  GladeWidgetAdaptor->destroy_object()
	- Automatically generate gladeui's enum types with glib-mkenums
	- Modified properties now show up in italic letering instead of bold, bold
	  lettering is reserved for title labels in custom property editors.
	- New components that now use GtkBuilder Composite Templates (and have had
	  a basic review and rework of their UIs): GladePreferences (Glade's preferences
	  dialog), GladeEditor (the property editor), GladeProjectProperties (the project
	  properties dialog) and custom property editors: GladeActivatableEditor,
	  GladeButtonEditor, GladeEntryEditor, GladeImageEditor, GladeLabelEditor, GladeWidgetEditor
	- And... many various bugfixes and UI fixes by Juan Pablo and myself.

============
Glade 3.15.0
============

	- Added Drag&Drop support from the palette and within the workspace.
	- Added GtkLevelBar support
	- Property editor UI cleanup
	    Hide Property editor class title
	    Moved clear and info buttom to the action widget of the notebook.
	    Updated atk icon with gnome's accessibility icon.
	    Text entry: Replaced buttons with 3 dots [...] for a secondary edit icon in the entry itself.
	    Removed treeview from flags editor.
	    Do not let every propery input expand if not nescesary.
	    Boolean input: replaced toggle buttons with a switch.
        - Fixed bug #685265 "Excessively Selected for Translation" Daniel Mustieles
	- Fixed bug #688326 "pointer tracking is off" by using every coordinate relative to GladeDesignLayout.
	- Fixed bug #678922 "When editing a label, the cursor is moved to the end after every change."

============
Glade 3.14.0
============

	- Updated GtkAssistant support. Fixed bug #664276
	- Set new property accel-group on action groups to make menu item accel work properly. Fixes bug 684041
	- Do not abort if a project has a uninstantiable or abstract class object instead load it
	  as an object stub and let the user what to do. bug #646259
	- Fixed runtime warning on GladeBaseEditor and GladeSignalEditor dispose methods
	- Do not explicit set window bg as it should be handled by gtk.
	- Sync close-button with the original gedit widget.
	  This way the proper symbolic close icon is used for the button. (Paolo Borelli)
	- Use new documentation infrastructure (Javier Jardón)
	- Added load/save/edit support for <style> <class name="foo"/> </style>, Fixes bug 658035.
	- Fixed Bug #679589 "Use Action Appearance not supported for GTK 2.12 but added to widgets in Glade 3.8.2"
	- Fixed bug #679487 "Huge memory leaks"
	- Fixed bug #679721 "mac-integration: missing 'widget' variable declaration"
	- Added glade_displayable_value_set_disabled() functions to disable GdkModifierType reserved values
	- Added build/mingw-w64 directory with script to cross compile and create windows installer using nsis
	- Fixes bug #675977 "Don't hard-code library search paths"
	- And many others cleanups and fixes

============
Glade 3.13.0
============

        - Implemented Glade UI in glade! (Use GtkBuilder and GResources to build GladeWindow contents)
        - Implemented GladePreferences dialog.
          Fixes bug 588981 "Catalog support in GUI preferences instead of using environment var"
        - Replaced deprecated font and color selection dialogs with font and color chooser dialogs.
        - Added GladeSignalEditor::detail-suggestions signal
        - Use glade_util_get_placeholder_from_pointer() in paste action activate
        - Fixed bug #675395 "Using right click to add a widget over a placeholder do not work as expected every time"
        - Fixed bug #675042 "plugins/gtk+.xml.in: always store GtkButton [x|y]align properties"
        - Added custom style provider to setup GladeDesignView and GladeDesignLayout background color to @base_color
        - Fixed memory leak on GladeSignalEditor::callback-suggestions emison
        - Removed use of lots of deprecated functions

============
Glade 3.12.0
============

        - Implemented GladeSignalEditor::callback-suggestions signal based
          on patch by Marco Diego Aurélio Mesquita, closes bug #667570
          "Implement callback name suggestion on glade-signal-editor"
        - Fixed bug 664912 "GtkGrid assumes 3x3 (edit)"
        - Fixed bug 645340 "Minor string typo" and bug 646366 "non-sense UI string"
        - Fixed bug 669272 "Emit a signal to notify signal activation" by Marco Diego Aurélio Mesquita

============
Glade 3.11.0
============

	- Added GtkSwitch, GtkInfoBar and GtkEntryCompletion support.
	- Implemented inline margins and alignment edit mode.
	  Now it is posible to change widget's margins and alignment using the mouse.

	- Ignore GtkWindow:icon property. Fixes bug #654121
          "workaround gtk segfault: icon on gtkwindow segfault in offscreen"
	- Bump pygobject requisite to pygobject 3. Fixes bug #658667. Ignacio Casal Quinteiro
	- Make GladeProject change gtk target to 3.0 and warn the user if there are
	  any unknown (deprecated) objects.
	  Fixes bug 652673 "Project versions are ignored" and 376628 "Deletes unknown widget nodes."

	- Make documentation parallel installable (bug 646997).
	- Renamed catalog and module environment variables.
	- Properly escape special characters while serializing property values (bug 654609 - Fabien Parent)
	- Fix GladeProject to notify "row-has-child-toggled" (fixes bug 651673).
	- Fixed size groups widget selection (bug 647984 - Benjamin Otte)
	- Avoid crashing if glade-previewer is not installed
	  (bug 650899 - Johannes Schmid)
        - Optimized loading time by not updating progressbar on every loaded object.
        - Update placeholders when a grid child's width or height child
	  properties change.
        - Ensure 'related-action' and 'use-action-appearance' are serialized in the right order.
        - Correctly detect the required devhelp version - Javier Jardón
        - Fixed TreeModelFilter bug #657164
        - Fixed bug #660607 "Warnings when using GtkGrid created in Glade 3.10"
        - Fixed glade-previewer bugs
          #660874 "glade-previewer fails to open UI files without top windows"
          #660872 "glade-previewer crashes on non-existent files"
        - Fixed loading correct application icon (bug 648487 fix by Stéphane Maniaci).
        - Fixed "variable set but not used" warnings (-Wunused-but-set-variable)

============
Glade 3.10.0
============
	- Fixed some glitches in the new workspace - Juan Pablo Ugarte
	- Removed the unwritten user manual from the menus.
	- Added support for GdkRGBA properties
	- Add support for editing the PangoFontDesctiption in GtkLabel attributes
	- Put File->Properties before Quit in the File menu - Frederic Peters
	- Added GObject introspection generation to the build - Pablo Castellano & Alan Knowles
	- Added support for GtkRecentChooserMenu
	- More last minute sealing of the api (privatized some more files).
	- Created the GladePreview object to handle previews and fixed
	  preview related bugs - Marco Diego Aurélio Mesquita
	- Added support for editing GtkGrid
	- Icons now available for all widget classes - Florent Thévenet and some by Dolean Samuel.
	- Cleaned up the palette by removing H/V subclasses.
	- Added support for GtkAppChooser* classes.
	- Migrate from PyGTK to PyGObject introspection-based bindings - Craig Keogh
	- Some refactoring of GladeEditable and custom editors in the backend
	- Added a special "deprecation" graphic to overlay on
	  top of deprecated widget icons.
	- Added high-resolution applicaiton icon - Jakub Steiner / William Jon McCann
	- Refactored the core to automate the management of internal children - Juan Pablo Ugarte
	- Fixed loads of bugs, some fixes by Christopher Aillon,
	  Craig Keogh, Cosimo Cecchi, Juan Pablo Ugarte

===========
Glade 3.9.2
===========
	- Added signal for IDEs to track created signal editors, Johannes Schmid.
	- Stop installing catalog .xml.in files, Emilio Pozuelo Monfort.
	- Fixed various memory leaks.
	- Removed GtkTreeSelection from the palette, it's only available as the internal
	  child of a GtkTreeView
	- Fixed Drag'n'Drop image drawing with cairo for signal editor, Johannes Schmid with
	  help from Benjamin Otte.
	- Fixed crashes and memory leaks in the GladeBaseEditor (the editor used for menu editing
	  and treeview editing and the like).
	- Edit->Preferences is now File->Properties
	- Removed option for project naming policies, object ids in GtkBuilder are always unique
	  across the whole file.
	- Render project widgets in the workspace offscreen, this gives us more power over the
	  widgets (combo boxes can now be selected, seletion drawing is now enhanced),
	  Juan Pablo Ugarte.
	- Added support for GtkComboBoxText with a customized editor to edit the combo box items.
	- Added GtkRecentFilter and GtkRecentManager to the palette, GtkRecentFilter can specify
	  patterns, mime-types and applications for the filtering.
	- Added support to edit patterns and mime-types for GtkFileFilter
	- Added <add-child-verify-function> to the plugin backend, we now use this to better police
	  user activities in Glade (notably, you cannot paste a widget that is not a GtkToolItem
	  to a GtkToolBar or the like).
	- Renamed various things from glade-3/glade3 to 'glade' (the Glade icon, the bugzilla database,
	  the git repository etc, help from Javier Jardón).
	- Glade now uses GtkApplication and is a single instance application.
	- Added support for editing a GtkOffscreenWindow
	- Changed the workspace to now include all toplevel project objects, selecting an
	  object from the inspector causes the workspace to scroll to the selected widget,
	  Juan Pablo Ugarte.

===========
Glade 3.9.1
===========
	- Added accelerator and tooltip-text properties to menu items and toolitems
	  in the menu editor (fixes bug 510083).
	- Fixed crashes in liststore editor.
	- Restored italic insensitive state for the < search widgets > text in the
	  inspector search box.
	- Fixed glade.desktop.in.in file to refer to the new 'glade' exec name
	  (fix by Emilio Pozuelo Monfort)
	- Added support for editing GtkToolPalette along with a special tool palette editor.
	- Make GtkToolBar:icon-size an optional property generally set by the theme/settings
	  (like GtkToolBar:toolbar-style property).
	- Removed global selection list from glade-utils.[ch], now all selection is controlled
	  by the relevant project
	- Removed glade_util_class_implements_interface() in favor of g_type_is_a() (closes bug 455734,
	  based on original patch from Juan Pablo Ugarte).
	- Applied patch by Sergio García Lobo to fix bug 487656 and provide mnemonic key access to
	  "Text beside icons" palette option.
	- Added idle function to raise the undocked windows at startup time, closes bug 475421.
	- Fix possible crash when saving new project. bug 622635, fix by Martin Schlemmer.
	- Fixed crash when user performs Drag'n'Drop of < enter column here > and no columns are
	  yet added (bug 633943).
	- Fixed use of uninitialized variables in warning messages, bug 634325, fix by Alex Merry.
	- Set some default HIG values for widgets as per bug 349447.
	- Make query dialog come with a "Create" button instead of an "OK" button, closes hig bug 503621.
	- Added GtkTextTagTable editor, now GtkTextTag can be added to GtkTextTagTable.
	- Made all GdkColor type properties optional, closes bug 457969.
	- Fixed add/remove parent context menu actions so that they work with parentless widget
	  references (i.e. you can add a parent to a GtkToolItemGroup's label widget
	  or a GtkButton's image widget, or remove the parent of a child of a label-widget, etc).
	- Expose internal GtkTreeSelection child of GtkTreeView so that "changed" signal
	  can be connected to. Fixes bug 383766.
	- Included Johannes Schmid's new signal editor work, the GladeSignals are now available
	  via a GtkTreeModel implementation, this does not effect the UI much but allows signals
	  to be Drag'n'Dropped from Glade's signal editor to Anjuta somewhere.
	- Restored GtkFixed/GtkLayout background pattern.
	- Restored old GladePlaceholder background pattern.
	- Fixed mismatching PangoAttributeType with GType, closes bug 597045.

===========
Glade 3.9.0
===========

	- General build fixes for building with GTK+ 3.0, including patches from Johannes Schmid,
	  Matthias Clasen, Javier Jardón and Juan Pablo Ugarte.
	- Included the new Preview feature by Marco Diego Aurélio Mesquita.
	- Various leaks and crashes fixed.
	- GladeWidget becomes GInitiallyUnowned, refcounting improved for project dispose cycles.
	- Handle combo-box entry child properly (bug 581580).
	- Fixed crashes when textview's buffer is deleted, fix by Martin Schlemmer, bug 609748.
	- Restored property order of project objects at save time (glade files no longer container
	  irrelevant diffs).
	- Hide editor properties when the property is not available on the widget, bug 585299,
	  fix by Marco Diego Aurélio Mesquita.
	- Fixed makefiles as per bug 521713 (patch initially by Daniel Macks).
	- Fixed mixups of properties vs packing properties (bug 637475).
	- Fixed class header of GladeEditor to update when widgets unload (patch by
	  Marco Diego Aurélio Mesquita, bug 637541).
	- Fixed particalarly nasty crasher bug when loading/saving treestore column definitions,
	  special thanks goes to Benjamin Otte, bug 637563.
	- Add progress bar to notebook tab of currently loading project (now the whole UI doesnt
	  jam up while loading a big project).
	- Fixed notebook tab style to use the new CSS stuff.
	- Removed widgets that are not available in 3.0
	- Completely removed Libglade support
	- Removed GladeClipBoardView completely
	- Removed GladeParameter obsolete code
	- Fixed editor labels to use natural word wrapping
	- Drop GtkTables in editors in favor of GtkGrid
	- Added custom editor for editing GtkActionGroup and managing child actions
	- Ran 'indent' on source base, new Glade coding style more similar to GTK+ style
	- Removed boolean "fixed" catalog attribute, instead <create-widget-function> can
	  be used to specify a derived GladeWidget to be used in the runtime.
	- Use locale-independent strtod & dtostr. Fixes bug 616787, fix by Christian Persch.
	- Applying patch to allow better builds on win32, patch by Dieter Verfaillie, bug 634978.
	- Fixed loaded state of use-action-appearance so that it always
	  loads as FALSE if there is no "related-action" at load time (closes bug 582882).
	- Sealed entire core API, libgladeui-2 will be ABI stable after 3.10 release.
	- Removed GladeApp::update-ui signal, active-project, selection handling and implied
	  commands, everything now must be done in context of a GladeProject.
	- Optimized GladeEditor to load a widget faster by keeping all the cached pages in internal
	  vboxes and not remove/adding them but just hide/showing them (improves object selection
	  time).
	- Optimized frontend to load one palette per project, verifying the palette for version
	  information when the related project is set costs around 1 second, this is now only
	  experienced when the target version is changed in the project prefs dialog.


===========
Glade 3.7.1
===========
	- Changed "Close without saving" acelerator key from 'c' to 'w', (Aaron Brown, bug 612538)
	- Save Glade files with UTF-8 encoding (Christian Persch, bug 596205)
	- Save maximized window state of all windows in session data (Marco Diego Aurélio Mesquita, bug 607670)
	- use g_timeout_add_seconds() (Javier Jardón, bug 581255)
	- Fixed signal name serialization in GtkBuilder format to use '-' instead of '_' (bug 600031)
	- Disable orientation properties completely and disregard them wherever they cause breakage
	  (Federico Mena Quintero, bug 594231)
	- Now print a summery of all missing icons at startup instead of a warning for each missing icon
	- Fixed some remaining crashers introduced by recent GSEAL patches
	- Integrated GtkToolPalette as the internal implementation of Glade's palette (bug 613956).
	- Added tooltip to palette (bug 558983)
	- Revamped internal treeview support, less warnings and better refresh of workspace when
	  editing cell renderer attributes and liststores.
	- Glade now loads/saves the "swapped" <signal> attribute.
	- Signal editor revamped to now:
	   o show documentation links
	   o show warning icons for version mismatches
	   o edit "swapped" attribute
	   o edit the user-data object using an object selection dialog.
	   o now the signal editor is a proper widget-class (Johannes Schmid, bug 618020)
	- Disallow adding of non-scrollable widgets to scrolled windows (now an informative
	  popup comes up instead).
	- Fixed hangs in menu/treeview editors (Marco Diego Aurélio Mesquita, bug 609612)
	- Changed the old glade-cell-renderer-button for a new activatable pixbuf renderer
	  glade-cell-renderer-icon.[ch].
	- Added support to add GtkActions to GtkActionGroups
	- Added support to edit the <accelerator> for an action when in a group.
	- Added notebook tabs to the Glade frontend with informative labels (per open project).
	- Stop showing preferences dialog at startup time (bug 574095)
	- GladeProject now implements GtkTreeModel and GladeInspector view saves lots of code (Johannes Schmid)
	- Allow destruction of GladeApp object (Johannes Schmid, bug 618468).

===========
Glade 3.7.0
===========
	- Fixed loading state of assigned GtkTreeModels of GtkCellRendererCombo objects (bug 566928).
	- Fixed crasher while copying internal widgets (bug 595156)
	- Support silent build when using automake >= 1.11 (Javier Jardón)
	- Proper ordering of GtkAdjustment properties in glade files (bug 578484).
	- Refactoring work for GSEAL (Javier Jardón)
	- Avoid collapsing commands when a project is freshly saved (this fixes a false "unmodified"
	  state after changing the same property before and after project save) (Marco Diego Aurélio Mesquita)
	- Allow litteral strings as column type definitions in GtkTreeStores (closes bug 597059).
	- Updated Glade GTK+ catalog info to include deprecations, new properties and signals since 2.18 and 2.20
	  and some translatable strings (brought to you also in part by Johannes H. Jensen for some translatable
	  strings and Javier Jardón for some deprecations), some new objects this consequently adds:
	  o GtkEntryBuffer
	  o GtkSpinner
	  o GtkCellRendererSpinner
	- Fixed crasher editing some data types in the liststore data editor (bug 608011).
	- Enhanced the GtkEntry editor to allow the user to chose between the "text" and the "buffer" exclusively.

===========
Glade 3.6.7
===========
	- Sync up remaining properties at load time (fixes use-action-appearance property
	  and any other unmentioned property states at load time, also unvails broken
	  orientation default value in GTK+, bug 587256).
	- Fixed glitches with use-action-appearance at save time.
	- Make stock button labels save as non-translatable automatically (bug 352446).
	- Fixed crashes when handling GtkTextView in GtkBuilder format.
	- Fixed crashes with editable treeview column types (bug 586715).
	- Detect correct modifiers and buttons to spawn a context menu in a platform
	  independant way (bug 587128).
	- Added --enable-mac-bundle configure argument to resolve paths correctly
	  when building bundles on osx.

===========
Glade 3.6.6
===========
	- Fixed missing image dialogs for packing properties
	- Make assistant page-titles translatable (bug 503146)
	- Make GtkMessageDialog texts translatable (bug 586063)
	- Fixed obscure crash at project load time (James Liggett - bug 585860)
	- Migrated to use non-deprecated symbols from glib/GTK+ (Sam Thursfield - bug 572756)
	- Introspect lowest GTK+ project dependancy when loading files with missing
	  versioning info (bug 586046).
	- Fixed runtime path resolutions on osx (bug 586551).

===========
Glade 3.6.5
===========
	- Quartz build support and use ige-mac-integration to setup the menubar
	  as an optional build dependancy.
	- Fixed dissapearing dialogs on ESC (bug 582559)
	- Really fixing widget naming policies again, this time I hope it sticks (bug 580745)
	- Fixed relocated link problems with python plugin build (bug 582982, patch by Arun Raghavan)

===========
Glade 3.6.4
===========
	- Check project naming policy at add_object() time (bug 580745).
	- Fixed bug loading and saving icon sources (Juan Pablo Ugarte)
	- Fixed sizes of fixed/layout children at load time (bug 584334).
	- Enabled popup menus via Apple key for osx (lame but functional).

===========
Glade 3.6.3
===========
	- Maintain current widget selection during commits of related-action
	  (was causing crashes when the selection changed as a result of a commit, bug 578869)
	- GtkButton only accepts real stock *items* and not icons (to use an icon, use a GtkImage
	  with an unrestricted stock icon)
	- Added documentation on integrating Python widgets (Juan Pablo Ugarte)
	- Fixed output format for GtkLabel attributes (bug 579793, patch by Davyd Madeley).
	- Removed hard coded size request to palette (Bug 579624).
	- Made Atk proxy objects always have unique names (bug 579565).
	- Removed buggy query dialog from notebook creation (bug 578727).

===========
Glade 3.6.2
===========
	- Fixed missing properties/attributes when serializing GtkWindows (bug 578211)
	- Fixed loading state of cellrenderer attributes (whether to use attribute or property
	  directly, bug 566928).

New and updated translations
============================
	- Goran Rakic (sr, sr@latin)
	- Jorge Gonzalez (es)

===========
Glade 3.6.1
===========
	- Fixed win32 crasher (bug 575206)
	- Fixed crasher on internal widget selection
	- Fixed libglade regression (libglade needs specific
	  ordering of properties, atk props, signals and accelerators)
	- Fixed MSYS/MinGW build (Bug 576851 – Damon Register)
	- Disable loading and displaying of 'data' property on GtkTreeStore
	  (only GtkListStore understands the 'data' construct).
	- Properly initialize a GValue on stack (bug 577822 - Felix Riemann)

New and updated translations
============================
	-  Petr Kovar, Andre Klapper (cs)
	-  Djihed Afifi (ar)

===========
Glade 3.6.0
===========
	- Fixed bugs 574260, 573513, 573453, 574706, 567809 (Juan Pablo Ugarte, Ryu Jinno, myself)

New and updated translations
============================
	- Kostas Papadimas (el)
	- Claude Paroz (fr)
	- Kenneth Nielsen (da)
	- Ani Peter (ml)
	- Ignacio Casal Quinteiro (gl)
	- Krishnababu K (te)
	- Gintautas Miliauskas (lt)
	- Duarte Loreto (pt)
	- Manoj Kumar Giri (or)
	- Petr Kovar (cs)
	- Milo Casagrande (it)
	- Theppitak Karoonboonyanan (th)
	- Philip Withnall (en_GB)
	- Daniel Nylander (sv)
	- Nickolay V. Shmyrev (ru)
	- Ilkka Tuohela (fi)
	- Christian Kirbach, Hendrik Richter (de)
	- Baris Cicek (tr)
	- Philip Withnall (en_GB)
	- Raivis Dejus (lv)
	- Changwoo Ryu (ko)
	- Jorge Gonzalez (es)
	- Daniel Nylander (sv)
	- Kenneth Nielsen (da)
	- Gabor Kelemen (hu)
	- Inaki Larranaga Murgoitio (eu)
 	- Clytie Siddall (vi)
	- Og Maciel, Jonh Wendell (pt_BR)
	- Claude Paroz (fr)

===========
Glade 3.5.7
===========
	- Added GladeDesignLayout::widget-event signal. Patch by Pavel Kostyuchenko (bug 542337).
	- GObjectify signal editor and allow custom signal editors. by Pavel Kostyuchenko (bug 540691).
	- Make virtual properties in GTK+ 2.16 in order to support running from GTK+ 2.14 and targetting 2.16
	- New activatable editor to handle activatable properties in smart ways.
	- Fix markup in confirm close dialog, patch by Felix Riemann (bug 567450).
	- Marked use-stock property from imagemenuitem to be save-always (bug 568064).

New and updated translations
============================
	- Updated de: Andre Klapper, Hendrik Richter
	- Updated es: Jorge Gonzalez, Jorge González
	- Updated fi: Ilkka Tuohela
	- Updated he: Yair Hershkovitz, yairhr@gmail.com
	- Updated ko: Changwoo Ryu
	- Updated pt_BR: Jonh Wendell

===========
Glade 3.5.6
===========
	- Handling of new entry properties (bug 567454)
	- Added filechooser dialog to pixbuf properties

New and updated translations
============================
	- Updated es: Jorge Gonzalez, Jorge González
	- Updated nb: Kjartan Maraas
	- Updated pt_BR: Og Maciel, Igor Pires Soares

===========
Glade 3.5.5
===========

	- Model data editor improvments (sequential editing mode, better key navigation)
	- Treeview editor revamp, few crashers fixed
	- Few crashers fixed #525839, #522542
	- Expand inspector treeview by default
	- Many more bug fixes including #533471

New and updated translations
============================
	- Updated es: Jorge González, Jorge Gonzalez  <jorgegonz@svn.gnome.org>

===========
Glade 3.5.4
===========
	- Added short readable versions of new enum/flag values
	- Fixed a crasher in the store editor
	- Focus always stays in the store editor when editing cells get cancelled
	- Better resizing in editors (property names/warnings expand, inputs dont)
	- Cleaned up gtk+ includes (Maxim Ermilov - bug 561260)
	- Some code now available under LGPL

===========
Glade 3.5.3
===========
	- Support for GtkIconFactory
	- Support for GtkAccelGroup
	- Support for GtkSizeGroup
	- Support for GtkListStore/GtkTreeStore (some code by Juan Pablo Ugarte)
	- Support for GtkTreeViewColumn, GtkTreeView, GtkIconView and GtkComboBox as GtkCellLayout.
	- Support for GtkCellRenderer derivatives
	- GtkBuilder support for GtkMenu hierarchies
	- New all in one treeview editor, for treeviews combo boxes and icon views
	- Properties and widgets now show warnings in the editor when they have mismatched versions
	- Palette items are insensitive when widgets are unavailable and show warnings when they are deprecated.
	- Text wrapping in property labels (Pavel Kostyuchenko)
	- Editor widget beefed up with icon and class header.
	- Simplified accelerator editor
	- Save window pane positions in session (Juan Pablo Ugarte)
	- New pango attributes editor for GtkLabel:attributes
	- All widgets/properties in glade files are now saved in the same order
	  (GtkTable part: bug 422823 - Pavel Kostyuchenko, and bug 422823)
	- Fixed core to permit working with non GtkWindow toplevel objects/widgets (bug 532636 - Pavel Kostyuchenko)
	- Palette now allows doc searches
	- Notebooks switch pages to display the selected widget
	- Added undoable project conversion routines implemented by catalog plugins
	- Object selection dialogs can now create widgets when a type is specified by the catalog
	- Support GtkBuilder "context" attribute for i18n data (translatable properties)
	- Support for naming your widgets unique across the project or unique across toplevels.
	- Now you can add menus inline inside the toolbar editor.
	- No more copying resource files around, now you can set your local resource path in
	  project preferences and use relative/fullpaths in resource properties (i.e. GdkPixbuf properties
	  and the like).
	- No more context help mode with buttons, you can get property level help (and clear value) with a context menu
	- Optimized load routine significantly.
	- Added GladeEditable interface to layout custom pages for property editors, implemented many
	  custom editor layouts.
	- Now you can edit widgets separately from the rest of the project
	- menu/toolbar/treeview editor no longer a modal dialog.
	- Added <search widgets> entry with completion/filter to the inspector widget.
	- Added most of the new needed icons (Mike Gratton - bug 561979, Juan Pablo Ugarte).
	- Simplified and improved stock-id properties to allow use of custom icons from factories.
	- Fixed input dialog crasher (Juan Pablo Ugarte - bug 543314)
	- Commands now collapse to nothing - Pavel Kostyuchenko
	- Fixed boxed value comparisons by way of comparing unique strings
	  from the plugin (Juan Pablo Ugarte - bug 528511)
	- Fixed project modified state flag glitches (Pavel Kostyuchenko - bug 532017).
	- Prevent hangs in anjuta (Pavel Kostyuchenko - bug 531585).
	- Fixed boldness/italicness in varios treeviews
	- Objects and resource property fields are updated correctly (bug 542335 - fix by Pavel Kostyuchenko)
	- Update loaded assistant pages properly (bug 540531 - fix by Antti Kaijanmäki)
	- Silently ignore unrecognized signals in glade file instead of aborting
	  (bug 533728 - fix by Pavel Kostyuchenko)
	- Worked around special child type naming discrepencies between formats from the plugin side
	  (bug 533217 - fix by Pavel Kostyuchenko)
	- response-id now only available for buttons that are in the action area of dialogs (bug 464502)
	- Fixed displayable values (bug 556452), now they are available in the plugin too.
	- Misc bugfixed by Richard Hult, Andreas Henriksson, Vincent Geddes, Claude Paroz, Pavel Kostyuchenko,
	  Eli Collins, Christian Persch, Theppitak Karoonboonyanan, Kjartan Maraas, Michael Gratton and me.

New and updated translations
============================
	- ar: Anas Afif Emad, Djihed Afifi
	- bg: Yavor Doganov, Alexander Shopov
	- da: Ask Hjorth Larsen
	- de: Christian Kirbach
	- en_GB: David Lodge, Philip Withnall
	- es: Jorge González, Jorge Gonzalez
	- et: Ivar Smolin
	- fi: Ilkka Tuohela
	- fr: Robert-André Mauchin
	- gl: Ignacio Casal Quinteiro
	- gu: Sweta Kothari
	- he: yairhr@gmail.com, Yair Hershkovitz
	- hi: Rajesh Ranjan
	- hu: Gabor Kelemen
	- it: Andrea Zagli
	- ko: Changwoo Ryu
	- ml: Hari Vishnu
	- mr: Sandeep Shedmake
	- nl: Vincent van Adrighem
	- oc: Yannig Marchegay, Yannig Marchegay (Kokoyaya)
	- pl: Tomasz Dominikowski
	- pt: Duarte Loreto
	- pt_BR: Igor Pires Soares, Fabrício Godoy
	- ru: Yuriy Penkin
	- sr.po, sr@latin: Goran Rakić
	- sv: Daniel Nylander
	- th: Theppitak Karoonboonyanan
	- tr: Baris Cicek
	- vi: Clytie Siddall
	- zh_HK: Chao-Hsiung Liao
	- zh_TW: Chao-Hsiung Liao, Abel Cheung

===========
Glade 3.5.2
===========
	- oops, was parsing booleans as doubles, fixed bugs with
	  builder-unsupported and deprecated.

===========
Glade 3.5.1
===========
	- Added versioning support, you can always chose the target version of
	  your project starting with gtk+ 2.8 - a project preferences dialog has
	  been added where you can switch your format, switch your target version
	  and test for incompatabilities. incompatability error dialogs are also
	  launched on save as. Target versions are saved to the glade file;
	  TODO: patch GtkBuilder to test the required gtk+ version from
	  <requires lib="gtk+" version="2.8"> and at least warn, also let
	  third party widget developers test thier own versions using builder
	  (all new catalog tags and properties are also documented).

===========
Glade 3.5.0
===========
	- Resurrected GtkScaleButton and GtkVolumeButton
	- We finally have Vincent Geddes's icon choser dialog
	  (was skipped before because of string changes)
	- Not allowed to have duplicate widget names anymore (bug 442860)
	- Now the first widget in a project shows up automatically
	  when opening the project.
	- Old parser was trashed and rewritten from the ground up.
	- New plugin support for read_widget() and write_widget(), also
	  create_eprop() which allows the plugin to create widgets to
	  edit properties in the editor (accelerators are edited from
	  the plugin now for instance).
	- Dual file format support available, its a beginning, you dont
	  get any of the GObjects that GtkBuilder supports but all widgets
	  you were formerly using with glade can now be loaded/saved in
	  builder format.
	- Api reference docs for embedders and widget authors ressurected
	  after 2 years, concerning integrating widgets, the docs are
	  practically rewritten.

New and updated translations
============================
	- Priit Laes (et)
	- Laurent Dhima (sq)
	- Baris Cicek (tr)
	- Alexander Shopov (bg)

===========
Glade 3.4.3
===========
	- Backed out GtkScaleButton and GtkVolumeButton since
	  they introduced strings.


===========
Glade 3.4.2
===========
	- Port to gtk 2.12 tooltips API. Bug #500947. - Christian Persch
	- Atk Relations bug fix
	- Added GtkVolumeButton and GtkScaleButton widgets (Ross Burton)
	- Misc fixes 477025, 509128, 388869, 504603, 495853, 506713, 511651,
	  472555, 493418 by Cosimo Cecchi, Yang Hong, Ivan Baldo, Vincent Geddes,
          Juan Pablo Ugarte, Tristan Van Berkom

New and updated translations
============================
	- Kjartan Maraas (nb)
	- Yuri Kozlov (ru)
	- Stéphane Raimbault (fr)
	- Gintautas Miliauskas (lt)
	- Jovan Naumovski (mk)
	- Luca Ferretti (it)
	- Gabor Kelemen (hu)
	- Claude Paroz (fr)
	- Jonh Wendell (pt_BR)
	- David Lodge (en_GB)
	- Ignacio Casal Quinteiro (gl)
	- Gil Forcada (ca)
	- Ilkka Tuohela (fi)
	- Hendrik Brandt (de)
	- Duarte Loreto (pt)
	- Theppitak Karoonboonyanan (th)
	- Maxim Dziumanenko (uk)
	- Yair Hershkovitz (he)
	- Baris Cicek (tr)
	- Clytie Siddall (vi)
	- Yannig Marchegay (oc)
	- Daniel Nylander (sv)
	- Djihed Afifi (ar)
	- Jorge Gonzalez (es)
	- Takeshi AIHANA (ja)


===========
Glade 3.4.1
===========

	- Crash in Glade Interface Designer: Clicked the GtkInputDial... (bug 480495) - Juan Pablo Ugarte
	- Glade3 hangs when loading certain projects containing GtkAssistants (bug 495057) - J. Ali Harlow
	- Fix options context summary (bug 500940) - Christian Persch
	- Use gtk_widget_get_action (bug 500943) - Christian Persch
	- Icon Theme search path is incorrect for win32 (bug 469854) - Martin Schlemmer
	- Doesn't build on ia64 (bug 499623) - Josselin Mouette
	- Activating "Add Parent" on an internal widget component causes crah (bug 503955) - Juan Pablo Ugarte
	- GtkImage/GdkPixbuf porps misc fixes - Juan Pablo Ugarte

New and updated translations
============================
	- Kjartan Maraas (nb)
	- Matej Urbančič (sl)
	- Ivar Smolin (et)
	- Djihed Afifi (ar)
	- Baris Cicek (tr)
	- Ignacio Casal Quinteiro (gl)
	- Urbančič Matej (sl)
	- Ivar Smolin (et)
	- Changwoo Ryu  (ko)
	- Takeshi AIHANA (ja)
	- Leonardo Ferreira Fontenelle (pt_BR)

===========
Glade 3.4.0
===========

New and updated translations
============================
    - Priit Laes (et)
    - Jorge Gonzalez (es)
    - Ilkka Tuohela (fi)
    - Ignacio Casal Quinteiro (gl)
    - Daniel Nylander (sv)
    - Adam Weinberger (en_CA)
    - Takeshi AIHANA (ja)
    - Raphael Higino (pt_BR)
    - Theppitak Karoonboonyanan (th)
    - Gabor Kelemen (hu)
    - Duarte Loreto (pt)
    - Kenneth Nielsen (da)
    - Clytie Siddall (vi)
    - Alexander Shopov (bg)
    - Gintautas Miliauskas (lt)
    - Jovan Naumovski (mk)
    - Kjartan Maraas (nb)
    - Maxim Dziumanenko (uk)
    - Alessio Frusciante (it)
    - Hendrik Richter (de)
    - Danishka Navin (si)
    - Jamil Ahmed (bn)
    - Claude Paroz (fr)
    - Djihed Afifi (ar)
    - David Lodge (en_GB)
    - Nickolay V. Shmyrev (ru)
    - Artur Flinta (pl)
    - Gil Forcada (ca)

===========
Glade 3.3.4
===========
    - Moved all gtk-doc stuff outside of the template files (now documentations is
      entirely in the source) - Juan Pablo Ugarte
    - Fixed compilation with gcc 2.95 (bug 461923) - Jens Granseuer
    - Sort the stock icon list alphabetically by locale (bug 454003) - Olivier Delhomme
    - Made glade window not maximized by default (bug 462111) reported by Frédéric Bellaiche
    - Added "expand" and "homogeneous" packing properties to toolbar
      children in the toolbar editor (bug 429409) - Tristan Van Berkom
    - Clipped the signal editor texts to simply say "<type here>" (bug 464505) - Tristan Van Berkom
    - Now saves/restores session data about docking attached state &
      undocked window sizes/positions - Yevgen Muntyan
    - Added themed icon chooser (currently disabled awaiting freeze break approval)
      (bug 359640) - Vincent Geddes
    - Made toolbar-style an "optional" property and fixed glitches around this property
      (bug 382785) - Vincent Geddes

New and updated translations
============================
    - Daniel Nylander (sv)
    - Theppitak Karoonboonyanan (th)
    - Jorge Gonzalez (es)
    - Leonardo Ferreira Fontenelle (pt_BR)
    - Ilkka Tuohela (fi)
    - Sunil Mohan Adapa (te)
    - Takeshi AIHANA (ja)
    - Adam Weinberger (en_CA)
    - Jovan Naumovski (mk)
    - Duarte Loreto (pt)
    - Priit Laes (et)


===========
Glade 3.3.3
===========
    - Add tab labels by default to notebook pages (bug 345438) - Tristan Van Berkom
    - Now child menu items are selectable (fixed event handling for widgets that are
      not in the logical hierarchy, in 3.3.2 this was a crash actually) - Tristan Van Berkom
    - Now we draw selection in g_signal_connect_after (..."expose-event"...) instead
      of queuing an idle timeout.  - Tristan Van Berkom
    - Fixed the UI to be insensitive when no projects are loaded (some widgets were
      sensitive and causing errors) - Tristan Van Berkom
    - Made it possible to declare a widget class in the catalog without giving a real type,
      only automatically derive from a type specified in the catalog (bug 352714) - Yevgen Muntyan
    - Defined environment variables GLADE_MODULE_PATH & GLADE_CATALOG_PATH, catalogs will be
      searched in GLADE_CATALOG_PATH and widget libraries/support modules in GLADE_MODULE_PATH. - Tristan Van Berkom
    - Disable Add/Remove parent actions on GtkToolItem, GtkMenu and GtkMenuItem - Tristan Van Berkom
    - misc bugfixes 459953 460272

New and updated translations
============================
    - Jorge Gonzalez (es)
    - Takeshi AIHANA (ja)
    - Daniel Nylander (sv)
    - Clytie Siddall, Nguyễn Thái Ngọc Duy (vi)
    - Ilkka Tuohela (fi)
    - Artur Flinta (pl)
    - Runa Bhattacharjee (bn_IN)
    - Gabor Kelemen (hu)
    - Matic Žgur (sl)

===========
Glade 3.3.2
===========
    - Bindings work has been moved out into a branch
    - Added toolbar item for "Drag/Resize" mode - Tristan Van Berkom
    - Added history lists to undo/redo buttons - Tristan Van Berkom
    - Current notebook page is more consistant (bug 394382) - Tristan Van Berkom
    - Use gnome-common macros in configure.ac/Makefiles (bug 399134) - Christian Persch
    - Fixed lots of compiler warnings from new macros - Vincent Geddes
    - Added…
jperkin pushed a commit that referenced this pull request Dec 3, 2022
1.53      2022-10-08 12:26:55-07:00 America/Los_Angeles
	* dist.ini - changed bugtracker.web to
	  https://github.com/finance-quote/finance-quote/issues
	* DWS.pm - Set $info{$symbol, 'symbol'} to $symbol.
	* Union.pm - #231 - reworked for a different CSV file.
        * CurrencyRates/AlphaVantage.pm - API CURRENCY_EXCHANGE_RATE
          no longer accepts free API keys. Changed to use FX_DAILY API.
          Issue #229 PR #230
        * Set minimum version for LWP::UserAgent in dist.ini to
          honor redirects.
        * CurrencyRates/AlphaVantage.pm - Added logic to account
          for empty JSON returned from currency exchange fetch.
        * Bourso.pm - Added Europe and France back as failover
          methods. These were removed some time ago in commit e26484b.
        * Tradeville.pm - Changed hostname in URL to tradeville.ro.
          Added logic to better account for the symbol not being
          found.
        * YahooJSON.pm - #202 - Account for symbols with '&'.
        * Minor change to isoTime function in Quote.pm.
        * Updated TSP.pm - PR #227 - update URL and handling of dates.

1.52      2022-07-03 15:15:38-07:00 America/Los_Angeles
        * Quote.pm - Fixed logic for FQ_LOAD_QUOTELET starting with "-defaults"
          reported in issue #197. PR #199.
        * AlphaVantage currency module: Don't recurse infinitely when exchange
          rate is less than .001 (PR 193)
        * Bourso.pm - Fixed data bug reported in issue #174 with PR #194.
        * TSP.pm - Minor fix for URL used to retrieve data. PR #195.
          Note: URL was changed after the PR was merged.
          Module remains in a non-working status.
        * TesouroDireto.pm - New module for Brazilian's National Treasury
          public bounds. PR #198.
        * Bloomberg.pm - Update Bloomberg class names #205. Correct html
          parsing errors.
        * MorningstarCH.pm - Re-enabled and fixed in #207.
        * ZA.pm - Change to return price from sharenet in major denomination.
          PR #208.
        * Changes to SourceForge project website HTML files.
        * Add [Prereqs] to dist.ini. #215

1.51      2021-07-04 14:41:59-07:00 America/Los_Angeles
        * Fix bugs in t/fq-object-methods.t
        * Add code to hide warning in t/currency_lookup.t

1.50      2021-06-26 20:52:16-07:00 America/Los_Angeles
        * New modules: CurrencyRates
        * Updated modules: ASX, TIAA-CREF, Fool, Currencies
        * Corrected some POD issues (thanks to the Debian Perl Group)
jperkin pushed a commit that referenced this pull request Dec 6, 2022
2.3.0 (2022-12-03)

What's Changed

* Convert tests to sus. by @ioquatix in #188
* Use a linked list for the barrier implementation. by @ioquatix in #192
* Add a concurrency primitive for waiting for a specific number of tasks to
  complete. by @ioquatix in #189
* Better support for Fiber.set_scheduler. by @ioquatix in #194
* Rename Async::LimitedBarrier to Async::Waiter based on feedback. by
  @ioquatix in #196
* Relax io-event dependency. by @ioquatix in #200
* Implement semaphore using linked list. by @ioquatix in #203
jperkin pushed a commit that referenced this pull request Feb 21, 2023
pkgsrc change: avoid use empty in options.mk.

What's new in Sudo 1.9.13 (2023-02-14)

 * Fixed a bug running relative commands via sudo when "log_subcmds"
   is enabled.  GitHub issue #194.
 * Fixed a signal handling bug when running sudo commands in a shell
   script.  Signals were not being forwarded to the command when
   the sudo process was not run in its own process group.
 * Fixed a bug in cvtsudoers' LDIF parsing when the file ends without
   a newline and a backslash is the last character of the file.
 * Fixed a potential use-after-free bug with cvtsudoers filtering.
   GitHub issue #198.
 * Added a reminder to the default lecture that the password will
   not echo. This line is only displayed when the pwfeedback option
   is disabled. GitHub issue #195.
 * Fixed potential memory leaks in error paths.  GitHub issues #199,
   #202.
 * Fixed potential NULL dereferences on memory allocation failure.
   GitHub issues #204, #211.
 * Sudo now uses C23-style attributes in function prototypes instead
   of gcc-style attributes if supported.
 * Added a new "list" pseudo-command in sudoers to allow a user to
   list another user's privileges.  Previously, only root or a user
   with the ability to run any command as either root or the target
   user on the current host could use the -U option.  This also
   includes a fix to the log entry when a user lacks permission to
   run "sudo -U otheruser -l command".  Previously, the logs would
   indicate that the user tried to run the actual command, now the
   log entry includes the list operation.
 * JSON logging now escapes control characters if they happen to
   appear in the command or environment.
 * New Albanian translation from translationproject.org.
 * Regular expressions in sudoers or logsrvd.conf may no longer
   contain consecutive repetition operators.  This is implementation-
   specific behavior according to POSIX, but some implementations
   will allocate excessive amounts of memory.  This mainly affects
   the fuzzers.
 * Sudo now builds AIX-style shared libraries and dynamic shared
   objects by default instead of svr4-style. This means that the
   default sudo plugins are now .a (archive) files that contain a
   .so shared object file instead of bare .so files.  This was done
   to improve compatibility with the AIX Freeware ecosystem,
   specifically, the AIX Freeware build of OpenSSL.  Sudo will still
   load svr4-style .so plugins and if a .so file is requested,
   either via sudo.conf or the sudoers file, and only the .a file
   is present, sudo will convert the path from plugin.so to
   plugin.a(plugin.so) when loading it.  This ensures compatibility
   with existing configurations.  To restore the old, pre-1.9.13
   behavior, run configure using the --with-aix-soname=svr4 option.
 * Sudo no longer checks the ownership and mode of the plugins that
   it loads.  Plugins are configured via either the sudo.conf or
   sudoers file which are trusted configuration files.  These checks
   suffered from time-of-check vs. time-of-use race conditions and
   complicate loading plugins that are not simple paths.  Ownership
   and mode checks are still performed when loading the sudo.conf
   and sudoers files, which do not suffer from race conditions.
   The sudo.conf "developer_mode" setting is no longer used.
 * Control characters in sudo log messages and "sudoreplay -l"
   output are now escaped in octal format.  Space characters in the
   command path are also escaped.  Command line arguments that
   contain spaces are surrounded by single quotes and any literal
   single quote or backslash characters are escaped with a backslash.
   This makes it possible to distinguish multiple command line
   arguments from a single argument that contains spaces.
 * Improved support for DragonFly BSD which uses a different struct
   procinfo than either FreeBSD or 4.4BSD.
 * Fixed a compilation error on Linux arm systems running older
   kernels that may not define EM_ARM in linux/elf-em.h.
   GitHub issue #232.
 * Fixed a compilation error when LDFLAGS contains -Wl,--no-undefined.
   Sudo will now link using -Wl,--no-undefined by default if possible.
   GitHub issue #234.
 * Fixed a bug executing a command with a very long argument vector
   when "log_subcmds" or "intercept" is enabled on a system where
   "intercept_type" is set to "trace".  GitHub issue #194.
 * When sudo is configured to run a command in a pseudo-terminal
   but the standard input is not connected to a terminal, the command
   will now be run as a background process.  This works around a
   problem running sudo commands in the background from a shell
   script where changing the terminal to raw mode could interfere
   with the interactive shell that ran the script.
   GitHub issue #237.
 * A missing include file in sudoers is no longer a fatal error
   unless the error_recovery plugin argument has been set to false.

What's new in Sudo 1.9.13p1 (2023-02-17)

 * Fixed a typo in the configure script that resulted in a line
   like "]: command not found" in the output.  GitHub issue #238.
 * Corrected the order of the C23 [[noreturn]] attribute in function
   prototypes.  This fixes a build error with GCC 13.  GitHub issue
   #239.
 * The "check" make target misbehaved when there was more than
   one version of the UTF-8 C locale in the output of "locale -a".
   GitHub issue #241.
 * Removed a dependency on the AC_SYS_YEAR2038 macro in configure.ac.
   This was added in autoconf 2.72 but sudo's configure.ac only
   required autoconf 2.70.
 * Relaxed the autoconf version requirement to version 2.69.
jperkin pushed a commit that referenced this pull request Mar 2, 2023
Changes in 2.2.8
================
* NEW: asip-status.pl: IPv6 support; show GSS-UAM SPNEGO blob;
       improved layout of output. (3.1 backport)
* NEW: apple_dump: support for EA meta data. (3.1 backport)
* NEW: Import netatalk-doc into the main repo, and overhaul
       scripts, man pages and html manual sources.
* UPD: Display the Netatalk Daemon icon with the '-icon' afpd.conf
       option for all platforms. GH #214
* UPD: Remove OpenSSL 1.0 backwards compatibility header.
       Please use OpenSSL 1.1 or later.
* UPD: configure: Enable DDP, timelord, and a2boot by default. GH #215
* UPD: configure: Disable Quota by default. GH #198
* FIX: afpd: Create tmp files in /tmp rather than / and clean up
       after use. Regression in 2.2.7. GH #188
* FIX: Provide MNTTYPE_NFS for Solaris descendents to enable
       compiling with Quota. GH #117
* FIX: afpd: reading from file may fail. SF Bug #619 (3.1 backport)
* FIX: timelord: Fall back to timezone when tm_gmtoff is unavailable.
       Makes it work on Solaris descendents. GH #194
* FIX: fix largefile-check macro for largefile with clang 16.
* FIX: Typo fixes in user facing strings.
jperkin pushed a commit that referenced this pull request May 18, 2023
Change log:

0.6.1 (2023-05-13)
=====
- I18n: Update po/LINGUAS list
- I18n: Update po/LINGUAS list
- build: Optionally require polkit
- build: Use m4_defined min versions and cleanup
- build: Use XDT_VERSION_INIT and get rid of configure.ac.in
- build: Switch from intltool to gettext
- menubar: Improve some strings
- search: Use consistent naming
- history: Properly restore multi-window session
- Restore opening mode only when it was overridden from the command line
- Add "X of Y matches" to search bar and replace dialog (Closes #174)
- Add application/x-zerosize to supported mime types (Fixes #194)
- Apply opening mode also to the open dialog (Fixes #181)
- Properly reconnect signal handler when auto-reload is enabled
- 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, Interlingue, Italian, Japanese,
  Kazakh, Korean, Lithuanian, Malay, Norwegian Bokmål, Occitan (post
  1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
  Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
  Telugu, Thai, Turkish, Ukrainian, Uyghur
jperkin pushed a commit that referenced this pull request May 21, 2023
v0.14.0 is a big release with new daemon feature and CLI commands.

This release also resolves the application's persistent issue that requires
restarting the application in case of networking errors. The application now
(hopefully) becomes more robust to such errors by automatically re-initializing
the application's states and integrated player after re-gaining access to the
network.

What's Changed
 - Fix broken link in #175
 - Implement spotify-player's CLI commands in #159
 - Update dependencies in #186
 - Add more builds for CD github action in #192
 - Add daemon support in #193
 - Extend CLI functionalities in #194
 - Make the client/application more robust to network errors in #198
 - Fix cargo install examples in README.md in #199
 - Add docs for new features and improve CLI/daemon codes in #200
jperkin pushed a commit that referenced this pull request May 25, 2023
What's Changed

    Fix building without duktape by @mattst88 in #180
    Fix WITH_GNOME2 documentation by @mattst88 in #181
    bindings: perl: Use ccflags from %Config for libproxy module compilation by @Vogtinator in #183
    Use XDG_CURRENT_DESKTOP to detect GNOME desktop like systems by @janbrummer in #192
    Enable the use of ducktape in Windows systems by @illera88 in #194
    Enable static builds for libproxy by @illera88 in #195
    Fix build on macOS by @wegank in #189
    Complete rewrite by @janbrummer in #201
    kde: Remove line breaks in values by @janbrummer in #203
    Add man page for proxy tool by @janbrummer in #204
    Add PX_FORCE_CONFIG env by @janbrummer in #205
    add alert function to pacrunners by @multiSnow in #196
    Update architecture documentation by @janbrummer in #206
    Check for valid uri_host in ignore_ip() by @janbrummer in #210
    Remove line break in debug output by @janbrummer in #211
    Improve GNOME/KDE get_config() execution by @janbrummer in #212
jperkin pushed a commit that referenced this pull request Jun 8, 2023
Apache Serf 1.3.10 [2023-xx-xx, from tags/1.3.10, rxxxxxxx]
  Support for OpenSSL 3 (r1901937, ...)
  Fix issue #171: Win32: Running tests fails with "no OPENSSL_Applink" error
  Fix issue #194: Win32: Linking error when building against OpenSSL 1.1+
  Fix issue #198: OpenSSL BIO control method incorrectly handles unknown requests
  Fix issue #202: SSL tests are not passing with OpenSSL 3
  Fix error handling when reading the outgoing request body (r1804534, ...)
  Fix handling of invalid chunk lengths in the dechunk bucket (r1804005, ...)
  Fix an endless loop in the deflate bucket with truncated input (r1805301)
  Fix BIO control handlers to support BIO_CTRL_EOF (r1902208)
  Fix a CRT mismatch issue caused by using certain OpenSSL functions (r1909252)
  Build changes to support VS2017, VS2019 and VS2022 (r1712131, ...)
  Build changes to support Python 3 (r1875933)
jperkin pushed a commit that referenced this pull request Jun 21, 2023
pkgsrc change: avoid use empty in options.mk.

What's new in Sudo 1.9.13 (2023-02-14)

 * Fixed a bug running relative commands via sudo when "log_subcmds"
   is enabled.  GitHub issue #194.
 * Fixed a signal handling bug when running sudo commands in a shell
   script.  Signals were not being forwarded to the command when
   the sudo process was not run in its own process group.
 * Fixed a bug in cvtsudoers' LDIF parsing when the file ends without
   a newline and a backslash is the last character of the file.
 * Fixed a potential use-after-free bug with cvtsudoers filtering.
   GitHub issue #198.
 * Added a reminder to the default lecture that the password will
   not echo. This line is only displayed when the pwfeedback option
   is disabled. GitHub issue #195.
 * Fixed potential memory leaks in error paths.  GitHub issues #199,
   #202.
 * Fixed potential NULL dereferences on memory allocation failure.
   GitHub issues #204, #211.
 * Sudo now uses C23-style attributes in function prototypes instead
   of gcc-style attributes if supported.
 * Added a new "list" pseudo-command in sudoers to allow a user to
   list another user's privileges.  Previously, only root or a user
   with the ability to run any command as either root or the target
   user on the current host could use the -U option.  This also
   includes a fix to the log entry when a user lacks permission to
   run "sudo -U otheruser -l command".  Previously, the logs would
   indicate that the user tried to run the actual command, now the
   log entry includes the list operation.
 * JSON logging now escapes control characters if they happen to
   appear in the command or environment.
 * New Albanian translation from translationproject.org.
 * Regular expressions in sudoers or logsrvd.conf may no longer
   contain consecutive repetition operators.  This is implementation-
   specific behavior according to POSIX, but some implementations
   will allocate excessive amounts of memory.  This mainly affects
   the fuzzers.
 * Sudo now builds AIX-style shared libraries and dynamic shared
   objects by default instead of svr4-style. This means that the
   default sudo plugins are now .a (archive) files that contain a
   .so shared object file instead of bare .so files.  This was done
   to improve compatibility with the AIX Freeware ecosystem,
   specifically, the AIX Freeware build of OpenSSL.  Sudo will still
   load svr4-style .so plugins and if a .so file is requested,
   either via sudo.conf or the sudoers file, and only the .a file
   is present, sudo will convert the path from plugin.so to
   plugin.a(plugin.so) when loading it.  This ensures compatibility
   with existing configurations.  To restore the old, pre-1.9.13
   behavior, run configure using the --with-aix-soname=svr4 option.
 * Sudo no longer checks the ownership and mode of the plugins that
   it loads.  Plugins are configured via either the sudo.conf or
   sudoers file which are trusted configuration files.  These checks
   suffered from time-of-check vs. time-of-use race conditions and
   complicate loading plugins that are not simple paths.  Ownership
   and mode checks are still performed when loading the sudo.conf
   and sudoers files, which do not suffer from race conditions.
   The sudo.conf "developer_mode" setting is no longer used.
 * Control characters in sudo log messages and "sudoreplay -l"
   output are now escaped in octal format.  Space characters in the
   command path are also escaped.  Command line arguments that
   contain spaces are surrounded by single quotes and any literal
   single quote or backslash characters are escaped with a backslash.
   This makes it possible to distinguish multiple command line
   arguments from a single argument that contains spaces.
 * Improved support for DragonFly BSD which uses a different struct
   procinfo than either FreeBSD or 4.4BSD.
 * Fixed a compilation error on Linux arm systems running older
   kernels that may not define EM_ARM in linux/elf-em.h.
   GitHub issue #232.
 * Fixed a compilation error when LDFLAGS contains -Wl,--no-undefined.
   Sudo will now link using -Wl,--no-undefined by default if possible.
   GitHub issue #234.
 * Fixed a bug executing a command with a very long argument vector
   when "log_subcmds" or "intercept" is enabled on a system where
   "intercept_type" is set to "trace".  GitHub issue #194.
 * When sudo is configured to run a command in a pseudo-terminal
   but the standard input is not connected to a terminal, the command
   will now be run as a background process.  This works around a
   problem running sudo commands in the background from a shell
   script where changing the terminal to raw mode could interfere
   with the interactive shell that ran the script.
   GitHub issue #237.
 * A missing include file in sudoers is no longer a fatal error
   unless the error_recovery plugin argument has been set to false.

What's new in Sudo 1.9.13p1 (2023-02-17)

 * Fixed a typo in the configure script that resulted in a line
   like "]: command not found" in the output.  GitHub issue #238.
 * Corrected the order of the C23 [[noreturn]] attribute in function
   prototypes.  This fixes a build error with GCC 13.  GitHub issue
   #239.
 * The "check" make target misbehaved when there was more than
   one version of the UTF-8 C locale in the output of "locale -a".
   GitHub issue #241.
 * Removed a dependency on the AC_SYS_YEAR2038 macro in configure.ac.
   This was added in autoconf 2.72 but sudo's configure.ac only
   required autoconf 2.70.
 * Relaxed the autoconf version requirement to version 2.69.
jperkin pushed a commit that referenced this pull request Aug 8, 2023
v0.8.1 (Sat Aug 05 2023)
Release Notes
Add language selection (#190)

You can now change the language of the current article by pressing F3 (requires
an article to be open and the key can be configured). Within the popup, you can
select a new language from the available ones (not all articles are available
in all languages). This feature also include several configuration options,
so be sure to check them out in the docs.

Exciting New Features 🎉
 - Add language selection #190 (@Builditluc)

Bug Fixes 🐛
 - Fix whitespace caused by quoteboxes #205 (@Builditluc)
 - Fix navigation links appearing in articles #204 (@Builditluc)
 - Fix missing elements because of nested divs #203 (@Builditluc)
 - Fix long gaps after lists #202 (@Builditluc)
 - Fix ghost lists from Portalbox #201 (@Builditluc)
 - Fix nested indentation #200 (@Builditluc)
 - Fix description list parsing #199 (@Builditluc)
 - Fix stack overflow crash when displaying a Namespace #198 (@Builditluc)
 - Fix padding for list items #196 (@Builditluc)
 - Fix disambiguation padding and prefix #195 (@Builditluc)
 - Fix viewport reset after link selection #194 (@Builditluc)
 - Notify on links with an Anchor #192 (@Builditluc)

Structure and Style Changes
 - Rework Links to be more stable #191 (@Builditluc)
jperkin pushed a commit that referenced this pull request Oct 9, 2023
What's Changed
 - Fixed: Release Action Provides Binaries for All Major Platforms
   by @AmmarAbouZor in #192
 - Added: Scrollbar for keybindings Overview Popup by @AmmarAbouZor in #194
 - Added: Scrollbar to Journals list by @AmmarAbouZor in #196
 - Added: Scrollbar to Journals Editor by @AmmarAbouZor in #199
jperkin pushed a commit that referenced this pull request Dec 14, 2023
1.62.0 (2023-12-01)

Features

    Add auto_populated_fields field of MethodSettings in google/api/client_pb2 (#194) (4b0c73a)
    Add support for Python 3.12 (#192) (336cdf3)

Bug Fixes

    Migrate to native namespace packages (#187) (713e388)
jperkin pushed a commit that referenced this pull request Dec 17, 2023
Features
 - New --character-table option, with the ability to use codepage 437,
   see #194 and #195 (@sharifhsn)
 - New --character-table=ascii option for a ASCII-only character table,
   see #212 and #36 (@sharkdp)

Bugfixes
 - Show output when doing hexyl /dev/zero, see #211 (@sharifhsn)
 - Respect NO_COLOR environment variable, see #210 (@sharkdp)
jperkin pushed a commit that referenced this pull request Feb 14, 2024
v0.20.1

What's Changed

    Switch to GitHub Actions CI. by @patrickt in #166
    Add the same PR template as for tree-sitter-javascript by @mjambon in #169
    Fixed CRLF behavior for tests by @ahelwer in #188
    Fix CRLF behavior mismatch during error recovery by @ahelwer in #189
    Endless methods by @aibaars in #190
    Add forwarded parameters/arguments by @aibaars in #191
    Disable C++ exceptions when compile for wasm32-wasi by @glebpom in #192
    Pattern matching by @aibaars in #193
    Improve grammar after the introduction of case-in pattern matching by @aibaars in #197
    Add parenthesized_pattern by @aibaars in #198
    Ruby 3.1 features by @aibaars in #201
    Update to Node 16 by @mattmassicotte in #206
    C bindings by @mattmassicotte in #199
    Parser improvements by @aibaars in #207
    CI: use windows-2019 for now by @aibaars in #209
    Add named rules for the various call operators by @aibaars in #211
    Update Makefile by @mattmassicotte in #213
    Allow newer tree-sitter upstream library. by @patrickt in #215
    Bump tree-sitter version to 0.20 by @hendrikvanantwerpen in #214
    Fix parse error in 'foo! if condition' by @aibaars in #216
    Parser improvements: != operator and key: [line_break] by @aibaars in #220
    Some improvements to the parser by @aibaars in #222
    Wrap class, module, method, and block bodies in a named node by @npezza93 in #224
    Parser improvments: quoted heredocs and short-hand interpolations by @aibaars in #225
    Add body field for end-less methods by @aibaars in #226
    Swift bindings by @mattmassicotte in #227
    fix: rename reserved word “arguments” by @drwpow in #229
    Bump versions in #208
    Anonymous (hash) splat arguments by @aibaars in #233
    One-line pattern matching by @aibaars in #194
    Scanner: do not skip LINE_BREAKs before .. and ... by @aibaars in #238
    Fix non-termination in parser by @aibaars in #239
    Fix scanning of division vs regex before line ending by @aibaars in #246
    Fix 'case' with newlines before expression by @aibaars in #247
jperkin pushed a commit that referenced this pull request Feb 20, 2024
0.0.33

What's Changed

    fix release workflow, corrective release by @woodruffw in #210

0.0.32

What's Changed

    github: add dependabot config for GHA by @woodruffw in #203
    tox: add pip2400 by @woodruffw in #204
    Bump the actions group with 5 updates by @dependabot in #205
    pip_api: don't pass escaped path into _parse_local_package_name by @woodruffw in #208
    prep 0.0.32 by @woodruffw in #209

0.0.31

What's Changed

    Test against pip==22.2 by @di in #152
    Test against pip==22.2.1 by @di in #158
    Test against pip==22.2.2 by @di in #160
    Test against pip==22.3 by @di in #163
    Test against Python 3.11 by @di in #154
    workflows/release: bump gh-action-sigstore-python, update slug by @woodruffw in #161
    Test against pip==22.3.1 by @di in #165
    Add alls-greens configuration by @di in #166
    Contributions from @webknjaz by @di in #172
    Use sdist as a testing source in CI by @webknjaz in #174
    Test against pip==23.0 by @di in #176
    Test against pip==23.0.1 by @di in #178
    Test against pip==23.1 by @di in #180
    Test against pip==23.1.1 by @di in #183
    Test against pip==23.1.2 by @di in #185
    Test against pip==23.2 by @di in #188
    Test against pip==23.2.1 by @di in #190
    Test against pip==23.3 by @di in #192
    Test against pip==23.3.1 by @di in #194
    Test against pip==23.3.2 by @di in #198
    Handle editable projects with pyproject.toml by @di in #200
    Version 0.0.31 by @di in #201
jperkin pushed a commit that referenced this pull request Feb 29, 2024
ActiveLdap 7.0.0 (2024-02-23)

Improvements

* Added support for Active Model 7.
    - GH-193
    - GH-194
    - GH-195
    - Patch by J-Verz.

Thanks

* J-Verz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants