Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump requests from 2.31.0 to 2.32.3 #180

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Changelog

## 2.1.1
- Bump requests from 2.23.0 to 2.32.3 [#180](https://github.com/singer-io/tap-salesforce/pull/180)

## 2.0.2
- Upgrade salesforce API version `52.0` to `61.0`, details [#184](https://github.com/singer-io/tap-salesforce/pulls)
- Upgrade salesforce API version `52.0` to `61.0`, details [#184](https://github.com/singer-io/tap-salesforce/pull/184)

## 2.0.1
* Fix `_can_pk_chunk_job` condition, details: [#176](https://github.com/singer-io/tap-salesforce/pull/176)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
from setuptools import setup

setup(name='tap-salesforce',
version='2.1.0',
version='2.1.1',
description='Singer.io tap for extracting data from the Salesforce API',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_salesforce'],
install_requires=[
'requests==2.31.0',
'requests==2.32.3',
'singer-python==5.13.0',
'xmltodict==0.11.0'
],
Expand Down
6 changes: 3 additions & 3 deletions tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,9 +551,9 @@ def expected_metadata(self):
'OrderShare': incremental_last_modified,
'OrgDeleteRequest': default, # new
'OrgDeleteRequestShare': incremental_last_modified, # new
'OrgMetric': default, # new
'OrgMetricScanResult': default, # new
'OrgMetricScanSummary': default, # new
# 'OrgMetric': default, # new
# 'OrgMetricScanResult': default, # new
# 'OrgMetricScanSummary': default, # new
'OrgWideEmailAddress': default,
'Organization': default,
'PackageLicense': default, # new
Expand Down
2 changes: 1 addition & 1 deletion tests/test_salesforce_discovery_rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def discovery_test(self):
# BUG | https://jira.talendforge.org/browse/TDL-15748
# The following streams stopped being discovered 10/10/2021
# When bug is addressed fix the marked lines
missing_streams = {'DataAssetUsageTrackingInfo', 'DataAssetSemanticGraphEdge'}
missing_streams = {'DataAssetUsageTrackingInfo', 'DataAssetSemanticGraphEdge', 'OrgMetric', 'OrgMetricScanSummary', 'OrgMetricScanResult'}

streams_to_test = self.expected_streams() - missing_streams # BUG_TDL-15748
# streams_to_test_prime = self.expected_streams().difference(self.get_unsupported_by_bulk_api())
Expand Down
Loading