sequel-packer 1.0.0 → 1.0.1

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: b3668368d8bc70c9c48aed2d48180c46caf75749eec556e4625e134534f65760
4
- data.tar.gz: bcd3643f407dd675b80b5b76719ee6906b0892d8b437b0415712c81e271bdba1
3
+ metadata.gz: 8782014d5d4fd8a6da590674ebc1d8d7a248f13ab80a1c571a0036f5a158af4f
4
+ data.tar.gz: d58397494def47b14aba23ce8f3dd2006936116e1273016f5bafb8e22c20809a
5
5
  SHA512:
6
- metadata.gz: 979da0d59439adbb1065cdd0a07977b7a9192842d2df8cf753ccfac306b26b92361a340536d4125c31901f7ad2d064eb4dc563ba246c8f667c7b7af2ee9937e1
7
- data.tar.gz: 8e8ed34ddc5e6059253454772fe7f089e9bb662eebd4ec1d44c7d2d0699cd6cc9800d347fa1d9a82aa3dfd16606df3e7a062e6a62ec4f08e7aed72f4c6c4aab0
6
+ metadata.gz: a30ae3faee56c47a4da2efcddb0a09cb5cbf892451968d010fddd2c3b937b59caadeb3128c78c4ca94d8cfaf0d2741755459fb1729c4f6fbb9b97f2787289201
7
+ data.tar.gz: 109e270732bec0bb7311f5d5f5a7e5f9c6f5f91e4a685bbdec5e20f28a38ef92093fd64d56067e6e64a3a718c2076df700b82e401f2004898aee846dc6cd879b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### 1.0.1 (2021-08-02)
2
+
3
+ * Update internal method call to remove "Using the last argument as
4
+ keyword parameters is deprecated" warning.
5
+
1
6
  ### 1.0.0 (2020-05-18)
2
7
 
3
8
  * Version 1.0.0 release! No changes since 0.5.0 except some small changes to the
data/lib/sequel/packer.rb CHANGED
@@ -222,7 +222,7 @@ module Sequel
222
222
 
223
223
  # Create all the subpackers, and merge in their eager hashes.
224
224
  @instance_packers.each do |association, (subpacker, traits)|
225
- association_packer = subpacker.new(*traits, @context)
225
+ association_packer = subpacker.new(*traits, **@context)
226
226
 
227
227
  @subpackers[association] = association_packer
228
228
 
@@ -1,5 +1,5 @@
1
1
  module Sequel
2
2
  class Packer
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sequel-packer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Julius Martinez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-19 00:00:00.000000000 Z
11
+ date: 2021-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sequel