Skip to content

Commit 44fa9f8

Browse files
Bump tslib from 2.8.0 to 2.8.1 (#382)
Bumps [tslib](https://github.com/Microsoft/tslib) from 2.8.0 to 2.8.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Microsoft/tslib/releases">tslib's releases</a>.</em></p> <blockquote> <h2>v2.8.1</h2> <h2>What's Changed</h2> <ul> <li>Fix publish workflow by <a href="https://github.com/andrewbranch"><code>@​andrewbranch</code></a> in <a href="https://redirect.github.com/microsoft/tslib/pull/271">microsoft/tslib#271</a></li> <li>Include non-enumerable keys in __importStar helper by <a href="https://github.com/rbuckton"><code>@​rbuckton</code></a> in <a href="https://redirect.github.com/microsoft/tslib/pull/272">microsoft/tslib#272</a></li> <li>Remove use of ES2015 syntax by <a href="https://github.com/andrewbranch"><code>@​andrewbranch</code></a> in <a href="https://redirect.github.com/microsoft/tslib/pull/275">microsoft/tslib#275</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/microsoft/tslib/compare/v2.8.0...v2.8.1">https://github.com/microsoft/tslib/compare/v2.8.0...v2.8.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/tslib/commit/d72d6f70b36286bc3f94a3dda1e64dcb568b1370"><code>d72d6f7</code></a> 2.8.1</li> <li><a href="https://github.com/microsoft/tslib/commit/11fa98227b6680aca0ee1d6dd3d613699672957d"><code>11fa982</code></a> Merge pull request <a href="https://redirect.github.com/Microsoft/tslib/issues/275">#275</a> from microsoft/bug/es5-compat</li> <li><a href="https://github.com/microsoft/tslib/commit/3c532ebb15fabac8fb8b6bc08704283c1ce0fad0"><code>3c532eb</code></a> Remove use of ES2015 syntax</li> <li><a href="https://github.com/microsoft/tslib/commit/b0076c4070f7bae5730b49903529d8b27bc43e96"><code>b0076c4</code></a> Include non-enumerable keys in __importStar helper (<a href="https://redirect.github.com/Microsoft/tslib/issues/272">#272</a>)</li> <li><a href="https://github.com/microsoft/tslib/commit/7c11588c364da4267328cfd32ed20de57494db67"><code>7c11588</code></a> Add missing registry-url parameter</li> <li><a href="https://github.com/microsoft/tslib/commit/1fec6679a21ab68bf4519551e76503f2602d6f3c"><code>1fec667</code></a> Merge pull request <a href="https://redirect.github.com/Microsoft/tslib/issues/271">#271</a> from microsoft/fix-publish</li> <li><a href="https://github.com/microsoft/tslib/commit/097e99eae872e743dda18aaee034118fb9c7c063"><code>097e99e</code></a> Fix publish workflow</li> <li>See full diff in <a href="https://github.com/Microsoft/tslib/compare/v2.8.0...v2.8.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tslib&package-manager=npm_and_yarn&previous-version=2.8.0&new-version=2.8.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 78251f0 commit 44fa9f8

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"test": "jest"
2929
},
3030
"dependencies": {
31-
"tslib": "^2.8.0"
31+
"tslib": "^2.8.1"
3232
},
3333
"devDependencies": {
3434
"@foxglove/eslint-plugin": "2.0.0",

yarn.lock

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ __metadata:
539539
prettier: "npm:3.3.3"
540540
rimraf: "npm:6.0.1"
541541
ts-jest: "npm:29.2.5"
542-
tslib: "npm:^2.8.0"
542+
tslib: "npm:^2.8.1"
543543
typescript: "npm:5.6.3"
544544
typescript-eslint: "npm:8.12.2"
545545
languageName: unknown
@@ -5575,13 +5575,20 @@ __metadata:
55755575
languageName: node
55765576
linkType: hard
55775577

5578-
"tslib@npm:^2.6.2, tslib@npm:^2.8.0":
5578+
"tslib@npm:^2.6.2":
55795579
version: 2.8.0
55805580
resolution: "tslib@npm:2.8.0"
55815581
checksum: 10c0/31e4d14dc1355e9b89e4d3c893a18abb7f90b6886b089c2da91224d0a7752c79f3ddc41bc1aa0a588ac895bd97bb99c5bc2bfdb2f86de849f31caeb3ba79bbe5
55825582
languageName: node
55835583
linkType: hard
55845584

5585+
"tslib@npm:^2.8.1":
5586+
version: 2.8.1
5587+
resolution: "tslib@npm:2.8.1"
5588+
checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62
5589+
languageName: node
5590+
linkType: hard
5591+
55855592
"tsutils@npm:^3":
55865593
version: 3.21.0
55875594
resolution: "tsutils@npm:3.21.0"

0 commit comments

Comments
 (0)