Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency core-js to v3.27.1 #1215

Merged
merged 1 commit into from
Jan 9, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 8, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
core-js 3.25.5 -> 3.27.1 age adoption passing confidence

Release Notes

zloirock/core-js

v3.27.1

Compare Source

  • Fixed a Chakra-based MS Edge (18-) bug that unfreeze (O_o) frozen arrays used as WeakMap keys
  • Fixing of the previous bug also fixes some cases of String.dedent in MS Edge
  • Fixed dependencies of some entries

v3.27.0

Compare Source

  • Iterator Helpers proposal:
    • Built-ins:
      • Iterator
        • Iterator.from
        • Iterator.prototype.drop
        • Iterator.prototype.every
        • Iterator.prototype.filter
        • Iterator.prototype.find
        • Iterator.prototype.flatMap
        • Iterator.prototype.forEach
        • Iterator.prototype.map
        • Iterator.prototype.reduce
        • Iterator.prototype.some
        • Iterator.prototype.take
        • Iterator.prototype.toArray
        • Iterator.prototype.toAsync
        • Iterator.prototype[@​@​toStringTag]
      • AsyncIterator
        • AsyncIterator.from
        • AsyncIterator.prototype.drop
        • AsyncIterator.prototype.every
        • AsyncIterator.prototype.filter
        • AsyncIterator.prototype.find
        • AsyncIterator.prototype.flatMap
        • AsyncIterator.prototype.forEach
        • AsyncIterator.prototype.map
        • AsyncIterator.prototype.reduce
        • AsyncIterator.prototype.some
        • AsyncIterator.prototype.take
        • AsyncIterator.prototype.toArray
        • AsyncIterator.prototype[@​@​toStringTag]
    • Moved to Stage 3, November 2022 TC39 meeting
    • Added /actual/ entries, unconditional forced replacement disabled for features that survived to Stage 3
    • .from accept strings, .flatMap throws on strings returned from the callback, proposal-iterator-helpers/244, proposal-iterator-helpers/250
    • .from and .flatMap throws on non-object iterators, proposal-iterator-helpers/253
  • Set methods proposal:
    • Built-ins:
      • Set.prototype.intersection
      • Set.prototype.union
      • Set.prototype.difference
      • Set.prototype.symmetricDifference
      • Set.prototype.isSubsetOf
      • Set.prototype.isSupersetOf
      • Set.prototype.isDisjointFrom
    • Moved to Stage 3, November 2022 TC39 meeting
    • Reimplemented with new semantics:
      • Optimized performance (iteration over lowest set)
      • Accepted only Set-like objects as an argument, not all iterables
      • Accepted only Sets as this, no @@​species support, and other minor changes
    • Added /actual/ entries, unconditional forced replacement changed to feature detection
    • For avoiding breaking changes:
      • New versions of methods are implemented as new modules and available in new entries or entries where old versions of methods were not available before (like /actual/ namespace)
      • In entries where they were available before (like /full/ namespace), those methods are available with fallbacks to old semantics (in addition to Set-like, they accept iterable objects). This behavior will be removed from the next major release
  • Well-Formed Unicode Strings proposal:
    • Methods:
      • String.prototype.isWellFormed
      • String.prototype.toWellFormed
    • Moved to Stage 3, November 2022 TC39 meeting
    • Added /actual/ entries, disabled unconditional forced replacement
  • Explicit resource management Stage 3 and Async explicit resource management Stage 2 proposals:
    • Renamed from "using statement" and splitted into 2 (sync and async) proposals
    • In addition to already present well-known symbols, added new built-ins:
      • Symbol.dispose
      • Symbol.asyncDispose
      • SuppressedError
      • DisposableStack
        • DisposableStack.prototype.dispose
        • DisposableStack.prototype.use
        • DisposableStack.prototype.adopt
        • DisposableStack.prototype.defer
        • DisposableStack.prototype.move
        • DisposableStack.prototype[@​@​dispose]
      • AsyncDisposableStack
        • AsyncDisposableStack.prototype.disposeAsync
        • AsyncDisposableStack.prototype.use
        • AsyncDisposableStack.prototype.adopt
        • AsyncDisposableStack.prototype.defer
        • AsyncDisposableStack.prototype.move
        • AsyncDisposableStack.prototype[@​@​asyncDispose]
      • Iterator.prototype[@​@​dispose]
      • AsyncIterator.prototype[@​@​asyncDispose]
    • Sync version of this proposal moved to Stage 3, November 2022 TC39 meeting
    • Added /actual/ namespace entries for Stage 3 proposal
  • Added String.dedent stage 2 proposal
    • Method String.dedent
    • Throws an error on non-frozen raw templates for avoiding possible breaking changes in the future, proposal-string-dedent/75
  • Compat data targets improvements:
    • React Native from 0.70 shipped with Hermes as the default engine. However, bundled Hermes versions differ from standalone Hermes releases. So added react-native target for React Native with bundled Hermes.
    • According to the documentation, Oculus Browser was renamed to Meta Quest Browser, so oculus target was renamed to quest.
    • opera_mobile target name is confusing since it contains data for the Chromium-based Android version, but iOS Opera is Safari-based. So opera_mobile target was renamed to opera-android.
    • android target name is also confusing for someone - that means Android WebView, some think thinks that it's Chrome for Android, but they have some differences. For avoiding confusion, added chrome-android target.
    • For consistency with two previous cases, added firefox-android target.
    • For avoiding breaking changes, the oculus and opera_mobile fields are available in the compat data till the next major release.
  • Compat data improvements:
  • { Map, WeakMap }.prototype.emplace became stricter by the spec draft
  • Smoothed behavior of some conflicting proposals
  • Removed some generic behavior (like @@​species pattern) of some .prototype methods from the new collections methods proposal and the Array deduplication proposal that most likely will not be implemented since it contradicts the current TC39 policy
  • Added pure version of the Number constructor, #​1154, #​1155, thanks @​trosos
  • Added set(Timeout|Interval|Immediate) extra arguments fix for Bun 0.3.0- (similarly to IE9-), bun/1633
  • Fixed handling of sparse arrays in structuredClone, #​1156
  • Fixed a theoretically possible future conflict of polyfills definitions in the pure version
  • Some refactoring and optimization

v3.26.1

Compare Source

  • Disabled forced replacing of Array.fromAsync since it's on Stage 3
  • Avoiding a check of the target in the internal function-uncurry-this helper where it's not required - minor optimization and preventing problems in some broken environments, a workaround of #​1141
  • V8 will not ship Array.prototype.{ group, groupToMap } in V8 ~ Chromium 108, proposal-array-grouping/44

v3.26.0

Compare Source


Configuration

📅 Schedule: Branch creation - "after 11pm,before 6am" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from tubone24 as a code owner January 8, 2023 15:37
@renovate renovate bot added the renovate label Jan 8, 2023
@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies
- @popperjs/core
- @sentry/react
- @typescript-eslint/eslint-plugin
- babel-loader
- babel-polyfill
- classnames
- flexboxgrid
- gatsby-legacy-polyfills
- gatsby-plugin-flexsearch
- gatsby-plugin-twitter
- gatsby-react-router-scroll
- html-minifier
- intersection-observer
- md5
- preact
- preact-render-to-string
- react-body-classname
- react-dom
- rimraf
- sass
- typescript
- webpack
Unused devdependencies
- @babel/core
- @babel/preset-typescript
- @storybook/addon-a11y
- @storybook/addon-controls
- @storybook/addon-essentials
- @storybook/addon-info
- @storybook/addon-interactions
- @storybook/addon-knobs
- @storybook/addon-links
- @storybook/addon-storysource
- @storybook/addon-viewport
- @storybook/builder-webpack5
- @storybook/manager-webpack5
- @textlint-rule/textlint-rule-no-duplicate-abbr
- @types/jest
- @types/react-test-renderer
- @types/responselike
- axe-core
- babel-eslint
- babel-plugin-transform-runtime
- core-js
- cross-env
- css-loader
- cypress
- eslint
- eslint-config-airbnb
- eslint-import-resolver-webpack
- eslint-plugin-import
- eslint-plugin-jsx-a11y
- eslint-plugin-react
- gh-pages
- husky
- identity-obj-proxy
- jest
- jest-environment-jsdom
- memlab
- netlify-cli
- netlify-lambda
- nyc
- prettier
- react-test-renderer
- sass-loader
- start-server-and-test
- stylelint
- stylelint-config-recess-order
- stylelint-config-recommended-scss
- stylelint-config-standard
- stylelint-scss
- textlint
- textlint-filter-rule-allowlist
- textlint-filter-rule-comments
- textlint-rule-aws-spellcheck
- textlint-rule-ja-no-inappropriate-words
- textlint-rule-no-hoso-kinshi-yogo
- textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet
- textlint-rule-no-start-duplicated-conjunction
- textlint-rule-preset-smarthr
- textlint-rule-prh
- textlint-rule-terminology
- ts-jest
- yaml-lint
Missing
- colors
  - /github/workspace/src/styles/_hover.scss

- @algolia/transporter
  - /github/workspace/src/components/SearchBox/index.tsx

- @algolia/client-search
  - /github/workspace/src/components/SearchBox/index.tsx

- qs
  - /github/workspace/scripts/benchmark.js

@coveralls
Copy link
Collaborator

coveralls commented Jan 8, 2023

Pull Request Test Coverage Report for Build 3870693862

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 85.143%

Totals Coverage Status
Change from base Build 3870335773: 0.0%
Covered Lines: 224
Relevant Lines: 254

💛 - Coveralls

@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

Memlab leaks report

page-load [7.1MB] (baseline) [s1] > action-on-page [8.5MB] (target) [s2] > revert [8.5MB] (final) [s3]  
------3 clusters------

--Similar leaks in this run: 596--
--Retained size of leaked objects: 108.1KB--
[<synthetic>] (synthetic) @1 [9.1MB]
  --4 (shortcut)--->  [Window / https://blog.tubone-project24.xyz] (object) @9835 [59.5KB]
  --setInterval (property)--->  [<closure>] (closure) @195199 [264 bytes]
  --context (internal)--->  [<function scope>] (object) @258601 [20 bytes]
  --previous (internal)--->  [<function scope>] (object) @78069 [14KB]
  --n (variable)--->  [t] (closure) @97763 [1.2KB]
  --context (internal)--->  [<function scope>] (object) @97755 [42.5KB]
  --n (variable)--->  [Object] (object) @97761 [42.5KB]
  --449 (element)--->  [Object] (object) @186305 [24 bytes]
  --exports (property)--->  [r] (closure) @186307 [2.1KB]
  --hasData (property)--->  [<closure>] (closure) @191265 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @170405 [1.3KB]
  --e (variable)--->  [Object] (object) @170389 [1KB]
  --1 (element)--->  [Object] (object) @170391 [76 bytes]
  --aaAutocomplete (property)--->  [f] (object) @72697 [348 bytes]
  --$node (property)--->  [F] (object) @65807 [188 bytes]
  --0 (element)--->  [Detached HTMLSpanElement] (native) @38435 [376 bytes]
  --5 (element)--->  [Detached HTMLDivElement] (native) @39773 [196 bytes]
  --5 (element)--->  [Detached HTMLDivElement] (native) @39749 [196 bytes]
  --5 (element)--->  [Detached HTMLElement] (native) @39741 [196 bytes]
  --6 (element)--->  [Detached HTMLElement] (native) @39743 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @39675 [196 bytes]
  --6 (element)--->  [Detached HTMLDivElement] (native) @39677 [196 bytes]
  --7 (element)--->  [Detached HTMLDivElement] (native) @39679 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @39699 [196 bytes]
  --4 (element)--->  [Detached HTMLDivElement] (native) @39659 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @39483 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @39455 [196 bytes]
  --6 (element)--->  [Detached HTMLAnchorElement] (native) @39441 [1.3KB]
  --12 (element)--->  [Detached InternalNode] (native) @313590080 [120 bytes]
  --1 (element)--->  [Detached ElementIntersectionObserverData] (native) @313733792 [64 bytes]

--Similar leaks in this run: 104--
--Retained size of leaked objects: 28.8KB--
[<synthetic>] (synthetic) @1 [9.1MB]
  --4 (shortcut)--->  [Window / https://blog.tubone-project24.xyz] (object) @9835 [59.5KB]
  --___replace (property)--->  [<closure>] (closure) @142545 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @105175 [496 bytes]
  --i (variable)--->  [Module] (object) @98201 [5.8KB]
  --get version (property)--->  [version] (closure) @97977 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @94015 [16.4KB]
  --Qn (variable)--->  [y] (object) @419169 [368 bytes]
  --props (property)--->  [Object] (object) @419383 [28 bytes]
  --children (property)--->  [Object] (object) @428689 [296 bytes]
  --props (property)--->  [Object] (object) @429379 [56 bytes]
  --children (property)--->  [Object] (object) @429419 [1.2KB]
  --__ (property)--->  [Object] (object) @451463 [1.1KB]
  --__ (property)--->  [Object] (object) @451473 [940 bytes]
  --__ (property)--->  [Object] (object) @451487 [736 bytes]
  --__d (property)--->  [Detached HTMLDivElement] (native) @321237 [272 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @321235 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @321233 [196 bytes]
  --4 (element)--->  [Detached HTMLDivElement] (native) @320875 [8.5KB]
  --6 (element)--->  [Detached HTMLElement] (native) @320893 [15KB]
  --3 (element)--->  [Detached HTMLDivElement] (native) @320891 [13.4KB]
  --4 (element)--->  [Detached Text] (native) @53081632 [96 bytes]
  --2 (element)--->  [Detached HTMLImageElement] (native) @132583808 [272 bytes]
  --3 (element)--->  [Detached Text] (native) @132579808 [96 bytes]
  --2 (element)--->  [Detached HTMLParagraphElement] (native) @132583008 [1.2KB]
  --1 (element)--->  [Detached Text] (native) @132589888 [96 bytes]
  --2 (element)--->  [Detached HTMLAnchorElement] (native) @320183 [380 bytes]
  --9 (element)--->  [Detached InternalNode] (native) @132590048 [56 bytes]
  --1 (element)--->  [Detached InternalNode] (native) @314002176 [56 bytes]
  --1 (element)--->  [Detached NodeList] (native) @131902080 [56 bytes]

--Similar leaks in this run: 6--
--Retained size of leaked objects: 512 bytes--
[<synthetic>] (synthetic) @1 [9.1MB]
  --4 (shortcut)--->  [Window / https://blog.tubone-project24.xyz] (object) @9835 [59.5KB]
  --__twttrll (property)--->  [Array] (object) @132885 [184 bytes]
  --push (property)--->  [e] (closure) @258645 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @132867 [248 bytes]
  --n (variable)--->  [Object] (object) @258637 [13KB]
  --101 (element)--->  [Object] (object) @260635 [24 bytes]
  --exports (property)--->  [o] (closure) @258651 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @133705 [6.2KB]
  --g (variable)--->  [Detached Text] (native) @40507 [396 bytes]
  --3 (element)--->  [Detached InternalNode] (native) @347216608 [272 bytes]
  --1 (element)--->  [Detached InternalNode] (native) @347216928 [272 bytes]
  --1 (element)--->  [Detached InternalNode] (native) @347217248 [272 bytes]
  --1 (element)--->  [Detached MutationObserverRegistration] (native) @347217088 [272 bytes]
  --1 (element)--->  [Detached MutationObserver] (native) @346693920 [192 bytes]

@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public
Functions path: /home/runner/work/blog/blog/functions/src
Configuration path: /home/runner/work/blog/blog/netlify.toml
Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/63bae72a932e1a269325ec9a
Website Draft URL: https://63bae72a932e1a269325ec9a--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag.
netlify deploy --prod

@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static
Functions path: /home/runner/work/blog/blog/functions/src
Configuration path: /home/runner/work/blog/blog/netlify.toml
Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/63bae75134bf09263bb08997
Website Draft URL: https://63bae75134bf09263bb08997--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag.
netlify deploy --prod

@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

Lighthouse Score

Desktop

performance: 77
accessibility: 100
best-practices: 92
seo: 92
pwa: 100

Mobile

performance: 53
accessibility: 100
best-practices: 83
seo: 93
pwa: 100

@renovate renovate bot force-pushed the renovate-core-js-3.x branch from 96a08d7 to cb45b46 Compare January 8, 2023 18:41
@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies
- @popperjs/core
- @sentry/react
- @typescript-eslint/eslint-plugin
- babel-loader
- babel-polyfill
- classnames
- flexboxgrid
- gatsby-legacy-polyfills
- gatsby-plugin-flexsearch
- gatsby-plugin-twitter
- gatsby-react-router-scroll
- html-minifier
- intersection-observer
- md5
- preact
- preact-render-to-string
- react-body-classname
- react-dom
- rimraf
- sass
- typescript
- webpack
Unused devdependencies
- @babel/core
- @babel/preset-typescript
- @storybook/addon-a11y
- @storybook/addon-controls
- @storybook/addon-essentials
- @storybook/addon-info
- @storybook/addon-interactions
- @storybook/addon-knobs
- @storybook/addon-links
- @storybook/addon-storysource
- @storybook/addon-viewport
- @storybook/builder-webpack5
- @storybook/manager-webpack5
- @textlint-rule/textlint-rule-no-duplicate-abbr
- @types/jest
- @types/react-test-renderer
- @types/responselike
- axe-core
- babel-eslint
- babel-plugin-transform-runtime
- core-js
- cross-env
- css-loader
- cypress
- eslint
- eslint-config-airbnb
- eslint-import-resolver-webpack
- eslint-plugin-import
- eslint-plugin-jsx-a11y
- eslint-plugin-react
- gh-pages
- husky
- identity-obj-proxy
- jest
- jest-environment-jsdom
- memlab
- netlify-cli
- netlify-lambda
- nyc
- prettier
- react-test-renderer
- sass-loader
- start-server-and-test
- stylelint
- stylelint-config-recess-order
- stylelint-config-recommended-scss
- stylelint-config-standard
- stylelint-scss
- textlint
- textlint-filter-rule-allowlist
- textlint-filter-rule-comments
- textlint-rule-aws-spellcheck
- textlint-rule-ja-no-inappropriate-words
- textlint-rule-no-hoso-kinshi-yogo
- textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet
- textlint-rule-no-start-duplicated-conjunction
- textlint-rule-preset-smarthr
- textlint-rule-prh
- textlint-rule-terminology
- ts-jest
- yaml-lint
Missing
- colors
  - /github/workspace/src/styles/_hover.scss

- @algolia/transporter
  - /github/workspace/src/components/SearchBox/index.tsx

- @algolia/client-search
  - /github/workspace/src/components/SearchBox/index.tsx

- qs
  - /github/workspace/scripts/benchmark.js

- https
  - /github/workspace/scripts/uploadScreenShot.ts

@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

Memlab leaks report

page-load [7.1MB] (baseline) [s1] > action-on-page [8.5MB] (target) [s2] > revert [8.5MB] (final) [s3]  
------3 clusters------

--Similar leaks in this run: 583--
--Retained size of leaked objects: 106.2KB--
[<synthetic>] (synthetic) @1 [9.1MB]
  --4 (shortcut)--->  [Window / https://blog.tubone-project24.xyz] (object) @9835 [60.5KB]
  --webpackChunkblog (property)--->  [Array] (object) @108451 [8.7KB]
  --push (property)--->  [native_bind] (closure) @108453 [128 bytes]
  --bound_function (internal)--->  [r] (closure) @271221 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @108485 [312 bytes]
  --previous (internal)--->  [<function scope>] (object) @108475 [42.7KB]
  --n (variable)--->  [Object] (object) @108481 [42.6KB]
  --449 (element)--->  [Object] (object) @123147 [24 bytes]
  --exports (property)--->  [r] (closure) @207501 [2.1KB]
  --hasData (property)--->  [<closure>] (closure) @210669 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @157129 [1.3KB]
  --e (variable)--->  [Object] (object) @157109 [1KB]
  --1 (element)--->  [Object] (object) @157111 [76 bytes]
  --aaAutocomplete (property)--->  [f] (object) @189587 [348 bytes]
  --$node (property)--->  [F] (object) @184029 [188 bytes]
  --0 (element)--->  [Detached HTMLSpanElement] (native) @38443 [376 bytes]
  --5 (element)--->  [Detached HTMLDivElement] (native) @39847 [196 bytes]
  --5 (element)--->  [Detached HTMLDivElement] (native) @39823 [196 bytes]
  --5 (element)--->  [Detached HTMLElement] (native) @39815 [196 bytes]
  --6 (element)--->  [Detached HTMLElement] (native) @39817 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @39747 [196 bytes]
  --6 (element)--->  [Detached HTMLDivElement] (native) @39749 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @39097 [196 bytes]
  --4 (element)--->  [Detached HTMLDivElement] (native) @39103 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @39799 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @39789 [196 bytes]
  --3 (element)--->  [Detached HTMLSpanElement] (native) @39745 [320 bytes]
  --6 (element)--->  [Detached HTMLAnchorElement] (native) @39731 [1.8KB]
  --11 (element)--->  [Detached HTMLAnchorElement] (native) @39717 [1.8KB]
  --12 (element)--->  [Detached InternalNode] (native) @347210688 [120 bytes]
  --1 (element)--->  [Detached ElementIntersectionObserverData] (native) @346898528 [64 bytes]

--Similar leaks in this run: 103--
--Retained size of leaked objects: 28.8KB--
[<synthetic>] (synthetic) @1 [9.1MB]
  --4 (shortcut)--->  [Window / https://blog.tubone-project24.xyz] (object) @9835 [60.5KB]
  --___push (property)--->  [<closure>] (closure) @83607 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @82793 [496 bytes]
  --i (variable)--->  [Module] (object) @109033 [5.8KB]
  --get version (property)--->  [version] (closure) @108781 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @108533 [16.4KB]
  --Qn (variable)--->  [y] (object) @417297 [368 bytes]
  --props (property)--->  [Object] (object) @446733 [28 bytes]
  --children (property)--->  [Object] (object) @471087 [296 bytes]
  --props (property)--->  [Object] (object) @471115 [56 bytes]
  --children (property)--->  [Object] (object) @441167 [1.2KB]
  --__ (property)--->  [Object] (object) @452867 [1.1KB]
  --__ (property)--->  [Object] (object) @452875 [940 bytes]
  --__ (property)--->  [Object] (object) @440959 [736 bytes]
  --__d (property)--->  [Detached HTMLDivElement] (native) @320957 [272 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @320955 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @320945 [196 bytes]
  --4 (element)--->  [Detached HTMLDivElement] (native) @320719 [8.5KB]
  --4 (element)--->  [Detached HTMLAnchorElement] (native) @320687 [1.3KB]
  --10 (element)--->  [Detached HTMLAnchorElement] (native) @320693 [1.3KB]
  --12 (element)--->  [Detached InternalNode] (native) @90813728 [56 bytes]
  --1 (element)--->  [Detached InternalNode] (native) @90813568 [56 bytes]
  --1 (element)--->  [Detached NodeList] (native) @346930016 [56 bytes]

--Similar leaks in this run: 7--
--Retained size of leaked objects: 776 bytes--
[<synthetic>] (synthetic) @1 [9.1MB]
  --4 (shortcut)--->  [Window / https://blog.tubone-project24.xyz] (object) @9835 [60.5KB]
  --__twttrll (property)--->  [Array] (object) @59605 [184 bytes]
  --push (property)--->  [e] (closure) @106301 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @59585 [248 bytes]
  --n (variable)--->  [Object] (object) @106293 [13KB]
  --101 (element)--->  [Object] (object) @268597 [24 bytes]
  --exports (property)--->  [o] (closure) @106307 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @60611 [6.2KB]
  --g (variable)--->  [Detached Text] (native) @40543 [396 bytes]
  --3 (element)--->  [Detached InternalNode] (native) @347699040 [272 bytes]
  --1 (element)--->  [Detached InternalNode] (native) @123665504 [272 bytes]
  --1 (element)--->  [Detached InternalNode] (native) @123665984 [272 bytes]
  --1 (element)--->  [Detached MutationObserverRegistration] (native) @123665824 [272 bytes]
  --1 (element)--->  [Detached MutationObserver] (native) @314499136 [192 bytes]
  --1 (element)--->  [Detached MutationObserver::Delegate] (native) @314498976 [80 bytes]
  --1 (element)--->  [Detached V8MutationCallback] (native) @347527040 [40 bytes]

@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public
Functions path: /home/runner/work/blog/blog/functions/src
Configuration path: /home/runner/work/blog/blog/netlify.toml
Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/63bb115a0e674d477254594a
Website Draft URL: https://63bb115a0e674d477254594a--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag.
netlify deploy --prod

@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static
Functions path: /home/runner/work/blog/blog/functions/src
Configuration path: /home/runner/work/blog/blog/netlify.toml
Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/63bb11e331d28643e058f38c
Website Draft URL: https://63bb11e331d28643e058f38c--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag.
netlify deploy --prod

@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

github-actions bot added a commit that referenced this pull request Jan 8, 2023
@github-actions
Copy link
Contributor

github-actions bot commented Jan 8, 2023

Lighthouse Score

Desktop

performance: 87
accessibility: 100
best-practices: 92
seo: 92
pwa: 100

Mobile

performance: 69
accessibility: 100
best-practices: 83
seo: 93
pwa: 100

@renovate renovate bot force-pushed the renovate-core-js-3.x branch from cb45b46 to ecf9e41 Compare January 9, 2023 04:12
@github-actions
Copy link
Contributor

github-actions bot commented Jan 9, 2023

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies
- @popperjs/core
- @sentry/react
- @typescript-eslint/eslint-plugin
- babel-loader
- babel-polyfill
- classnames
- flexboxgrid
- gatsby-legacy-polyfills
- gatsby-plugin-flexsearch
- gatsby-plugin-twitter
- gatsby-react-router-scroll
- html-minifier
- intersection-observer
- md5
- preact
- preact-render-to-string
- react-body-classname
- react-dom
- rimraf
- sass
- typescript
- webpack
Unused devdependencies
- @babel/core
- @babel/preset-typescript
- @storybook/addon-a11y
- @storybook/addon-controls
- @storybook/addon-essentials
- @storybook/addon-info
- @storybook/addon-interactions
- @storybook/addon-knobs
- @storybook/addon-links
- @storybook/addon-storysource
- @storybook/addon-viewport
- @storybook/builder-webpack5
- @storybook/manager-webpack5
- @textlint-rule/textlint-rule-no-duplicate-abbr
- @types/jest
- @types/react-test-renderer
- @types/responselike
- axe-core
- babel-eslint
- babel-plugin-transform-runtime
- core-js
- cross-env
- css-loader
- cypress
- eslint
- eslint-config-airbnb
- eslint-import-resolver-webpack
- eslint-plugin-import
- eslint-plugin-jsx-a11y
- eslint-plugin-react
- gh-pages
- husky
- identity-obj-proxy
- jest
- jest-environment-jsdom
- memlab
- netlify-cli
- netlify-lambda
- nyc
- prettier
- react-test-renderer
- sass-loader
- start-server-and-test
- stylelint
- stylelint-config-recess-order
- stylelint-config-recommended-scss
- stylelint-config-standard
- stylelint-scss
- textlint
- textlint-filter-rule-allowlist
- textlint-filter-rule-comments
- textlint-rule-aws-spellcheck
- textlint-rule-ja-no-inappropriate-words
- textlint-rule-no-hoso-kinshi-yogo
- textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet
- textlint-rule-no-start-duplicated-conjunction
- textlint-rule-preset-smarthr
- textlint-rule-prh
- textlint-rule-terminology
- ts-jest
- yaml-lint
Missing
- colors
  - /github/workspace/src/styles/_hover.scss

- @algolia/transporter
  - /github/workspace/src/components/SearchBox/index.tsx

- @algolia/client-search
  - /github/workspace/src/components/SearchBox/index.tsx

- qs
  - /github/workspace/scripts/benchmark.js

- https
  - /github/workspace/scripts/uploadScreenShot.ts

@github-actions
Copy link
Contributor

github-actions bot commented Jan 9, 2023

Memlab leaks report

page-load [7MB] (baseline) [s1] > action-on-page [8.4MB] (target) [s2] > revert [8.5MB] (final) [s3]  
------3 clusters------

--Similar leaks in this run: 785--
--Retained size of leaked objects: 113.2KB--
[<synthetic>] (synthetic) @1 [9.1MB]
  --4 (shortcut)--->  [Window / https://blog.tubone-project24.xyz] (object) @9835 [59.5KB]
  --requestAnimationFrame (property)--->  [<closure>] (closure) @126763 [156 bytes]
  --context (internal)--->  [<function scope>] (object) @210013 [68 bytes]
  --previous (internal)--->  [<function scope>] (object) @93031 [14KB]
  --n (variable)--->  [t] (closure) @93459 [1.2KB]
  --context (internal)--->  [<function scope>] (object) @210335 [42.5KB]
  --n (variable)--->  [Object] (object) @289809 [42.5KB]
  --449 (element)--->  [Object] (object) @153625 [24 bytes]
  --exports (property)--->  [r] (closure) @101021 [2.1KB]
  --hasData (property)--->  [<closure>] (closure) @154195 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @101437 [1.3KB]
  --e (variable)--->  [Object] (object) @101439 [1KB]
  --1 (element)--->  [Object] (object) @103091 [76 bytes]
  --aaAutocomplete (property)--->  [f] (object) @264845 [348 bytes]
  --$node (property)--->  [F] (object) @265347 [188 bytes]
  --0 (element)--->  [Detached HTMLSpanElement] (native) @38491 [348 bytes]
  --5 (element)--->  [Detached HTMLDivElement] (native) @39675 [196 bytes]
  --5 (element)--->  [Detached HTMLDivElement] (native) @39653 [196 bytes]
  --4 (element)--->  [Detached HTMLDivElement] (native) @39687 [196 bytes]
  --3 (element)--->  [Detached HTMLAnchorElement] (native) @40183 [1.3KB]
  --6 (element)--->  [Detached DOMTokenList] (native) @307311424 [56 bytes]

--Similar leaks in this run: 120--
--Retained size of leaked objects: 28.8KB--
[<synthetic>] (synthetic) @1 [9.1MB]
  --4 (shortcut)--->  [Window / https://blog.tubone-project24.xyz] (object) @9835 [59.5KB]
  --___navigate (property)--->  [<closure>] (closure) @127119 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @87275 [496 bytes]
  --i (variable)--->  [Module] (object) @87279 [5.8KB]
  --get version (property)--->  [version] (closure) @207307 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @146909 [16.4KB]
  --Qn (variable)--->  [y] (object) @452499 [368 bytes]
  --props (property)--->  [Object] (object) @452433 [28 bytes]
  --children (property)--->  [Object] (object) @452435 [296 bytes]
  --props (property)--->  [Object] (object) @454433 [56 bytes]
  --children (property)--->  [Object] (object) @452977 [1.2KB]
  --__ (property)--->  [Object] (object) @456937 [1.1KB]
  --__ (property)--->  [Object] (object) @456947 [940 bytes]
  --__ (property)--->  [Object] (object) @452771 [736 bytes]
  --__d (property)--->  [Detached HTMLDivElement] (native) @321255 [272 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @321253 [196 bytes]
  --3 (element)--->  [Detached HTMLDivElement] (native) @321251 [196 bytes]
  --4 (element)--->  [Detached HTMLDivElement] (native) @320447 [8.5KB]
  --6 (element)--->  [Detached HTMLElement] (native) @320479 [15KB]
  --3 (element)--->  [Detached HTMLDivElement] (native) @320477 [13.4KB]
  --4 (element)--->  [Detached Text] (native) @27670592 [96 bytes]
  --2 (element)--->  [Detached HTMLImageElement] (native) @27656192 [272 bytes]
  --3 (element)--->  [Detached Text] (native) @52991936 [96 bytes]
  --2 (element)--->  [Detached HTMLParagraphElement] (native) @52988576 [1.2KB]
  --4 (element)--->  [Detached Text] (native) @52991776 [96 bytes]
  --2 (element)--->  [Detached HTMLHeadingElement] (native) @52992256 [264 bytes]
  --4 (element)--->  [Detached Text] (native) @53009696 [96 bytes]
  --2 (element)--->  [Detached HTMLParagraphElement] (native) @52993056 [264 bytes]
  --4 (element)--->  [Detached Text] (native) @52993536 [96 bytes]
  --2 (element)--->  [Detached HTMLParagraphElement] (native) @52993856 [264 bytes]
  --4 (element)--->  [Detached Text] (native) @52994176 [96 bytes]
  --2 (element)--->  [Detached HTMLImageElement] (native) @52994336 [272 bytes]
  --3 (element)--->  [Detached Text] (native) @60960320 [96 bytes]
  --2 (element)--->  [Detached HTMLParagraphElement] (native) @342244352 [264 bytes]

--Similar leaks in this run: 11--
--Retained size of leaked objects: 896 bytes--
[<synthetic>] (synthetic) @1 [9.1MB]
  --4 (shortcut)--->  [Window / https://blog.tubone-project24.xyz] (object) @9835 [59.5KB]
  --__twttrll (property)--->  [Array] (object) @127255 [184 bytes]
  --push (property)--->  [e] (closure) @209937 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @210065 [248 bytes]
  --n (variable)--->  [Object] (object) @289455 [13KB]
  --101 (element)--->  [Object] (object) @296621 [24 bytes]
  --exports (property)--->  [o] (closure) @289457 [68 bytes]
  --context (internal)--->  [<function scope>] (object) @175193 [6.2KB]
  --g (variable)--->  [Detached Text] (native) @40327 [396 bytes]
  --3 (element)--->  [Detached InternalNode] (native) @342834496 [272 bytes]
  --1 (element)--->  [Detached InternalNode] (native) @342834336 [272 bytes]
  --1 (element)--->  [Detached InternalNode] (native) @342747072 [272 bytes]
  --1 (element)--->  [Detached MutationObserverRegistration] (native) @342746912 [272 bytes]

@github-actions
Copy link
Contributor

github-actions bot commented Jan 9, 2023

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public
Functions path: /home/runner/work/blog/blog/functions/src
Configuration path: /home/runner/work/blog/blog/netlify.toml
Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/63bb966560c301249d35bb20
Website Draft URL: https://63bb966560c301249d35bb20--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag.
netlify deploy --prod

@github-actions
Copy link
Contributor

github-actions bot commented Jan 9, 2023

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static
Functions path: /home/runner/work/blog/blog/functions/src
Configuration path: /home/runner/work/blog/blog/netlify.toml
Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/63bb96bb932e1a264325ec2b
Website Draft URL: https://63bb96bb932e1a264325ec2b--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag.
netlify deploy --prod

@github-actions
Copy link
Contributor

github-actions bot commented Jan 9, 2023

github-actions bot added a commit that referenced this pull request Jan 9, 2023
github-actions bot added a commit that referenced this pull request Jan 9, 2023
@github-actions
Copy link
Contributor

github-actions bot commented Jan 9, 2023

Lighthouse Score

Desktop

performance: 88
accessibility: 100
best-practices: 100
seo: 92
pwa: 100

Mobile

performance: 61
accessibility: 100
best-practices: 92
seo: 93
pwa: 100

github-actions bot added a commit that referenced this pull request Jan 9, 2023
@tubone24 tubone24 merged commit d015f1f into master Jan 9, 2023
@tubone24 tubone24 deleted the renovate-core-js-3.x branch January 9, 2023 05:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants