Skip to content

Commit

Permalink
Bump @octokit/plugin-paginate-graphql from 5.2.2 to 5.2.4 in the octo…
Browse files Browse the repository at this point in the history
…kit-dependencies group across 1 directory (#949)

* Bump @octokit/plugin-paginate-graphql

Bumps the octokit-dependencies group with 1 update in the / directory: [@octokit/plugin-paginate-graphql](https://github.com/octokit/plugin-paginate-graphql.js).


Updates `@octokit/plugin-paginate-graphql` from 5.2.2 to 5.2.4
- [Release notes](https://github.com/octokit/plugin-paginate-graphql.js/releases)
- [Commits](octokit/plugin-paginate-graphql.js@v5.2.2...v5.2.4)

---
updated-dependencies:
- dependency-name: "@octokit/plugin-paginate-graphql"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: octokit-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* `makers setup && makers check`

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kenichi Kamiya <[email protected]>
  • Loading branch information
dependabot[bot] and kachick authored Oct 11, 2024
1 parent 89848c0 commit 67b2697
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
11 changes: 5 additions & 6 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33644,7 +33644,7 @@ var Octokit = class {
auth;
};

// node_modules/.pnpm/@[email protected].2_@[email protected]/node_modules/@octokit/plugin-paginate-graphql/dist-bundle/index.js
// node_modules/.pnpm/@[email protected].4_@[email protected]/node_modules/@octokit/plugin-paginate-graphql/dist-bundle/index.js
var generateMessage = (path, cursorValue) => `The cursor at "${path.join(
","
)}" did not change its value "${cursorValue}" after a page transition. Please make sure your that your query is set up correctly.`;
Expand Down Expand Up @@ -33690,10 +33690,10 @@ var deepFindPathToProperty = (object, searchProp, path = []) => {
for (const key of Object.keys(object)) {
const currentPath = [...path, key];
const currentValue = object[key];
if (currentValue.hasOwnProperty(searchProp)) {
return currentPath;
}
if (isObject(currentValue)) {
if (currentValue.hasOwnProperty(searchProp)) {
return currentPath;
}
const result = deepFindPathToProperty(
currentValue,
searchProp,
Expand Down Expand Up @@ -33738,8 +33738,7 @@ var createIterator = (octokit) => {
return {
[Symbol.asyncIterator]: () => ({
async next() {
if (!nextPageExists)
return { done: true, value: {} };
if (!nextPageExists) return { done: true, value: {} };
const response = await octokit.graphql(
query,
parameters
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@actions/github": "^6.0.0",
"@octokit/core": "^6.1.2",
"@octokit/graphql-schema": "^15.25.0",
"@octokit/plugin-paginate-graphql": "^5.2.2",
"@octokit/plugin-paginate-graphql": "^5.2.4",
"ansi-styles": "^6.2.1",
"temporal-polyfill": "^0.2.5",
"zod": "^3.23.8"
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 67b2697

Please sign in to comment.