Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vmware/pyvmomi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.0.0.1.2
Choose a base ref
...
head repository: vmware/pyvmomi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.0.1.0
Choose a head ref
  • 16 commits
  • 77 files changed
  • 5 contributors

Commits on Aug 19, 2019

  1. Configuration menu
    Copy the full SHA
    00f4d84 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2019

  1. Configuration menu
    Copy the full SHA
    e6447ae View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2020

  1. Quote arguments with square brackets

    Square brackets are interpreted by some shells (e.g. zsh) so it's better
    to surround them with quotes when used on the command line.
    rgerganov committed Apr 15, 2020
    Configuration menu
    Copy the full SHA
    5d3d588 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2020

  1. Allow passing ssl_context when login with token

    When we login with either bearer or HoK token, there should be an option
    to pass an ssl_context in order to support self-signed certificates.
    rgerganov committed Apr 16, 2020
    Configuration menu
    Copy the full SHA
    f75313a View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2023

  1. Configuration menu
    Copy the full SHA
    feba94d View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2023

  1. Merge pull request #824 from kshithijiyer/patch-1

    Adding missing title to LICENSE file.
    DanielDraganov authored Jan 26, 2023
    Configuration menu
    Copy the full SHA
    1aa8685 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #891 from rgerganov/readme-fix

    Quote arguments with square brackets
    DanielDraganov authored Jan 26, 2023
    Configuration menu
    Copy the full SHA
    31294e6 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2023

  1. Merge pull request #750 from jeking3/issue-748-vcrpy-2

    Fix incompatibility with vcrpy 2
    DanielDraganov authored Feb 2, 2023
    Configuration menu
    Copy the full SHA
    651ed25 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2023

  1. Merge branch 'master' into sso-ssl-context

    DanielDraganov authored Feb 3, 2023
    Configuration menu
    Copy the full SHA
    0512646 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #892 from rgerganov/sso-ssl-context

    Allow passing ssl_context when login with token
    DanielDraganov authored Feb 3, 2023
    Configuration menu
    Copy the full SHA
    a971a95 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2023

  1. [WIP] Fix Exception leaks (#812)

    In python2/3 Exception leaks are possible due to
    "traceback reference cycle problem". See
    https://cosmicpercolator.com/2016/01/13/exception-leaks-in-python-2-and-3/
    
    In SoapAdapter.py/InvokeMethod, if vim runtime error was thrown,
    Exception leak occurs. This is due to the fact that when obj is thrown as
    Exception (at SoapAdapter.py:1375), obj is referencing the current frame
    through obj.__traceback__, and the current frame is referencing obj. Thus,
    a circular reference is created. The exception thrown (obj) will never get
    GC'ed, causing a Exception and resource leak.
    
    Also in task.py/WaitForTask, if vim runtime error was thrown,
    Exception leak occurs. The reason is the same -- frame holds reference to
    err and err holds reference to frame.
    
    The solution would be removing all references to obj when raising the
    Exception. This is accomplished by the 'try...finally...' idiom. Also,
    `deserializer` needs to be del'ed, as it also holds a references to obj.
    (obj is deserializer.deser.result).
    
    Signed-off-by: Bo Gan <ganb@vmware.com>
    Co-authored-by: DanielDraganov <ddraganov@vmware.com>
    ganboing and DanielDraganov authored Feb 8, 2023
    Configuration menu
    Copy the full SHA
    5cb1b74 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2023

  1. Configuration menu
    Copy the full SHA
    4d1093f View commit details
    Browse the repository at this point in the history
  2. Update Copyright date

    ddraganov committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    22c3c3f View commit details
    Browse the repository at this point in the history

Commits on May 5, 2023

  1. Add bindings for vSphere 8.0U1 (8.0.1.0)

    ddraganov committed May 5, 2023
    Configuration menu
    Copy the full SHA
    94e9885 View commit details
    Browse the repository at this point in the history
  2. Update the API doc ref for vSphere 8.0U1 (8.0.1.0)

    ddraganov committed May 5, 2023
    Configuration menu
    Copy the full SHA
    6de056e View commit details
    Browse the repository at this point in the history
  3. 1 Configuration menu
    Copy the full SHA
    81d0e9f View commit details
    Browse the repository at this point in the history
Loading