Skip to content

Commit

Permalink
Merge pull request #69 from Noah-Silvera/lock-execjs
Browse files Browse the repository at this point in the history
Lock ExecJS and solidus extensions orb version
  • Loading branch information
nvandoorn committed May 12, 2021
2 parents d4553b0 + e017998 commit 9ae8fa8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
version: 2.1
orbs:
# Always take the latest version of the orb, this allows us to
# run specs against Solidus supported versions only without the need
# to change this configuration every time a Solidus version is released
# or goes EOL.
solidusio_extensions: solidusio/extensions@volatile
solidusio_extensions: solidusio/extensions@0.2.24

jobs:
run-specs-with-postgres:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- [#51](https://github.com/SuperGoodSoft/solidus_taxjar/pull/51) Add nexus regions method to API
- [#58](https://github.com/SuperGoodSoft/solidus_taxjar/pull/58) Take shipping promotions into account in default calculator
- [#59](https://github.com/SuperGoodSoft/solidus_taxjar/pull/59) Add pry debugging tools
- [#69](https://github.com/SuperGoodSoft/solidus_taxjar/pull/69) Lock ExecJS version

## v0.18.1

Expand Down
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ gem "rails", ENV.fetch("RAILS_VERSION") { ">0.a" }

# Provides basic authentication functionality for testing parts of your engine
gem "solidus_auth_devise"
# ExecJS 2.8 has a bug in it which breaks js precompiling, which is required for our features
# specs. Many other solidus extensions are also experiencing failing specs because of this.
# For now, we should lock the version of ExecJS until a new release comes out that fixes this bug.
gem "execjs", '~> 2.7.0'

case ENV["DB"]
when "mysql"
Expand Down

0 comments on commit 9ae8fa8

Please sign in to comment.