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: google/gops
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.23
Choose a base ref
...
head repository: google/gops
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.24
Choose a head ref
  • 5 commits
  • 300 files changed
  • 1 contributor

Commits on May 30, 2022

  1. Configuration menu
    Copy the full SHA
    72a03a3 View commit details
    Browse the repository at this point in the history
  2. go.mod, vendor: update dependencies

    Update direct dependencies to the following versions:
    
    - github.com/shirou/gopsutil/v3 v3.22.4
    - golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a
    tklauser committed May 30, 2022
    Configuration menu
    Copy the full SHA
    3553305 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2022

  1. Configuration menu
    Copy the full SHA
    14e2449 View commit details
    Browse the repository at this point in the history
  2. Sort tree output by PPID

    Otherwise the processes might appear in arbitrary order and
    disassociated from their parent process. Also avoid printing a stray
    newline after the tree.
    
    Before:
    
    ```
    ...
    ├── 2493
    │   └── 4952 (gops) {go1.18.1}
    ├── 1
    │   └── 117 (com.docker.vmnetd) {go1.17.5}
    ├── 4405
    │   └── 4416 (gopls) {go1.18.2}
    └── 4404
    
    ```
    
    After:
    
    ```
    ...
    ├── 1
    │   └── 117 (com.docker.vmnetd) {go1.17.5}
    ├── 2493
    │   └── 4945 (gops) {go1.18.3}
    └── 4404
        └── 4405 (gopls) {go1.18.2}
            └── 4416 (gopls) {go1.18.2}
    ```
    tklauser committed Jun 24, 2022
    Configuration menu
    Copy the full SHA
    bf851ab View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2022

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