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: octokit/plugin-paginate-rest.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v11.3.3
Choose a base ref
...
head repository: octokit/plugin-paginate-rest.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v11.3.5
Choose a head ref
  • 13 commits
  • 12 files changed
  • 5 contributors

Commits on Jul 2, 2024

  1. chore(deps): update dependency esbuild to ^0.23.0

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 2, 2024
    Configuration menu
    Copy the full SHA
    73b7424 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. chore(deps): update dependency glob to v11 (#625)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 9, 2024
    Configuration menu
    Copy the full SHA
    1558751 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2024

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

Commits on Jul 13, 2024

  1. chore(deps): update dependency prettier to v3.3.3 (#627)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 13, 2024
    Configuration menu
    Copy the full SHA
    80e32a9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f96bf80 View commit details
    Browse the repository at this point in the history
  3. chore: replace jest with vitest (#628)

    * chore: replace jest with vitest
    
    * minimal invasive change
    Uzlopak authored Jul 13, 2024
    Configuration menu
    Copy the full SHA
    d7081ba View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. chore(deps): update dependency fetch-mock to v11 (#630)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 5, 2024
    Configuration menu
    Copy the full SHA
    0de1011 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2024

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

Commits on Sep 23, 2024

  1. chore(deps): update dependency esbuild to ^0.24.0 (#632)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    1e7f327 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2024

  1. build(deps): bump rollup from 4.21.3 to 4.22.4 (#633)

    Bumps [rollup](https://github.com/rollup/rollup) from 4.21.3 to 4.22.4.
    - [Release notes](https://github.com/rollup/rollup/releases)
    - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
    - [Commits](rollup/rollup@v4.21.3...v4.22.4)
    
    ---
    updated-dependencies:
    - dependency-name: rollup
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 24, 2024
    Configuration menu
    Copy the full SHA
    f37a2c1 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2024

  1. build(deps): ts-config bump in octokit/types (#634)

    WIP octokit/openapi updated
    octokitbot authored Sep 27, 2024
    Configuration menu
    Copy the full SHA
    3e7de8d View commit details
    Browse the repository at this point in the history
  2. fix(deps): bump @octokit/types (#636)

    WIP octokit/openapi updated
    octokitbot authored Sep 27, 2024
    Configuration menu
    Copy the full SHA
    b2dc51c View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

  1. fix(types): improve type extraction for namespaced responses and corr…

    …ect async iterator types (#637)
    
    The `iterator()` function returns an object containing a key of `Symbol.asyncIterator`, which is an object with a `next()` function. Only the top-level has the `Symbol.asyncIterator`, and the `next()` function is not present at the top-level
    
    The `GetResultsType<T>` sometimes doesn't return the paginated data and returns the whole data object. For some reason TypeScript sometimes get's confused and returns all the keys in the object in the call `KnownKeysMatching<T["data"], any[]>`
    In order to remedy that, we remove keys that we know do not contain the data (`"repository_selection" | "total_count" | "incomplete_results"`) and we then always get the data.
    
    The `NormalizeResponse<T>` type would return the intersection of the original data from the request and the paginated data. To remedy that, we use `Omit<T, K>` to remove the `data` from the request data and only return the paginated data instead.
    wolfy1339 authored Sep 29, 2024
    Configuration menu
    Copy the full SHA
    e95444d View commit details
    Browse the repository at this point in the history
Loading