8000 Tags · ericbn/simple-salesforce · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: ericbn/simple-salesforce

Tags

v1.12.2

Toggle v1.12.2's commit message

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
Release/v1.12.2 (simple-salesforce#581)

* Remove leftover reference to Python 3.5 support (simple-salesforce#563)

Support for Python 3.5 was dropped in simple-salesforce#556, so it should not be listed
as a supported version in the README.

* Update CHANGES

* Feature/v1.12.2/connected app login (simple-salesforce#574)

* add support for connected app

Add connected app support

* add connected app support

add connected app support

* Update __version__.py

* add tests for connected app login

* clean up formatting

* clean up formatting

* Update login.py

fix pylint errors

* Update api.py

fix pylint errors

* Update CHANGES

* Update README.rst

update read me for connected app and helper functions/related recordsq uery

* Bug/v1.12.2/bulk autosize batch (simple-salesforce#575)

* add waits as arguments to exposed bulk api methods (simple-salesforce#565)

* add waits as arguments to simple salesforce top level queries

* fix missing wait pass-through

* obey line length rules

* clean up trailing whitespace

* Update CHANGES

* Update bulk.py

fix adding of int to string in bulk autosize batches

* Update bulk.py

fix autosize batching

* Update bulk.py

add ability to bypass results being returned

* Update bulk.py

Co-authored-by: Lewington-pitsos <lewingtonpitsos@gmail.com>

* Feature/v1.12.2/connected app login (simple-salesforce#576)

* add support for connected app

Add connected app support

* add connected app support

add connected app support

* Update __version__.py

* add tests for connected app login

* clean up formatting

* clean up formatting

* Update login.py

fix pylint errors

* Update api.py

fix pylint errors

* Update CHANGES

* Update README.rst

update read me for connected app and helper functions/related recordsq uery

* Avoid a ZeroDivisionError in bulk.py (simple-salesforce#568)

* Raise an error if no data provided in bulk queries

* Update bulk.py

fix trailing whitespace

Co-authored-by: JonWobken <49450080+jon-wobken@users.noreply.github.com>

* Update api.py

Co-authored-by: Ed Morley <501702+edmorley@users.noreply.github.com>
Co-authored-by: Lewington-pitsos <lewingtonpitsos@gmail.com>
Co-authored-by: Vandan <vandanadhvaryu99@gmail.com>

v1.12.1

Toggle v1.12.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
V1.12.1 (simple-salesforce#558)

* Fixed argument position in SFType

* Update .pylintrc

* Update api.py

update oauth2 to remove unnecessary else

* Update test_api.py

fix pylint line too long 1161

* Update test_api.py

* Update api.py

* Update api.py

* Update __version__.py

* Update CHANGES

* Update CHANGES

* fix: revert SFType argument order changed by PR#507 (simple-salesforce#560)

* Update CHANGES

Co-authored-by: Hiroki Kajiwara <hkajiwara@gmail.com>

v1.12.0

Toggle v1.12.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release/v1.12.0 (simple-salesforce#556)

* Remove support for python 3.5

Remove support for python 3.5

* Remove support for python 3.5

Remove support for python 3.5

* Update __version__.py

update version to v1.12.0

* Implement wait param in non-query bulk operations (simple-salesforce#545)

* Implement wait param in non-query bulk operations

Add the wait parameter to workers spawned from _bulk_operation for
non-query calls (it already exists for query calls).

* Mimic formatting

Co-authored-by: David Arcuri <david.arcuri@consultch.com>

* Add optional flag use ordinary dict (simple-salesforce#548)

* add object_pairs_hook option

* add object_pairs_hook to SFType

* set attribute _object_pairs_hook

* modify param desc to pass line limit pylint

* added tests

* updated corrected tests

* Update test_api.py

fix result = client.query to match response mock in test_query_parse_to_json_to_Dict and test_query_parse_to_json_to_OrderedDict

* Update test_api.py

update test names to fix pylint invalid-name

* fix trailing whitespace

fix trailing whitespace

Co-authored-by: JonWobken <49450080+jon-wobken@users.noreply.github.com>

* create dynamic sized batches to respect bulk api limits (simple-salesforce#546)

* add autosize feature

* add docstring

* add support for char_limit

Co-authored-by: Hal Ali <hal.ali@agilebits.com>

* Feature/release/v1.12.0/refr
10000
esh session (simple-salesforce#555)

* FEAT: refresh sessions automatically (simple-salesforce#507)

* add support for refreshing sessions automatically

* recalculate headers with new session_id

* fix tests

* extend support to SFType objects as well

* reach into Salesforce from SFType to refresh session

* fix session_id getter

* rearrange arguments when creating SFType

* Update CHANGES

* Added upload_base64, update_base64, get_base64 functionality (simple-salesforce#485)

Co-authored-by: Adam <adamm@ownbackup.com>

* Added support for all metadata api operations (simple-salesforce#475)

* Added support for all metadata api operations

* Update metadata.py to support bulk api like syntax

* Update metadata.py

* Update metadata.py

* Fixed docstrings

* Update metadata.py

Changed new() method to __call__ for easier syntax when creating new objects. Added flag to  zeep settings so that out of order complex types are parsed successfully in read response

* Update metadata.py

* Added documentation for metadata API operations

* Update MANIFEST.in

* Update metadata.py

* Update api.py

* Update metadata.py

* Update metadata.py

* Update metadata.py

* Update metadata.py

* Moved sandbox from class variable to method parameter

* Update api.py

Co-authored-by: pdahiya <pdahiya@commvault.com>

* Issue simple-salesforce#517 Fixing hanging batch results in worker. (simple-salesforce#518)

* Issue simple-salesforce#517 Fixing hanging batch results in worker.

* Issue simple-salesforce#517 Found another use of Not Processed and changed to NotProcessed.

Co-authored-by: Martin Gardner (Slalom) <martin.gardner@slalom.com>

* Update default api version to Winter 22 (simple-salesforce#515)

Co-authored-by: JonWobken <49450080+jon-wobken@users.noreply.github.com>

* update link for sfdc jwt (simple-salesforce#512)

* Add parse_float function to allow parsing floats to decimal.Decimal (simple-salesforce#495)

* Add parse_float function to allow parsing floats to decimal.Decimal

* Refactor json parsing into separate functions

* Fix linting

* Add parse_float test to SFType tests

* Fix linting in test

* Check types in test for SFType

Co-authored-by: JonWobken <49450080+jon-wobken@users.noreply.github.com>

* Update __version__.py

* Update CHANGES

* Update .pylintrc

* Update metadata.py

fix pylint line too long

* Update api.py

fix pylint line too long

* Update .travis.yml

fix travis-ci cryptography build error

* Update api.py

fix formatting error in update_base64

* Update metadata.py

* Update api.py

* Update .travis.yml

fix travis-ci cryptography build

* Add kwargs to query_more call in query_all_iter (simple-salesforce#524)

* Update .travis.yml

fix travis-ci cryography compile

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update setup.py

fix travis-ci pyp3 build error with crytography

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

remove pypy3 failing due to cartography build

* Update api.py

fix pylint trailing whitespaces/line too long

* Update api.py

fix pylint errors (white space, line too long, too many lines)

* Update api.py

* Update api.py

fix pylint errors

* Update api.py

Ignore protected class

* Update test_api.py

pylint disable W0212

Co-authored-by: JonWobken <49450080+jon-wobken@users.noreply.github.com>
Co-authored-by: Adam Mahameed <23741427+adam-mah@users.noreply.github.com>
Co-authored-by: Adam <adamm@ownbackup.com>
Co-authored-by: Pranav Dahiya <31065394+pranav-dahiya@users.noreply.github.com>
Co-authored-by: pdahiya <pdahiya@commvault.com>
Co-authored-by: magardner <magardner@users.noreply.github.com>
Co-authored-by: Martin Gardner (Slalom) <martin.gardner@slalom.com>
Co-authored-by: Uli Stärk <github@uli-staerk.de>
Co-authored-by: Matthew Nataloni <27374786+men6288@users.noreply.github.com>
Co-authored-by: Timo <6358247+timotk@users.noreply.github.com>
Co-authored-by: will-hall <77327489+will-hall@users.noreply.github.com>

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update api.py

* Update .pylintrc

Co-authored-by: Noah Cardoza <noahcardoza@gmail.com>
Co-authored-by: Adam Mahameed <23741427+adam-mah@users.noreply.github.com>
Co-authored-by: Adam <adamm@ownbackup.com>
Co-authored-by: Pranav Dahiya <31065394+pranav-dahiya@users.noreply.github.com>
Co-authored-by: pdahiya <pdahiya@commvault.com>
Co-authored-by: magardner <magardner@users.noreply.github.com>
Co-authored-by: Martin Gardner (Slalom) <martin.gardner@slalom.com>
Co-authored-by: Uli Stärk <github@uli-staerk.de>
Co-authored-by: Matthew Nataloni <27374786+men6288@users.noreply.github.com>
Co-authored-by: Timo <6358247+timotk@users.noreply.github.com>
Co-authored-by: will-hall <77327489+will-hall@users.noreply.github.com>

* Support OAuth2 endpoint APIs (simple-salesforce#550)

OAuth Endpoints (https://help.salesforce.com/s/articleView?id=sf.remoteaccess_oauth_endpoints.htm&type=5)

Co-authored-by: JonWobken <49450080+jon-wobken@users.noreply.github.com>

* Update CHANGES

Co-authored-by: David A <45184827+Haeilifax@users.noreply.github.com>
Co-authored-by: David Arcuri <david.arcuri@consultch.com>
Co-authored-by: sohith <77746813+sohithkumar@users.noreply.github.com>
Co-authored-by: Hal Ali <haleemur@users.noreply.github.com>
Co-authored-by: Hal Ali <hal.ali@agilebits.com>
Co-authored-by: Noah Cardoza <noahcardoza@gmail.com>
Co-authored-by: Adam Mahameed <23741427+adam-mah@users.noreply.github.com>
Co-authored-by: Adam <adamm@ownbackup.com>
Co-authored-by: Pranav Dahiya <31065394+pranav-dahiya@users.noreply.github.com>
Co-authored-by: pdahiya <pdahiya@commvault.com>
Co-authored-by: magardner <magardner@users.noreply.github.com>
Co-authored-by: Martin Gardner (Slalom) <martin.gardner@slalom.com>
Co-authored-by: Uli Stärk <github@uli-staerk.de>
Co-authored-by: Matthew Nataloni <27374786+men6288@users.noreply.github.com>
Co-authored-by: Timo <6358247+timotk@users.noreply.github.com>
Co-authored-by: will-hall <77327489+will-hall@users.noreply.github.com>
Co-authored-by: Hiroki Kajiwara <hkajiwara@gmail.com>

v1.11.6

Toggle v1.11.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Hotfix/v1.11.6 (simple-salesforce#536)

* Update setup.py

* Update __version__.py

Version update

* Update setup.py

* Update CHANGES

v1.11.5

Toggle v1.11.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release/v1.11.5 (simple-salesforce#527)

* Update CHANGES

* Added upload_base64, update_base64, get_base64 functionality (simple-salesforce#485)

Co-authored-by: Adam <adamm@ownbackup.com>

* Added support for all metadata api operations (simple-salesforce#475)

* Added support for all metadata api operations

* Update metadata.py to support bulk api like syntax

* Update metadata.py

* Update metadata.py

* Fixed docstrings

* Update metadata.py

Changed new() method to __call__ for easier syntax when creating new objects. Added flag to  zeep settings so that out of order complex types are parsed successfully in read response

* Update metadata.py

* Added documentation for metadata API operations

* Update MANIFEST.in

* Update metadata.py

* Update api.py

* Update metadata.py

* Update metadata.py

* Update metadata.py

* Update metadata.py

* Moved sandbox from class variable to method parameter

* Update api.py

Co-authored-by: pdahiya <pdahiya@commvault.com>

* Issue simple-salesforce#517 Fixing hanging batch results in worker. (simple-salesforce#518)

* Issue simple-salesforce#517 Fixing hanging batch results in worker.

* Issue simple-salesforce#517 Found another use of Not Processed and changed to NotProcessed.

Co-authored-by: Martin Gardner (Slalom) <martin.gardner@slalom.com>

* Update default api version to Winter 22 (simple-salesforce#515)

Co-authored-by: JonWobken <49450080+jon-wobken@users.noreply.github.com>

* update link for sfdc jwt (simple-salesforce#512)

* Add parse_float function to allow parsing floats to decimal.Decimal (simple-salesforce#495)

* Add parse_float function to allow parsing floats to decimal.Decimal

* Refactor json parsing into separate functions

* Fix linting

* Add parse_float test to SFType tests

* Fix linting in test

* Check types in test for SFType

Co-authored-by: JonWobken <49450080+jon-wobken@users.noreply.github.com>

* Update __version__.py

* Update CHANGES

* Update .pylintrc

* Update metadata.py

fix pylint line too long

* Update api.py

fix pylint line too long

* Update .travis.yml

fix travis-ci cryptography build error

* Update api.py

fix formatting error in update_base64

* Update metadata.py

* Update api.py

* Update .travis.yml

fix travis-ci cryptography build

* Add kwargs to query_more call in query_all_iter (simple-salesforce#524)

* Update .travis.yml

fix travis-ci cryography compile

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update setup.py

fix travis-ci pyp3 build error with crytography

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

remove pypy3 failing due to cartography build

Co-authored-by: Adam Mahameed <23741427+adam-mah@users.noreply.github.com>
Co-authored-by: Adam <adamm@ownbackup.com>
Co-authored-by: Pranav Dahiya <31065394+pranav-dahiya@users.noreply.github.com>
Co-authored-by: pdahiya <pdahiya@commvault.com>
Co-authored-by: magardner <magardner@users.noreply.github.com>
Co-authored-by: Martin Gardner (Slalom) <martin.gardner@slalom.com>
Co-authored-by: Uli Stärk <github@uli-staerk.de>
Co-authored-by: Matthew Nataloni <27374786+men6288@users.noreply.github.com>
Co-authored-by: Timo <6358247+timotk@users.noreply.github.com>
Co-authored-by: will-hall <77327489+will-hall@users.noreply.github.com>

v1.11.4

Toggle v1.11.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
v11.11.4 (simple-salesforce#504)

* Update CHANGES

* Update __version__.py

v1.11.3

Toggle v1.11.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
V1.11.3 (simple-salesforce#498)

* Update CHANGES

* Update __version__.py

v1.11.2

A6B5 Toggle v1.11.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix Pylint errors (simple-salesforce#479)

* Update api.py

* Fix Trailing Whitespace Travis CI

* Update __version__.py

* Update CHANGES

* Update bulk.py

* Update __version__.py

* Update CHANGES

* Update CHANGES

* Update test_bulk.py

* Update metadata.py

* Update bulk.py

Change pool to use "with"

* Update metadata.py

v1.11.1

Toggle v1.11.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update .travis.yml

Fix Travis CI deploy

v1.11.0

Toggle v1.11.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Issue simple-salesforce#375: Feature Request: File Based Metadata API…

… Calls V2 (simple-salesforce#434)

* Create metadata

* Update api.py

* Create messages

* Update test_api.py

* Update api.py

* Update and rename metadata to metadata.py

* Rename messages to messages.py

* Update api.py

* Update __version__.py

Version bump

* Update README.rst

* Update CHANGES

* Update .pylintrc

* Update metadata.py

* Update test_api.py

* Update api.py

* Update test_api.py

* Update test_api.py

* Update api.py

* Update metadata.py

* Update test_api.py

* Update test_api.py

* Update login.py

* Update api.py
0