jets 0.5.1 → 0.5.2

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: b26c22c243a758a2e9484da3542193cd2b4c15872db4a7478f815ba4ff0c5684
4
- data.tar.gz: 72aee61e4d0af2adeec467061b9f799275b861c079e450a47d47d3e362eac935
3
+ metadata.gz: 921ded61512a3d89dd910a7af606e589b2c64b3fb6269cc0804cc39aee2da037
4
+ data.tar.gz: faf32f17f5b2fab7a1067c7dd656d26d6ccdace59fcd2c2e6898f24420e088b5
5
5
  SHA512:
6
- metadata.gz: d10c037571d85fd15e3a70a3e962b7d8ed3f0112baea22b0e829eba1b278e54fe615fcbda7ba8e8af79c6761b377893fb92d098a600077bd7f87fcb7f23d2af7
7
- data.tar.gz: df7dc5138ba794386182bf3385914cc70a0abda0bd9bdf4014816b38defcb467ae4ff30ec3728639a01bd975f4eceaa5f69493c2c836c1bfdd389b4fbb3bd88b
6
+ metadata.gz: 7963cd9338daca100b5e0b4c60e24c9f4d0d92153b21e3f10f1a060ff9b4d015a499ab4ae54c6d3ee804e32ecd7c1c64cdaa9d2bb2155308f85ae1c6316af7d7
7
+ data.tar.gz: 3e19e2c9d11d048712aee34bba5036c6995fc35d429a058e7015d025c419f86713b02c7886eaf9cb9677dc9a8df78ca55c7e6af65b79d77002b2488abd81bb4c
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [0.5.2]
7
+ - format the js error in the node shim properly
8
+
6
9
  ## [0.5.1]
7
10
  - fix gemspec
8
11
  - fix Docker base build, comment out unneeded broken maven
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- jets (0.5.0)
14
+ jets (0.5.2)
15
15
  actionpack
16
16
  actionview
17
17
  activerecord
@@ -63,7 +63,7 @@ GEM
63
63
  tzinfo (~> 1.1)
64
64
  arel (9.0.0)
65
65
  aws-eventstream (1.0.1)
66
- aws-partitions (1.99.0)
66
+ aws-partitions (1.100.0)
67
67
  aws-sdk-cloudformation (1.6.0)
68
68
  aws-sdk-core (~> 3)
69
69
  aws-sigv4 (~> 1.0)
@@ -53,11 +53,13 @@ once();
53
53
  function rubyError(resp) {
54
54
  var name = resp["errorType"]
55
55
  var message = resp["errorMessage"]
56
- var lines = resp["stackTrace"]
56
+ var stack = resp["stackTrace"]
57
+ stack.unshift(message); // JS error includes the error message at the top of the stacktrac also
58
+ stack = stack.join("\n")
57
59
 
58
60
  var error = new Error(message)
59
61
  error.name = name
60
- error.stack = lines.join("\n")
62
+ error.stack = stack
61
63
  return error
62
64
  }
63
65
 
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen