8000 Comparing devel...release_2.2 · ansible/ansible-runner · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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: ansible/ansible-runner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: devel
Choose a base ref
...
head repository: ansible/ansible-runner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: release_2.2
Choose a head ref
  • 19 commits
  • 28 files changed
  • 14 contributors

Commits on May 2, 2022

  1. Disable container image jobs

    Shrews committed May 2, 2022
    Configuration menu
    Copy the full SHA
    e7d1adb View commit details
    Browse the repository at this point in the history

Commits on May 3, 2022

  1. [release_2.2] Stringify all env vars, not just those from file (#1039) (

    #1052)
    
    (cherry picked from commit c143c07)
    
    Co-authored-by: Alan Rominger <arominge@redhat.com>
    Alexander Sowitzki and AlanCoding authored May 3, 2022
    Configuration menu
    Copy the full SHA
    46804de View commit details
    Browse the repository at this point in the history
  2. Set ZIP strict_timestamps to false (#1049) (#1053)

    * Set ZIP strict_timestamps to false
    
    Since python 3.8 timestamps before 1980 are disallowed by default,
    but seem to occur in streams.
    
    Fixes: awx#12126
    
    Signed-off-by: Björn Pedersen <bjoern.pedersen@frm2.tum.de>
    
    * Add test for timestamps before 1980
    
    Co-authored-by: Alan Rominger <arominge@redhat.com>
    (cherry picked from commit ec5997e)
    
    Co-authored-by: Björn Pedersen <bjoern.pedersen@frm2.tum.de>
    Shrews and bpedersen2 authored May 3, 2022
    Configuration menu
    Copy the full SHA
    aec5d42 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2022

  1. Fix image build to override root homedi 10000 r in /etc/passwd (#1027) (#1062)

    * override root homedir in /etc/passwd
    
    * using only `HOME` envvar to override homedir causes mismatches with anything that asks for it a different way (eg, `echo ~root`)
    * kicking the can down the road on "why are we overriding /root as root's homedir anyway?"
    
    * more dynamic homedir handling
    
    * just make everybody's home /home/runner
    
    * restore ENV HOME override for builds
    
    * comment wording
    
    (cherry picked from commit c181daa)
    nitzmahone authored May 5, 2022
    Configuration menu
    Copy the full SHA
    927109f View commit details
    Browse the repository at this point in the history

Commits on May 9, 2022

  1. Configuration menu
    Copy the full SHA
    13cd932 View commit details
    Browse the repository at this point in the history
  2. [bp2.2] Use isinstance API instead of type API (#1069)

    correct way to check datatype of variable is `isinstance`
    
    (cherry picked from commit a349921)
    
    Signed-off-by: Abhijeet Kasurde <akasurde@redhddat.com>
    Akasurde authored May 9, 2022
    Configuration menu
    Copy the full SHA
    4c614e0 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2022

  1. [backport][release_2.2] Add examples for status_handler and event_han…

    …dler (#1091)
    
    Fixes: #1078
    
    Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
    Akasurde authored Jun 6, 2022
    Configuration menu
    Copy the full SHA
    fef8f3e View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2022

  1. skip process isolation check for transmit and process (#1084) (#1094)

    * skip process isolation check for transmit and process
    
    moving down the process isolation executable so that transmit and
    process no longer checks for its existance
    
    ansible-runner worker will still run the check since it will invoke
    ansible-runner run with process-isolation-executable and it will still
    be checked properly
    
    Co-Authored-By: Jeff Bradberry <685957+jbradberry@users.noreply.github.com>
    Signed-off-by: Hao Liu <haoli@redhat.com>
    
    Co-authored-by: Jeff Bradberry <685957+jbradberry@users.noreply.github.com>
    TheRealHaoLiu and jbradberry authored Jun 7, 2022
    Configuration menu
    Copy the full SHA
    8dff126 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2022

  1. update how callback plugin gets copied and added to job container (#1093

    ) (#1098)
    
    when in containerized environment
    - always copy callback plugin to private_data_dir/artifacts/{job_id}/callback
    - appending to `ANSIBLE_CALLBACK_PLUGINS` with the runner callback plugin location (from private_data/artifacts)
    - unused method `utils.callback_mount`
    - update unit tests
    
    Co-authored-by: Alan Rominger <arominge@redhat.com>
    (cherry picked from commit 3b74385)
    Signed-off-by: Hao Liu <the.real.hao.liu@gmail.com>
    
    Co-authored-by: Alan Rominger <arominge@redhat.com>
    TheRealHaoLiu and AlanCoding authored Jun 15, 2022
    Configuration menu
    Copy the full SHA
    7edaa77 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2022

  1. [bp/2.2] Linting fixes (#1118)

    * Added whitespace after the keyword
    * Pinned `flake8` to 4.0.1 for now
    * Commented `ENV PIP_OPTS=--no-build-isolation`
    
    (cherry picked from commit 2d240e0)
    Akasurde authored Aug 23, 2022
    Configuration menu
    Copy the full SHA
    d119799 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2022

  1. [bp/2.2] Updated formating in remote_jobs doc (#1121)

    (cherry picked from commit 00b0fe0)
    Akasurde authored Aug 24, 2022
    Configuration menu
    Copy the full SHA
    88404ce View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2022

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

Commits on Nov 1, 2022

  1. remove any pipe files before zip/unzipping (#1133) (#1150)

    * Write test to demonstrate job hang on pipes
    
    * Remove any pipe files before zip/unzipping
    
    - Prevents hangs when zipping, unzipping artifacts dir. If python
    attempts to open a fifo pipe, it will block indefinitely until it can
    read data from the pipe.
    
    * move fifo check below symlink
    
    Co-authored-by: Alan Rominger <arominge@redhat.com>
    (cherry picked from commit 8f39752)
    
    Co-authored-by: Seth Foster <fosterseth@users.noreply.github.com>
    nitzmahone and fosterseth authored Nov 1, 2022
    Configuration menu
    Copy the full SHA
    8d49775 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2022

  1. Test both runtimes in unit tests (#1155) (#1158)

    (cherry picked from commit 79b564d)
    Shrews authored Nov 4, 2022
    Configuration menu
    Copy the full SHA
    6f96ff5 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2022

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

Commits on Dec 12, 2022

  1. Fix Github CI (#1171) (#1173)

    (cherry picked from commit c6644a1)
    Shrews authored Dec 12, 2022
    Configuration menu
    Copy the full SHA
    3ebc68e View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2023

  1. [backport][release_2.2] Fix artifact file permissions

    * Fix artifact file permissions (#702, #853)
    
    Sets artifact file permissions to octal `600` in
    `ansible_runner.utils.dump_artifact`
    
    (cherry picked from commit a4a981d)
    
    Co-authored-by: Sam Caldwell <shoriminimoe@pm.me>
    Shrews and shoriminimoe authored Jan 27, 2023
    Configuration menu
    Copy the full SHA
    d4218b2 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. [devel] Add python_requires = >= 3.8 (#1206) (#1211)

    (cherry picked from commit 69e8c1a)
    
    Co-authored-by: Wong Hoi Sing Edison <hswong3i@gmail.com>
    Shrews and hswong3i authored Mar 2, 2023
    Configuration menu
    Copy the full SHA
    57856e7 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2023

  1. Add license and classifiers metadata (#1213) (#1215)

    * Add license and classifiers metadata
    
    Co-authored-by: Matt Martz <matt@sivel.net>
    (cherry picked from commit d1417e5)
    Shrews and sivel authored Mar 6, 2023
    Configuration menu
    Copy the full SHA
    1992eb8 View commit details
    Browse the repository at this point in the history
Loading
0