sitespeed.io 35.7.5 → 36.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/.dockerignore +4 -1
  2. package/CHANGELOG.md +48 -0
  3. package/Dockerfile +10 -6
  4. package/Dockerfile-slim +9 -7
  5. package/LICENSE +1 -1
  6. package/bin/browsertimeWebPageReplay.js +1 -1
  7. package/lib/cli/cli.js +17 -25
  8. package/lib/core/logging.js +6 -98
  9. package/lib/core/queue.js +112 -0
  10. package/lib/core/queueHandler.js +20 -28
  11. package/lib/core/resultsStorage/pathToFolder.js +3 -3
  12. package/lib/core/resultsStorage/storageManager.js +7 -5
  13. package/lib/plugins/assets/index.js +1 -1
  14. package/lib/plugins/axe/axePostScript.cjs +4 -6
  15. package/lib/plugins/axe/index.js +2 -2
  16. package/lib/plugins/browsertime/analyzer.js +6 -7
  17. package/lib/plugins/browsertime/browsertimeAggregator.js +64 -42
  18. package/lib/plugins/browsertime/filmstrip.js +2 -2
  19. package/lib/plugins/browsertime/index.js +3 -3
  20. package/lib/plugins/budget/deprecatedVerify.js +2 -2
  21. package/lib/plugins/budget/index.js +2 -2
  22. package/lib/plugins/budget/json.js +2 -2
  23. package/lib/plugins/budget/junit.js +2 -2
  24. package/lib/plugins/budget/tap.js +2 -2
  25. package/lib/plugins/budget/verify.js +2 -2
  26. package/lib/plugins/coach/aggregator.js +7 -9
  27. package/lib/plugins/coach/index.js +2 -2
  28. package/lib/plugins/compare/helper.js +2 -2
  29. package/lib/plugins/compare/index.js +2 -2
  30. package/lib/plugins/crawler/index.js +2 -2
  31. package/lib/plugins/crux/index.js +2 -2
  32. package/lib/plugins/crux/send.js +2 -2
  33. package/lib/plugins/domains/aggregator.js +9 -11
  34. package/lib/plugins/domains/index.js +1 -1
  35. package/lib/plugins/gcs/index.js +17 -16
  36. package/lib/plugins/grafana/send-annotation.js +2 -2
  37. package/lib/plugins/graphite/data-generator.js +13 -17
  38. package/lib/plugins/graphite/index.js +4 -3
  39. package/lib/plugins/graphite/send-annotation.js +2 -2
  40. package/lib/plugins/graphite/sender.js +2 -2
  41. package/lib/plugins/html/dataCollector.js +8 -14
  42. package/lib/plugins/html/htmlBuilder.js +12 -10
  43. package/lib/plugins/html/index.js +2 -5
  44. package/lib/plugins/html/renderer.js +2 -2
  45. package/lib/plugins/html/setup/summaryBoxes.js +2 -2
  46. package/lib/plugins/html/templates/url/coach/technology.pug +10 -8
  47. package/lib/plugins/influxdb/data-generator.js +6 -8
  48. package/lib/plugins/influxdb/index.js +3 -4
  49. package/lib/plugins/influxdb/send-annotation.js +2 -2
  50. package/lib/plugins/influxdb/send-annotationV2.js +2 -2
  51. package/lib/plugins/lateststorer/index.js +1 -4
  52. package/lib/plugins/matrix/index.js +2 -2
  53. package/lib/plugins/matrix/send.js +2 -2
  54. package/lib/plugins/messagelogger/index.js +4 -3
  55. package/lib/plugins/pagexray/index.js +2 -2
  56. package/lib/plugins/pagexray/pagexrayAggregator.js +11 -10
  57. package/lib/plugins/remove/index.js +2 -2
  58. package/lib/plugins/s3/index.js +29 -28
  59. package/lib/plugins/s3/limit.js +34 -0
  60. package/lib/plugins/scp/index.js +6 -10
  61. package/lib/plugins/slack/index.js +20 -21
  62. package/lib/plugins/sustainable/index.js +35 -14
  63. package/lib/plugins/text/color.js +30 -0
  64. package/lib/plugins/text/textBuilder.js +50 -20
  65. package/lib/sitespeed.js +11 -15
  66. package/lib/support/fileUtil.js +40 -0
  67. package/lib/support/filterRegistry.js +4 -4
  68. package/lib/support/flattenMessage.js +2 -2
  69. package/lib/support/messageMaker.js +2 -2
  70. package/lib/support/metricsFilter.js +9 -16
  71. package/lib/support/osUtil.js +36 -0
  72. package/lib/support/util.js +24 -0
  73. package/npm-shrinkwrap.json +1103 -2595
  74. package/package.json +13 -31
  75. package/tools/postinstall.js +61 -0
  76. package/.github/CONTRIBUTING.md +0 -24
  77. package/.github/FUNDING.yml +0 -12
  78. package/.github/ISSUE_TEMPLATE/BUG_REPORT.yml +0 -65
  79. package/.github/ISSUE_TEMPLATE/FEATURE_IMPROVEMENT.yml +0 -15
  80. package/.github/ISSUE_TEMPLATE/QUESTION.yml +0 -15
  81. package/.github/PULL_REQUEST_TEMPLATE.md +0 -14
  82. package/.github/budget.json +0 -13
  83. package/.github/workflows/building-docker-autobuild.yml +0 -30
  84. package/.github/workflows/building-docker-release.yml +0 -76
  85. package/.github/workflows/crux-test.yml +0 -23
  86. package/.github/workflows/docker-scan.yml +0 -29
  87. package/.github/workflows/docker.yml +0 -39
  88. package/.github/workflows/linux.yml +0 -80
  89. package/.github/workflows/safari.yml +0 -30
  90. package/.github/workflows/sitespeed-io-action-example.yml +0 -22
  91. package/.github/workflows/unittests.yml +0 -41
  92. package/.github/workflows/windows.yml +0 -39
  93. package/.github/workflows/windowsFull.yml +0 -36
  94. package/.netlify +0 -1
  95. package/.spelling +0 -58
  96. package/Gemfile +0 -4
  97. package/Gemfile.lock +0 -53
  98. package/docs/README.md +0 -10
  99. package/lib/plugins/sustainable/data/url2green.json.gz +0 -0
  100. package/release/feed.js +0 -198
  101. package/release/friendlyNames.js +0 -9
  102. package/release/friendlyNamesBudget.js +0 -15
  103. package/wpr-record.log +0 -102
  104. package/wpr-replay.log +0 -96

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.