react_on_rails 11.1.2 → 11.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 24362cafd62e7bf03e57b82b3fad400765ab55dda2eba19c68411f5b6599bbbe
4
- data.tar.gz: '091f3c971b243209fb72c53723f72f2c9915533f20602b0b7d94297a1e0ffd96'
3
+ metadata.gz: 04a37bb59456d9f53a710c322508ec6ac24dacc10d582433260ab2493856e5eb
4
+ data.tar.gz: ce503194195e6eff3c616be598239ff99a65a48f3ebadef016f68936b522fb64
5
5
  SHA512:
6
- metadata.gz: eccf5d97a8c77b782082d94646e5068dcf7f4f667f0efdc23bc459c5ff7b78d95750162f96bc398691825860ea8b9fe8c1f2e59cc0418a5e46d9e176ab387c91
7
- data.tar.gz: 10bb36f5b233e5444b92a900c7e16b8b6a70b6c6a4d5d925aaa139c411ab526797d64b0ea334dc5c096143698087c3fe3699dd90b85f367b16aa6a62742f9870
6
+ metadata.gz: 985e88c58920e55496873df0f00a71bf94f88d65d7f3f19c5d89c08fd34884057d9720d2cf3dc72f5ff88d8c48a7171d6e2dc8af831362cae2d0df735c8b8cb9
7
+ data.tar.gz: fb7abf86cecd2ea9fdac62be764b85b4c394a00347286c3be9e2f1a417e1f9873cca7a2e94f2169890a99358efc9a049333a067e4c18a67c2926a56842f31ce7
@@ -10,6 +10,12 @@ Changes since last non-beta release.
10
10
 
11
11
  *Please add entries here for your pull requests that are not yet released.*
12
12
 
13
+ ### [11.1.3] - 2018-08-26
14
+
15
+ #### Fixed
16
+ - Don't apply babel-plugin-transform-runtime inside react-on-rails to work with babel 7. [PR 1136](https://github.com/shakacode/react_on_rails/pull/1136) by [Ryunosuke Sato](https://github.com/tricknotes).
17
+ - Add support for webpacker 4 prereleases. [PR 1134](https://github.com/shakacode/react_on_rails/pull/1134) by [Judahmeek](https://github.com/Judahmeek))
18
+
13
19
  ### [11.1.2] - 2018-08-18
14
20
 
15
21
  #### Fixed
@@ -803,8 +809,10 @@ Best done with Object destructing:
803
809
  ##### Fixed
804
810
  - Fix several generator related issues.
805
811
 
806
- [Unreleased]: https://github.com/shakacode/react_on_rails/compare/11.1.1...master
807
- [11.1.1]: https://github.com/shakacode/react_on_rails/compare/11.1.0...11.1.
812
+ [Unreleased]: https://github.com/shakacode/react_on_rails/compare/11.1.3...master
813
+ [11.1.3]: https://github.com/shakacode/react_on_rails/compare/11.1.2...11.1.3
814
+ [11.1.2]: https://github.com/shakacode/react_on_rails/compare/11.1.1...11.1.2
815
+ [11.1.1]: https://github.com/shakacode/react_on_rails/compare/11.1.0...11.1.1
808
816
  [11.1.0]: https://github.com/shakacode/react_on_rails/compare/11.0.10...11.1.0
809
817
  [11.0.10]: https://github.com/shakacode/react_on_rails/compare/11.0.9...11.0.10
810
818
  [11.0.9]: https://github.com/shakacode/react_on_rails/compare/11.0.8...11.0.9
@@ -153,7 +153,7 @@ exitstatus: #{status.exitstatus}#{stdout_msg}#{stderr_msg}
153
153
  end
154
154
 
155
155
  def self.gem_available?(name)
156
- Gem::Specification.find_by_name(name).present?
156
+ Gem::Specification.find_all_by_name(name).present?
157
157
  rescue Gem::LoadError
158
158
  false
159
159
  rescue StandardError
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ReactOnRails
4
- VERSION = "11.1.2".freeze
4
+ VERSION = "11.1.3".freeze
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "11.1.2",
3
+ "version": "11.1.3",
4
4
  "description": "react-on-rails JavaScript for react_on_rails Ruby gem",
5
5
  "main": "node_package/lib/ReactOnRails.js",
6
6
  "directories": {
@@ -12,7 +12,6 @@
12
12
  "babel-loader": "^7.1.1",
13
13
  "babel-plugin-react-transform": "^2.0.2",
14
14
  "babel-plugin-transform-flow-strip-types": "^6.22.0",
15
- "babel-plugin-transform-runtime": "^6.23.0",
16
15
  "babel-preset-es2015": "^6.24.1",
17
16
  "babel-preset-react": "^6.24.1",
18
17
  "babel-preset-stage-2": "^6.24.1",
data/yarn.lock CHANGED
@@ -756,12 +756,6 @@ babel-plugin-transform-regenerator@^6.24.1:
756
756
  dependencies:
757
757
  regenerator-transform "^0.10.0"
758
758
 
759
- babel-plugin-transform-runtime@^6.23.0:
760
- version "6.23.0"
761
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee"
762
- dependencies:
763
- babel-runtime "^6.22.0"
764
-
765
759
  babel-plugin-transform-strict-mode@^6.24.1:
766
760
  version "6.24.1"
767
761
  resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: react_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.1.2
4
+ version: 11.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-08-20 00:00:00.000000000 Z
11
+ date: 2018-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable