Commit graph

1144 commits

Author SHA1 Message Date
ryoon
3f802fe5c3 *: Recursive revbump from audio/pulseaudio 2022-07-02 16:53:03 +00:00
nia
04f4eef997 *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
wiz
8292204475 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
wiz
8086beeeec gnucash-docs: update to 4.11.
4.11  - 26 June 2022
        o Bug 798414 -No way to get whole of account column displayed
        o Fix crosslinking between Help and the Guide so that nightlies link
          to nightly builds and releases link to release documents on
          https://www.gnucash.org/
        o Add Description of installing Perl for Finance::Quote
        o Change gnc-local-$LANG into gnc-gui-$LANG in all files.
        o dtd-docbook: Separation of the declaration of entities of the GUI
          from their translatable part.
        o Add tests related to images and figures
          * Warn if document references images that don't exist
          * inform if images exist that are not referenced
        o Require same cmake version as gnucash program
        o FO formatting, Added parameter to PdfTarget to improve the
          presentation of 'glosslist' elements.
        o [SQL Backends] Clarify footnote about required additional packages.
        o Fix path to find svg files
        o dtd-docbook: Added an explanation of the syntax and corrected some
          previous entries.
        o dtd-docbook: further work to simplify the translation of menu items
        o dtd-docbook: add more translatable GUI elements (menuitems)
        o gnc-docbookx.dtd, Optimize links to Selinger's docs
2022-06-28 09:30:51 +00:00
wiz
02da997c4b gnucash: update to 4.11.
4.11 - 26 June 2022

Between 4.10 and 4.11, the following bugfixes were accomplished:

    Bug 797163 - qof_book_get_option segfaults when retrieving a non-leaf frame
    Bug 798053 - Accounts renumeration (renumbering)
    Bug 798471 - Can't see or select Income or Expense accounts in Income Tax
                 Information GUI
    Bug 798483 - GnuCash Crashing With SIGSEGV During QFX Import Transaction
                 Matching
    Bug 798491 - MT940 of day 28.02.2022 ends in transactiondate 01.01.1970
    Bug 798493 - Invoice Report Quantity & Unit Price fields have limited
                 decimal precision on printed invoices
    Bug 798496 - gncEntry Quantity and Discount are misusing commodity scu
    Bug 798499 - Expense Chart data tables include extra columns of data
    Bug 798500 - FTBFS (tests failure) on armhf
    Bug 798501 - Balance wrong date end of period
    Bug 798531 - Selecting "Print" from the file menu on a report crashes
                 gnucash
    Bug 798533 - Crash when importing quicken @ currency
    Bug 798535 - Crash when increasing the number of periods in a budget
    Bug 798547 - Calculated Due Date is short 1 day when posting on day of fall
                 change from Daylight Time to Standard Time.

The following fixes and improvements were not associated with bug reports:

    Partially fix Bug 771095 by inserting a help button in the Since-Last-Run dialog.
    Lock down GITHUB_TOKEN permissions on workflows.
    [g_option_context_get_help() returns a char* which must be freed.
    [assistant-stock-transaction] dividends must include stock account.
    Fix arch linux CI build failures.
    Add a help button to the financial calculator dialog.
    [assistant-stock-transaction] avoid resetting txn_types unnecessarily.
    [assistant-stock-transaction] reorder of Pages - date before type.
    [import matcher] Only append description if there's something to append to.
        Otherwise just set the new string.
    [balsheet-pnl] test "lvl <= depth-limit" outside add-indented-row
        this will be the first step trying to fix bug 798502. the bug likely
        resides in the (if) conditional in (add-account-row).
    [gnc-main-window] page->window is not main_window, skip warning.
        This function gets called for both regular register *and* the embedded
        register in the SX template editor. The latter is not a main_window,
        and launching the SX editor would lead to warnings.
    [gnc-plugin-page-register] if account==NULL, skip AccountIsPriced because
        gnc_plugin_page_register_ui_initial_state may be called for non-account
        registers (eg the sx editor) and account may be null.
    [gnc-account-sel.c] prepend & reverse while building acct list
        and don't use confusing double pointer
    Fix use-after-free in unable to save database dialog.
    [account.cpp] restore breadth-first search for 2 functions
        gnc_account_lookup_by_name and gnc_account_lookup_by_code were
        searching breadth-first and accidentally changed to depth-first in 4.7.
    [reports] use new function names
    [account.cpp] gnc_accounts_and_all_descendants converted from scm
    [CI]Work around new git security measure.
    [balsheet-pnl] faster definition of balance lists
    [gnc-numeric.cpp] Reduce logging level of gnc_numeric exception message
        because exceptions are expected in some use cases.
    Redo icon handling in cmake
    Using globs for file copying prevents cmake from discovering newly added
        icons. Writing rules that explicitly use lists of icons will fix this
        as a new icon in the sources will have to be added to the list and will
        force reparsing by cmake. We have to maintain the lists anyway for our
        dist target so there's actually no extra work involved for the devs.
    [assistant-stock-transaction] better Dr/Cr imbalance error message

New API:
    gnc:accounts-and-all-descendants-sorted
    gnc-accounts-and-all-descendantsNone

Deprecations:
    gnc:account-path-less-p
    gnc:accounts-and-all-descendants

New and Updated Translations: Arabic, Chinese (Simplified), Croatian,
English (Australia), English (New Zealand), English (United Kingdom), French,
German, Hebrew, Hindi, Hungarian, Italian, Korean, Nepali, Norwegian Bokmål,
Polish, Portuguese (Brazil), Russian, Spanish, Swedish, Ukrainian
2022-06-28 09:27:42 +00:00
wen
d16f448aea Update to 5.5.5
Upstream changelog , please visit:
http://homebank.free.fr/zh/news.php
2022-05-29 09:36:13 +00:00
wen
d6903afa6d Update to 0.24.3
Upstream changes:
#-#-#-#-#-#-#-#-#-#    Changes in TTR version 0.24.2    #-#-#-#-#-#-#-#-#-#


BUG FIXES

  - Check for 'ratio > 0' before calculating 'n' in zlema() C code. The prior
    code could result in division by 0, which was flagged by clang-UBSAN.
    Thanks to Prof Brian Ripley for the report. (#100)


#-#-#-#-#-#-#-#-#-#    Changes in TTR version 0.24.1    #-#-#-#-#-#-#-#-#-#


BUG FIXES

  - Fix leading NA accounting in wma() C code. The prior code caused invalid
    reads under valgrind. Thanks to Prof Brian Ripley for the report. (#99)

  - Check for 'ratio > 0' before calculating 'n' in ema() C code. The prior
    code could result in division by 0, which was flagged by UBSAN. Thanks to
    Prof Brian Ripley for the report. (#100)

  - Make ALMA() output length equal input length when the input can not be
    converted to xts. This was caused by the difference between
    rollapply.default() and rollapply.xts(). Thanks to GitHub user
    marksimmonds for the report. (#29)

  - Fix stoch() in very rare cases where fastK is Inf. I could only reproduce
    this if the Close is > High and High and Low are equal, but that is a data
    error. I fixed anyway because there may be other cases I don't anticipate.
    Thanks to GitHub user cjuncosa for the report. (#52)

  - Fix MFI() when money flow is always zero or positive. The denominator of
    the money ratio will be zero if there is no negative money flow for 'n'
    consecutive observations (e.g. during a strong up-trend), which causes the
    money flow index to be Inf. Set the money flow index to 100 in this case.

    And the money ratio will be NaN if there's no money flow for 'n'
    consecutive observations (e.g. if there are no trades), which causes the
    money flow index to be NaN. Set the money flow index to 50 in this case.

    Thanks to GitHub user jgehw for the report, reproducible example, and
    suggested patch. (#81)


#-#-#-#-#-#-#-#-#-#    Changes in TTR version 0.24.0    #-#-#-#-#-#-#-#-#-#


SIGNIFICANT USER-VISIBLE CHANGES

  - Updated stockSymbols() to use the NASDAQ FTP site instead of downloading
    the CSV from the NASDAQ stock screener page. Some columns are no longer
    populated because they are not provided in the FTP file:
      LastSale ,MarketCap, IPOyear, Sector, Industry
    These columns will be removed in a future version. (#98, #5, #97)

  - runPercentRank(x, n, cumulative = TRUE) now sets observations in the
    initialization period to NA. This is consistent with the other
    running/rolling functions in TTR. If you want the previous behavior,
    you should use runPercentRank(x, n = 1, cumulative = TRUE). Thanks to
    GitHub user httassadar for the report. (#73)


NEW FEATURES

  - Add Ehler's Correlation Trend Indicator. Thanks to Evelyn Mitchell for
    the suggestion, and for Ethan Smith for the initial implementation. (#92)


BUG FIXES

  - runMAD() returned incorrect values when 'cumulative = TRUE' and the input
    contained leading NA. Thanks to GitHub user stellathecat for the report.
    This also affected runMedian() also. (#93)

  - ZLEMA() would crash when 'ratio = 0.0' and 'n' was not specified. Thanks
    to GitHub user yogat3ch for the report! (#95)

  - WMA() did not return an xts object when passed an xts object for 'x' that
    had leading NA, with the default 'wts = 1:n'. Thanks to Cory Fletcher for
    reporting this issue via email. (#96)

  - stoch() was wrong when 'bounded = FALSE'. Thanks to GitHub user rfinfun
    for the report and patch. (#74)

  - HMA() threw an error when 'n' was an odd number. This was because the
    first call to WMA() used 'n = n / 2' which caused 'n' to not be an
    integer. Thanks to GitHub user dragie for the report. (#76)
2022-05-29 00:46:45 +00:00
wen
e3f6a364f4 Update to 0.4.20
Upstream changes:
Changes in 0.4-20 (2022-04-29)

    Remove check for Yahoo Finance cookies because the site no longer responds with a cookie, and that caused the connection attempt to fail. This affected getSymbols(), getDividends(), and getSplits(). Thanks to several users for reporting, and especially to @pverspeelt and @alihru for investigating potential fixes! #358

    Update getSymbols.yahooj() for changes to the web page. #312

    Add HL() and supporting functions. These are analogues to HLC(), OHLC(), etc.Thanks for Karl Gauvin for the nudge to implement them.

    Add adjusted close to getSymbols.tiingo() output. Thanks to Ethan Smith for the suggestion and patch! #289 #345

    Use a Date index for getSymbols.tiingo() daily data. Thanks to Ethan Smith for the report! #350

    Remove unneeded arguments to the getSymbols.tiingo() implementation. Thanks to Ethan Smith for the suggestion and patch! #343 #343

    Load dividends and splits data into the correct environment when the user provides a value for the env argument. The previous behavior always loaded the data into the environment the function was called from. Thanks to Stewart Wright for the report and patch! #33

    Make getOptionChain() return all the fields that Yahoo Finance provides. Thanks to Adam Childers (@rhizomatican) for the patch! #318 #336

    Add orats as a source for getOptionChain(). Thanks to Steve Bronder (@SteveBronder) for the suggestion and implementation! #325

    Improve the error message when getSymbols() cannot import data for a symbol because the symbol is not valid or does not have historical data. Thanks to Peter Carl for the report. #333

    Fix the getMetals() example in the documentation. The example section previously had an example of getFX(). Thanks to Gerhard Nachtmann

    for the report and patch! #330

    Fix getQuote() so it returns data when the ticker symbol contains an “&”. Thanks to @pankaj3009 for the report! #324

    Fix addMACD() when col is specified. Thanks to @nvalueanalytics for the report! #321

Changes in 0.4-18 (2020-11-29)

    Fix issues handling https:// in getSymbols.yahooj(). Thanks to @lobo1981 and @tchevri for the reports and @ethanbsmith for the suggestion to move from XML to xml2. #310 #312

    Fix getSymbols.yahoo(), getDividends(), and getSplits() so they all handle download errors and retry again. Thanks for @helgasoft for the report on getSymbols.yahoo() and @msfsalla for the report on getDividends() and getSplits(). #307 #314

    Add implied volatility and last trade date to getOptionChain() output. Thanks to @hd2581 and @romanlelek for the reports. And thanks to @rjvelasquezm for noticing the error when lastTradeDate is NULL. #224 #304

    Fix getOptionChain() to throw a warning and return NULL for every expiry that doesn’t have data. #299

    Add “Defaults” handling to getQuote() and getQuote.yahoo(). Thanks to @ethanbsmith for the report. #291

    Add Bid and Ask fields to the output from getQuote(). Thanks to @jrburl for the report and PR. #302

    Fix “Defaults” to handle unexported function (e.g. getQuote.av(). Thanks to @helgasoft for the report. #316

    importDefaults() doesn’t call get() on vector with length > 1. Thanks to Kurt Hornik for the report. #319

Changes in 0.4-17 (2020-03-31)

    chartTheme() now works when quantmod is not attached. Thanks to Kurt Hornik for the report.

Changes in 0.4-16 (2020-03-08)

    Remove disk I/O from getSymbols() and getQuote(). This avoids any disk contention, and makes the implementation pattern more consistent with other functions that import data. Thanks to Ethan Smith suggestion and PR. #280 #281

    Make getQuote() robust to symbols without data, so it does not error if one or more symbols are not found. Also return quotes in the same order as the ‘Symbols’ argument. Thanks to Ethan Smith feature request and PR. #279 #282 #288

    Handle semicolon-delimited symbol string handling to main getQuote() function. This makes getQuote() consistent with getSymbols(). Thanks to Ethan Smith suggestion and PR. #284 #285

    Fix ex-dividend and pay date mapping. getQuote() returned the dividend pay date labeled as the ex-dividend date. Thanks to @matiasandina for the report. #287

    Fix Yahoo Finance split ratio. The delimiter changed from “/” to “:”. For example, a 2-for-1 split was 1/2 but is now “2:1”. Thanks to @helgasoft for the report. #292

    Error messages from getQuote.alphavantage() and getQuote.tiingo() no longer contain the API key when symbols can’t be found. #286

    Fix getQuote.alphavantage() by replacing the defunct batch quote request with a loop over the single quote request. Thanks to @helgasoft for the report and patch. #296

    Update getOptionChain() to handle empty volume or open interest Thank to @jrburl for the report and PR. #299 #300
2022-05-29 00:04:50 +00:00
nia
e4af436383 bitcoin: wants C++17 2022-05-21 07:51:53 +00:00
wiz
1ffc26a2ce *: fix usage of versioned_dependencies
Remove unused includes, fix dependencies where it's not included.
2022-05-01 09:45:41 +00:00
adam
a3ab95aa80 py-stripe: updated to 2.74.0
2.74.0
* API Updates
  * Add support for `expire` test helper method on resource `Refund`
2022-04-24 17:11:31 +00:00
adam
e566bd5ce3 py-stripe: updated to 2.73.0
2.73.0 - 2022-04-18
* API Updates
  * Add support for new resources `FundingInstructions` and `Terminal.Configuration`
2022-04-21 07:54:15 +00:00
adam
f5e35d538b revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
adam
0f1520fdd9 py-stripe: updated to 2.72.0
2.72.0
API Updates
- Add support for increment_authorization method on resource PaymentIntent
2022-04-18 10:59:58 +00:00
adam
05b1e1b23c py-braintree: updated to 4.15.2
4.15.2
Add retried to Transaction
2022-04-13 19:46:12 +00:00
adam
81ede88b3f py-stripe: updated to 2.71.0
2.71.0 - 2022-04-08
* API Updates
  * Add support for `apply_customer_balance` method on resource `PaymentIntent`
2022-04-11 16:35:27 +00:00
nia
89bbd074ec Paper over tree breakage caused by unresolvable Python deps from
scikit/pandas/numpy.
2022-04-10 14:42:18 +00:00
gutteridge
1e3802c14c Fix build breakage from py-scipy now being Python >= 3.8 2022-04-10 00:57:13 +00:00
adam
e39295c91d revbump for devel/protobuf 2022-04-03 18:50:16 +00:00
wen
f7e32bfb2c Update to 3062.100
Upstream changes:
2020-01-24  Martin Maechler  <maechler@stat.math.ethz.ch>

	* DESCRIPTION (Version): 3062.100 ;  using Authors@R

	* R/utils-head.R: tail.matrix() in R-devel uses 'keepnums'.

	* R/timeSeries-readSeries.R (et all): do *NOT* use
	  `if(class(.) == "timeSeries")` but use `inherits(*, "...")` !!

	* R/methods-plot.R (.plotTimeSeries): fix wrong logic in
	  `if(.. && at == "auto")` when `at` can be a vector (!)

	* R/aaa-utils.R (`%||%`): utility, to be used extensively in
	* R/methods-plot2.R (.xtplot.timeSeries).
2022-04-02 03:10:26 +00:00
adam
a5982f618f py-stripe: updated to 2.70.0
2.70.0 - 2022-03-30
* API Updates
  * Add support for `cancel_action`, `process_payment_intent`, `process_setup_intent`, and `set_reader_display` methods on resource `Terminal.Reader`
2022-03-31 07:24:00 +00:00
wiz
1aeeffaebe gnucash-docs: update to 4.10.1.
4.10.1- 28 March 2022
        o Re-release 4.10 because a CMakeLists.txt error included only the
	  Portuguese version of the Tutorial and Concepts Guide.
 4.10  - 27 March 2022
        o Update Preferences documentation to match current state
        o Fix 2 "[WARN] FOUserAgent - Destination: Unresolved ID reference"
        o Updates to Gen Imp Tran Matcher other than for new Append checkbox
        o Adjusted entity for image width in gnc-docbookx.dtd and removed a
          duplicate entry.
        o Improve the documentation of the Find dialog.
        o Memo isn't a transaction field, Notes is.
        o F::Q Link to IRC channel inserted as entity
        o F::Q insert note on NAV, insert Entity for Data file
        o Remove country codes from lang attribute and other minor formalities
2022-03-30 08:21:10 +00:00
wiz
9fc0f6c151 gnucash: update to 4.10.
4.10 - 27 March 2022

The eleventh release of the 4.x Stable Series

Between 4.9 and 4.10, the following bugfixes were accomplished:

    Bug 684507 - commodity namespace should be localized
    Bug 741674 - Newly created Scheduled Transactions appear in existing search windows
    Bug 797501 - Currency symbols in Hebrew (RTL) language
    Bug 797772 - Allow reconciliation report to double filter by both posting and reconciliation date
    Bug 798164 - Import transaction window does not allow changing the transaction description.
    Bug 798272 - up/down arrow keys do not work in account selection pop-up
    Bug 798375 - Transfer Account Selection not editable after typing error
    Bug 798386 - Cannot increment date by 1 day with Japanese keyboard.Allow ';' to increment the date because on those keyboards + is shift-;.
    Bug 798391 -OFX import routine keeps prompting for accepted (and reconciled) transactions when imported again
    Bug 797610 - Scrolling is too fast to follow
    Bug 798392 - Reports do not display when Reports JavaScript dependencies are located at a filepath that includes special characters like hash ("#")
    Bug 798395 - ofxdirectconnect downloads crash gnucash 4.9
    Bug 798408 - The calculation in budgets UI and reports are wrong.
    Bug 798411 - Untranslated/Unused string [pt only]
    Bug 798415 - Due Bills Reminder Dialog - Right align 'amount'This was a right-to-left language (e.g. Hebrew) problem.
    Bug 798435 - Crash on print after printing checks
    Bug 798438 - on reconcile window, click on the last column 'R' does not order the entries according with the status
    Bug 798448 - Column 'num' cannot be null
    Bug 798458 - Build failure with gcc 12
    Bug 798474 - Windows 10: Mouse scroll wheel on register only scrolls 1 pixel at a time (instead of 1 line at a time)

The following fixes and improvements were not associated with bug reports:

    Added a BETA Stock Transaction Assistant to help create a
    variety of securities transactions. To try it out start GnuCash
    with the --extra option, open a stock-type register, and select
    Actions>Stock Assistant. Please note any issues on Bug 798004.
    Remove the hard-coded default namespaces"AMEX", "NASDAQ",
    "NYSE", "EUREX", and "FUND" from the New Security dialog. These
    namespaces were added to the list of existing namespaces; it
    was necessary to create a commodity that used one of them to
    make that one an actual namespace, so users who have commodities
    in e.g. the namespace NYSE will still see that namespace in
    the selection list. Reasoning: The list was necessarily incomplete
    and confused new users.
    Fixed the Income Statement report table formating so that all sections get laid out to the same width.
    [Python Bindings]Implement some comparison and arithmetic operators for GncNumeric
    Budgets are sensitive to readonly status

    Disable some budget features if book is readonly
    Fix suppression of "cut split/transaction" warnings for the current session

    These were not working because they were missing from the
    temporary warnings settings schema. The warnings could only be
    dismissed permanently. Add them to the temporary warnings
    section of the settings schema.
    Currencies in several locations not displayed correctly for Hebrew
    [category-barchart] Added option to show ratios
    [html-chart] Add format style option for numbers
    Better wording for tax table changed info message.
    [register] Checkbox any value other than 0x20 (ASCII space) is true.

    Because it can be X or U+2716 now and could be something else
    in future. Fixes in particular the disappearing tax-included
    and tax-table in the Invoice/Bill entry register.
    [gnc-budget-view.c] modify GList in reverse

    because the GList modification in gnc_budget_view_refresh works
    on the tail end (see g_list_last being chopped off successively,
    followed by g_list_append successively), wherease it's much
    faster to work on the head end. Therefore: reverse, modify,
    and re-reverse.
    [Python Bindings]Provide the complete set of QOF enums in gnucash
    [Pyton Bindings]Provide wrapper for qof numeric predicate

    Python bindings already have some wrapping objects for qof
    predicates. This adds the one missing for GncNumeric comparisons.
    Additionally fixes a wrong number for QOF_NUMERIC_MATCH_ANY in
    example file.
    Remove commodity-table.scm, no longer required after adjusting qif-dialog-utils
    Preferences, Import: UPDATE AND RECONCILE should be UPDATE AND CLEAR

    on preference "Enable update match action" tooltip text.
    [register] Enable horizontal scrolling with a touchpad.
    [business]Add diagnostic messages to GncEntry and GncInvoice.
    Replace code style guidance with reference to the wiki Coding Standard page.
    Update Form/Schedule line references for 2021 for the US Income Tax Report
    Update the register help label when cell read only
    Change AR/AP Type cell to be read only

    The Type cell in AR/AP registers should not be changeable from the register so make the cell read only.
    Tip-of-the-Day, new tip: the full file path is shown in the status bar.
    [assistant-qif-import] Prevent ambiguous mnemonic

    Mnemonic N clashes with GtkAssistant "Next". Change to D which does not clash.
    Numerous performance and code-clarity improvements.
2022-03-30 08:12:51 +00:00
adam
39d7bf8510 py-stripe: updated to 2.69.0
2.69.0 - 2022-03-29
* API Updates
  * Add support for Search API
    * Add support for `search` method on resources `Charge`, `Customer`, `Invoice`, `PaymentIntent`, `Price`, `Product`, and `Subscription`
* Pin click dependency to 8.0.4 to avoid breakage in black
* Add infrastructure for test-helper methods
* Revert Orders to use qualified name for upload_api_base

2.68.0 - 2022-03-23
* API Updates
  * Add support for `cancel` method on resource `Refund`
* Add support for SearchResult.
2022-03-30 07:14:50 +00:00
tnn
5d1b18666b {f,h,l,n,p}*/*: revbump(1) for libsndfile 2022-03-28 10:56:15 +00:00
wiz
92c9b0b85b gnucash: switch to guile30
XXX: needs paxctl +m now for guile30's JIT

Bump PKGREVISION.

Clean up a bit while here.
2022-03-15 15:43:54 +00:00
adam
c96394487e py-stripe: updated to 2.67.0
2.67.0
* Add support for new resource `TestHelpers.TestClock`
2022-03-15 06:01:19 +00:00
taca
8f4cc657cd finance/ruby-braintree: update to 4.6.0
4.6.0 (2022-02-17)

* Add PaymentMethodCustomerDataUpdated webhook notification support
2022-03-06 09:00:43 +00:00
wiz
1b03a68cb1 py-ofxparse: fix packaging with python 3.x
Empty entry_points.txt are not created any longer
2022-03-05 08:58:44 +00:00
adam
5f339e5c35 py-stripe: updated to 2.66.0
2.66.0:
Add support for `verify_microdeposits` method on resources `PaymentIntent` and `SetupIntent`
2022-02-27 09:05:25 +00:00
pho
eda754ca5a Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
pin
0c26d27b09 finance/rates: update to 0.7.0
-fix: update trimming logic
2022-02-25 07:27:00 +00:00
adam
3020333348 py-braintree: updated to 4.14.0
4.14.0

Add PaymentMethodCustomerDataUpdated webhook
2022-02-21 16:45:43 +00:00
pin
4bee78cecd finance/rates: update to 0.6.0
-Remove unused files
-Fix a number of issues with rate calculation
-Add --force flag
2022-02-14 09:47:16 +00:00
taca
f767e94f97 finance/ruby-activemerchant: update to 1.125.0
1.125.0 (2022-01-20)

What's Changed

* Wompi: add gateway by @therufs in #4173
* Stripe Payment Intents: Add setup_purchase by @aenand in #4178
* IPG: Add Gateway by @ajawadmirza in #4171
* Safe Charge: Add sg_NotUseCVV field by @ajawadmirza in #4177
* PayU Latam: send correct card types for maestro and condensa by @dsmcclain
  in #4182
* Stripe Payment Intents: refactor response by @aenand in #4183
* Safe Charge: Support string for Add sg_NotUseCVV field by @ajawadmirza in
  #4185
* Wompi: cast error messages to JSON by @therufs in #4186
* NMI: omit initial_transaction_id for CIT by @aenand in #4189
* Adding Priority gateway by @jessiagee in #4166
* GlobalCollect: Support for Lodging Data by @naashton in #4190
* Wompi: option for installments by @therufs in #4192
* Stripe Payment Intents: Add support for fulfillment_date and event_type by
  @dsmcclain in #4193
* Paysafe: Adjust logic for sending 3DS field by @meagabeth in #4194
* DLocal: Implement $0 Verify by @dsmcclain in #4184
* EBANX: Added processing_type Gateway Specific Field by @kledoux-spreedly
  in #4198
* Wompi: do not pass CVV if not provided by @therufs in #4199
* Paysafe: Concatenate credentials for headers by @meagabeth in #4201
* Stripe PI: add_metadata to setup_purchase by @aenand in #4202
* Element (Vantiv Express): Add support for CreditCardCredit action by
  @dsmcclain in #4203
* Orbital: Add googlepay payment tests by @ajawadmirza in #4205
* Mundipagg: Update success method by @ajawadmirza in #4210
* Worldpay: Add support for Visa Direct Fast Funds Credit by @dsmcclain in
  #4212
* Paysafe: Add support for stored credentials by @meagabeth in #4214
* Add Canadian institution number for check by @therufs in #4216
* Worldpay: Set default eCommerce indicator for EMVCO network tokens by
  @shasum in #4215
* Update Canadian institution number handling by @therufs in #4217
* Mercado Pago: Update verify for custom amount by @ajawadmirza in #4219
* Wompi: Add support for Auth and Capture by @rachelkirk in #4218
* Priority: update source and billing address checks by @jessiagee in #4220
* Revert "Remove YAML warning on load_fixtures_method" by @dsmcclain in
  #4229
* USAePay: Add store test, update authorize param by @jessiagee in #4232
* Orbital: Update google pay validations by @ajawadmirza in #4230
* Priority: Remove bank account tender type by @jessiagee in #4228
* Pin Payments: add void support by @montdidier in #4144
* Wompi: update authorization in capture by @rachelkirk in #4238
* IPG: Update authorization for store by @ajawadmirza in #4233
* Paymentez: Update card mappings by @ajawadmirza in #4237
* Orbital: Quick fix for brand correction by @ajawadmirza in #4242
* Priority: Cleaning up refund method by @jessiagee in #4240
* Priority: update parsing for error messages by @jessiagee in #4245
* GlobalCollect: Support Airline Data by @naashton in #4187
* IPG: Add store error response by @ajawadmirza in #4241
* Adds Multiple Item Codes and Amounts to Cashnet Gateway by @peteroas in
  #4243
* IPG: verify method bug fixes for core by @ajawadmirza in #4244
* Stripe: Add support for skip_radar_rules by @dsmcclain in #4250
* CyberSource: Add tax fields by @ajawadmirza in #4251
* Kushki: Add support for metadata by @rachelkirk in #4253
* Wompi: Update sandbox and production endpoints by @rachelkirk in #4255
* Orbital: Add SCA Merchant Initiated field by @ajawadmirza in #4256
* GlobalCollect: Update Production Endpoint by @naashton in #4196
* Decidir Plus: Add Gateway Adapter by @naashton in #4264
* Decidir Plus: Update payment reference by @naashton in #4271
* Paysafe: Update redact method by @meagabeth in #4269
* Elavon: third_party_token bug fix by @rachelkirk in #4273
* Add metadata to network_tokenization_credit_card by @mark-sim in #4270
* Decidir Plus: Sub Payment Fields by @naashton in #4274
* PayWay: Update endpoints and response code by @jessiagee in #4281

New Contributors

* @kledoux-spreedly made their first contribution in #4198
* @peteroas made their first contribution in #4243
* @mark-sim made their first contribution in #4270
2022-02-12 15:27:22 +00:00
pho
dc3a63e008 revbump after changing the default Haskell compiler 2022-02-12 08:50:25 +00:00
pho
884136df17 Update to hledger-1.24.1
The list of changes since 1.21 is too long to paste here:
https://hackage.haskell.org/package/hledger-1.24.1/changelog
2022-02-12 07:59:09 +00:00
pho
0dd8435b06 Update to hledger-lib-1.24.1
The list of changes since 1.21 is too long to paste here:
https://hackage.haskell.org/package/hledger-lib-1.24.1/changelog
2022-02-12 07:50:32 +00:00
adam
4cf8bf33b3 py-alphalens: updated to 0.4.0
v0.4.0
This is a minor release from 0.3.6 that includes bugfixes, performance improvements, and build changes.
2022-02-05 14:50:00 +00:00
adam
ba24434eaa py-pyfolio: not for Python 3.7 2022-02-05 11:45:50 +00:00
adam
5761d83aee py-stripe: updated to 2.65.0
2.65.0
* API Updates
* Add support for new resource `PaymentLink`
* Start testing Python 3.10
2022-01-23 19:14:56 +00:00
wiz
5d61db8d6e py-bitcoinrpc: fix PLIST for python 2.7 2022-01-22 15:21:11 +00:00
pho
75588a9d5d Bump packages that depends on GHC 2022-01-18 02:48:01 +00:00
wiz
fed3f31a44 *: remove workaround patches for python 3.6 2022-01-14 11:49:41 +00:00
wiz
ac9ae85c1b py-bitcoinrpc: fix for python 2.7 2022-01-10 20:27:45 +00:00
wiz
830257c728 py-bitcoinrpc: convert to egg.mk 2022-01-10 08:50:02 +00:00
ryoon
45fb4e2594 *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
wiz
67e1f1a6bf python: egg.mk: add USE_PKG_RESOURCES flag
This flag should be set for packages that import pkg_resources
and thus need setuptools after the build step.

Set this flag for packages that need it and bump PKGREVISION.
2022-01-05 15:40:56 +00:00
wiz
bb579283d0 *: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
2022-01-04 20:53:26 +00:00
adam
b5dabfb712 py-stripe: updated to 2.64.0
2.64.0
Update class custom methods to save list object parameters.
Introduce custom listing methods on objects.
Clarify metadata deletion message.
2021-12-30 20:41:18 +00:00