Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: recurly/recurly-js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.9.5
Choose a base ref
...
head repository: recurly/recurly-js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.9.6
Choose a head ref
  • 7 commits
  • 17 files changed
  • 3 contributors

Commits on Feb 15, 2019

  1. Configuration menu
    Copy the full SHA
    8a545e6 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2019

  1. Merge pull request #513 from recurly/update-packages

    Updates various packages to latest compatible minor versions
    Aaron Suarez authored Feb 19, 2019
    Configuration menu
    Copy the full SHA
    5281405 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2019

  1. Adds specific tax amount overrides to SubscriptionPricing and Checkou…

    …tPricing
    
     - Adds amount param to tax methods on each
     - Adds tax_amount_now and tax_amount_next input detection to Attachment classes
     - Adds tax calculation overrides to Calculations classes
    
    When amount is specified, all tax calculations are overridden. Vat numbers, tax codes, and exemption rules are ignored.
    
    #### Examples
    
    ```js
    const subscriptionPricing = recurly.Pricing.Subscription();
    subscriptionPricing
      .plan('basic')
      .tax({
        amount: {
          now: '20.01',
          next: '5.09'
        }
      }).done(function (price) {
        price.now.tax; // '20.01'
        price.next.tax; // '5.09'
      });
    ```
    
    ```js
    const checkoutPricing = recurly.Pricing.Checkout();
    checkoutPricing
      .subscription(subscriptionPricing)
      .adjustment({ amount: '5' })
      .taxes({
        amount: {
          now: '20.01',
          next: '5.09'
        }
      }).done(function (price) {
        price.now.taxes; // '20.01'
        price.next.taxes; // '5.09'
      });
    ```
    chrissrogers committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    51bc103 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2019

  1. Merge pull request #515 from recurly/pricing-custom-tax-amount

    Adds specific tax amount overrides to SubscriptionPricing and CheckoutPricing
    Aaron Suarez authored Mar 18, 2019
    Configuration menu
    Copy the full SHA
    00d6a3b View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2019

  1. Remove lodash isFinite dependency

    Aaron Suarez committed Mar 21, 2019
    Configuration menu
    Copy the full SHA
    3c4386f View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2019

  1. Merge pull request #517 from recurly/aaron-suarez/remove-lodash-isFinite

    Remove lodash isFinite dependency
    chrissrogers authored Mar 22, 2019
    Configuration menu
    Copy the full SHA
    87b370b View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2019

  1. Version 4.9.6

    chrissrogers committed Mar 25, 2019
    Configuration menu
    Copy the full SHA
    92f97fc View commit details
    Browse the repository at this point in the history
Loading