Thanks to visit codestin.com
Credit goes to github.com

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: dropbox/stone
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.3.1
Choose a base ref
...
head repository: dropbox/stone
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.3.2
Choose a head ref
  • 11 commits
  • 54 files changed
  • 9 contributors

Commits on Feb 1, 2022

  1. Add --attribute-comment argument to JS and TSD clients (#268)

    Add --attribute-comment field to js_client.py and tsd_client.py, like the one added to python_client.py in #262. This is a prerequisite for dropbox/dropbox-sdk-js#891 which adds scopes to the outputted clients for easier reference.
    
    Also adds appropriate testing and updates the docstring for the python_client.py, making it more succinct and aligned with the other two.
    sderickson authored Feb 1, 2022
    Configuration menu
    Copy the full SHA
    9600065 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2022

  1. avoid syntax error in .d.ts when the module names end up long (#273)

    It is not legal typescript to wrap a `declare module "foo/bar" {` statement - this is a SyntaxError.  as such, we need to `self.emit()` this statement instead of `self.emit_wrapped_text()`.
    dgoldstein0 authored Mar 30, 2022
    Configuration menu
    Copy the full SHA
    bdd49bc View commit details
    Browse the repository at this point in the history

Commits on May 18, 2023

  1. Version compatible inspect handling for class parameters (#299)

    * Version compatible inspect handling for class parameters
    
    `getargspec` was deprecated in Python 3.0, but finally removed in Python
    3.11. For reference: Pylons/pyramid#3688
    
    That seems like a valid amount of time.
    
    We can do our best effort and if the user is running a Python version
    that still has `getargspec` use that, but if they have `getfullargspec`
    which is available in Python 3.11, we can use that.
    
    * Update ir_generator.py
    
    include `isclass`
    johnlarkin1 authored May 18, 2023
    Configuration menu
    Copy the full SHA
    199029a View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2023

  1. Configuration menu
    Copy the full SHA
    82ee5e3 View commit details
    Browse the repository at this point in the history
  2. Replace uses of deprecated imp with importlib (#307)

    Julian Locke authored Jul 19, 2023
    1 Configuration menu
    Copy the full SHA
    af56116 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2023

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

Commits on Jul 31, 2023

  1. run pyupgrade and optimize imports in pycharm (#312)

    Co-authored-by: Jay Palacio <[email protected]>
    devPalacio and Jay Palacio authored Jul 31, 2023
    Configuration menu
    Copy the full SHA
    7dc5d96 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2023

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

Commits on Mar 22, 2024

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

Commits on Mar 27, 2024

  1. Make custom annotation generation deterministic (#326)

    Co-authored-by: vidit bhargava <[email protected]>
    vidit2606 and vidit bhargava authored Mar 27, 2024
    Configuration menu
    Copy the full SHA
    fbc20bb View commit details
    Browse the repository at this point in the history
  2. Update stone version (#327)

    Co-authored-by: vidit bhargava <[email protected]>
    vidit2606 and vidit bhargava authored Mar 27, 2024
    Configuration menu
    Copy the full SHA
    ce43672 View commit details
    Browse the repository at this point in the history
Loading