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: python-gitlab/python-gitlab
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.11
Choose a base ref
...
head repository: python-gitlab/python-gitlab
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.11.1
Choose a head ref
  • 15 commits
  • 14 files changed
  • 3 contributors

Commits on Jan 10, 2016

  1. Improve the API documentation.

    Gauvain Pocentek committed Jan 10, 2016
    Configuration menu
    Copy the full SHA
    4781fd7 View commit details
    Browse the repository at this point in the history
  2. Rework gitlab._sanitize

    Make it a recursive function and eliminate _sanitize_dict.
    
    Add unit tests.
    Gauvain Pocentek committed Jan 10, 2016
    Configuration menu
    Copy the full SHA
    03d8041 View commit details
    Browse the repository at this point in the history
  3. Add a script to build a test env

    functional_tests.sh has been split in 2 scripts to make easier the run
    of gitlab container.
    Gauvain Pocentek committed Jan 10, 2016
    Configuration menu
    Copy the full SHA
    572cfa9 View commit details
    Browse the repository at this point in the history
  4. cli.py: make internal functions private

    Gauvain Pocentek committed Jan 10, 2016
    Configuration menu
    Copy the full SHA
    e5821e6 View commit details
    Browse the repository at this point in the history
  5. Support deletion without getting the object first

    Use this feature in the CLI to avoid an extra API call to the server.
    Gauvain Pocentek committed Jan 10, 2016
    Configuration menu
    Copy the full SHA
    1d7ebea View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2016

  1. Support setting commit status

    Support commit status updates.  Commit status can be set by a POST to
    the appropriate commit URL.  The status can be updated by a subsequent
    POST to the same URL with the same `name` and `ref`, but different
    values for `state`, `description`, etc.
    
    Note: Listing the commit statuses is not yet supported.  This is done
    through a different path on the server, under the `repository` path.
    
    Example of use from the CLI:
    
        # add a build status to a commit
        gitlab project-commit-status create --project-id 2 \
            --commit-id a43290c --state success --name ci/jenkins \
            --target-url http://server/build/123 \
            --description "Jenkins build succeeded"
    Colin D Bennett committed Jan 12, 2016
    Configuration menu
    Copy the full SHA
    3371008 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2016

  1. Merge pull request #82 from cdbennett/commitstatus

    Support setting commit status
    Gauvain Pocentek committed Jan 13, 2016
    Configuration menu
    Copy the full SHA
    02c5398 View commit details
    Browse the repository at this point in the history
  2. (re)add CLI examples in the doc

    Gauvain Pocentek committed Jan 13, 2016
    Configuration menu
    Copy the full SHA
    1b64a47 View commit details
    Browse the repository at this point in the history
  3. remove "=" in examples for consistency

    Gauvain Pocentek committed Jan 13, 2016
    Configuration menu
    Copy the full SHA
    a4e29f8 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2016

  1. Fix discovery of parents object attrs for managers

    Gauvain Pocentek committed Jan 16, 2016
    Configuration menu
    Copy the full SHA
    0e0c81d View commit details
    Browse the repository at this point in the history
  2. remove debugging print instruction

    Gauvain Pocentek committed Jan 16, 2016
    Configuration menu
    Copy the full SHA
    7e54a39 View commit details
    Browse the repository at this point in the history
  3. add unit tests for managers

    Gauvain Pocentek committed Jan 16, 2016
    Configuration menu
    Copy the full SHA
    6baea2f View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2016

  1. add some CLI tests

    Gauvain Pocentek committed Jan 17, 2016
    Configuration menu
    Copy the full SHA
    097171d View commit details
    Browse the repository at this point in the history
  2. 0.11.1 release update

    Gauvain Pocentek committed Jan 17, 2016
    Configuration menu
    Copy the full SHA
    5c4f77f View commit details
    Browse the repository at this point in the history
  3. include the docs in the tarball

    Gauvain Pocentek committed Jan 17, 2016
    Configuration menu
    Copy the full SHA
    bbcccaa View commit details
    Browse the repository at this point in the history
Loading