Skip to content

Conversation

@elastic-renovate-prod
Copy link
Contributor

@elastic-renovate-prod elastic-renovate-prod bot commented Dec 6, 2024

This PR contains the following updates:

Package Type Update Change Pending
ignore devDependencies major ^5.3.0 -> ^7.0.4 7.0.5

Release Notes

kaelzhang/node-ignore (ignore)

v7.0.4

Compare Source

  • PATCH Allows files named .{3,}, such as ... for Linux / macOS (#​68)
ig.ignores('...')
ig.ignores('....')
// It will throw a RangeError in versions prior to 7.0.4, but it is ok if >= 7.0.4

An upgrade is recommended for all dependents

v7.0.3

Compare Source

v7.0.2

Compare Source

v7.0.1

Compare Source

v7.0.0

Compare Source

Minor feature

The primary feature introduced by 7.0.0 is the .checkIgnore() method, which is most equivalent to git check-ignore -v. And also it allows to pass {pattern, mark?} as the parameter of .add() so that we could imitate the mechanism of git check-ignore as:

ig.add({
  pattern: 'foo/*',
  mark: '60'
})

const {
  ignored,
  rule
} = checkIgnore('foo/')

if (ignored) {
  console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern} foo/`)
}

// .gitignore:60:foo/* foo/

Potential Incompatibilities

The only situation that 7.0.0 might bring incompatibility is to .add() a < 7.0.0 instance into a >= 7.0.0 instance, which might occur when the current workspace has multiple node-ignore versions installed, please be careful.

const {anotherIgnoreInstance} = require('./ignore-6.0-instance')

// A 7.0.0 instance
ignore().add(anotherIgnoreInstance)

// It will break your code

Otherwise, in most cases, if you never do something above or there is only one version of node-ignore installed in the current workspace, it is quite safe to upgrade to 7.0.0.

v6.0.2

Compare Source

v6.0.1: 6.x (== 5.3.2)

Compare Source

6.x

  • The release of 6.x is due to a mistake.
  • Making an upgrade from 5.x to 6.x for now actually changes nothing and does no harm, everyone could just upgrade or ignore the version.
    • Actually 6.0.2 is 5.3.2
  • The next major release will be 7.0.0

v6.0.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@elastic-renovate-prod elastic-renovate-prod bot added backport:all-open Backport to all branches that could still receive a release release_note:skip Skip the PR/issue when compiling release notes Team:Operations Kibana-Operations Team labels Dec 6, 2024
@elastic-renovate-prod elastic-renovate-prod bot requested a review from a team December 6, 2024 16:40
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-operations (Team:Operations)

@Ikuni17
Copy link
Contributor

Ikuni17 commented Dec 7, 2024

buildkite test this

@elastic-renovate-prod elastic-renovate-prod bot changed the title Update dependency ignore to v6 (main) Update dependency ignore to v7 (main) Dec 30, 2024
@elastic-renovate-prod elastic-renovate-prod bot force-pushed the renovate/main-ignore branch 2 times, most recently from 07c069e to 3a1dd21 Compare January 21, 2025 10:17
@elastic-renovate-prod elastic-renovate-prod bot force-pushed the renovate/main-ignore branch from 3a1dd21 to a209a59 Compare May 2, 2025 15:58
@Ikuni17
Copy link
Contributor

Ikuni17 commented Jun 4, 2025

buildkite test this

@elastic-renovate-prod
Copy link
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@elasticmachine
Copy link
Contributor

💛 Build succeeded, but was flaky

Failed CI Steps

Metrics [docs]

✅ unchanged

History

@Ikuni17 Ikuni17 merged commit 2656cb4 into main Jun 4, 2025
11 checks passed
@Ikuni17 Ikuni17 deleted the renovate/main-ignore branch June 4, 2025 19:41
@kibanamachine
Copy link
Contributor

Starting backport for target branches: 7.17, 8.17, 8.18, 8.19, 9.0

https://github.com/elastic/kibana/actions/runs/15451234579

kibanamachine pushed a commit to kibanamachine/kibana that referenced this pull request Jun 4, 2025
This PR contains the following updates:

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [ignore](https://github.com/kaelzhang/node-ignore) |
devDependencies | major | [`^5.3.0` ->
`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4) |
`7.0.5` |

---

### Release Notes

<details>
<summary>kaelzhang/node-ignore (ignore)</summary>

###
[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)

- **PATCH** Allows files named `.{3,}`, such as `...` for Linux / macOS
([#&elastic#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))

```js
ig.ignores('...')
ig.ignores('....')
// It will throw a RangeError in versions prior to 7.0.4, but it is ok if >= 7.0.4
```

An upgrade is recommended for all dependents

###
[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)

###
[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)

###
[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)

###
[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)

#### Minor feature

The primary feature introduced by `7.0.0` is the `.checkIgnore()`
method, which is most equivalent to `git check-ignore -v`. And also it
allows to pass `{pattern, mark?}` as the parameter of `.add()` so that
we could imitate the mechanism of `git check-ignore` as:

```js
ig.add({
  pattern: 'foo/*',
  mark: '60'
})

const {
  ignored,
  rule
} = checkIgnore('foo/')

if (ignored) {
  console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern} foo/`)
}

// .gitignore:60:foo/* foo/
```

#### Potential Incompatibilities

The only situation that `7.0.0` might bring incompatibility is to
`.add()` a `< 7.0.0` instance into a `>= 7.0.0` instance, which might
occur when the current workspace has multiple `node-ignore` versions
installed, please be careful.

```js
const {anotherIgnoreInstance} = require('./ignore-6.0-instance')

// A 7.0.0 instance
ignore().add(anotherIgnoreInstance)

// It will break your code
```

Otherwise, in most cases, if you never do something above or there is
only one version of `node-ignore` installed in the current workspace, it
is quite safe to upgrade to `7.0.0`.

###
[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)

###
[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):
6.x (&#x3D;&#x3D; 5.3.2)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)

### 6.x

-   The release of `6.x` is due to a mistake.
- Making an upgrade from `5.x` to 6.x for now actually changes nothing
and does no harm, everyone could just upgrade or ignore the version.
    -   Actually `6.0.2` is `5.3.2`
-   The next major release will be `7.0.0`

###
[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEwNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->

---------

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Co-authored-by: Brad White <[email protected]>
(cherry picked from commit 2656cb4)
@kibanamachine
Copy link
Contributor

💔 Some backports could not be created

Status Branch Result
7.17 Backport failed because of merge conflicts

You might need to backport the following PRs to 7.17:
- Update dependency diff to v8 (main) (#220898)
8.17 Backport failed because of merge conflicts
8.18 Backport failed because of merge conflicts
8.19 Backport failed because of merge conflicts

You might need to backport the following PRs to 8.19:
- Update dependency lmdb to v3 (main) (#203287)
- Update dependency symbol-observable to v4 (main) (#203291)
- Update @testing-library (main) (#204142)
- Update dependency simple-git to ^3.27.0 (main) (#206178)
- Update dependency whatwg-fetch to ^3.6.20 (main) (#206179)
- [ska][x-pack] relocate security solution tests [5] (#220465)
- [ska][x-pack] relocate platform & solutions tests [6] (#220612)
- [ska][x-pack] relocate platform tests [7] (#220803)
- [ska][x-pack] relocate platform tests [4] (#219691)
9.0

Note: Successful backport PRs will be merged automatically after passing CI.

Manual backport

To create the backport manually run:

node scripts/backport --pr 203286

Questions ?

Please refer to the Backport tool documentation

Ikuni17 pushed a commit to Ikuni17/kibana that referenced this pull request Jun 4, 2025
This PR contains the following updates:

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [ignore](https://github.com/kaelzhang/node-ignore) |
devDependencies | major | [`^5.3.0` ->
`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4) |
`7.0.5` |

---

### Release Notes

<details>
<summary>kaelzhang/node-ignore (ignore)</summary>

###
[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)

- **PATCH** Allows files named `.{3,}`, such as `...` for Linux / macOS
([#&elastic#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))

```js
ig.ignores('...')
ig.ignores('....')
// It will throw a RangeError in versions prior to 7.0.4, but it is ok if >= 7.0.4
```

An upgrade is recommended for all dependents

###
[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)

###
[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)

###
[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)

###
[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)

#### Minor feature

The primary feature introduced by `7.0.0` is the `.checkIgnore()`
method, which is most equivalent to `git check-ignore -v`. And also it
allows to pass `{pattern, mark?}` as the parameter of `.add()` so that
we could imitate the mechanism of `git check-ignore` as:

```js
ig.add({
  pattern: 'foo/*',
  mark: '60'
})

const {
  ignored,
  rule
} = checkIgnore('foo/')

if (ignored) {
  console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern} foo/`)
}

// .gitignore:60:foo/* foo/
```

#### Potential Incompatibilities

The only situation that `7.0.0` might bring incompatibility is to
`.add()` a `< 7.0.0` instance into a `>= 7.0.0` instance, which might
occur when the current workspace has multiple `node-ignore` versions
installed, please be careful.

```js
const {anotherIgnoreInstance} = require('./ignore-6.0-instance')

// A 7.0.0 instance
ignore().add(anotherIgnoreInstance)

// It will break your code
```

Otherwise, in most cases, if you never do something above or there is
only one version of `node-ignore` installed in the current workspace, it
is quite safe to upgrade to `7.0.0`.

###
[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)

###
[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):
6.x (&#x3D;&#x3D; 5.3.2)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)

### 6.x

-   The release of `6.x` is due to a mistake.
- Making an upgrade from `5.x` to 6.x for now actually changes nothing
and does no harm, everyone could just upgrade or ignore the version.
    -   Actually `6.0.2` is `5.3.2`
-   The next major release will be `7.0.0`

###
[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEwNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->

---------

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Co-authored-by: Brad White <[email protected]>
(cherry picked from commit 2656cb4)

# Conflicts:
#	yarn.lock
Ikuni17 pushed a commit to Ikuni17/kibana that referenced this pull request Jun 4, 2025
This PR contains the following updates:

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [ignore](https://github.com/kaelzhang/node-ignore) |
devDependencies | major | [`^5.3.0` ->
`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4) |
`7.0.5` |

---

### Release Notes

<details>
<summary>kaelzhang/node-ignore (ignore)</summary>

###
[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)

- **PATCH** Allows files named `.{3,}`, such as `...` for Linux / macOS
([#&elastic#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))

```js
ig.ignores('...')
ig.ignores('....')
// It will throw a RangeError in versions prior to 7.0.4, but it is ok if >= 7.0.4
```

An upgrade is recommended for all dependents

###
[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)

###
[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)

###
[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)

###
[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)

#### Minor feature

The primary feature introduced by `7.0.0` is the `.checkIgnore()`
method, which is most equivalent to `git check-ignore -v`. And also it
allows to pass `{pattern, mark?}` as the parameter of `.add()` so that
we could imitate the mechanism of `git check-ignore` as:

```js
ig.add({
  pattern: 'foo/*',
  mark: '60'
})

const {
  ignored,
  rule
} = checkIgnore('foo/')

if (ignored) {
  console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern} foo/`)
}

// .gitignore:60:foo/* foo/
```

#### Potential Incompatibilities

The only situation that `7.0.0` might bring incompatibility is to
`.add()` a `< 7.0.0` instance into a `>= 7.0.0` instance, which might
occur when the current workspace has multiple `node-ignore` versions
installed, please be careful.

```js
const {anotherIgnoreInstance} = require('./ignore-6.0-instance')

// A 7.0.0 instance
ignore().add(anotherIgnoreInstance)

// It will break your code
```

Otherwise, in most cases, if you never do something above or there is
only one version of `node-ignore` installed in the current workspace, it
is quite safe to upgrade to `7.0.0`.

###
[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)

###
[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):
6.x (&#x3D;&#x3D; 5.3.2)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)

### 6.x

-   The release of `6.x` is due to a mistake.
- Making an upgrade from `5.x` to 6.x for now actually changes nothing
and does no harm, everyone could just upgrade or ignore the version.
    -   Actually `6.0.2` is `5.3.2`
-   The next major release will be `7.0.0`

###
[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEwNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->

---------

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Co-authored-by: Brad White <[email protected]>
(cherry picked from commit 2656cb4)

# Conflicts:
#	yarn.lock
Ikuni17 pushed a commit to Ikuni17/kibana that referenced this pull request Jun 4, 2025
This PR contains the following updates:

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [ignore](https://github.com/kaelzhang/node-ignore) |
devDependencies | major | [`^5.3.0` ->
`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4) |
`7.0.5` |

---

### Release Notes

<details>
<summary>kaelzhang/node-ignore (ignore)</summary>

###
[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)

- **PATCH** Allows files named `.{3,}`, such as `...` for Linux / macOS
([#&elastic#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))

```js
ig.ignores('...')
ig.ignores('....')
// It will throw a RangeError in versions prior to 7.0.4, but it is ok if >= 7.0.4
```

An upgrade is recommended for all dependents

###
[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)

###
[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)

###
[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)

###
[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)

#### Minor feature

The primary feature introduced by `7.0.0` is the `.checkIgnore()`
method, which is most equivalent to `git check-ignore -v`. And also it
allows to pass `{pattern, mark?}` as the parameter of `.add()` so that
we could imitate the mechanism of `git check-ignore` as:

```js
ig.add({
  pattern: 'foo/*',
  mark: '60'
})

const {
  ignored,
  rule
} = checkIgnore('foo/')

if (ignored) {
  console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern} foo/`)
}

// .gitignore:60:foo/* foo/
```

#### Potential Incompatibilities

The only situation that `7.0.0` might bring incompatibility is to
`.add()` a `< 7.0.0` instance into a `>= 7.0.0` instance, which might
occur when the current workspace has multiple `node-ignore` versions
installed, please be careful.

```js
const {anotherIgnoreInstance} = require('./ignore-6.0-instance')

// A 7.0.0 instance
ignore().add(anotherIgnoreInstance)

// It will break your code
```

Otherwise, in most cases, if you never do something above or there is
only one version of `node-ignore` installed in the current workspace, it
is quite safe to upgrade to `7.0.0`.

###
[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)

###
[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):
6.x (&#x3D;&#x3D; 5.3.2)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)

### 6.x

-   The release of `6.x` is due to a mistake.
- Making an upgrade from `5.x` to 6.x for now actually changes nothing
and does no harm, everyone could just upgrade or ignore the version.
    -   Actually `6.0.2` is `5.3.2`
-   The next major release will be `7.0.0`

###
[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEwNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->

---------

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Co-authored-by: Brad White <[email protected]>
(cherry picked from commit 2656cb4)

# Conflicts:
#	yarn.lock
@Ikuni17
Copy link
Contributor

Ikuni17 commented Jun 4, 2025

💚 All backports created successfully

Status Branch Result
8.19
8.18
8.17

Note: Successful backport PRs will be merged automatically after passing CI.

Questions ?

Please refer to the Backport tool documentation

@kibanamachine kibanamachine mentioned this pull request Jun 4, 2025
1 task
kibanamachine added a commit that referenced this pull request Jun 4, 2025
# Backport

This will backport the following commits from `main` to `9.0`:
- [Update dependency ignore to v7 (main)
(#203286)](#203286)

<!--- Backport version: 9.6.6 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sorenlouv/backport)

<!--BACKPORT
[{"author":{"name":"elastic-renovate-prod[bot]","email":"174716857+elastic-renovate-prod[bot]@users.noreply.github.com"},"sourceCommit":{"committedDate":"2025-06-04T19:41:40Z","message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1","branchLabelMapping":{"^v9.1.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Team:Operations","release_note:skip","backport:all-open","v9.1.0"],"title":"Update
dependency ignore to v7
(main)","number":203286,"url":"https://github.com/elastic/kibana/pull/203286","mergeCommit":{"message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.1.0","branchLabelMappingKey":"^v9.1.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/203286","number":203286,"mergeCommit":{"message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1"}}]}]
BACKPORT-->

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Co-authored-by: Brad White <[email protected]>
Ikuni17 added a commit that referenced this pull request Jun 5, 2025
# Backport

This will backport the following commits from `main` to `8.19`:
- [Update dependency ignore to v7 (main)
(#203286)](#203286)

<!--- Backport version: 10.0.0 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sorenlouv/backport)

<!--BACKPORT
[{"author":{"name":"elastic-renovate-prod[bot]","email":"174716857+elastic-renovate-prod[bot]@users.noreply.github.com"},"sourceCommit":{"committedDate":"2025-06-04T19:41:40Z","message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1","branchLabelMapping":{"^v9.1.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Team:Operations","release_note:skip","backport:all-open","v9.1.0"],"title":"Update
dependency ignore to v7
(main)","number":203286,"url":"https://github.com/elastic/kibana/pull/203286","mergeCommit":{"message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.1.0","branchLabelMappingKey":"^v9.1.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/203286","number":203286,"mergeCommit":{"message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1"}},{"url":"https://github.com/elastic/kibana/pull/222659","number":222659,"branch":"9.0","state":"OPEN"}]}]
BACKPORT-->

---------

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Co-authored-by: kibanamachine <[email protected]>
Ikuni17 added a commit that referenced this pull request Jun 6, 2025
# Backport

This will backport the following commits from `main` to `8.17`:
- [Update dependency ignore to v7 (main)
(#203286)](#203286)

<!--- Backport version: 10.0.0 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sorenlouv/backport)

<!--BACKPORT
[{"author":{"name":"elastic-renovate-prod[bot]","email":"174716857+elastic-renovate-prod[bot]@users.noreply.github.com"},"sourceCommit":{"committedDate":"2025-06-04T19:41:40Z","message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1","branchLabelMapping":{"^v9.1.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Team:Operations","release_note:skip","backport:all-open","v9.1.0"],"title":"Update
dependency ignore to v7
(main)","number":203286,"url":"https://github.com/elastic/kibana/pull/203286","mergeCommit":{"message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.1.0","branchLabelMappingKey":"^v9.1.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/203286","number":203286,"mergeCommit":{"message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1"}},{"url":"https://github.com/elastic/kibana/pull/222659","number":222659,"branch":"9.0","state":"OPEN"}]}]
BACKPORT-->

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Ikuni17 added a commit that referenced this pull request Jun 6, 2025
# Backport

This will backport the following commits from `main` to `8.18`:
- [Update dependency ignore to v7 (main)
(#203286)](#203286)

<!--- Backport version: 10.0.0 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sorenlouv/backport)

<!--BACKPORT
[{"author":{"name":"elastic-renovate-prod[bot]","email":"174716857+elastic-renovate-prod[bot]@users.noreply.github.com"},"sourceCommit":{"committedDate":"2025-06-04T19:41:40Z","message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1","branchLabelMapping":{"^v9.1.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Team:Operations","release_note:skip","backport:all-open","v9.1.0"],"title":"Update
dependency ignore to v7
(main)","number":203286,"url":"https://github.com/elastic/kibana/pull/203286","mergeCommit":{"message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.1.0","branchLabelMappingKey":"^v9.1.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/203286","number":203286,"mergeCommit":{"message":"Update
dependency ignore to v7 (main) (#203286)\n\nThis PR contains the
following updates:\n\n| Package | Type | Update | Change | Pending
|\n|---|---|---|---|---|\n|
[ignore](https://github.com/kaelzhang/node-ignore)
|\ndevDependencies | major | [`^5.3.0`
->\n`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4)
|\n`7.0.5` |\n\n---\n\n### Release
Notes\n\n<details>\n<summary>kaelzhang/node-ignore
(ignore)</summary>\n\n###\n[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)\n\n-
**PATCH** Allows files named `.{3,}`, such as `...` for Linux /
macOS\n([#&#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))\n\n```js\nig.ignores('...')\nig.ignores('....')\n//
It will throw a RangeError in versions prior to 7.0.4, but it is ok if
>= 7.0.4\n```\n\nAn upgrade is recommended for all
dependents\n\n###\n[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)\n\n###\n[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)\n\n###\n[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)\n\n###\n[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)\n\n####
Minor feature\n\nThe primary feature introduced by `7.0.0` is the
`.checkIgnore()`\nmethod, which is most equivalent to `git check-ignore
-v`. And also it\nallows to pass `{pattern, mark?}` as the parameter of
`.add()` so that\nwe could imitate the mechanism of `git check-ignore`
as:\n\n```js\nig.add({\n pattern: 'foo/*',\n mark: '60'\n})\n\nconst {\n
ignored,\n rule\n} = checkIgnore('foo/')\n\nif (ignored) {\n
console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern}
foo/`)\n}\n\n// .gitignore:60:foo/* foo/\n```\n\n#### Potential
Incompatibilities\n\nThe only situation that `7.0.0` might bring
incompatibility is to\n`.add()` a `< 7.0.0` instance into a `>= 7.0.0`
instance, which might\noccur when the current workspace has multiple
`node-ignore` versions\ninstalled, please be careful.\n\n```js\nconst
{anotherIgnoreInstance} = require('./ignore-6.0-instance')\n\n// A 7.0.0
instance\nignore().add(anotherIgnoreInstance)\n\n// It will break your
code\n```\n\nOtherwise, in most cases, if you never do something above
or there is\nonly one version of `node-ignore` installed in the current
workspace, it\nis quite safe to upgrade to
`7.0.0`.\n\n###\n[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)\n\n###\n[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):\n6.x
(&#x3D;&#x3D;
5.3.2)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)\n\n###
6.x\n\n- The release of `6.x` is due to a mistake.\n- Making an upgrade
from `5.x` to 6.x for now actually changes nothing\nand does no harm,
everyone could just upgrade or ignore the version.\n - Actually `6.0.2`
is `5.3.2`\n- The next major release will be
`7.0.0`\n\n###\n[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n[Compare\nSource](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)\n\n</details>\n\n---\n\n###
Configuration\n\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\nAutomerge - At any time (no schedule defined).\n\n🚦
**Automerge**: Disabled by config. Please merge this manually once
you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted,
or you tick the\nrebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR
and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If
you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has
been generated by
[Renovate\nBot](https://github.com/renovatebot/renovate).\n\n\n\n---------\n\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>\nCo-authored-by:
Brad White
<[email protected]>","sha":"2656cb4299663e94bdce4199ce7c48abb54521c1"}},{"url":"https://github.com/elastic/kibana/pull/222659","number":222659,"branch":"9.0","state":"OPEN"}]}]
BACKPORT-->

---------

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Co-authored-by: kibanamachine <[email protected]>
nickpeihl pushed a commit to nickpeihl/kibana that referenced this pull request Jun 12, 2025
This PR contains the following updates:

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [ignore](https://github.com/kaelzhang/node-ignore) |
devDependencies | major | [`^5.3.0` ->
`^7.0.4`](https://renovatebot.com/diffs/npm/ignore/5.3.2/7.0.4) |
`7.0.5` |

---

### Release Notes

<details>
<summary>kaelzhang/node-ignore (ignore)</summary>

###
[`v7.0.4`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.4)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.3...7.0.4)

- **PATCH** Allows files named `.{3,}`, such as `...` for Linux / macOS
([#&elastic#8203;68](https://github.com/kaelzhang/node-ignore/issues/68))

```js
ig.ignores('...')
ig.ignores('....')
// It will throw a RangeError in versions prior to 7.0.4, but it is ok if >= 7.0.4
```

An upgrade is recommended for all dependents

###
[`v7.0.3`](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/52f8e855b6aca711579c008f38829f48e5a4c78b...7.0.3)

###
[`v7.0.2`](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.1...52f8e855b6aca711579c008f38829f48e5a4c78b)

###
[`v7.0.1`](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/7.0.0...7.0.1)

###
[`v7.0.0`](https://github.com/kaelzhang/node-ignore/releases/tag/7.0.0)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/ee70c66d32e900f6e793c733a4ca27a1dafb3819...7.0.0)

#### Minor feature

The primary feature introduced by `7.0.0` is the `.checkIgnore()`
method, which is most equivalent to `git check-ignore -v`. And also it
allows to pass `{pattern, mark?}` as the parameter of `.add()` so that
we could imitate the mechanism of `git check-ignore` as:

```js
ig.add({
  pattern: 'foo/*',
  mark: '60'
})

const {
  ignored,
  rule
} = checkIgnore('foo/')

if (ignored) {
  console.log(`.gitignore:${result}:${rule.mark}:${rule.pattern} foo/`)
}

// .gitignore:60:foo/* foo/
```

#### Potential Incompatibilities

The only situation that `7.0.0` might bring incompatibility is to
`.add()` a `< 7.0.0` instance into a `>= 7.0.0` instance, which might
occur when the current workspace has multiple `node-ignore` versions
installed, please be careful.

```js
const {anotherIgnoreInstance} = require('./ignore-6.0-instance')

// A 7.0.0 instance
ignore().add(anotherIgnoreInstance)

// It will break your code
```

Otherwise, in most cases, if you never do something above or there is
only one version of `node-ignore` installed in the current workspace, it
is quite safe to upgrade to `7.0.0`.

###
[`v6.0.2`](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/6.0.1...ee70c66d32e900f6e793c733a4ca27a1dafb3819)

###
[`v6.0.1`](https://github.com/kaelzhang/node-ignore/releases/tag/6.0.1):
6.x (&#x3D;&#x3D; 5.3.2)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/6.0.0...6.0.1)

### 6.x

-   The release of `6.x` is due to a mistake.
- Making an upgrade from `5.x` to 6.x for now actually changes nothing
and does no harm, everyone could just upgrade or ignore the version.
    -   Actually `6.0.2` is `5.3.2`
-   The next major release will be `7.0.0`

###
[`v6.0.0`](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)

[Compare
Source](https://github.com/kaelzhang/node-ignore/compare/5.3.2...6.0.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEwNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->

---------

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Co-authored-by: Brad White <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport:all-open Backport to all branches that could still receive a release release_note:skip Skip the PR/issue when compiling release notes Team:Operations Kibana-Operations Team v8.17.8 v8.18.3 v8.19.0 v9.0.3 v9.1.0

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants