Commit d740042
Update platform security modules (main) (#206227)
### Manual update 2025-01-14:
uuid v11 contains breaking changes. uuid will be bumped to v10 instead.
### This PR contains the following updates:
| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
|
[@types/js-yaml](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/js-yaml)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/js-yaml))
| devDependencies | patch | [`^4.0.5` ->
`^4.0.9`](https://renovatebot.com/diffs/npm/@types%2fjs-yaml/4.0.5/4.0.9)
| |
|
[@types/lodash](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash))
| devDependencies | patch | [`^4.17.13` ->
`^4.17.14`](https://renovatebot.com/diffs/npm/@types%2flodash/4.17.13/4.17.14)
| |
|
[@types/object-hash](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/object-hash)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/object-hash))
| devDependencies | major | [`^1.3.0` ->
`^3.0.6`](https://renovatebot.com/diffs/npm/@types%2fobject-hash/1.3.0/3.0.6)
| |
|
[@types/uuid](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/uuid))
| devDependencies | major | [`^9.0.0` ->
`^10.0.0`](https://renovatebot.com/diffs/npm/@types%2fuuid/9.0.0/10.0.0)
| |
| [dependency-cruiser](https://togithub.com/sverweij/dependency-cruiser)
| devDependencies | minor | [`^16.4.2` ->
`^16.8.0`](https://renovatebot.com/diffs/npm/dependency-cruiser/16.4.2/16.8.0)
| `16.9.0` |
| [fast-deep-equal](https://togithub.com/epoberezkin/fast-deep-equal) |
dependencies | patch | [`^3.1.1` ->
`^3.1.3`](https://renovatebot.com/diffs/npm/fast-deep-equal/3.1.3/3.1.3)
| |
| [minimist](https://togithub.com/minimistjs/minimist) | devDependencies
| patch | [`^1.2.6` ->
`^1.2.8`](https://renovatebot.com/diffs/npm/minimist/1.2.8/1.2.8) | |
| [object-hash](https://togithub.com/puleos/object-hash) | dependencies
| major | [`^1.3.1` ->
`^3.0.0`](https://renovatebot.com/diffs/npm/object-hash/1.3.1/3.0.0) | |
| [uuid](https://togithub.com/uuidjs/uuid) | dependencies | major |
[~~`9.0.0` ->
`11.0.3`~~](https://renovatebot.com/diffs/npm/uuid/9.0.0/11.0.3)`9.0.0`
-> `10.0.0` | ~~`11.0.5` (+1)~~ |
---
### Release Notes
<details>
<summary>sverweij/dependency-cruiser (dependency-cruiser)</summary>
###
[`v16.8.0`](https://togithub.com/sverweij/dependency-cruiser/releases/tag/v16.8.0)
[Compare
Source](https://togithub.com/sverweij/dependency-cruiser/compare/v16.7.0...v16.8.0)
#### ✨ features
-
[`dd81580`](https://togithub.com/sverweij/dependency-cruiser/commit/dd815802)
feat: enables matching transitive dependencies in 'required' rules
([#​975](https://togithub.com/sverweij/dependency-cruiser/issues/975))
- thanks to [@​ThiagoMaia1](https://togithub.com/ThiagoMaia1) for
suggesting and testing the feature
#### 🐛 fixes
-
[`7bcabe7`](https://togithub.com/sverweij/dependency-cruiser/commit/7bcabe70)
refactor: simplifies a few boolean expressions
- the dependency bump below
([`20a7a2f`](https://togithub.com/sverweij/dependency-cruiser/commit/20a7a2f1))
also bumped `watskeburt` to latest, which makes both the `--affected`
cli option and the cache work better on ms-windows and other ms-dos
based operating systems.
#### 👷 maintenance
-
[`20a7a2f`](https://togithub.com/sverweij/dependency-cruiser/commit/20a7a2f1)
build(npm): updates external dependencies
#### 🧹 chores
-
[`fdbb72a`](https://togithub.com/sverweij/dependency-cruiser/commit/fdbb72a1)
chore(configs): makes 'unlimited' config inherit individual options from
the base config
-
[`8595b73`](https://togithub.com/sverweij/dependency-cruiser/commit/8595b73d)
chore(tools): adds a script that prints a readable AST from any
tsc-readable file
-
[`476c956`](https://togithub.com/sverweij/dependency-cruiser/commit/476c9562)
chore(npm): updates external devDependencies
###
[`v16.7.0`](https://togithub.com/sverweij/dependency-cruiser/releases/tag/v16.7.0)
[Compare
Source](https://togithub.com/sverweij/dependency-cruiser/compare/v16.6.0...v16.7.0)
#### ✨ feature: recognize type imports in jsdoc
Dependency-cruiser now has the ability to recognize imports in jsdoc -
both the new ones [introduced in
TS5.5](https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/#the-jsdoc-import-tag)
(e.g. `/** @​import { something } from "blah"; */`), as well as
the [older
ones](https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html#import-types)
(e.g. `/** @​type {import('blah').something} */`). It's behind [an
option](https://togithub.com/sverweij/dependency-cruiser/blob/main/doc/options-reference.md#detectjsdocimports-detect-dependencies-in-jsdoc-comments)
so it will only detect them if you want it to.
Thanks to [@​louwers](https://togithub.com/louwers) for raising
the associated issue and testing a very early version of PR
[#​965](https://togithub.com/sverweij/dependency-cruiser/issues/965)
- See [detectJSDocImports: detect dependencies in JSDoc
comments](https://togithub.com/sverweij/dependency-cruiser/blob/main/doc/options-reference.md#detectjsdocimports-detect-dependencies-in-jsdoc-comments)
in the options references for more information and some of the caveats
(a.o. *really* needs the TypeScript compiler)
- The PR's also grew the
[dependencyTypes](https://togithub.com/sverweij/dependency-cruiser/blob/main/doc/rules-reference.md#ok---unknown-npm-unknown-undetermined---im-officially-weirded-out---whats-that-about)
`jsdoc`, `jsdoc-bracket-import` and `jsdoc-import-tag` for use in your
rules.
commits:
-
[`09e9e41`](https://togithub.com/sverweij/dependency-cruiser/commit/09e9e415)
feat(extract): adds recognition of jsdoc `@import` type imports
([#​965](https://togithub.com/sverweij/dependency-cruiser/issues/965))
-
[`0d49477`](https://togithub.com/sverweij/dependency-cruiser/commit/0d494774)
feat(extract): adds recognition of the 'classic' jsdoc 'bracket' imports
([#​969](https://togithub.com/sverweij/dependency-cruiser/issues/969))
-
[`fedead6`](https://togithub.com/sverweij/dependency-cruiser/commit/fedead65)
feat(init): adds question to enable detection of jsdoc imports
([#​970](https://togithub.com/sverweij/dependency-cruiser/issues/970))
#### 🐛 fixes
-
[`09ae707`](https://togithub.com/sverweij/dependency-cruiser/commit/09ae707e)
fix(npm): shortens the message in the (only) distributed script
#### 👷 maintenance
-
[`aae6edd`](https://togithub.com/sverweij/dependency-cruiser/commit/aae6eddf)/
[`b5bfe76`](https://togithub.com/sverweij/dependency-cruiser/commit/b5bfe76a)
refactor: addresses small linting issues
-
[`2d2b0e5`](https://togithub.com/sverweij/dependency-cruiser/commit/2d2b0e5d)
refactor(resolve): uses Maps for the context maps
-
[`79e1aa1`](https://togithub.com/sverweij/dependency-cruiser/commit/79e1aa19)
build(npm): updates external dependencies
-
[`09ae707`](https://togithub.com/sverweij/dependency-cruiser/commit/09ae707e)
fix(npm): shortens the message in the (only) distributed script
#### 🧹 chores
-
[`8a288dd`](https://togithub.com/sverweij/dependency-cruiser/commit/8a288dda)
chore: migrates to eslint 9 & flat config
([#​968](https://togithub.com/sverweij/dependency-cruiser/issues/968))
-
[`69b59b6`](https://togithub.com/sverweij/dependency-cruiser/commit/69b59b69)
chore: makes ci use node 23 instead of 22
-
[`78960d3`](https://togithub.com/sverweij/dependency-cruiser/commit/78960d37)
build(npm): adds svgo to devDependencies
###
[`v16.6.0`](https://togithub.com/sverweij/dependency-cruiser/releases/tag/v16.6.0)
[Compare
Source](https://togithub.com/sverweij/dependency-cruiser/compare/v16.5.0...v16.6.0)
#### ✨ features
-
[`b473be5`](https://togithub.com/sverweij/dependency-cruiser/commit/b473be5b)
feat: adds support for svelte 5
([#​963](https://togithub.com/sverweij/dependency-cruiser/issues/963))
#### 👷 maintenance
-
[`7683e90`](https://togithub.com/sverweij/dependency-cruiser/commit/7683e904)
fix(extract): removes extraneous capturing group from a regular
expression
-
[`65f2748`](https://togithub.com/sverweij/dependency-cruiser/commit/65f27486)
build(npm): updates external dependencies
###
[`v16.5.0`](https://togithub.com/sverweij/dependency-cruiser/releases/tag/v16.5.0)
[Compare
Source](https://togithub.com/sverweij/dependency-cruiser/compare/v16.4.2...v16.5.0)
#### ✨ features
-
[`802ff6f`](https://togithub.com/sverweij/dependency-cruiser/commit/802ff6fa)
feat(cli): expands the info displayed in --info
([#​959](https://togithub.com/sverweij/dependency-cruiser/issues/959))
#### 📖 documentation
-
[`1ca77ec`](https://togithub.com/sverweij/dependency-cruiser/commit/1ca77ec0)
doc(FAQ): corrects a typo
-
[`8269857`](https://togithub.com/sverweij/dependency-cruiser/commit/82698571)
doc(cli): clarify when using --max-depth is a good idea (*never, that's
when* 😄)
#### 👷 maintenance
-
[`9453f20`](https://togithub.com/sverweij/dependency-cruiser/commit/9453f201)
build(npm): updates external dependencies
</details>
<details>
<summary>puleos/object-hash (object-hash)</summary>
###
[`v3.0.0`](https://togithub.com/puleos/object-hash/compare/v2.2.0...v3.0.0)
[Compare
Source](https://togithub.com/puleos/object-hash/compare/v2.2.0...v3.0.0)
###
[`v2.2.0`](https://togithub.com/puleos/object-hash/compare/v2.1.1...v2.2.0)
[Compare
Source](https://togithub.com/puleos/object-hash/compare/v2.1.1...v2.2.0)
###
[`v2.1.1`](https://togithub.com/puleos/object-hash/compare/f61b9a5d584158abc3e31c29d2b1fa3d74772677...v2.1.1)
[Compare
Source](https://togithub.com/puleos/object-hash/compare/f61b9a5d584158abc3e31c29d2b1fa3d74772677...v2.1.1)
###
[`v2.1.0`](https://togithub.com/puleos/object-hash/compare/v2.0.3...f61b9a5d584158abc3e31c29d2b1fa3d74772677)
[Compare
Source](https://togithub.com/puleos/object-hash/compare/v2.0.3...f61b9a5d584158abc3e31c29d2b1fa3d74772677)
###
[`v2.0.3`](https://togithub.com/puleos/object-hash/compare/v2.0.2...v2.0.3)
[Compare
Source](https://togithub.com/puleos/object-hash/compare/v2.0.2...v2.0.3)
###
[`v2.0.2`](https://togithub.com/puleos/object-hash/compare/v2.0.1...v2.0.2)
[Compare
Source](https://togithub.com/puleos/object-hash/compare/v2.0.1...v2.0.2)
###
[`v2.0.1`](https://togithub.com/puleos/object-hash/compare/v2.0.0...v2.0.1)
[Compare
Source](https://togithub.com/puleos/object-hash/compare/v2.0.0...v2.0.1)
###
[`v2.0.0`](https://togithub.com/puleos/object-hash/compare/v1.3.1...v2.0.0)
[Compare
Source](https://togithub.com/puleos/object-hash/compare/v1.3.1...v2.0.0)
</details>
<details>
<summary>uuidjs/uuid (uuid)</summary>
###
[`v11.0.3`](https://togithub.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1103-2024-11-04)
[Compare
Source](https://togithub.com/uuidjs/uuid/compare/v11.0.2...v11.0.3)
##### Bug Fixes
- apply stricter typing to the v\* signatures
([#​831](https://togithub.com/uuidjs/uuid/issues/831))
([c2d3fed](https://togithub.com/uuidjs/uuid/commit/c2d3fed22cfd47c22c8f22f6154abb5060648ce5))
- export internal uuid types
([#​833](https://togithub.com/uuidjs/uuid/issues/833))
([341edf4](https://togithub.com/uuidjs/uuid/commit/341edf444ced63708ba336285dbec29443523939))
- remove sourcemaps
([#​827](https://togithub.com/uuidjs/uuid/issues/827))
([b93ea10](https://togithub.com/uuidjs/uuid/commit/b93ea101af7382053032d4fb61cc85599d6c7216))
- revert "simplify type for v3 and v5"
([#​835](https://togithub.com/uuidjs/uuid/issues/835))
([e2dee69](https://togithub.com/uuidjs/uuid/commit/e2dee691e95aba854a892d2507d8cd9f009bf61d))
###
[`v11.0.2`](https://togithub.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1102-2024-10-28)
[Compare
Source](https://togithub.com/uuidjs/uuid/compare/v11.0.1...v11.0.2)
##### Bug Fixes
- remove wrapper.mjs
([#​822](https://togithub.com/uuidjs/uuid/issues/822))
([6683ad3](https://togithub.com/uuidjs/uuid/commit/6683ad38b048375b451eac1194960f24ba20e0ca))
###
[`v11.0.1`](https://togithub.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1101-2024-10-27)
[Compare
Source](https://togithub.com/uuidjs/uuid/compare/v11.0.0...v11.0.1)
##### Bug Fixes
- restore package.json#browser field
([#​817](https://togithub.com/uuidjs/uuid/issues/817))
([ae8f386](https://togithub.com/uuidjs/uuid/commit/ae8f38657bca0ee053bf29c88c006b1ea05af1b5))
###
[`v11.0.0`](https://togithub.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1100-2024-10-26)
[Compare
Source](https://togithub.com/uuidjs/uuid/compare/v10.0.0...v11.0.0)
##### ⚠ BREAKING CHANGES
- refactor v1 internal state and options logic
([#​780](https://togithub.com/uuidjs/uuid/issues/780))
- refactor v7 internal state and options logic, fixes
[#​764](https://togithub.com/uuidjs/uuid/issues/764)
([#​779](https://togithub.com/uuidjs/uuid/issues/779))
- Port to TypeScript, closes
[#​762](https://togithub.com/uuidjs/uuid/issues/762)
([#​763](https://togithub.com/uuidjs/uuid/issues/763))
- update node support matrix (only support node 16-20)
([#​750](https://togithub.com/uuidjs/uuid/issues/750))
##### Features
- Port to TypeScript, closes
[#​762](https://togithub.com/uuidjs/uuid/issues/762)
([#​763](https://togithub.com/uuidjs/uuid/issues/763))
([1e0f987](https://togithub.com/uuidjs/uuid/commit/1e0f9870db864ca93f7a69db0d468b5e1b7605e7))
- update node support matrix (only support node 16-20)
([#​750](https://togithub.com/uuidjs/uuid/issues/750))
([883b163](https://togithub.com/uuidjs/uuid/commit/883b163b9ab9d6655bfbd8a35e61a3c71674dfe1))
##### Bug Fixes
- missing v7 expectations in browser spec
([#​751](https://togithub.com/uuidjs/uuid/issues/751))
([f54a866](https://togithub.com/uuidjs/uuid/commit/f54a866cedb2b3b96581157c1f4ac935a0b11411))
- refactor v1 internal state and options logic
([#​780](https://togithub.com/uuidjs/uuid/issues/780))
([031b3d3](https://togithub.com/uuidjs/uuid/commit/031b3d3d738bc6694501ac0a37152b95ed500989))
- refactor v7 internal state and options logic, fixes
[#​764](https://togithub.com/uuidjs/uuid/issues/764)
([#​779](https://togithub.com/uuidjs/uuid/issues/779))
([9dbd1cd](https://togithub.com/uuidjs/uuid/commit/9dbd1cd4177c43fcaac961a3b16fb2d044c9940a))
- remove v4 options default assignment preventing native.randomUUID from
being used ([#​786](https://togithub.com/uuidjs/uuid/issues/786))
([afe6232](https://togithub.com/uuidjs/uuid/commit/afe62323c4408a824755a39d7b971a8ae06f7199)),
closes [#​763](https://togithub.com/uuidjs/uuid/issues/763)
- seq_hi shift for byte 6
([#​775](https://togithub.com/uuidjs/uuid/issues/775))
([1d532ca](https://togithub.com/uuidjs/uuid/commit/1d532ca374f181932a24a83fa98f71a5bd4f3e96))
- tsconfig module type
([#​778](https://togithub.com/uuidjs/uuid/issues/778))
([7eff835](https://togithub.com/uuidjs/uuid/commit/7eff835cba334ad418f57768c00d15b918a9b419))
###
[`v10.0.0`](https://togithub.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1000-2024-06-07)
[Compare
Source](https://togithub.com/uuidjs/uuid/compare/v9.0.1...v10.0.0)
##### ⚠ BREAKING CHANGES
- update node support (drop node@12, node@14, add node@20)
([#​750](https://togithub.com/uuidjs/uuid/issues/750))
##### Features
- support support rfc9562 MAX uuid (new in RFC9562)
([#​714](https://togithub.com/uuidjs/uuid/issues/714))
([0385cd3](https://togithub.com/uuidjs/uuid/commit/0385cd3f18ae9920678b2849932fa7a9d9aee7d0))
- support rfc9562 v6 uuids
([#​754](https://togithub.com/uuidjs/uuid/issues/754))
([c4ed13e](https://togithub.com/uuidjs/uuid/commit/c4ed13e7159d87c9e42a349bdd9dc955f1af46b6))
- support rfc9562 v7 uuids
([#​681](https://togithub.com/uuidjs/uuid/issues/681))
([db76a12](https://togithub.com/uuidjs/uuid/commit/db76a1284760c441438f50a57924b322dae08891))
- update node support matrix (only support node 16-20)
([#​750](https://togithub.com/uuidjs/uuid/issues/750))
([883b163](https://togithub.com/uuidjs/uuid/commit/883b163b9ab9d6655bfbd8a35e61a3c71674dfe1))
- support rfc9562 v8 uuids
([#​759](https://togithub.com/uuidjs/uuid/issues/759))
([35a5342](https://togithub.com/uuidjs/uuid/commit/35a53428202657e402e6b4aa68f56c08194541bf))
##### Bug Fixes
- revert "perf: remove superfluous call to toLowerCase
([#​677](https://togithub.com/uuidjs/uuid/issues/677))"
([#​738](https://togithub.com/uuidjs/uuid/issues/738))
([e267b90](https://togithub.com/uuidjs/uuid/commit/e267b9073df1d0ce119ee53c0487fe76acb2be37))
###
[`v9.0.1`](https://togithub.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#901-2023-09-12)
[Compare
Source](https://togithub.com/uuidjs/uuid/compare/v9.0.0...v9.0.1)
##### build
- Fix CI to work with Node.js 20.x
</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.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOlNlY3VyaXR5IiwiYmFja3BvcnQ6YWxsLW9wZW4iLCJyZWxlYXNlX25vdGU6c2tpcCJdfQ==-->
---------
Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Co-authored-by: Jeramy Soucy <[email protected]>1 parent 74d0952 commit d740042
File tree
6 files changed
+68
-74
lines changed- .buildkite
- x-pack
- solutions/observability/plugins/logs_explorer/common
6 files changed
+68
-74
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1118 | 1118 | | |
1119 | 1119 | | |
1120 | 1120 | | |
1121 | | - | |
| 1121 | + | |
1122 | 1122 | | |
1123 | 1123 | | |
1124 | 1124 | | |
| |||
1187 | 1187 | | |
1188 | 1188 | | |
1189 | 1189 | | |
1190 | | - | |
| 1190 | + | |
1191 | 1191 | | |
1192 | 1192 | | |
1193 | 1193 | | |
| |||
1277 | 1277 | | |
1278 | 1278 | | |
1279 | 1279 | | |
1280 | | - | |
| 1280 | + | |
1281 | 1281 | | |
1282 | 1282 | | |
1283 | 1283 | | |
| |||
1610 | 1610 | | |
1611 | 1611 | | |
1612 | 1612 | | |
1613 | | - | |
| 1613 | + | |
1614 | 1614 | | |
1615 | 1615 | | |
1616 | 1616 | | |
| |||
1630 | 1630 | | |
1631 | 1631 | | |
1632 | 1632 | | |
1633 | | - | |
| 1633 | + | |
1634 | 1634 | | |
1635 | 1635 | | |
1636 | 1636 | | |
| |||
1668 | 1668 | | |
1669 | 1669 | | |
1670 | 1670 | | |
1671 | | - | |
| 1671 | + | |
1672 | 1672 | | |
1673 | 1673 | | |
1674 | 1674 | | |
| |||
1723 | 1723 | | |
1724 | 1724 | | |
1725 | 1725 | | |
1726 | | - | |
| 1726 | + | |
1727 | 1727 | | |
1728 | 1728 | | |
1729 | 1729 | | |
| |||
1788 | 1788 | | |
1789 | 1789 | | |
1790 | 1790 | | |
1791 | | - | |
| 1791 | + | |
1792 | 1792 | | |
1793 | 1793 | | |
1794 | 1794 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11891 | 11891 | | |
11892 | 11892 | | |
11893 | 11893 | | |
11894 | | - | |
11895 | | - | |
11896 | | - | |
11897 | | - | |
11898 | | - | |
11899 | | - | |
11900 | | - | |
11901 | | - | |
11902 | | - | |
| 11894 | + | |
| 11895 | + | |
| 11896 | + | |
| 11897 | + | |
11903 | 11898 | | |
11904 | 11899 | | |
11905 | 11900 | | |
| |||
12099 | 12094 | | |
12100 | 12095 | | |
12101 | 12096 | | |
12102 | | - | |
12103 | | - | |
12104 | | - | |
12105 | | - | |
12106 | | - | |
12107 | | - | |
| 12097 | + | |
| 12098 | + | |
| 12099 | + | |
| 12100 | + | |
12108 | 12101 | | |
12109 | 12102 | | |
12110 | 12103 | | |
| |||
12588 | 12581 | | |
12589 | 12582 | | |
12590 | 12583 | | |
12591 | | - | |
12592 | | - | |
12593 | | - | |
12594 | | - | |
12595 | | - | |
12596 | 12584 | | |
12597 | 12585 | | |
12598 | 12586 | | |
| |||
13295 | 13283 | | |
13296 | 13284 | | |
13297 | 13285 | | |
13298 | | - | |
| 13286 | + | |
13299 | 13287 | | |
13300 | 13288 | | |
13301 | 13289 | | |
| |||
15742 | 15730 | | |
15743 | 15731 | | |
15744 | 15732 | | |
| 15733 | + | |
| 15734 | + | |
| 15735 | + | |
| 15736 | + | |
| 15737 | + | |
15745 | 15738 | | |
15746 | 15739 | | |
15747 | 15740 | | |
| |||
17186 | 17179 | | |
17187 | 17180 | | |
17188 | 17181 | | |
17189 | | - | |
17190 | | - | |
17191 | | - | |
17192 | | - | |
| 17182 | + | |
| 17183 | + | |
| 17184 | + | |
| 17185 | + | |
17193 | 17186 | | |
17194 | | - | |
| 17187 | + | |
17195 | 17188 | | |
17196 | 17189 | | |
17197 | 17190 | | |
17198 | 17191 | | |
17199 | 17192 | | |
17200 | | - | |
17201 | | - | |
17202 | | - | |
| 17193 | + | |
| 17194 | + | |
| 17195 | + | |
17203 | 17196 | | |
17204 | 17197 | | |
17205 | 17198 | | |
17206 | 17199 | | |
17207 | | - | |
| 17200 | + | |
17208 | 17201 | | |
17209 | 17202 | | |
17210 | 17203 | | |
17211 | 17204 | | |
17212 | 17205 | | |
17213 | 17206 | | |
17214 | | - | |
17215 | | - | |
| 17207 | + | |
| 17208 | + | |
17216 | 17209 | | |
17217 | 17210 | | |
17218 | 17211 | | |
| |||
17857 | 17850 | | |
17858 | 17851 | | |
17859 | 17852 | | |
17860 | | - | |
17861 | | - | |
17862 | | - | |
17863 | | - | |
| 17853 | + | |
| 17854 | + | |
| 17855 | + | |
| 17856 | + | |
17864 | 17857 | | |
17865 | 17858 | | |
17866 | 17859 | | |
| |||
21017 | 21010 | | |
21018 | 21011 | | |
21019 | 21012 | | |
21020 | | - | |
21021 | | - | |
21022 | | - | |
21023 | | - | |
| 21013 | + | |
| 21014 | + | |
| 21015 | + | |
| 21016 | + | |
21024 | 21017 | | |
21025 | 21018 | | |
21026 | 21019 | | |
| |||
25389 | 25382 | | |
25390 | 25383 | | |
25391 | 25384 | | |
25392 | | - | |
| 25385 | + | |
25393 | 25386 | | |
25394 | 25387 | | |
25395 | 25388 | | |
25396 | 25389 | | |
| 25390 | + | |
| 25391 | + | |
| 25392 | + | |
| 25393 | + | |
| 25394 | + | |
25397 | 25395 | | |
25398 | 25396 | | |
25399 | 25397 | | |
| |||
30834 | 30832 | | |
30835 | 30833 | | |
30836 | 30834 | | |
30837 | | - | |
| 30835 | + | |
30838 | 30836 | | |
30839 | 30837 | | |
30840 | 30838 | | |
| |||
31455 | 31453 | | |
31456 | 31454 | | |
31457 | 31455 | | |
31458 | | - | |
31459 | | - | |
31460 | | - | |
31461 | | - | |
| 31456 | + | |
| 31457 | + | |
| 31458 | + | |
| 31459 | + | |
31462 | 31460 | | |
31463 | 31461 | | |
31464 | 31462 | | |
| 31463 | + | |
31465 | 31464 | | |
31466 | 31465 | | |
31467 | 31466 | | |
| |||
32210 | 32209 | | |
32211 | 32210 | | |
32212 | 32211 | | |
32213 | | - | |
32214 | | - | |
32215 | | - | |
32216 | | - | |
32217 | | - | |
32218 | | - | |
| 32212 | + | |
32219 | 32213 | | |
32220 | 32214 | | |
32221 | 32215 | | |
| |||
32846 | 32840 | | |
32847 | 32841 | | |
32848 | 32842 | | |
32849 | | - | |
32850 | | - | |
32851 | | - | |
32852 | | - | |
| 32843 | + | |
| 32844 | + | |
| 32845 | + | |
| 32846 | + | |
32853 | 32847 | | |
32854 | 32848 | | |
32855 | 32849 | | |
| |||
0 commit comments