Skip to content
This repository was archived by the owner on Jul 15, 2021. It is now read-only.
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: handsontable/formula-parser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0df57d6b13710ed6f39ac7fb531b8346d867c8ea
Choose a base ref
...
head repository: handsontable/formula-parser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d056ea2351153b77831b9a92842ef198b3f517f0
Choose a head ref
  • 10 commits
  • 11 files changed
  • 1 contributor

Commits on Nov 28, 2018

  1. Copy the full SHA
    9441360 View commit details

Commits on Apr 19, 2019

  1. Remove usage of the 'eval' function (#58)

    * Remove usage of the 'eval' function
    * Update formulajs module
    budnix authored Apr 19, 2019
    Copy the full SHA
    396b089 View commit details
  2. Copy the full SHA
    3e5089d View commit details
  3. 3.0.1

    budnix committed Apr 19, 2019
    Copy the full SHA
    15cd1ba View commit details
  4. Merge tag '3.0.1' into develop

    3.0.1
    budnix committed Apr 19, 2019
    Copy the full SHA
    43d4822 View commit details
  5. Merge branch 'release/3.0.1'

    budnix committed Apr 19, 2019
    Copy the full SHA
    279cdb0 View commit details

Commits on Jan 10, 2020

  1. Bump dependencies (#96)

    Bump @handsontable/formulajs module which internally bumps bessel
    package. Also, replace forked jstat module with original one.
    budnix authored Jan 10, 2020
    Copy the full SHA
    c561c53 View commit details
  2. 3.0.2

    budnix committed Jan 10, 2020
    Copy the full SHA
    6af0d89 View commit details
  3. Merge branch 'release/3.0.2'

    budnix committed Jan 10, 2020
    Copy the full SHA
    8cd4f28 View commit details
  4. Merge tag '3.0.2' into develop

    3.0.2
    budnix committed Jan 10, 2020
    Copy the full SHA
    d056ea2 View commit details
Showing with 3,829 additions and 9,499 deletions.
  1. +1 −0 .nvmrc
  2. +3 −4 .travis.yml
  3. +976 −591 dist/formula-parser.js
  4. +1 −1 dist/formula-parser.min.js
  5. +2,813 −3,291 package-lock.json
  6. +10 −10 package.json
  7. +1 −8 src/grammar-parser/grammar-parser.jison
  8. +17 −29 src/grammar-parser/grammar-parser.js
  9. +6 −0 test/integration/parsing/function.js
  10. +1 −1 test/unit/helper/number.js
  11. +0 −5,564 yarn.lock
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v10
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -3,12 +3,11 @@ language: node_js
sudo: false

node_js:
- '6'
- '10'

install:
- npm install yarn -g
- yarn install
- yarn global add codeclimate-test-reporter
- npm ci
- npm install -g codeclimate-test-reporter

before_script:
- export TZ=Europe/Warsaw
Loading