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: onsi/ginkgo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.15.0
Choose a base ref
...
head repository: onsi/ginkgo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.16.0
Choose a head ref
  • 18 commits
  • 21 files changed
  • 8 contributors

Commits on Jan 18, 2024

  1. Fix docs for handling failures in goroutines (#1339)

    * Fix goroutine failure handling docs
    
    See: #1114 (comment)
    
    Signed-off-by: austin ce <austin.cawley@gmail.com>
    
    * Correct CSS rules for desktop
    
    ---------
    
    Signed-off-by: austin ce <austin.cawley@gmail.com>
    austince authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    4471b2e View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. merge coverages instead of combining them (#1329) (#1340)

    * merge coverages instead of combining them (#1329)
    
    * add license of gocovmerge
    myzhan authored Jan 24, 2024
    Configuration menu
    Copy the full SHA
    23f0cc5 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. Bump github-pages and jekyll-feed in /docs (#1351)

    Bumps [github-pages](https://github.com/github/pages-gem) and [jekyll-feed](https://github.com/jekyll/jekyll-feed). These dependencies needed to be updated together.
    
    Updates `github-pages` from 228 to 229
    - [Release notes](https://github.com/github/pages-gem/releases)
    - [Commits](github/pages-gem@v228...v229)
    
    Updates `jekyll-feed` from 0.15.1 to 0.17.0
    - [Release notes](https://github.com/jekyll/jekyll-feed/releases)
    - [Changelog](https://github.com/jekyll/jekyll-feed/blob/master/History.markdown)
    - [Commits](jekyll/jekyll-feed@v0.15.1...v0.17.0)
    
    ---
    updated-dependencies:
    - dependency-name: github-pages
      dependency-type: direct:development
      update-type: version-update:semver-major
    - dependency-name: jekyll-feed
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 7, 2024
    Configuration menu
    Copy the full SHA
    d52951d View commit details
    Browse the repository at this point in the history
  2. Bump github.com/go-logr/logr from 1.3.0 to 1.4.1 (#1321)

    Bumps [github.com/go-logr/logr](https://github.com/go-logr/logr) from 1.3.0 to 1.4.1.
    - [Release notes](https://github.com/go-logr/logr/releases)
    - [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
    - [Commits](go-logr/logr@v1.3.0...v1.4.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/go-logr/logr
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 7, 2024
    Configuration menu
    Copy the full SHA
    a1e6b69 View commit details
    Browse the repository at this point in the history
  3. Bump golang.org/x/sys from 0.15.0 to 0.16.0 (#1327)

    Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.15.0 to 0.16.0.
    - [Commits](golang/sys@v0.15.0...v0.16.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sys
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 7, 2024
    Configuration menu
    Copy the full SHA
    5a179ed View commit details
    Browse the repository at this point in the history
  4. Bump golang.org/x/tools from 0.16.1 to 0.17.0 (#1336)

    Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.16.1 to 0.17.0.
    - [Release notes](https://github.com/golang/tools/releases)
    - [Commits](golang/tools@v0.16.1...v0.17.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/tools
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 7, 2024
    Configuration menu
    Copy the full SHA
    17ae120 View commit details
    Browse the repository at this point in the history
  5. chore: test with Go 1.22 (#1352)

    - Rather than hard-coding the Go version in the workflow, we will use the
      `stable` and `oldstable` tags which today resolve to 1.22.0 and 1.21.7,
      but will float as Go versions change.
    - Some anonymous function names seem to have changed in Go 1.22 and a
      test had to be modified as a result
    blgm authored Feb 7, 2024
    Configuration menu
    Copy the full SHA
    898cba9 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. core_dsl: disable Getwd() with environment variable (#1357)

    os.Getwd() calls os.Getenv("PWD"), which can change from run to run if
    you are using a test suite runner like e.g. Buildkite. Because test
    caching relies on environment variables being the same from run to
    run, this facile change breaks test caching.
    
    Fixes #1355.
    kevinburke authored Feb 12, 2024
    Configuration menu
    Copy the full SHA
    cd418b7 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. Configuration menu
    Copy the full SHA
    9c771cd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5ff9d7f View commit details
    Browse the repository at this point in the history
  3. update documentation.

    eugenenosenko authored and onsi committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    fed9402 View commit details
    Browse the repository at this point in the history
  4. update test description

    eugenenosenko authored and onsi committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    fd929c6 View commit details
    Browse the repository at this point in the history
  5. update docs

    eugenenosenko authored and onsi committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    372d26a View commit details
    Browse the repository at this point in the history
  6. fix docs

    eugenenosenko authored and onsi committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    06de431 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c4e219f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    881efde View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2024

  1. docs/index.md: Typo

    Code was incorrect, this commit fixes that.
    
    Also change the name of the chan variable to be the same as in the invalid case above it.
    isodude authored and onsi committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    2cebe8d View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. v2.16.0

    onsi committed Mar 4, 2024
    Configuration menu
    Copy the full SHA
    a181ee2 View commit details
    Browse the repository at this point in the history
Loading