dry-monads 1.3.2 → 1.3.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: f54a2d70bd196bdb08cc35bb339744c29f9006b01802e4d30b6365d0494812eb
4
- data.tar.gz: 9d8ba396be69616e0091a85505a1514089cd62569ad858990e3c6af1f05fb2c9
3
+ metadata.gz: 76d21f731948c2aab1d34d5bcb153df6b7bf1ba537175f319f14e7bf34a790e3
4
+ data.tar.gz: 0e004b1e409a71bc985bc86a751c7acd7cae748f3153ec0e0103e13d4ef81e6a
5
5
  SHA512:
6
- metadata.gz: 0ecbcd466aa5192858a1a5c9f5337e067e2ab12164fcf6cc4d2409bbdf3d8173587ca98278f896f1aede291e04d2b41ee38c8a4325f256615655ad8772050352
7
- data.tar.gz: cbbbf5179a3176c5ab7abae370683c4c0a00df807cfb8a17591e2f2c35214c1e4eccc69f3baca491fb883c5605ad7af9fd3fe0c2c6bedf60e1183da6aaa84bfa
6
+ metadata.gz: dbcf725d0e4e461e9639d2ea47e80986af14916b49c94c33d38fcf6dcacda828110906c0fd20ed7e0db7677218dfcf80d24b8b69675bd064d492f96455c48a19
7
+ data.tar.gz: 77b31f3a1f052ccc8eae52f7635605828032d449294facad96af556cac8a1bebf7805e7dd6dba1c87198139761d5a611146029df9e0437d62712aab92b23157e
@@ -9,11 +9,7 @@ assignees: ''
9
9
 
10
10
  **Before you submit this: WE ONLY ACCEPT BUG REPORTS AND FEATURE REQUESTS**
11
11
 
12
- For more information see [our contribution guidelines](https://github.com/rom-rb/rom/blob/master/CONTRIBUTING.md)
13
-
14
- **Before you report**
15
-
16
- :warning: If you have a problem related to a schema, please **report it under [dry-schema issues](https://github.com/dry-rb/dry-schema/issues/new?assignees=&labels=bug&template=---bug-report.md&title=)** instead.
12
+ For more information see `CONTRIBUTING.md`.
17
13
 
18
14
  **Describe the bug**
19
15
 
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # v1.3.3 2019-12-11
2
+
3
+ ## Fixed
4
+
5
+ - Incompatibility with Rails. Internal (!) halt exceptions now use mutable backtraces because spring [mutates](https://github.com/rails/spring/blob/ee687859008e947bc905b95121e306e2948d31c9/lib/spring/application.rb#L295-L311) (!) them. For the record, this a bug in Rails (johnmaxwell)
6
+
7
+ [Compare v1.3.2...v1.3.3](https://github.com/dry-rb/dry-monads/compare/v1.3.2...v1.3.3)
8
+
1
9
  # v1.3.2 2019-11-30
2
10
 
3
11
  ## Fixed
data/README.md CHANGED
@@ -1,4 +1,3 @@
1
- [gitter]: https://gitter.im/dry-rb/chat
2
1
  [gem]: https://rubygems.org/gems/dry-monads
3
2
  [ci]: https://github.com/dry-rb/dry-monads/actions?query=workflow%3Aci
4
3
  [code_climate]: https://codeclimate.com/github/dry-rb/dry-monads
data/lib/dry/monads/do.rb CHANGED
@@ -131,7 +131,7 @@ module Dry
131
131
 
132
132
  # @api private
133
133
  def halt(result)
134
- raise Halt.new(result), EMPTY_STRING, EMPTY_ARRAY
134
+ raise Halt.new(result), EMPTY_STRING, []
135
135
  end
136
136
  end
137
137
  end
@@ -1,6 +1,6 @@
1
1
  module Dry
2
2
  module Monads
3
3
  # Gem version
4
- VERSION = '1.3.2'.freeze
4
+ VERSION = '1.3.3'.freeze
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-monads
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nikita Shilnikov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-11-30 00:00:00.000000000 Z
11
+ date: 2019-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-equalizer