hubspot-api-client 17.1.0 → 17.1.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: c65b1899e69edcb77d187160ceb56978edd2117093505c1dd931448e20c39f9b
4
- data.tar.gz: f9d4c851d037fd7233549dc92eb084db5c74dd03bbbeb3152a1d41590a0eb726
3
+ metadata.gz: 310cc19bf4eb6b36f52bca2d7b1311a952407454d02e543f07581510ff023577
4
+ data.tar.gz: 8dd805a113a47806207c96eb01a74bf3bb5c42d644b0c1ed148cbf17fe0a4c2c
5
5
  SHA512:
6
- metadata.gz: 57bede9b4606c0977a9faeab6ba749909fae6a6b9adfd6445ec06889bed6a0be16375dd258597b7bf04a06a12548b8074debfcc9f5464133170bd14c6610740f
7
- data.tar.gz: fd6a046cfb2a88c82c0b7ed0ec5a708f5c06c9d556e6f4675a3fb724f733ed8956ec4bfc257c7e5bd188fa387d6652895df09e75ddb858cb1c1b49d87bdac5e2
6
+ metadata.gz: 54da9a8b99eb5b71ff37fc652230c4bdec68abf754714b42ade425c0a5316176ab32c4272f5be4f197b1610f442f1a2d337e5717f57ad7f2b34abd7d161f87da
7
+ data.tar.gz: 413c77b297d9126c468b9acd41f1d9d616e988a168242f8fcad57994ad494997dbc3c4cc5162ec06e2ca8629536146afb105ecb3c1628b6ddacf312599d8c1c3
data/CHANGELOG.md CHANGED
@@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [Unreleased](https://github.com/HubSpot/hubspot-api-ruby/compare/v17.1.0...HEAD)
8
+ ## [Unreleased](https://github.com/HubSpot/hubspot-api-ruby/compare/v17.1.1...HEAD)
9
+
10
+
11
+ ## [17.1.1] - 2023-09-28
12
+
13
+ ## Fixed
14
+
15
+ - fix initializing `developer_hapikey`
9
16
 
10
17
 
11
18
  ## [17.1.0] - 2023-08-07
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hubspot-api-client (17.1.0)
4
+ hubspot-api-client (17.1.1)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  typhoeus (~> 1.4.0)
7
7
 
@@ -46,7 +46,7 @@ module Hubspot
46
46
  config = Kernel.const_get("#{codegen_module_name}::Configuration").new
47
47
  config.access_token = base_params[:access_token] if base_params[:access_token]
48
48
  config.api_key['hapikey'] = base_params[:api_key] if base_params[:api_key]
49
- config.api_key['hapikey'] = base_params[:developer_api_key] if base_params[:developer_api_key]
49
+ config.api_key['developer_hapikey'] = base_params[:developer_api_key] if base_params[:developer_api_key]
50
50
  config
51
51
  end
52
52
 
@@ -1,3 +1,3 @@
1
1
  module Hubspot
2
- VERSION = '17.1.0'
2
+ VERSION = '17.1.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hubspot-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 17.1.0
4
+ version: 17.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - HubSpot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-07 00:00:00.000000000 Z
11
+ date: 2023-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus