From a08c00ff06efb3e12931b677ce79b7c56a07ecf5 Mon Sep 17 00:00:00 2001
From: Ziwen Ning
Date: Fri, 7 Jul 2023 14:53:08 -0700
Subject: [PATCH] chore: backfill the data to fit multiple metrics benchmarking
(#468)
*Description of changes:*
The Go multiple metric benchmarking was fixed in upstream.
https://github.com/benchmark-action/github-action-benchmark/issues/118
Backfilling it for Finch.
Backfilled by the script
```
let obj = window.BENCHMARK_DATA;
for (let benchmark of obj.entries["Finch Benchmark"]) {
let newBenches = [];
for (let bench of benchmark.benches) {
let metrics = bench.unit.split("\t").filter(el => el !== "");
// If data already split, skip
if(metrics.length === 1) {
newBenches.push(bench);
continue;
}
// handle the first metric
let firstMetric = metrics[0].trim();
let newBench = JSON.parse(JSON.stringify(bench)); // Deep clone
newBench.name += " - " + firstMetric;
newBench.unit = firstMetric;
newBenches.push(newBench);
// handle the rest of the metrics
for (let i = 1; i < metrics.length; i++) {
let metric = metrics[i].trim().split(" ");
let value = metric[0];
let unit = metric[1];
let newBench = JSON.parse(JSON.stringify(bench)); // Deep clone
newBench.name += " - " + unit;
newBench.unit = unit;
newBench.value = value;
newBenches.push(newBench);
}
}
benchmark.benches = newBenches;
}
console.log(JSON.stringify(obj, null, 2));
```
*Testing done:*
By locally exploring the index.html in Chrome.
- [ X ] I've reviewed the guidance in CONTRIBUTING.md
#### License Acceptance
By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.
Signed-off-by: Ziwen Ning
---
dev/bench/macOS/12/arm64/data.js | 10290 ++++++++++++++++++++++------
dev/bench/macOS/12/x86_64/data.js | 10290 ++++++++++++++++++++++------
dev/bench/macOS/13/arm64/data.js | 10290 ++++++++++++++++++++++------
dev/bench/macOS/13/x86_64/data.js | 9576 ++++++++++++++++++++------
4 files changed, 32391 insertions(+), 8055 deletions(-)
diff --git a/dev/bench/macOS/12/arm64/data.js b/dev/bench/macOS/12/arm64/data.js
index 1367461d0..6d3027ebb 100644
--- a/dev/bench/macOS/12/arm64/data.js
+++ b/dev/bench/macOS/12/arm64/data.js
@@ -1,2072 +1,8264 @@
window.BENCHMARK_DATA = {
"lastUpdate": 1688140182435,
- "repoUrl": "https://github.com/runfinch/finch",
- "entries": {
- "Finch Benchmark": [
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "325a8510c75b0b030be5ec075327ac337b7c22e5",
- "message": "ci: add benchmarking workflow (#384)\n\nhttps://github.com/runfinch/finch/issues/345\r\n\r\n*Description of changes:*\r\n\r\n*Testing done:*\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/x86_64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/x86_64/\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-04-28T18:08:29Z",
- "tree_id": "36a278e67f9282187e295ad59e2bcea15679a739",
- "url": "https://github.com/runfinch/finch/commit/325a8510c75b0b030be5ec075327ac337b7c22e5"
- },
- "date": 1682705729568,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 109376839334,
- "unit": "ns/op\t 0.2969 %cpu_avg/op\t 72.73 %cpu_peak/op\t 109.4 cpu_seconds/op\t2584264704 disk_bytes/op\t 4910336 B/op\t 103171 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24293431542,
- "unit": "ns/op\t 0.4778 %cpu_avg/op\t 40.00 %cpu_peak/op\t 24.29 cpu_seconds/op\t -81920 disk_bytes/op\t 1081120 B/op\t 23024 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 345829930,
- "unit": "ns/op\t 2.255 %cpu_avg/op\t 25.15 %cpu_peak/op\t 0.3458 cpu_seconds/op\t 0 disk_bytes/op\t 24989 B/op\t 372 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1233779833,
- "unit": "ns/op\t 0.1423 %cpu_avg/op\t 16.36 %cpu_peak/op\t 1.234 cpu_seconds/op\t 3510272 disk_bytes/op\t 62792 B/op\t 1207 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "76b31c0c453935f22588523f65888e103581cd89",
- "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.3 to 3.23.4 (#389)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.3 to 3.23.4.\r\n\r\nRelease notes
\r\nSourced from github.com/shirou/gopsutil/v3's\r\nreleases.
\r\n\r\nv3.23.4
\r\n\r\nWhat's Changed
\r\ncpu
\r\n\r\nprocess
\r\n\r\nOther Changes
\r\n\r\nNew Contributors
\r\n\r\nFull Changelog: https://github.com/shirou/gopsutil/compare/v3.23.3...v3.23.4
\r\n
\r\n \r\n\r\nCommits
\r\n\r\ndb89d12
\r\nMerge pull request #1453\r\nfrom Juneezee/refactor/errors.Is \r\n0439039
\r\nrefactor(process): compare error with errors.Is
\r\n17fac7c
\r\nMerge pull request #1450\r\nfrom gabibguti/master \r\n2d2db8f
\r\nCreate SECURITY.md \r\n10f213c
\r\nMerge pull request #1448\r\nfrom shirou/dependabot/github_actions/actions/upload... \r\nd6ee47e
\r\nchore(deps): bump actions/upload-artifact from 3.1.0 to 3.1.2 \r\ncf428f8
\r\nMerge pull request #1443\r\nfrom mmorel-35/linter \r\n755bcab
\r\nUpdate branch of sbom_generator.yml \r\n21a646b
\r\nMerge pull request #1447\r\nfrom shirou/feature/add_sbom_github_actions \r\nbcf3fe9
\r\nMerge pull request #1445\r\nfrom shirou/dependabot/go_modules/golang.org/x/sys-0... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.3&new-version=3.23.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T14:04:07-04:00",
- "tree_id": "f741032f7d876d262db9b5af37cdc5bbea24e279",
- "url": "https://github.com/runfinch/finch/commit/76b31c0c453935f22588523f65888e103581cd89"
- },
- "date": 1683137450556,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 67652219792,
- "unit": "ns/op\t 0.3621 %cpu_avg/op\t 75.86 %cpu_peak/op\t 67.65 cpu_seconds/op\t2593181696 disk_bytes/op\t 3018152 B/op\t 64139 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24123134125,
- "unit": "ns/op\t 0.4010 %cpu_avg/op\t 50.00 %cpu_peak/op\t 24.12 cpu_seconds/op\t 765952 disk_bytes/op\t 1074240 B/op\t 22854 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 353210361,
- "unit": "ns/op\t 0.5562 %cpu_avg/op\t 12.96 %cpu_peak/op\t 0.3531 cpu_seconds/op\t 0 disk_bytes/op\t 25448 B/op\t 380 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1284005208,
- "unit": "ns/op\t 0.2257 %cpu_avg/op\t 15.97 %cpu_peak/op\t 1.284 cpu_seconds/op\t 3526656 disk_bytes/op\t 65392 B/op\t 1258 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "710299445ed287c67114b277be7bd2a29715956b",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.3 (#390)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.2 to 2.9.3.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.3
\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n7a8249e
\r\nv2.9.3 \r\nc0c77b6
\r\nAdd RenderTimeline to GinkgoT() \r\n8b925ab
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183) \r\ne3795a4
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184) \r\nb453793
\r\nBump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182) \r\n73ed75b
\r\nBump actions/setup-go from 3 to 4 (#1164) \r\n0a2bc64
\r\nBump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173) \r\nf41c557
\r\nBump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174) \r\n8e423e5
\r\nBump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179) \r\n227c662
\r\nupdqte Measure deprecation message. fixes #1176 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.2&new-version=2.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T14:13:23-04:00",
- "tree_id": "5e835791535734dd48321218c7346d8ad9ec9c0b",
- "url": "https://github.com/runfinch/finch/commit/710299445ed287c67114b277be7bd2a29715956b"
- },
- "date": 1683137936209,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 69564421625,
- "unit": "ns/op\t 0.3631 %cpu_avg/op\t 60.00 %cpu_peak/op\t 69.56 cpu_seconds/op\t2582257664 disk_bytes/op\t 3088344 B/op\t 65702 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23983311875,
- "unit": "ns/op\t 0.3401 %cpu_avg/op\t 33.33 %cpu_peak/op\t 23.98 cpu_seconds/op\t -86016 disk_bytes/op\t 1067520 B/op\t 22706 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 341161180,
- "unit": "ns/op\t 0.3957 %cpu_avg/op\t 12.17 %cpu_peak/op\t 0.3411 cpu_seconds/op\t 0 disk_bytes/op\t 24669 B/op\t 366 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1287326750,
- "unit": "ns/op\t 0.3423 %cpu_avg/op\t 16.08 %cpu_peak/op\t 1.287 cpu_seconds/op\t 20320256 disk_bytes/op\t 64976 B/op\t 1257 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785",
- "message": "build(deps): Bump github.com/docker/docker from 23.0.3+incompatible to 23.0.5+incompatible (#382)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.3+incompatible to 23.0.5+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv23.0.5
\r\n23.0.5
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Add the
--all
/ -a
option when pruning\r\nvolumes. docker/cli#4229 \r\n- Add
--format=json
for docker info
. docker/cli#4320 \r\n- Fix log loss with the AWSLogs log driver. moby/moby#45350
\r\n- Fix a regression introduced in v23.0.4 where dockerd would refuse to\r\nstart if the fixed-cidr config parameter is provided but not bip. moby/moby#45403
\r\n- Fix a panic in libnetwork during daemon start moby/moby#45376
\r\n- Fix "tag" event not being sent when an image is built with\r\n
buildx
. moby/moby#45410 \r\n
\r\nPackaging Updates
\r\n\r\nv23.0.4
\r\n23.0.4
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a performance regression in Docker CLI 23.0.0 docker/cli#4141.
\r\n- Fix progress indicator on
docker cp
not functioning as\r\nintended docker/cli#4157. \r\n- Fix shell completion for
docker compose --file
docker/cli#4177. \r\n- Fix an error caused by incorrect handling of\r\n"default-address-pools" in
daemon.json
moby/moby#45246. \r\n
\r\nPackaging Updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n94d3ad6
\r\nMerge pull request #45410\r\nfrom rumpl/23.0_backport-fix-buildx-tag-events \r\n933a9f8
\r\nMerge pull request #45407\r\nfrom thaJeztah/23.0_backport_vendor_runc_1.1.5 \r\nfe0a414
\r\nUse the image service instead of the reference store for tagging \r\n1b1230e
\r\nMerge pull request #45375\r\nfrom thaJeztah/23.0_backport_bump_swarmkit \r\n1b26303
\r\nMerge pull request #45374\r\nfrom thaJeztah/23.0_backport_stfu_grpc \r\n682542f
\r\nMerge pull request #45373\r\nfrom thaJeztah/23.0_backport_assorted_test_and_pack... \r\n40ec0eb
\r\nvendor: github.com/opencontainers/runc v1.1.5 \r\n9af6762
\r\nMerge pull request #45403\r\nfrom akerouanton/23.0-cherrypick-2d31697 \r\n0b6449a
\r\nMerge pull request #45376\r\nfrom thaJeztah/23.0_backport_delete_network_more_at... \r\n227d3f3
\r\ndaemon: set docker0 subpool as the IPAM pool \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.3+incompatible&new-version=23.0.5+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T15:41:11-04:00",
- "tree_id": "1c20d3fd2834f22310254aa23e661742782dcfd8",
- "url": "https://github.com/runfinch/finch/commit/3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785"
- },
- "date": 1683143312867,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 69502275292,
- "unit": "ns/op\t 0.3440 %cpu_avg/op\t 57.14 %cpu_peak/op\t 69.50 cpu_seconds/op\t2570919936 disk_bytes/op\t 3091152 B/op\t 65779 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24002939959,
- "unit": "ns/op\t 0.5108 %cpu_avg/op\t 79.31 %cpu_peak/op\t 24.00 cpu_seconds/op\t -110592 disk_bytes/op\t 1068320 B/op\t 22710 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 349883847,
- "unit": "ns/op\t 0.7339 %cpu_avg/op\t 18.65 %cpu_peak/op\t 0.3498 cpu_seconds/op\t 0 disk_bytes/op\t 25045 B/op\t 376 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1272775250,
- "unit": "ns/op\t 0.1379 %cpu_avg/op\t 16.41 %cpu_peak/op\t 1.273 cpu_seconds/op\t 3526656 disk_bytes/op\t 64648 B/op\t 1248 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "cc679ef266c7da49e9339d69130f242d8285bc96",
- "message": "ci: remove setup-go and explicitly set shell in benchmark (#401)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nFix the workflow failure happened recently.\r\nhttps://github.com/runfinch/finch/actions/runs/4920343212/jobs/8789029862\r\n\r\n*Testing done:*\r\nIn feature branch.\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-05-16T13:59:41-07:00",
- "tree_id": "ce9148fa0e13ad776e232868257642729f8bf853",
- "url": "https://github.com/runfinch/finch/commit/cc679ef266c7da49e9339d69130f242d8285bc96"
- },
- "date": 1684271018577,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 57283590625,
- "unit": "ns/op\t 0.4241 %cpu_avg/op\t 45.45 %cpu_peak/op\t 57.28 cpu_seconds/op\t2526556160 disk_bytes/op\t 2588784 B/op\t 54370 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23862550875,
- "unit": "ns/op\t 0.4067 %cpu_avg/op\t 83.87 %cpu_peak/op\t 23.86 cpu_seconds/op\t -36864 disk_bytes/op\t 1059288 B/op\t 22517 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 349742597,
- "unit": "ns/op\t 0.5787 %cpu_avg/op\t 17.78 %cpu_peak/op\t 0.3497 cpu_seconds/op\t 139264 disk_bytes/op\t 25482 B/op\t 377 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1509731416,
- "unit": "ns/op\t 0.5939 %cpu_avg/op\t 20.78 %cpu_peak/op\t 1.510 cpu_seconds/op\t 3592192 disk_bytes/op\t 77000 B/op\t 1469 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "41898282+github-actions[bot]@users.noreply.github.com",
- "name": "github-actions[bot]",
- "username": "github-actions[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "06d86b2bc348db9f0d8d02678faee556719b883d",
- "message": "build(deps): Bump submodules (#402)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
- "timestamp": "2023-05-17T16:24:01Z",
- "tree_id": "288eddf483f6ff89d0e83c6e089da366bce0295d",
- "url": "https://github.com/runfinch/finch/commit/06d86b2bc348db9f0d8d02678faee556719b883d"
- },
- "date": 1684340881791,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 57892176750,
- "unit": "ns/op\t 0.4697 %cpu_avg/op\t 66.67 %cpu_peak/op\t 57.89 cpu_seconds/op\t2447372288 disk_bytes/op\t 2608240 B/op\t 54817 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23902704500,
- "unit": "ns/op\t 0.4103 %cpu_avg/op\t 33.33 %cpu_peak/op\t 23.90 cpu_seconds/op\t 16928768 disk_bytes/op\t 1065416 B/op\t 22658 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 376517403,
- "unit": "ns/op\t 1.118 %cpu_avg/op\t 25.04 %cpu_peak/op\t 0.3764 cpu_seconds/op\t 0 disk_bytes/op\t 26829 B/op\t 400 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1343703833,
- "unit": "ns/op\t 1.176 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.344 cpu_seconds/op\t 20402176 disk_bytes/op\t 67896 B/op\t 1308 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "05b6b2e7364036a3d30b67ad409f55526cc59ffe",
- "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 (#405)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.0 to 1.9.1.\r\n\r\nCommits
\r\n\r\nb30aa27
\r\nMerge pull request #1339\r\nfrom xieyuschen/patch-1 \r\n6acd903
\r\nMerge pull request #1376\r\nfrom ozfive/master \r\n105e63f
\r\nMerge pull request #1 from\r\nashmckenzie/ashmckenzie/fix-writer-scanner \r\nc052ba6
\r\nScan text in 64KB chunks \r\ne59b167
\r\nMerge pull request #1372\r\nfrom tommyblue/syslog_different_loglevels \r\n766cfec
\r\nThis commit fixes a potential denial of service vulnerability in\r\nlogrus.Write... \r\n70234da
\r\nAdd instructions to use different log levels for local and syslog \r\na448f82
\r\nMerge pull request #1362\r\nfrom FrancoisWagner/fix-data-race-in-hooks-test-pkg \r\nff07b25
\r\nFix data race in hooks.test package \r\nd8787af
\r\nUse text when shows the logrus output \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.0&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-17T16:59:12-07:00",
- "tree_id": "4200288d7d0b7a0007ed4d8c2a30b6f3c39a38dc",
- "url": "https://github.com/runfinch/finch/commit/05b6b2e7364036a3d30b67ad409f55526cc59ffe"
- },
- "date": 1684368404832,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 150492818125,
- "unit": "ns/op\t 0.1990 %cpu_avg/op\t 44.44 %cpu_peak/op\t 150.5 cpu_seconds/op\t2536288256 disk_bytes/op\t 6734448 B/op\t 141590 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23892339458,
- "unit": "ns/op\t 0.4646 %cpu_avg/op\t 37.50 %cpu_peak/op\t 23.89 cpu_seconds/op\t -40960 disk_bytes/op\t 1065544 B/op\t 22639 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 365686403,
- "unit": "ns/op\t 0.3470 %cpu_avg/op\t 11.57 %cpu_peak/op\t 0.3656 cpu_seconds/op\t 0 disk_bytes/op\t 26256 B/op\t 389 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1302579459,
- "unit": "ns/op\t 0.9140 %cpu_avg/op\t 30.00 %cpu_peak/op\t 1.303 cpu_seconds/op\t 20369408 disk_bytes/op\t 66272 B/op\t 1278 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "25aa324ca324248cf2093af23f205af1b5ae276f",
- "message": "build(deps): Bump github.com/docker/docker from 23.0.6+incompatible to 24.0.0+incompatible (#406)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.6+incompatible to 24.0.0+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.0
\r\n24.0.0
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nNew
\r\n\r\n- Introduce experimental support for containerd as the content store\r\n(replacing the existing storage drivers). moby/moby#43735,\r\nother\r\nmoby/moby pull requests
\r\n- The
--host
CLI flag now supports a path component in a\r\nssh://
host address, allowing use of an alternate socket\r\npath without configuration on the remote host. docker/cli#4073 \r\n- The
docker info
CLI command now reports a version and\r\nplatform field. docker/cli#4180 \r\n- Introduce the daemon flag
--default-network-opt
to\r\nconfigure options for newly created networks. moby/moby#43197 \r\n- Restrict access to
AF_VSOCK
in the\r\nsocket(2)
family of syscalls in the default seccomp\r\nprofile. moby/moby#44562 \r\n- Introduce support for setting OCI runtime annotations on containers.\r\ndocker/cli#45025,\r\nmoby/moby#45025
\r\n- Alternative runtimes can now be configured in\r\n
daemon.json
, enabling runtime names to be aliased and\r\noptions to be passed. moby/moby#45032 \r\n- The
docker-init
binary will now be discovered in\r\nFHS-compliant libexec directories, in addition to the PATH
.\r\nmoby/moby#45198 \r\n- API: Surface the daemon-level
--no-new-privileges
in\r\nGET /info
. moby/moby#45320 \r\n
\r\nRemoved
\r\n\r\ndocker info
no longer reports\r\nIndexServiceAddress
. docker/cli#4204 \r\n- libnetwork: Remove fallback code for obsolete kernel versions. moby/moby#44684,\r\nmoby/moby#44802
\r\n- libnetwork: Remove unused code related to classic Swarm. moby/moby#44965
\r\n- libnetwork: Remove usage of the
xt_u32
kernel module\r\nfrom encrypted Swarm overlay networks. moby/moby#45281 \r\n- Remove support for buildkit's deprecated
buildinfo
in\r\nfavor of standard provenance attestations. moby/moby#45097 \r\n- Remove the deprecated AUFS and legacy
overlay
storage\r\ndrivers. moby/moby#45342,\r\nmoby/moby# \r\n- Remove the deprecated
overlay2.override_kernel_check
\r\nstorage driver option. moby/moby#45368 \r\n- Remove workarounds for obsolete versions of\r\n
apparmor_parser
from the AppArmor profiles. moby/moby#45500 \r\n- API:
GET /images/json
no longer represents empty\r\nRepoTags and RepoDigests\r\nas<none>:<none>
/<none>@<none>
.\r\nEmpty arrays are be returned instead on API >= 1.43. moby/moby#45068 \r\n
\r\nDeprecated
\r\n\r\n- Deprecate the
--oom-score-adjust
daemon option. moby/moby#45315 \r\n- API: Deprecate the
VirtualSize
field in GET\r\n/images/json
and GET /images/{id}/json
. moby/moby#45346 \r\n
\r\nBug fixes and enhancements
\r\n\r\n- The
docker stack
command no longer validates the\r\nbuild
section of Compose files. docker/cli#4214 \r\n- Fix lingering healthcheck processes after timeout is reached. moby/moby#43739
\r\n- Reduce the overhead of container startup when using the\r\n
overlay2
storage driver. moby/moby#44285 \r\n- API: Handle multiple
before=
and since=
\r\nfilters in GET /images
. moby/moby#44503 \r\n- Fix numerous bugs in the embedded DNS resolver implementation used\r\nby user-defined networks. moby/moby#44664
\r\n- Add
execDuration
field to the map of event attributes.\r\nmoby/moby#45494 \r\n- Swarm-level networks can now be created with the Windows\r\n
internal
, l2bridge
, and nat
\r\ndrivers. moby/swarmkit#3121,\r\nmoby/moby#45291 \r\n
\r\nPackaging updates
\r\n\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n1331b8c
\r\nMerge pull request #45537\r\nfrom thaJeztah/24.0_backport_containerd_binary_1.7.1 \r\n907f037
\r\nupdate containerd binary to v1.7.1 \r\na5b597e
\r\nMerge pull request #45531\r\nfrom rumpl/24.0_backport_fix-empty-auth-pull \r\n8bbfa32
\r\nc8d: The authorizer needs to be set even if AuthConfig is empty \r\n807e415
\r\nMerge pull request #45526\r\nfrom laurazard/backport-classic-builder \r\n8587a1c
\r\nc8d/builder: implement cache \r\n9717369
\r\nc8d: implement classic builder \r\ned0c147
\r\nMerge pull request #45523\r\nfrom thaJeztah/24.0_backport_cleanup_reexec_inits \r\n90be9ab
\r\nMerge pull request #45525\r\nfrom thaJeztah/24.0_backport_c8d_authconfig_default \r\nd73f703
\r\nMerge pull request #45521\r\nfrom thaJeztah/24.0_backport_vendor_distribution_v2... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.6+incompatible&new-version=24.0.0+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-18T00:52:53Z",
- "tree_id": "e165710972d7cc4dd1908083cdd88af9c0f12942",
- "url": "https://github.com/runfinch/finch/commit/25aa324ca324248cf2093af23f205af1b5ae276f"
- },
- "date": 1684371492909,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 104200542500,
- "unit": "ns/op\t 0.2689 %cpu_avg/op\t 73.33 %cpu_peak/op\t 104.2 cpu_seconds/op\t2538692608 disk_bytes/op\t 4692608 B/op\t 98247 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26944161209,
- "unit": "ns/op\t 0.4205 %cpu_avg/op\t 75.00 %cpu_peak/op\t 26.94 cpu_seconds/op\t -53248 disk_bytes/op\t 1187824 B/op\t 25444 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 373913573,
- "unit": "ns/op\t 0.8965 %cpu_avg/op\t 13.75 %cpu_peak/op\t 0.3738 cpu_seconds/op\t 0 disk_bytes/op\t 26920 B/op\t 402 allocs/op",
- "extra": "4 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1286797375,
- "unit": "ns/op\t 0.7705 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.287 cpu_seconds/op\t 20369408 disk_bytes/op\t 65752 B/op\t 1267 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9",
- "message": "build(deps): Bump k8s.io/apimachinery from 0.27.1 to 0.27.2 (#407)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.1 to 0.27.2.\r\n\r\nCommits
\r\n\r\n756e222
\r\nMerge pull request #117298pohly/automated-cherry-pick-of-#117238
\r\nb1123d2
\r\nMerge pull request #117708Jefftree/automated-cherry-pick-of-#117705
\r\n4074a29
\r\nUpdate kube-openapi to fix race \r\ncc852ec
\r\napi: encode NamespacedName with lower case in JSON \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.1&new-version=0.27.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:14-07:00",
- "tree_id": "4995bf341e0dfa88b02d82d9034a40802015304b",
- "url": "https://github.com/runfinch/finch/commit/e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9"
- },
- "date": 1684775531370,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58584894625,
- "unit": "ns/op\t 0.6121 %cpu_avg/op\t 54.55 %cpu_peak/op\t 58.58 cpu_seconds/op\t2327040000 disk_bytes/op\t 2638728 B/op\t 55491 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23996039917,
- "unit": "ns/op\t 0.4782 %cpu_avg/op\t 81.82 %cpu_peak/op\t 24.00 cpu_seconds/op\t 147456 disk_bytes/op\t 1068512 B/op\t 22713 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 350279181,
- "unit": "ns/op\t 0.8477 %cpu_avg/op\t 16.93 %cpu_peak/op\t 0.3502 cpu_seconds/op\t 0 disk_bytes/op\t 25466 B/op\t 376 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1326397042,
- "unit": "ns/op\t 0.4287 %cpu_avg/op\t 22.22 %cpu_peak/op\t 1.326 cpu_seconds/op\t 3608576 disk_bytes/op\t 67904 B/op\t 1299 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb",
- "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.1 to 1.9.2 (#408)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.1 to 1.9.2.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.1&new-version=1.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:34-07:00",
- "tree_id": "f2d2b81654b4af29a2aed139fba3d507787ce928",
- "url": "https://github.com/runfinch/finch/commit/0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb"
- },
- "date": 1684775763451,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 59933345541,
- "unit": "ns/op\t 0.3749 %cpu_avg/op\t 76.67 %cpu_peak/op\t 59.93 cpu_seconds/op\t2534596608 disk_bytes/op\t 2693200 B/op\t 56742 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24068522125,
- "unit": "ns/op\t 0.3100 %cpu_avg/op\t 30.00 %cpu_peak/op\t 24.07 cpu_seconds/op\t -32768 disk_bytes/op\t 1071808 B/op\t 22806 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 365542375,
- "unit": "ns/op\t 0.4005 %cpu_avg/op\t 14.17 %cpu_peak/op\t 0.3655 cpu_seconds/op\t 0 disk_bytes/op\t 26064 B/op\t 389 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1382051208,
- "unit": "ns/op\t 0.6553 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.382 cpu_seconds/op\t 3592192 disk_bytes/op\t 68832 B/op\t 1337 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "80513c7785a6da4ae09d9c871acaf180f5d68f2c",
- "message": "build(deps): Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#409)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.6 to 1.27.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.7
\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n99a29d5
\r\nv1.27.7 \r\n05c1bc6
\r\nupdate gitignore \r\n57054d5
\r\nfix: gcustom.MakeMatcher accepts nil as actual value (#666) \r\n7cadcf6
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663) \r\nb524839
\r\nBump golang.org/x/net from 0.9.0 to 0.10.0 (#662) \r\n5f44694
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661) \r\n05dc99a
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#657) \r\n3a033d1
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#658) \r\na19238f
\r\nReplace deprecated NewGomegaWithT with NewWithT (#659) \r\n29ed041
\r\nBump golang.org/x/net from 0.8.0 to 0.9.0 (#656) \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.6&new-version=1.27.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:53-07:00",
- "tree_id": "e2fcfcda12bb1ccd87c7073b3933f3ac027af425",
- "url": "https://github.com/runfinch/finch/commit/80513c7785a6da4ae09d9c871acaf180f5d68f2c"
- },
- "date": 1684775992424,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58445375125,
- "unit": "ns/op\t 0.4268 %cpu_avg/op\t 74.19 %cpu_peak/op\t 58.45 cpu_seconds/op\t2534572032 disk_bytes/op\t 2630480 B/op\t 55325 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23888015458,
- "unit": "ns/op\t 0.4226 %cpu_avg/op\t 75.86 %cpu_peak/op\t 23.89 cpu_seconds/op\t -81920 disk_bytes/op\t 1065184 B/op\t 22645 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 360987236,
- "unit": "ns/op\t 1.067 %cpu_avg/op\t 16.90 %cpu_peak/op\t 0.3609 cpu_seconds/op\t 0 disk_bytes/op\t 25912 B/op\t 386 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1435855209,
- "unit": "ns/op\t 0.8191 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.436 cpu_seconds/op\t 3608576 disk_bytes/op\t 73952 B/op\t 1399 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "bb1cab229c787752615eb00e74f240c4a4e0e23d",
- "message": "build(deps): Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.1+incompatible (#413)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.0+incompatible to 24.0.1+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.1
\r\n24.0.1
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nRemoved
\r\n\r\n- Remove CLI completions for storage drivers removed in the 24.0 major\r\nrelease. docker/cli#4302
\r\n
\r\nBug fixes and enhancements
\r\n\r\n- Fix an issue where DNS query NXDOMAIN replies from external servers\r\nwere forwarded to the client as SERVFAIL. moby/moby#45573
\r\n- Fix an issue where
docker pull --platform
would report\r\nNo such image
regarding another tag pointing to the same\r\nimage. moby/moby#45562 \r\n- Fix an issue where insecure registry configuration would be\r\nforgotten during config reload. moby/moby#45571
\r\n- containerd-storage: Fix an issue where images which have no layers\r\nwould not be listed in
docker images -a
moby/moby#45588 \r\n- API: Fix an issue where
GET /images/{id}/json
would\r\nreturn null
instead of empty RepoTags
and\r\nRepoDigests
. moby/moby#45564 \r\n- API: Fix an issue where
POST /commit
did not accept an\r\nempty request body. moby/moby#45568 \r\n
\r\nPackaging updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n463850e
\r\nMerge pull request #45588\r\nfrom vvoland/c8d-layerless-24 \r\n47a3dad
\r\nc8d/list: Show layerless images \r\na0bc3eb
\r\nMerge pull request #45571\r\nfrom thaJeztah/24.0_backport_fix_insecure_registrie... \r\n922b6aa
\r\nMerge pull request #45568\r\nfrom corhere/backport-24.0/fix-empty-container-decode \r\n0e605cf
\r\nMerge pull request #45573\r\nfrom thaJeztah/24.0_backport_fix_dns_servfail \r\n878c417
\r\nMerge pull request #45560\r\nfrom crazy-max/24.0_backport_fix-worker-id \r\n654e80a
\r\nMerge pull request #45570\r\nfrom crazy-max/24.0_backport_ci-bin-image-distribute \r\n0869b08
\r\nlibnetwork: just forward the external DNS response \r\n3467ba6
\r\nreorder load funcs to match newServiceConfig()'s order \r\nf9b886c
\r\nadd mirror to daemon reload test for insecure registries \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.0+incompatible&new-version=24.0.1+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T17:48:50Z",
- "tree_id": "92f651eed9097478240daebf4cbf33ab7a695969",
- "url": "https://github.com/runfinch/finch/commit/bb1cab229c787752615eb00e74f240c4a4e0e23d"
- },
- "date": 1684777961658,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 59189453084,
- "unit": "ns/op\t 0.5385 %cpu_avg/op\t 83.33 %cpu_peak/op\t 59.19 cpu_seconds/op\t2560315392 disk_bytes/op\t 2667232 B/op\t 56133 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23866387334,
- "unit": "ns/op\t 0.4528 %cpu_avg/op\t 42.86 %cpu_peak/op\t 23.87 cpu_seconds/op\t -32768 disk_bytes/op\t 1062912 B/op\t 22594 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 383717430,
- "unit": "ns/op\t 0.7195 %cpu_avg/op\t 20.83 %cpu_peak/op\t 0.3837 cpu_seconds/op\t 0 disk_bytes/op\t 27112 B/op\t 407 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1392290292,
- "unit": "ns/op\t 1.248 %cpu_avg/op\t 44.44 %cpu_peak/op\t 1.392 cpu_seconds/op\t 20418560 disk_bytes/op\t 71808 B/op\t 1359 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "b83cc21e6082eeff076e035dfb4cad152fb5508c",
- "message": "ci: Finch .pkg installer builder (#416)\n\n**Description of changes:**\r\n\r\n- This PR contains the Finch .pkg builder tool.\r\n- The .pkg builder tool can be used by GitHub action to generate and\r\nnotarize macOS .pkg installer.\r\n- The old update to S3 workflow is extended with the functionality to\r\nbuild Finch, build .pkg and test .pkg. It can be used as a scheduled job\r\nfor nightly main branch build as well to detect release issue earlier\r\nbesides cut a new release.\r\n- The old release installer workflow(test installer) is removed because\r\nits scope is moved to the integrated workflow.\r\n\r\nThis is an initial tool check in, Readme and integrated workflow to\r\nchain existing workflows to upload installer to release and publish to\r\nHomebrew will come later.\r\n\r\n**Testing done:**\r\nHave tested the updated workflow and tool on this branch, and can\r\nsuccessfully generate final installer and test it.\r\nAction test ref:\r\nhttps://github.com/runfinch/finch/actions/runs/5077161329\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-26T10:40:35-07:00",
- "tree_id": "f4ee320ee326400884c15fa51a6485739e2ed39b",
- "url": "https://github.com/runfinch/finch/commit/b83cc21e6082eeff076e035dfb4cad152fb5508c"
- },
- "date": 1685123087853,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 60497675833,
- "unit": "ns/op\t 0.4498 %cpu_avg/op\t 45.45 %cpu_peak/op\t 60.50 cpu_seconds/op\t2549493760 disk_bytes/op\t 2719616 B/op\t 57360 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24076488250,
- "unit": "ns/op\t 0.3799 %cpu_avg/op\t 40.00 %cpu_peak/op\t 24.08 cpu_seconds/op\t -69632 disk_bytes/op\t 1074688 B/op\t 22856 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 369974323,
- "unit": "ns/op\t 1.033 %cpu_avg/op\t 15.42 %cpu_peak/op\t 0.3699 cpu_seconds/op\t 4096 disk_bytes/op\t 26386 B/op\t 393 allocs/op",
- "extra": "4 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1382122083,
- "unit": "ns/op\t 0.7556 %cpu_avg/op\t 46.15 %cpu_peak/op\t 1.382 cpu_seconds/op\t 20385792 disk_bytes/op\t 71304 B/op\t 1348 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "6a8ca1a559dada6ed320c9454fbc3229446a0a40",
- "message": "fix: sort volume args in DOCKER_COMPAT mode (#417)\n\nIssue #, if available:\r\nhttps://github.com/runfinch/finch/issues/418\r\n\r\n*Description of changes:*\r\nSort volume args in DOCKER_COMPAT mode\r\n\r\n*Testing done:*\r\nUnit tests and new e2e tests.\r\nhttps://github.com/runfinch/common-tests/pull/66\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-05-26T21:10:30Z",
- "tree_id": "7d92a6ddbd268a0ecf2c8acb172cadc75b283dc2",
- "url": "https://github.com/runfinch/finch/commit/6a8ca1a559dada6ed320c9454fbc3229446a0a40"
- },
- "date": 1685135676234,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58235488416,
- "unit": "ns/op\t 0.3539 %cpu_avg/op\t 50.00 %cpu_peak/op\t 58.24 cpu_seconds/op\t2539855872 disk_bytes/op\t 2629448 B/op\t 55291 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24044756334,
- "unit": "ns/op\t 0.3689 %cpu_avg/op\t 44.44 %cpu_peak/op\t 24.04 cpu_seconds/op\t 1064960 disk_bytes/op\t 1071448 B/op\t 22795 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 352734625,
- "unit": "ns/op\t 0.6700 %cpu_avg/op\t 8.466 %cpu_peak/op\t 0.3527 cpu_seconds/op\t 0 disk_bytes/op\t 25346 B/op\t 378 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1603358500,
- "unit": "ns/op\t 0.2830 %cpu_avg/op\t 15.29 %cpu_peak/op\t 1.603 cpu_seconds/op\t 3608576 disk_bytes/op\t 80992 B/op\t 1559 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0bcdd18b12b889931d3b7928eedf76c1ec9fac5a",
- "message": "ci: Rename action and set up nightly build (#421)\n\n*Description of changes:*\r\nRename the action.\r\nSet up the installer build and test every day at 9 am UTC (2 am PDT) to\r\nvalidate latest main branch.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-26T16:03:45-07:00",
- "tree_id": "ab82ce6b1d2aa83593bb648181463b6fe7840863",
- "url": "https://github.com/runfinch/finch/commit/0bcdd18b12b889931d3b7928eedf76c1ec9fac5a"
- },
- "date": 1685142471616,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 60445500208,
- "unit": "ns/op\t 0.5098 %cpu_avg/op\t 66.67 %cpu_peak/op\t 60.45 cpu_seconds/op\t2549485568 disk_bytes/op\t 2716864 B/op\t 57287 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23953767625,
- "unit": "ns/op\t 0.4160 %cpu_avg/op\t 44.44 %cpu_peak/op\t 23.95 cpu_seconds/op\t 364544 disk_bytes/op\t 1066104 B/op\t 22665 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 364310944,
- "unit": "ns/op\t 0.2778 %cpu_avg/op\t 8.333 %cpu_peak/op\t 0.3642 cpu_seconds/op\t 0 disk_bytes/op\t 25824 B/op\t 389 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1316421583,
- "unit": "ns/op\t 1.024 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.316 cpu_seconds/op\t 20402176 disk_bytes/op\t 67056 B/op\t 1297 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "ac18046e70efc0e1e9fe11a30457f6f945df2a23",
- "message": "build(deps): Bump github.com/runfinch/common-tests from 0.6.5 to 0.7.0 (#420)\n\nBumps\r\n[github.com/runfinch/common-tests](https://github.com/runfinch/common-tests)\r\nfrom 0.6.5 to 0.7.0.\r\n\r\nRelease notes
\r\nSourced from github.com/runfinch/common-tests's\r\nreleases.
\r\n\r\nv0.7.0
\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/runfinch/common-tests's\r\nchangelog.
\r\n\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n0.6.4\r\n(2023-04-06)
\r\nBug Fixes
\r\n\r\n- better handling of concurrent http servers (#57)\r\n(0ae6182)
\r\n
\r\n0.6.3\r\n(2023-03-27)
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/gomega from 1.27.2 to\r\n1.27.4 (#48)\r\n(f113e7b)
\r\n- deps: bump github.com/onsi/gomega from 1.27.4 to\r\n1.27.5 (#52)\r\n(bd056e7)
\r\n
\r\n0.6.2\r\n(2023-03-16)
\r\nBug Fixes
\r\n\r\n- Fix tests to match nerdctl 1.2.1 outputs (#50)\r\n(3d9b4f4)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.8.3 to\r\n2.8.4 (#41)\r\n(a9476c1)
\r\n- deps: bump github.com/onsi/gomega from 1.27.1 to\r\n1.27.2 (#40)\r\n(e8fc71a)
\r\n
\r\n0.6.1\r\n(2023-02-28)
\r\nBug Fixes
\r\n\r\n- Switch from
nc -l
to nginx
in run\r\n-p/--publish
test (7a6a6c3) \r\n
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\nafbbd97
\r\nchore(main): release 0.7.0 (#63) \r\n22a7f7e
\r\nfeat: Tests for bind mounts (#66) \r\n590a984
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#65) \r\nb761a7a
\r\nfeat: verify the result of finch inspect has State.Status and\r\nState.Error (#64) \r\n72120b5
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.5 to 1.27.6 (#54) \r\n0bd0901
\r\nbuild(deps): bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.5 (#62) \r\n882cd1e
\r\ntest: Functional test for PS command (#17) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/runfinch/common-tests&package-manager=go_modules&previous-version=0.6.5&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-26T16:30:20-07:00",
- "tree_id": "5e6cfb42519bed0dde2505d4b43e33fd56d4cb40",
- "url": "https://github.com/runfinch/finch/commit/ac18046e70efc0e1e9fe11a30457f6f945df2a23"
- },
- "date": 1685144060833,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 60827582042,
- "unit": "ns/op\t 0.4192 %cpu_avg/op\t 44.44 %cpu_peak/op\t 60.83 cpu_seconds/op\t2463260672 disk_bytes/op\t 2734632 B/op\t 57697 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23983460834,
- "unit": "ns/op\t 0.4778 %cpu_avg/op\t 40.00 %cpu_peak/op\t 23.98 cpu_seconds/op\t 397312 disk_bytes/op\t 1071016 B/op\t 22754 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 352366708,
- "unit": "ns/op\t 1.209 %cpu_avg/op\t 16.93 %cpu_peak/op\t 0.3523 cpu_seconds/op\t 0 disk_bytes/op\t 25341 B/op\t 379 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1393570708,
- "unit": "ns/op\t 0.9706 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.394 cpu_seconds/op\t 3641344 disk_bytes/op\t 71856 B/op\t 1359 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "f67ff9668457057514a351819cdc75fb8c6b2d46",
- "message": "ci: Add release automation action (#424)\n\n*Description of changes:*\r\nThis PR added a new passive action subscribe to main branch new tag\r\ncreation.\r\nNew tag creation means Finch has a new release, the new workflow will\r\ntrigger build pkg, upload pkg and homebrew release on the latest tag.\r\n\r\n*Testing done:*\r\nThis is a new action and has cross branch/tag involved, needs some\r\nexperiment on main branch after check in.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-29T11:41:28-07:00",
- "tree_id": "4e53e8ed0bd63d943da86e7680d75e44738efbcb",
- "url": "https://github.com/runfinch/finch/commit/f67ff9668457057514a351819cdc75fb8c6b2d46"
- },
- "date": 1685385936628,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58086831958,
- "unit": "ns/op\t 0.4109 %cpu_avg/op\t 77.42 %cpu_peak/op\t 58.09 cpu_seconds/op\t2559356928 disk_bytes/op\t 2618896 B/op\t 55047 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23974785750,
- "unit": "ns/op\t 0.4805 %cpu_avg/op\t 55.56 %cpu_peak/op\t 23.97 cpu_seconds/op\t 110592 disk_bytes/op\t 1068024 B/op\t 22705 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 350877403,
- "unit": "ns/op\t 1.286 %cpu_avg/op\t 20.83 %cpu_peak/op\t 0.3508 cpu_seconds/op\t 0 disk_bytes/op\t 25472 B/op\t 376 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1382681458,
- "unit": "ns/op\t 0.9243 %cpu_avg/op\t 30.00 %cpu_peak/op\t 1.383 cpu_seconds/op\t 3608576 disk_bytes/op\t 72160 B/op\t 1359 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "c4c23a95a139a21cc7208071e3c3b688389f6071",
- "message": "ci: Upload dependency source code along with the installers (#426)\n\n*Description of changes:*\r\nCurrently we need to upload the dependency source code manually.\r\nMake this along with the installer upload.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-29T18:22:38-07:00",
- "tree_id": "e65c4af30a6b25e4a09ab3d7849c3b667d9212b8",
- "url": "https://github.com/runfinch/finch/commit/c4c23a95a139a21cc7208071e3c3b688389f6071"
- },
- "date": 1685410006261,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58160629583,
- "unit": "ns/op\t 0.4460 %cpu_avg/op\t 45.45 %cpu_peak/op\t 58.16 cpu_seconds/op\t2555277312 disk_bytes/op\t 2623840 B/op\t 55161 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23993709958,
- "unit": "ns/op\t 0.4244 %cpu_avg/op\t 54.55 %cpu_peak/op\t 23.99 cpu_seconds/op\t -36864 disk_bytes/op\t 1068904 B/op\t 22736 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 389470403,
- "unit": "ns/op\t 0.9169 %cpu_avg/op\t 17.41 %cpu_peak/op\t 0.3894 cpu_seconds/op\t 0 disk_bytes/op\t 27218 B/op\t 413 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1372505667,
- "unit": "ns/op\t 1.432 %cpu_avg/op\t 85.71 %cpu_peak/op\t 1.372 cpu_seconds/op\t 20385792 disk_bytes/op\t 69248 B/op\t 1338 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "d933d11373c4c9a94137dfad78a8542d2c7be327",
- "message": "ci: Integrate existing workflows into release-automation (#430)\n\n*Description of changes:*\r\nReuse existing workflows to release-automation.\r\nAdded input param to reuse workflow.\r\nRollout only build & test installer as initial.\r\n\r\n*Testing done:*\r\nHave tested the action in this branch\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-30T16:44:42-07:00",
- "tree_id": "87f62fce80fd69e8450d0621c833ac32529c621e",
- "url": "https://github.com/runfinch/finch/commit/d933d11373c4c9a94137dfad78a8542d2c7be327"
- },
- "date": 1685490527543,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 60424135250,
- "unit": "ns/op\t 0.4092 %cpu_avg/op\t 60.00 %cpu_peak/op\t 60.42 cpu_seconds/op\t2541797376 disk_bytes/op\t 2712984 B/op\t 57189 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23942760000,
- "unit": "ns/op\t 0.4236 %cpu_avg/op\t 83.33 %cpu_peak/op\t 23.94 cpu_seconds/op\t 475136 disk_bytes/op\t 1066040 B/op\t 22663 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 343516819,
- "unit": "ns/op\t 0.7783 %cpu_avg/op\t 13.10 %cpu_peak/op\t 0.3435 cpu_seconds/op\t 0 disk_bytes/op\t 25317 B/op\t 369 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1323526500,
- "unit": "ns/op\t 0.5398 %cpu_avg/op\t 16.05 %cpu_peak/op\t 1.323 cpu_seconds/op\t 3608576 disk_bytes/op\t 67056 B/op\t 1297 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "d08952e8b257a74d6d6a6f9da8949d3fd748ab23",
- "message": "ci: Integrate the other workflows into release-automation (#431)\n\n*Description of changes:*\r\nEnabled the rest workflow for release automation.\r\nCheck in before next release after it is validated.\r\nAfter this PR is checked in, release-please PR merge will automatically\r\ntrigger installer build, test, upload installers and dependency source\r\ncode to release and cut Homebrew PR.\r\n\r\n*Testing done:*\r\nWait next release\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-31T09:55:51-07:00",
- "tree_id": "0d7b69664ef0d583147c2b84c591c63f802cdf43",
- "url": "https://github.com/runfinch/finch/commit/d08952e8b257a74d6d6a6f9da8949d3fd748ab23"
- },
- "date": 1685552409273,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 64000806417,
- "unit": "ns/op\t 0.3944 %cpu_avg/op\t 80.00 %cpu_peak/op\t 64.00 cpu_seconds/op\t2570571776 disk_bytes/op\t 2864384 B/op\t 60628 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24004957333,
- "unit": "ns/op\t 0.4239 %cpu_avg/op\t 50.00 %cpu_peak/op\t 24.00 cpu_seconds/op\t -73728 disk_bytes/op\t 1068296 B/op\t 22699 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 338035722,
- "unit": "ns/op\t 0.9106 %cpu_avg/op\t 17.41 %cpu_peak/op\t 0.3380 cpu_seconds/op\t 1365 disk_bytes/op\t 24608 B/op\t 362 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1472173500,
- "unit": "ns/op\t 0.3162 %cpu_avg/op\t 15.69 %cpu_peak/op\t 1.472 cpu_seconds/op\t 3624960 disk_bytes/op\t 75792 B/op\t 1440 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "6a67f0cfb0a3a1da438779f4faa04048f25d7dde",
- "message": "build(deps): Bump github.com/lima-vm/lima from 0.15.1 to 0.16.0 (#428)\n\nBumps [github.com/lima-vm/lima](https://github.com/lima-vm/lima) from\r\n0.15.1 to 0.16.0.\r\n\r\nRelease notes
\r\nSourced from github.com/lima-vm/lima's\r\nreleases.
\r\n\r\nv0.16.0
\r\nThis release adds an experimental support for the user-v2
\r\nnetwork driver: limactl\r\nstart template://experimental/net-user-v2
.\r\nThe user-v2
network driver enables VM-to-VM networking\r\nwithout the root privilege on the host.\r\nThis should be useful for simulating multi-node Kubernetes clusters on a\r\nlaptop.
\r\nThis release also fixes a relatively minor vulnerability CVE-2023-32684.\r\nThis vulnerability is very unlikely to be exploitable as long\r\nas you are using the official templates of Lima.
\r\nChanges
\r\n\r\nlimactl
CLI:\r\n\r\n- (Experimental) Add
limactl snapshot\r\n(apply|create|delete|list)
commands (#1054,\r\nthanks to @afbjorklund
) \r\n- Escape only the value of env variables in
limactl shell
\r\n(#1501,\r\nthanks to @sam-berning
) \r\n
\r\n \r\n- YAML:\r\n\r\n
\r\n- Documents:\r\n\r\n
\r\n- Network:\r\n
\r\n- (Experimental) Add
user-v2
\r\nnetwork driver to enable VM-to-VM networking without root (#1383,\r\nthanks to @balajiv113
) \r\n
\r\n \r\n- nerdctl:\r\n\r\n
\r\n- Templates:\r\n
\r\n- AlmaLinux: update to 9.2 (#1550)
\r\n- Alpine: update to 3.18 and fix Rosetta support (#1560,\r\n#1580,\r\nthanks to
@jandubois
) \r\n- Arch Linux: update to 20230515.150700 (#1550)
\r\n- Fedora: update to 38 (#1502,\r\nthanks to
@cpach
) \r\n- Nomad: update to v0.9.4 (#1552)
\r\n- Rocky Linux: update to 9.2 and 8.8 (#1550,\r\n#1591)
\r\n- Ubuntu: update to 23.04 (#1550)
\r\n
\r\n \r\n- Misc:\r\n
\r\n- Improve disk efficiency (#1411)\r\nfor caches (#1544)
\r\n
\r\n \r\n
\r\nFull changes: https://github.com/lima-vm/lima/milestone/34?closed=1\r\nThanks to @afbjorklund
@balajiv113
@bumpsoo063
@cpach
@jandubois
@pendo324
@sam-berning
\r\nUsage
\r\n[macOS]$ limactl start\r\n...\r\nINFO[0029] READY. Run `lima` to open the shell.\r\n[macOS]$ lima uname\r\nLinux\r\n
\r\n
\r\nThe binaries were built automatically on GitHub Actions.\r\nThe build log is available for 90 days: https://github.com/lima-vm/lima/actions/runs/5118006806
\r\nThe sha256sum of the SHA256SUMS file itself is\r\n2062c42688128dca55331fc1a8f4841cbf41ed9dd11867d48decdf6880afde87
\r\n.
\r\n\r\n\r\n\r\nCommits
\r\n\r\n01dbd4d
\r\nMerge pull request from GHSA-f7qw-jj9c-rpq9 \r\nbc1bdb8
\r\nProhibit using a differential disk as a base disk \r\nbfa5bab
\r\nqemu: explicitly pass the basedisk format to QEMU \r\nefe1c47
\r\npkg/qemu/imgutil: add Info fields \r\n3dbc08c
\r\nMerge pull request #1592\r\nfrom afbjorklund/man-prefix \r\n703d69f
\r\nRemove the build directories from the manpages \r\ne7aa4ff
\r\nMerge pull request #1591\r\nfrom AkihiroSuda/dev \r\nb9ea964
\r\nMerge pull request #1590\r\nfrom balajiv113/usernet-default \r\n5656d1a
\r\ntemplates: update Rocky Linux to 8.8 \r\n5c0955d
\r\ntemplates: update CentOS Stream 9 to 20230523.0 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/lima-vm/lima&package-manager=go_modules&previous-version=0.15.1&new-version=0.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-31T10:22:24-07:00",
- "tree_id": "556e3a36fb0bb31a7a51202de5d9db3ef55c2b48",
- "url": "https://github.com/runfinch/finch/commit/6a67f0cfb0a3a1da438779f4faa04048f25d7dde"
- },
- "date": 1685554014744,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 87142543167,
- "unit": "ns/op\t 0.3439 %cpu_avg/op\t 60.00 %cpu_peak/op\t 87.14 cpu_seconds/op\t2562846720 disk_bytes/op\t 3893736 B/op\t 82297 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23916208500,
- "unit": "ns/op\t 0.3212 %cpu_avg/op\t 75.00 %cpu_peak/op\t 23.92 cpu_seconds/op\t 16740352 disk_bytes/op\t 1066424 B/op\t 22653 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 344664472,
- "unit": "ns/op\t 1.176 %cpu_avg/op\t 13.70 %cpu_peak/op\t 0.3446 cpu_seconds/op\t 0 disk_bytes/op\t 25178 B/op\t 369 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1432082041,
- "unit": "ns/op\t 0.3115 %cpu_avg/op\t 15.75 %cpu_peak/op\t 1.432 cpu_seconds/op\t 20410368 disk_bytes/op\t 73920 B/op\t 1399 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "vsiravara@gmail.com",
- "name": "Vishwas Siravara",
- "username": "vsiravar"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9",
- "message": "ci: Manually update submodule and add cleanup (#434)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\n\r\n- Add clean up in ci for finch version command\r\n- Add submodule updates to finch core\r\n\r\n*Testing done:*\r\n\r\nYes\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
- "timestamp": "2023-05-31T14:02:33-07:00",
- "tree_id": "c0224254ae7d46efe2947ff93511a51659565aaa",
- "url": "https://github.com/runfinch/finch/commit/7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9"
- },
- "date": 1685567776862,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 60752686833,
- "unit": "ns/op\t 0.4609 %cpu_avg/op\t 50.00 %cpu_peak/op\t 60.75 cpu_seconds/op\t2545029120 disk_bytes/op\t 2727768 B/op\t 57539 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23963708625,
- "unit": "ns/op\t 0.3698 %cpu_avg/op\t 36.36 %cpu_peak/op\t 23.96 cpu_seconds/op\t -32768 disk_bytes/op\t 1066744 B/op\t 22678 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 335519917,
- "unit": "ns/op\t 1.454 %cpu_avg/op\t 23.89 %cpu_peak/op\t 0.3355 cpu_seconds/op\t 0 disk_bytes/op\t 24413 B/op\t 358 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1395882959,
- "unit": "ns/op\t 1.447 %cpu_avg/op\t 40.00 %cpu_peak/op\t 1.396 cpu_seconds/op\t 20402176 disk_bytes/op\t 72168 B/op\t 1368 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "1c09471be3b9d214e4a4ef805980588f6e322b68",
- "message": "ci: Add git clean before build and test (#435)\n\n*Description of changes:*\r\nIt append .modified postfix when build or test.\r\nAdd git clean to remove the dirty state.\r\nAdd git status to log when it happens\r\n\r\n*Testing done:*\r\nTODO with this current run.\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-31T15:47:26-07:00",
- "tree_id": "d93daef2907cf471ae341cb360413598172833f1",
- "url": "https://github.com/runfinch/finch/commit/1c09471be3b9d214e4a4ef805980588f6e322b68"
- },
- "date": 1685573492842,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 60223110917,
- "unit": "ns/op\t 0.3976 %cpu_avg/op\t 45.45 %cpu_peak/op\t 60.22 cpu_seconds/op\t2561814528 disk_bytes/op\t 2703112 B/op\t 56957 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23942669166,
- "unit": "ns/op\t 0.3113 %cpu_avg/op\t 86.11 %cpu_peak/op\t 23.94 cpu_seconds/op\t -77824 disk_bytes/op\t 1066608 B/op\t 22672 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 352158875,
- "unit": "ns/op\t 1.257 %cpu_avg/op\t 18.33 %cpu_peak/op\t 0.3521 cpu_seconds/op\t 0 disk_bytes/op\t 25472 B/op\t 376 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1422143333,
- "unit": "ns/op\t 0.6647 %cpu_avg/op\t 22.22 %cpu_peak/op\t 1.422 cpu_seconds/op\t 20385792 disk_bytes/op\t 73480 B/op\t 1389 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "repoUrl": "https://github.com/runfinch/finch",
+ "entries": {
+ "Finch Benchmark": [
+ {
+ "commit": {
+ "author": {
+ "email": "ningziwe@amazon.com",
+ "name": "Ziwen Ning",
+ "username": "ningziwen"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "325a8510c75b0b030be5ec075327ac337b7c22e5",
+ "message": "ci: add benchmarking workflow (#384)\n\nhttps://github.com/runfinch/finch/issues/345\r\n\r\n*Description of changes:*\r\n\r\n*Testing done:*\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/x86_64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/x86_64/\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
+ "timestamp": "2023-04-28T18:08:29Z",
+ "tree_id": "36a278e67f9282187e295ad59e2bcea15679a739",
+ "url": "https://github.com/runfinch/finch/commit/325a8510c75b0b030be5ec075327ac337b7c22e5"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "975c4ee42c1529673a51382c62c4096dc663f80a",
- "message": "fix: Stop lima process in postinstall and uninstall (#438)\n\n*Description of changes:*\r\nUnstopped lima process can prevent new installation and finch vm init\r\nsuccessfully.\r\nAdd kill limactl to post-installation and uninstall script to fix the\r\nissue.\r\n\r\n*Testing done:*\r\nTested locally.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-06-01T14:49:30-07:00",
- "tree_id": "3aac93a3e14d71a61ea11cc9f58d98df0cd2d549",
- "url": "https://github.com/runfinch/finch/commit/975c4ee42c1529673a51382c62c4096dc663f80a"
- },
- "date": 1685656418329,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58834885375,
- "unit": "ns/op\t 0.5602 %cpu_avg/op\t 83.33 %cpu_peak/op\t 58.83 cpu_seconds/op\t1985929216 disk_bytes/op\t 2653072 B/op\t 55846 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24013196417,
- "unit": "ns/op\t 0.4365 %cpu_avg/op\t 37.50 %cpu_peak/op\t 24.01 cpu_seconds/op\t -8192 disk_bytes/op\t 1069952 B/op\t 22753 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 347656153,
- "unit": "ns/op\t 0.9497 %cpu_avg/op\t 18.52 %cpu_peak/op\t 0.3476 cpu_seconds/op\t 0 disk_bytes/op\t 25325 B/op\t 372 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1555816000,
- "unit": "ns/op\t 0.6151 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.556 cpu_seconds/op\t 3624960 disk_bytes/op\t 77936 B/op\t 1498 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1682705729568,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 109376839334,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2969",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "72.73",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "109.4",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2584264704",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "4910336",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "103171",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24293431542,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4778",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.29",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-81920",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1081120",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "23024",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 345829930,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "2.255",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "25.15",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3458",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "24989",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "372",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1233779833,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.1423",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.234",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3510272",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "62792",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1207",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "76b31c0c453935f22588523f65888e103581cd89",
+ "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.3 to 3.23.4 (#389)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.3 to 3.23.4.\r\n\r\nRelease notes
\r\nSourced from github.com/shirou/gopsutil/v3's\r\nreleases.
\r\n\r\nv3.23.4
\r\n\r\nWhat's Changed
\r\ncpu
\r\n\r\nprocess
\r\n\r\nOther Changes
\r\n\r\nNew Contributors
\r\n\r\nFull Changelog: https://github.com/shirou/gopsutil/compare/v3.23.3...v3.23.4
\r\n
\r\n \r\n\r\nCommits
\r\n\r\ndb89d12
\r\nMerge pull request #1453\r\nfrom Juneezee/refactor/errors.Is \r\n0439039
\r\nrefactor(process): compare error with errors.Is
\r\n17fac7c
\r\nMerge pull request #1450\r\nfrom gabibguti/master \r\n2d2db8f
\r\nCreate SECURITY.md \r\n10f213c
\r\nMerge pull request #1448\r\nfrom shirou/dependabot/github_actions/actions/upload... \r\nd6ee47e
\r\nchore(deps): bump actions/upload-artifact from 3.1.0 to 3.1.2 \r\ncf428f8
\r\nMerge pull request #1443\r\nfrom mmorel-35/linter \r\n755bcab
\r\nUpdate branch of sbom_generator.yml \r\n21a646b
\r\nMerge pull request #1447\r\nfrom shirou/feature/add_sbom_github_actions \r\nbcf3fe9
\r\nMerge pull request #1445\r\nfrom shirou/dependabot/go_modules/golang.org/x/sys-0... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.3&new-version=3.23.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-03T14:04:07-04:00",
+ "tree_id": "f741032f7d876d262db9b5af37cdc5bbea24e279",
+ "url": "https://github.com/runfinch/finch/commit/76b31c0c453935f22588523f65888e103581cd89"
},
- {
- "commit": {
- "author": {
- "email": "41898282+github-actions[bot]@users.noreply.github.com",
- "name": "github-actions[bot]",
- "username": "github-actions[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "e9551b50010deb43ad26dcd3671ec2f246e84ed6",
- "message": "build(deps): Bump submodules (#439)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
- "timestamp": "2023-06-01T17:08:31-07:00",
- "tree_id": "1d44ab428cafa8801c73cf50dbe39a71ea5aa9bb",
- "url": "https://github.com/runfinch/finch/commit/e9551b50010deb43ad26dcd3671ec2f246e84ed6"
- },
- "date": 1685664758992,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 62292406500,
- "unit": "ns/op\t 0.4920 %cpu_avg/op\t 82.76 %cpu_peak/op\t 62.29 cpu_seconds/op\t2842189824 disk_bytes/op\t 2793232 B/op\t 59024 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24054246458,
- "unit": "ns/op\t 0.4095 %cpu_avg/op\t 33.33 %cpu_peak/op\t 24.05 cpu_seconds/op\t 36864 disk_bytes/op\t 1072776 B/op\t 22803 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 365775264,
- "unit": "ns/op\t 0.3846 %cpu_avg/op\t 12.50 %cpu_peak/op\t 0.3657 cpu_seconds/op\t 0 disk_bytes/op\t 26256 B/op\t 390 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1469184125,
- "unit": "ns/op\t 0.5555 %cpu_avg/op\t 22.22 %cpu_peak/op\t 1.469 cpu_seconds/op\t 20385792 disk_bytes/op\t 74824 B/op\t 1428 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1683137450556,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 67652219792,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3621",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "75.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "67.65",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2593181696",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3018152",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "64139",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24123134125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4010",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.12",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "765952",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1074240",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22854",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 353210361,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5562",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.96",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3531",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25448",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "380",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1284005208,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2257",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "15.97",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.284",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3526656",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "65392",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1258",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "710299445ed287c67114b277be7bd2a29715956b",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.3 (#390)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.2 to 2.9.3.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.3
\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n7a8249e
\r\nv2.9.3 \r\nc0c77b6
\r\nAdd RenderTimeline to GinkgoT() \r\n8b925ab
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183) \r\ne3795a4
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184) \r\nb453793
\r\nBump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182) \r\n73ed75b
\r\nBump actions/setup-go from 3 to 4 (#1164) \r\n0a2bc64
\r\nBump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173) \r\nf41c557
\r\nBump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174) \r\n8e423e5
\r\nBump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179) \r\n227c662
\r\nupdqte Measure deprecation message. fixes #1176 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.2&new-version=2.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-03T14:13:23-04:00",
+ "tree_id": "5e835791535734dd48321218c7346d8ad9ec9c0b",
+ "url": "https://github.com/runfinch/finch/commit/710299445ed287c67114b277be7bd2a29715956b"
},
- {
- "commit": {
- "author": {
- "email": "vsiravara@gmail.com",
- "name": "Vishwas Siravara",
- "username": "vsiravar"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0aa4c5cc36c4d44e431a8c13004607990bdb2bf4",
- "message": "ci: Update lima download url (#440)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nLIMA_URL in `finch` is stale\r\nhttps://github.com/runfinch/finch/blob/main/Makefile#L38. Keeping it\r\nconsistent with finch-core.\r\n*Testing done:*\r\n\r\nLocally. \r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
- "timestamp": "2023-06-01T17:50:59-07:00",
- "tree_id": "92182604e47f2ec0133a0b2a79ec61950bc73185",
- "url": "https://github.com/runfinch/finch/commit/0aa4c5cc36c4d44e431a8c13004607990bdb2bf4"
- },
- "date": 1685667298767,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 60517807125,
- "unit": "ns/op\t 0.4173 %cpu_avg/op\t 45.45 %cpu_peak/op\t 60.52 cpu_seconds/op\t2203906048 disk_bytes/op\t 2722776 B/op\t 57431 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24103269792,
- "unit": "ns/op\t 0.3754 %cpu_avg/op\t 33.33 %cpu_peak/op\t 24.10 cpu_seconds/op\t 17182720 disk_bytes/op\t 1070224 B/op\t 22740 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 347204375,
- "unit": "ns/op\t 1.117 %cpu_avg/op\t 15.83 %cpu_peak/op\t 0.3471 cpu_seconds/op\t 0 disk_bytes/op\t 25160 B/op\t 370 allocs/op",
- "extra": "4 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1418246792,
- "unit": "ns/op\t 0.3990 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.418 cpu_seconds/op\t 20385792 disk_bytes/op\t 73048 B/op\t 1388 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1683137936209,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 69564421625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3631",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "60.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "69.56",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2582257664",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3088344",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "65702",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23983311875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3401",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.98",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-86016",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1067520",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22706",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 341161180,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3957",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.17",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3411",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "24669",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "366",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1287326750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3423",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.08",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.287",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20320256",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "64976",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1257",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785",
+ "message": "build(deps): Bump github.com/docker/docker from 23.0.3+incompatible to 23.0.5+incompatible (#382)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.3+incompatible to 23.0.5+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv23.0.5
\r\n23.0.5
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Add the
--all
/ -a
option when pruning\r\nvolumes. docker/cli#4229 \r\n- Add
--format=json
for docker info
. docker/cli#4320 \r\n- Fix log loss with the AWSLogs log driver. moby/moby#45350
\r\n- Fix a regression introduced in v23.0.4 where dockerd would refuse to\r\nstart if the fixed-cidr config parameter is provided but not bip. moby/moby#45403
\r\n- Fix a panic in libnetwork during daemon start moby/moby#45376
\r\n- Fix "tag" event not being sent when an image is built with\r\n
buildx
. moby/moby#45410 \r\n
\r\nPackaging Updates
\r\n\r\nv23.0.4
\r\n23.0.4
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a performance regression in Docker CLI 23.0.0 docker/cli#4141.
\r\n- Fix progress indicator on
docker cp
not functioning as\r\nintended docker/cli#4157. \r\n- Fix shell completion for
docker compose --file
docker/cli#4177. \r\n- Fix an error caused by incorrect handling of\r\n"default-address-pools" in
daemon.json
moby/moby#45246. \r\n
\r\nPackaging Updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n94d3ad6
\r\nMerge pull request #45410\r\nfrom rumpl/23.0_backport-fix-buildx-tag-events \r\n933a9f8
\r\nMerge pull request #45407\r\nfrom thaJeztah/23.0_backport_vendor_runc_1.1.5 \r\nfe0a414
\r\nUse the image service instead of the reference store for tagging \r\n1b1230e
\r\nMerge pull request #45375\r\nfrom thaJeztah/23.0_backport_bump_swarmkit \r\n1b26303
\r\nMerge pull request #45374\r\nfrom thaJeztah/23.0_backport_stfu_grpc \r\n682542f
\r\nMerge pull request #45373\r\nfrom thaJeztah/23.0_backport_assorted_test_and_pack... \r\n40ec0eb
\r\nvendor: github.com/opencontainers/runc v1.1.5 \r\n9af6762
\r\nMerge pull request #45403\r\nfrom akerouanton/23.0-cherrypick-2d31697 \r\n0b6449a
\r\nMerge pull request #45376\r\nfrom thaJeztah/23.0_backport_delete_network_more_at... \r\n227d3f3
\r\ndaemon: set docker0 subpool as the IPAM pool \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.3+incompatible&new-version=23.0.5+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-03T15:41:11-04:00",
+ "tree_id": "1c20d3fd2834f22310254aa23e661742782dcfd8",
+ "url": "https://github.com/runfinch/finch/commit/3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "7660d08f4e9e93468d0495aeafa2cf2de302227e",
- "message": "ci: Preserve link when copy from build (#441)\n\n*Description of changes:*\r\nAdd 'p' flag to preserve original symbolic link when copying the build\r\nartifact\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
- "timestamp": "2023-06-01T17:53:28-07:00",
- "tree_id": "4fdbf68f34050cd3f3b5126a3b4960af6cf63267",
- "url": "https://github.com/runfinch/finch/commit/7660d08f4e9e93468d0495aeafa2cf2de302227e"
- },
- "date": 1685667521916,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 56693100125,
- "unit": "ns/op\t 0.4240 %cpu_avg/op\t 64.71 %cpu_peak/op\t 56.69 cpu_seconds/op\t1974378496 disk_bytes/op\t 2556992 B/op\t 53657 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24047270625,
- "unit": "ns/op\t 0.3590 %cpu_avg/op\t 37.50 %cpu_peak/op\t 24.05 cpu_seconds/op\t 200704 disk_bytes/op\t 1069528 B/op\t 22744 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 360024959,
- "unit": "ns/op\t 0.3540 %cpu_avg/op\t 11.57 %cpu_peak/op\t 0.3599 cpu_seconds/op\t 5461 disk_bytes/op\t 25562 B/op\t 383 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1457617750,
- "unit": "ns/op\t 0.6192 %cpu_avg/op\t 20.00 %cpu_peak/op\t 1.458 cpu_seconds/op\t 20389888 disk_bytes/op\t 75672 B/op\t 1430 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1683143312867,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 69502275292,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3440",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "57.14",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "69.50",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2570919936",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3091152",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "65779",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24002939959,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5108",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "79.31",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-110592",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1068320",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22710",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 349883847,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.7339",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.65",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3498",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25045",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "376",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1272775250,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.1379",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.41",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.273",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3526656",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "64648",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1248",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "ningziwe@amazon.com",
+ "name": "Ziwen Ning",
+ "username": "ningziwen"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "cc679ef266c7da49e9339d69130f242d8285bc96",
+ "message": "ci: remove setup-go and explicitly set shell in benchmark (#401)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nFix the workflow failure happened recently.\r\nhttps://github.com/runfinch/finch/actions/runs/4920343212/jobs/8789029862\r\n\r\n*Testing done:*\r\nIn feature branch.\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
+ "timestamp": "2023-05-16T13:59:41-07:00",
+ "tree_id": "ce9148fa0e13ad776e232868257642729f8bf853",
+ "url": "https://github.com/runfinch/finch/commit/cc679ef266c7da49e9339d69130f242d8285bc96"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "5f626bd8b7a021c95595aade5b34d7076968b88b",
- "message": "ci: Change -rp to capital (#442)\n\n*Description of changes:*\r\nChange p to capital case\r\n\r\n*Testing done:*\r\nTested with the runner\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
- "timestamp": "2023-06-01T18:10:52-07:00",
- "tree_id": "3738d19bf5c514ac962bb1ff576dcedec89e59b8",
- "url": "https://github.com/runfinch/finch/commit/5f626bd8b7a021c95595aade5b34d7076968b88b"
- },
- "date": 1685668718136,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58062300916,
- "unit": "ns/op\t 0.4372 %cpu_avg/op\t 83.33 %cpu_peak/op\t 58.06 cpu_seconds/op\t1947766784 disk_bytes/op\t 2619728 B/op\t 55073 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24126786959,
- "unit": "ns/op\t 0.3860 %cpu_avg/op\t 30.77 %cpu_peak/op\t 24.13 cpu_seconds/op\t 139264 disk_bytes/op\t 1074704 B/op\t 22866 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 351399431,
- "unit": "ns/op\t 1.218 %cpu_avg/op\t 23.38 %cpu_peak/op\t 0.3513 cpu_seconds/op\t 0 disk_bytes/op\t 25178 B/op\t 375 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1402068250,
- "unit": "ns/op\t 0.6067 %cpu_avg/op\t 28.57 %cpu_peak/op\t 1.402 cpu_seconds/op\t 20385792 disk_bytes/op\t 72216 B/op\t 1368 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1684271018577,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 57283590625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4241",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "57.28",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2526556160",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2588784",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "54370",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23862550875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4067",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "83.87",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.86",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-36864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1059288",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22517",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 349742597,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5787",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "17.78",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3497",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "139264",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25482",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "377",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1509731416,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5939",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "20.78",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.510",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3592192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "77000",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1469",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "41898282+github-actions[bot]@users.noreply.github.com",
+ "name": "github-actions[bot]",
+ "username": "github-actions[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "06d86b2bc348db9f0d8d02678faee556719b883d",
+ "message": "build(deps): Bump submodules (#402)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
+ "timestamp": "2023-05-17T16:24:01Z",
+ "tree_id": "288eddf483f6ff89d0e83c6e089da366bce0295d",
+ "url": "https://github.com/runfinch/finch/commit/06d86b2bc348db9f0d8d02678faee556719b883d"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "b192874e2b1c5de1c2148813760cbe65e15d7553",
- "message": "build(deps): Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#443)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.1\r\nto 0.9.3.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.9.3
\r\nMove fast and fix things...golang/go#54395
\r\nAs always, thank you for filing issues!
\r\ngopls/v0.9.2
\r\nThis release contains many bug fixes, particularly related to\r\nproblems that would require restarting gopls.
\r\nNote about network usage: among these fixes was a\r\nchange to allow network usage when reloading the workspace. Reloading\r\noccurs when a go.mod
, go.sum
, or\r\ngo.work
file changes on disk. In the past, gopls would only\r\nallow network during the first workspace load. This resulted in\r\nconfusing behavior when, for example, a new dependency is added to a\r\ngo.mod
file and gopls could not load it, but loading\r\nsucceeded on restart. See #54069 for more details.
\r\nConfiguration changes
\r\ndirectoryFilters at arbitrary depth
\r\nThe "directoryFilters"
\r\nsetting now supports excluding directories at arbitrary depth, using the\r\n**
operator. (note that for v0.9.2, the default value for\r\nthis setting is still ["-node_modules]"
. In the\r\nnext release, this will change to\r\n["-**/node_modules"]
).
\r\nBug fixes and Performance improvements...
\r\nThis release contains the following notable bug fixes / performance\r\nimprovements:
\r\n\r\n- Additional change optimization - Following up on\r\nthe work to optimize change processing from the v0.9.0\r\nrelease, this release contains additional optimizations that result\r\nin around 50% faster change processing (measured via edits in the\r\nKubernetes repo).
\r\n- Fix for a long-standing memory leak - #53780 fixed a long-standing bug\r\nthat caused gopls to hold on to its initial state, gradually leaking\r\nmemory as state changed during the editing session.
\r\n- Fewer restarts - This release contains many fixes\r\nfor cache-invalidation bugs that would cause gopls to get confused and\r\nrequire restarting. Additionally, see the note at top about enabling the\r\nnetwork when reloading the workspace. We believe we are close to our\r\ngoal that restarting gopls should never be required to fix workspace\r\nerrors. If you encounter such a bug, please file an issue!
\r\n
\r\nA full list of all issues fixed can be found in the gopls/v0.9.2\r\nmilestone.\r\nTo report a new problem, please file a new issue at https://go.dev/issues/new.
\r\nThank you to our contributors!
\r\nThank you for your contribution, @alandonovan
, @antoineco
, @dle8
, @euroelessar
, @findleyr
, @hyangah
, @jamalc
, @mssdvd
, @pjweinbgo
, @rentziass
, and @suzmue
!
\r\nWhat's next
\r\nThe next planned gopls release is v0.10.0. We’re\r\nexcited about features and improvements on the horizon, for example:
\r\n\r\n- Package renaming (#41567)
\r\n- More accurate static-analysis (#48738)
\r\n- Improved support for the new 1.19 doc comment format (#54260)
\r\n- Making it easier to work with
go.work
files (many\r\nissues, for example #53880 or\r\n#54261) \r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n0dda7d6
\r\ngo/pointer: remove replace directive \r\n98f1b4d
\r\ngopls/internal/lsp/cache: check number of orphaned files after\r\nfiltering \r\na260315
\r\ngo/pointer: create submodule \r\n96844c3
\r\ncmd/{guru,callgraph}: stop using go/pointer \r\ncd694d8
\r\ngo/packages: include\r\n"unsafe".GoFiles=["unsafe.go"] \r\n33c741d
\r\ngopls/internal/lsp: add min/max builtin \r\n933c7cc
\r\ninternal/lsp/source: use exact match in import highlighting \r\n5974258
\r\ngopls/internal/lsp: clear vuln diagnostics on config changes \r\nf3faea1
\r\ngo/packages: pass -pgo=off on go1.21 and later \r\n5f74ec7
\r\ninternal/lsp/debug: add links to profiles and GC \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.1&new-version=0.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T10:54:58-07:00",
- "tree_id": "1c3e5ba43d97b43b11ab5af8f10989057ca03a11",
- "url": "https://github.com/runfinch/finch/commit/b192874e2b1c5de1c2148813760cbe65e15d7553"
- },
- "date": 1685728729805,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 56582531834,
- "unit": "ns/op\t 0.4819 %cpu_avg/op\t 70.97 %cpu_peak/op\t 56.58 cpu_seconds/op\t1970208768 disk_bytes/op\t 2550328 B/op\t 53502 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23935883834,
- "unit": "ns/op\t 0.4342 %cpu_avg/op\t 46.15 %cpu_peak/op\t 23.94 cpu_seconds/op\t 819200 disk_bytes/op\t 1064560 B/op\t 22645 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 346135833,
- "unit": "ns/op\t 0.3667 %cpu_avg/op\t 12.17 %cpu_peak/op\t 0.3461 cpu_seconds/op\t 0 disk_bytes/op\t 25317 B/op\t 373 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1478864083,
- "unit": "ns/op\t 0.7616 %cpu_avg/op\t 27.27 %cpu_peak/op\t 1.479 cpu_seconds/op\t 3592192 disk_bytes/op\t 75488 B/op\t 1440 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1684340881791,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 57892176750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4697",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "66.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "57.89",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2447372288",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2608240",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "54817",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23902704500,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4103",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.90",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16928768",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1065416",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22658",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 376517403,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.118",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "25.04",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3764",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26829",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "400",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1343703833,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.176",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.344",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20402176",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67896",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1308",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "05b6b2e7364036a3d30b67ad409f55526cc59ffe",
+ "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 (#405)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.0 to 1.9.1.\r\n\r\nCommits
\r\n\r\nb30aa27
\r\nMerge pull request #1339\r\nfrom xieyuschen/patch-1 \r\n6acd903
\r\nMerge pull request #1376\r\nfrom ozfive/master \r\n105e63f
\r\nMerge pull request #1 from\r\nashmckenzie/ashmckenzie/fix-writer-scanner \r\nc052ba6
\r\nScan text in 64KB chunks \r\ne59b167
\r\nMerge pull request #1372\r\nfrom tommyblue/syslog_different_loglevels \r\n766cfec
\r\nThis commit fixes a potential denial of service vulnerability in\r\nlogrus.Write... \r\n70234da
\r\nAdd instructions to use different log levels for local and syslog \r\na448f82
\r\nMerge pull request #1362\r\nfrom FrancoisWagner/fix-data-race-in-hooks-test-pkg \r\nff07b25
\r\nFix data race in hooks.test package \r\nd8787af
\r\nUse text when shows the logrus output \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.0&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-17T16:59:12-07:00",
+ "tree_id": "4200288d7d0b7a0007ed4d8c2a30b6f3c39a38dc",
+ "url": "https://github.com/runfinch/finch/commit/05b6b2e7364036a3d30b67ad409f55526cc59ffe"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa",
- "message": "build(deps): Bump github.com/docker/docker from 24.0.1+incompatible to 24.0.2+incompatible (#419)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.1+incompatible to 24.0.2+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.2
\r\n24.0.2
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a panic during build when referencing locally tagged images. moby/buildkit#3899,\r\nmoby/moby#45582
\r\n- Fix builds potentially failing with
exit code:\r\n4294967295
when performing many concurrent build stages. moby/moby#45620 \r\n- Fix DNS resolution on Windows ignoring
etc/hosts
\r\n(%WINDIR%\\System32\\Drivers\\etc\\hosts
), including resolution\r\nof localhost
. moby/moby#45562 \r\n- Apply a workaround for a containerd bug that causes concurrent\r\n
docker exec
commands to take significantly longer than\r\nexpected. moby/moby#45625 \r\n- containerd image store: Fix an issue where the image\r\n
Created
field would contain an incorrect value. moby/moby#45623 \r\n- containerd image store: Adjust the output of image pull progress so\r\nthat the output has the same format regardless of whether the containerd\r\nimage store is enabled. moby/moby#45602
\r\n- containerd image store: Switching between the default and containerd\r\nimage store now requires a daemon restart. moby/moby#45616
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n659604f
\r\nMerge pull request #45625\r\nfrom thaJeztah/24.0_backport_serialize_exec_starts_... \r\n6660133
\r\nMerge pull request #45582\r\nfrom thaJeztah/24.0_backport_vendor_buildkit_0.11.7... \r\n67b3563
\r\nMerge pull request #45623\r\nfrom vvoland/c8d-inspect-created-time-24 \r\n7a4ea19
\r\nlibcontainerd: work around exec start bug in c8d \r\nae6e933
\r\nvendor: github.com/moby/buildkit\r\nv0.11.7-0.20230525183624-798ad6b0ce9f \r\n0d9acd2
\r\nc8d/inspect: Fill Created
time if available \r\n37bc639
\r\nMerge pull request #45620\r\nfrom thaJeztah/24.0_backport_update_go_runc_v1.1.0 \r\n04eccf8
\r\nvendor: github.com/containerd/go-runc v1.1.0 \r\n2472277
\r\nMerge pull request #45616\r\nfrom thaJeztah/24.0_backport_lock_in_snapshotter_se... \r\n9d8acb7
\r\nMerge pull request #45612\r\nfrom vvoland/dangling-image-repotagsdigests-test-24 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.1+incompatible&new-version=24.0.2+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T10:55:29-07:00",
- "tree_id": "1f2fcfedd0b5d03454c8a1dc8a59bb02d77cc8bd",
- "url": "https://github.com/runfinch/finch/commit/f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa"
- },
- "date": 1685728765718,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 53682288083,
- "unit": "ns/op\t 0.4698 %cpu_avg/op\t 72.73 %cpu_peak/op\t 53.68 cpu_seconds/op\t1957236736 disk_bytes/op\t 2380480 B/op\t 50949 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23962921750,
- "unit": "ns/op\t 0.4522 %cpu_avg/op\t 36.36 %cpu_peak/op\t 23.96 cpu_seconds/op\t -950272 disk_bytes/op\t 1066736 B/op\t 22677 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 410573375,
- "unit": "ns/op\t 0.7773 %cpu_avg/op\t 29.49 %cpu_peak/op\t 0.4105 cpu_seconds/op\t 0 disk_bytes/op\t 28533 B/op\t 436 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1412059333,
- "unit": "ns/op\t 1.108 %cpu_avg/op\t 40.00 %cpu_peak/op\t 1.412 cpu_seconds/op\t 3604480 disk_bytes/op\t 72640 B/op\t 1378 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1684368404832,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 150492818125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.1990",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "150.5",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2536288256",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "6734448",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "141590",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23892339458,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4646",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.89",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-40960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1065544",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22639",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 365686403,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3470",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "11.57",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3656",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26256",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "389",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1302579459,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.9140",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.303",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20369408",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "66272",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1278",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "25aa324ca324248cf2093af23f205af1b5ae276f",
+ "message": "build(deps): Bump github.com/docker/docker from 23.0.6+incompatible to 24.0.0+incompatible (#406)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.6+incompatible to 24.0.0+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.0
\r\n24.0.0
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nNew
\r\n\r\n- Introduce experimental support for containerd as the content store\r\n(replacing the existing storage drivers). moby/moby#43735,\r\nother\r\nmoby/moby pull requests
\r\n- The
--host
CLI flag now supports a path component in a\r\nssh://
host address, allowing use of an alternate socket\r\npath without configuration on the remote host. docker/cli#4073 \r\n- The
docker info
CLI command now reports a version and\r\nplatform field. docker/cli#4180 \r\n- Introduce the daemon flag
--default-network-opt
to\r\nconfigure options for newly created networks. moby/moby#43197 \r\n- Restrict access to
AF_VSOCK
in the\r\nsocket(2)
family of syscalls in the default seccomp\r\nprofile. moby/moby#44562 \r\n- Introduce support for setting OCI runtime annotations on containers.\r\ndocker/cli#45025,\r\nmoby/moby#45025
\r\n- Alternative runtimes can now be configured in\r\n
daemon.json
, enabling runtime names to be aliased and\r\noptions to be passed. moby/moby#45032 \r\n- The
docker-init
binary will now be discovered in\r\nFHS-compliant libexec directories, in addition to the PATH
.\r\nmoby/moby#45198 \r\n- API: Surface the daemon-level
--no-new-privileges
in\r\nGET /info
. moby/moby#45320 \r\n
\r\nRemoved
\r\n\r\ndocker info
no longer reports\r\nIndexServiceAddress
. docker/cli#4204 \r\n- libnetwork: Remove fallback code for obsolete kernel versions. moby/moby#44684,\r\nmoby/moby#44802
\r\n- libnetwork: Remove unused code related to classic Swarm. moby/moby#44965
\r\n- libnetwork: Remove usage of the
xt_u32
kernel module\r\nfrom encrypted Swarm overlay networks. moby/moby#45281 \r\n- Remove support for buildkit's deprecated
buildinfo
in\r\nfavor of standard provenance attestations. moby/moby#45097 \r\n- Remove the deprecated AUFS and legacy
overlay
storage\r\ndrivers. moby/moby#45342,\r\nmoby/moby# \r\n- Remove the deprecated
overlay2.override_kernel_check
\r\nstorage driver option. moby/moby#45368 \r\n- Remove workarounds for obsolete versions of\r\n
apparmor_parser
from the AppArmor profiles. moby/moby#45500 \r\n- API:
GET /images/json
no longer represents empty\r\nRepoTags and RepoDigests\r\nas<none>:<none>
/<none>@<none>
.\r\nEmpty arrays are be returned instead on API >= 1.43. moby/moby#45068 \r\n
\r\nDeprecated
\r\n\r\n- Deprecate the
--oom-score-adjust
daemon option. moby/moby#45315 \r\n- API: Deprecate the
VirtualSize
field in GET\r\n/images/json
and GET /images/{id}/json
. moby/moby#45346 \r\n
\r\nBug fixes and enhancements
\r\n\r\n- The
docker stack
command no longer validates the\r\nbuild
section of Compose files. docker/cli#4214 \r\n- Fix lingering healthcheck processes after timeout is reached. moby/moby#43739
\r\n- Reduce the overhead of container startup when using the\r\n
overlay2
storage driver. moby/moby#44285 \r\n- API: Handle multiple
before=
and since=
\r\nfilters in GET /images
. moby/moby#44503 \r\n- Fix numerous bugs in the embedded DNS resolver implementation used\r\nby user-defined networks. moby/moby#44664
\r\n- Add
execDuration
field to the map of event attributes.\r\nmoby/moby#45494 \r\n- Swarm-level networks can now be created with the Windows\r\n
internal
, l2bridge
, and nat
\r\ndrivers. moby/swarmkit#3121,\r\nmoby/moby#45291 \r\n
\r\nPackaging updates
\r\n\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n1331b8c
\r\nMerge pull request #45537\r\nfrom thaJeztah/24.0_backport_containerd_binary_1.7.1 \r\n907f037
\r\nupdate containerd binary to v1.7.1 \r\na5b597e
\r\nMerge pull request #45531\r\nfrom rumpl/24.0_backport_fix-empty-auth-pull \r\n8bbfa32
\r\nc8d: The authorizer needs to be set even if AuthConfig is empty \r\n807e415
\r\nMerge pull request #45526\r\nfrom laurazard/backport-classic-builder \r\n8587a1c
\r\nc8d/builder: implement cache \r\n9717369
\r\nc8d: implement classic builder \r\ned0c147
\r\nMerge pull request #45523\r\nfrom thaJeztah/24.0_backport_cleanup_reexec_inits \r\n90be9ab
\r\nMerge pull request #45525\r\nfrom thaJeztah/24.0_backport_c8d_authconfig_default \r\nd73f703
\r\nMerge pull request #45521\r\nfrom thaJeztah/24.0_backport_vendor_distribution_v2... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.6+incompatible&new-version=24.0.0+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-18T00:52:53Z",
+ "tree_id": "e165710972d7cc4dd1908083cdd88af9c0f12942",
+ "url": "https://github.com/runfinch/finch/commit/25aa324ca324248cf2093af23f205af1b5ae276f"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "8635294bcb22207bfdaa3f96756f93ba580ff6e2",
- "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.4 to 3.23.5 (#437)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.4 to 3.23.5.\r\n\r\nCommits
\r\n\r\n32e8a92
\r\nMerge pull request #1475\r\nfrom shirou/feature/fix_potential_leak_on_common_sleep \r\n3e789a4
\r\n[common]: fix potential leak on Sleep. \r\n03ae19b
\r\nMerge pull request #1472\r\nfrom powersj/fix/writeback \r\n194e6e2
\r\nMerge pull request #1467\r\nfrom shirou/dependabot/go_modules/github.com/yusufpa... \r\n5537690
\r\nchore(deps): bump github.com/yusufpapurcu/wmi from 1.2.2 to 1.2.3 \r\n1983d2b
\r\nMerge pull request #1468\r\nfrom shirou/dependabot/go_modules/github.com/stretch... \r\nd71f002
\r\nfix(mem): Correct capitalization of linux writeback \r\nfd69d68
\r\nchore(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.3 \r\n7c610c5
\r\nMerge pull request #1462\r\nfrom cuishuang/master \r\n9aa4e7a
\r\nfix some comments \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.4&new-version=3.23.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T10:55:58-07:00",
- "tree_id": "69bedd1390c4851caf133cb4b095e3d019c0450c",
- "url": "https://github.com/runfinch/finch/commit/8635294bcb22207bfdaa3f96756f93ba580ff6e2"
- },
- "date": 1685728959564,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 55525409792,
- "unit": "ns/op\t 0.4954 %cpu_avg/op\t 40.00 %cpu_peak/op\t 55.53 cpu_seconds/op\t1977688064 disk_bytes/op\t 2515248 B/op\t 52698 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24038603375,
- "unit": "ns/op\t 0.4411 %cpu_avg/op\t 40.00 %cpu_peak/op\t 24.04 cpu_seconds/op\t 827392 disk_bytes/op\t 1069560 B/op\t 22755 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 377668764,
- "unit": "ns/op\t 0.5615 %cpu_avg/op\t 10.00 %cpu_peak/op\t 0.3776 cpu_seconds/op\t 0 disk_bytes/op\t 26669 B/op\t 400 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1393964625,
- "unit": "ns/op\t 1.100 %cpu_avg/op\t 36.36 %cpu_peak/op\t 1.394 cpu_seconds/op\t 20959232 disk_bytes/op\t 72568 B/op\t 1361 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1684371492909,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 104200542500,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2689",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "73.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "104.2",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2538692608",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "4692608",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "98247",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26944161209,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4205",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "75.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.94",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-53248",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1187824",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25444",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 373913573,
+ "unit": "ns/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8965",
+ "unit": "%cpu_avg/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "13.75",
+ "unit": "%cpu_peak/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3738",
+ "unit": "cpu_seconds/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26920",
+ "unit": "B/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "402",
+ "unit": "allocs/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1286797375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.7705",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.287",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20369408",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "65752",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1267",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9",
+ "message": "build(deps): Bump k8s.io/apimachinery from 0.27.1 to 0.27.2 (#407)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.1 to 0.27.2.\r\n\r\nCommits
\r\n\r\n756e222
\r\nMerge pull request #117298pohly/automated-cherry-pick-of-#117238
\r\nb1123d2
\r\nMerge pull request #117708Jefftree/automated-cherry-pick-of-#117705
\r\n4074a29
\r\nUpdate kube-openapi to fix race \r\ncc852ec
\r\napi: encode NamespacedName with lower case in JSON \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.1&new-version=0.27.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T10:08:14-07:00",
+ "tree_id": "4995bf341e0dfa88b02d82d9034a40802015304b",
+ "url": "https://github.com/runfinch/finch/commit/e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0a381f17ea2602bc3b19f9b2101da9e3a589f6d3",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#432)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.5 to 2.9.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.7
\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\nv2.9.6
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n913e9e5
\r\nv2.9.7 \r\n07fc3a0
\r\nfix race when multiple defercleanups are called in goroutines \r\n9620623
\r\nv2.9.6 \r\n8ba8b22
\r\nensure report directory tests work when run in parallel \r\n0ac65de
\r\nfix: create parent directory before report files (#1212) \r\n4c2ae23
\r\nFix return value in index.md (#1208) \r\n3e39231
\r\nBump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.5&new-version=2.9.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T12:03:20-07:00",
- "tree_id": "c1136794cddf05c4b049eb5ff3f0d828045c9e18",
- "url": "https://github.com/runfinch/finch/commit/0a381f17ea2602bc3b19f9b2101da9e3a589f6d3"
- },
- "date": 1685732833337,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 59572202625,
- "unit": "ns/op\t 0.3798 %cpu_avg/op\t 58.82 %cpu_peak/op\t 59.57 cpu_seconds/op\t1969381376 disk_bytes/op\t 2674688 B/op\t 56341 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23913320708,
- "unit": "ns/op\t 0.3644 %cpu_avg/op\t 33.33 %cpu_peak/op\t 23.91 cpu_seconds/op\t 16814080 disk_bytes/op\t 1063128 B/op\t 22598 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 338048889,
- "unit": "ns/op\t 1.734 %cpu_avg/op\t 18.33 %cpu_peak/op\t 0.3380 cpu_seconds/op\t 0 disk_bytes/op\t 24765 B/op\t 363 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1388564333,
- "unit": "ns/op\t 0.3290 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.389 cpu_seconds/op\t 3608576 disk_bytes/op\t 72144 B/op\t 1359 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1684775531370,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58584894625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.6121",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "54.55",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.58",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2327040000",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2638728",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55491",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23996039917,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4782",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "81.82",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "147456",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1068512",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22713",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 350279181,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8477",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "16.93",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3502",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25466",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "376",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1326397042,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4287",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.326",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67904",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1299",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb",
+ "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.1 to 1.9.2 (#408)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.1 to 1.9.2.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.1&new-version=1.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T10:08:34-07:00",
+ "tree_id": "f2d2b81654b4af29a2aed139fba3d507787ce928",
+ "url": "https://github.com/runfinch/finch/commit/0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb"
+ },
+ "date": 1684775763451,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 59933345541,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3749",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "76.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "59.93",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2534596608",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2693200",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "56742",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24068522125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3100",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.07",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-32768",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1071808",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22806",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 365542375,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4005",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "14.17",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3655",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26064",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "389",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1382051208,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6553",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.382",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3592192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "68832",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1337",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "80513c7785a6da4ae09d9c871acaf180f5d68f2c",
+ "message": "build(deps): Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#409)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.6 to 1.27.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.7
\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n99a29d5
\r\nv1.27.7 \r\n05c1bc6
\r\nupdate gitignore \r\n57054d5
\r\nfix: gcustom.MakeMatcher accepts nil as actual value (#666) \r\n7cadcf6
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663) \r\nb524839
\r\nBump golang.org/x/net from 0.9.0 to 0.10.0 (#662) \r\n5f44694
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661) \r\n05dc99a
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#657) \r\n3a033d1
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#658) \r\na19238f
\r\nReplace deprecated NewGomegaWithT with NewWithT (#659) \r\n29ed041
\r\nBump golang.org/x/net from 0.8.0 to 0.9.0 (#656) \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.6&new-version=1.27.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T10:08:53-07:00",
+ "tree_id": "e2fcfcda12bb1ccd87c7073b3933f3ac027af425",
+ "url": "https://github.com/runfinch/finch/commit/80513c7785a6da4ae09d9c871acaf180f5d68f2c"
+ },
+ "date": 1684775992424,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58445375125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4268",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "74.19",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.45",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2534572032",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2630480",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55325",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23888015458,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4226",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "75.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.89",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-81920",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1065184",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22645",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 360987236,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.067",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "16.90",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3609",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25912",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "386",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1435855209,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.8191",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.436",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "73952",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1399",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "bb1cab229c787752615eb00e74f240c4a4e0e23d",
+ "message": "build(deps): Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.1+incompatible (#413)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.0+incompatible to 24.0.1+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.1
\r\n24.0.1
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nRemoved
\r\n\r\n- Remove CLI completions for storage drivers removed in the 24.0 major\r\nrelease. docker/cli#4302
\r\n
\r\nBug fixes and enhancements
\r\n\r\n- Fix an issue where DNS query NXDOMAIN replies from external servers\r\nwere forwarded to the client as SERVFAIL. moby/moby#45573
\r\n- Fix an issue where
docker pull --platform
would report\r\nNo such image
regarding another tag pointing to the same\r\nimage. moby/moby#45562 \r\n- Fix an issue where insecure registry configuration would be\r\nforgotten during config reload. moby/moby#45571
\r\n- containerd-storage: Fix an issue where images which have no layers\r\nwould not be listed in
docker images -a
moby/moby#45588 \r\n- API: Fix an issue where
GET /images/{id}/json
would\r\nreturn null
instead of empty RepoTags
and\r\nRepoDigests
. moby/moby#45564 \r\n- API: Fix an issue where
POST /commit
did not accept an\r\nempty request body. moby/moby#45568 \r\n
\r\nPackaging updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n463850e
\r\nMerge pull request #45588\r\nfrom vvoland/c8d-layerless-24 \r\n47a3dad
\r\nc8d/list: Show layerless images \r\na0bc3eb
\r\nMerge pull request #45571\r\nfrom thaJeztah/24.0_backport_fix_insecure_registrie... \r\n922b6aa
\r\nMerge pull request #45568\r\nfrom corhere/backport-24.0/fix-empty-container-decode \r\n0e605cf
\r\nMerge pull request #45573\r\nfrom thaJeztah/24.0_backport_fix_dns_servfail \r\n878c417
\r\nMerge pull request #45560\r\nfrom crazy-max/24.0_backport_fix-worker-id \r\n654e80a
\r\nMerge pull request #45570\r\nfrom crazy-max/24.0_backport_ci-bin-image-distribute \r\n0869b08
\r\nlibnetwork: just forward the external DNS response \r\n3467ba6
\r\nreorder load funcs to match newServiceConfig()'s order \r\nf9b886c
\r\nadd mirror to daemon reload test for insecure registries \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.0+incompatible&new-version=24.0.1+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T17:48:50Z",
+ "tree_id": "92f651eed9097478240daebf4cbf33ab7a695969",
+ "url": "https://github.com/runfinch/finch/commit/bb1cab229c787752615eb00e74f240c4a4e0e23d"
+ },
+ "date": 1684777961658,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 59189453084,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.5385",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "83.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "59.19",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2560315392",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2667232",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "56133",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23866387334,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4528",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "42.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.87",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-32768",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1062912",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22594",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 383717430,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.7195",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "20.83",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3837",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "27112",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "407",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1392290292,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.248",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.392",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20418560",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "71808",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1359",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "b83cc21e6082eeff076e035dfb4cad152fb5508c",
+ "message": "ci: Finch .pkg installer builder (#416)\n\n**Description of changes:**\r\n\r\n- This PR contains the Finch .pkg builder tool.\r\n- The .pkg builder tool can be used by GitHub action to generate and\r\nnotarize macOS .pkg installer.\r\n- The old update to S3 workflow is extended with the functionality to\r\nbuild Finch, build .pkg and test .pkg. It can be used as a scheduled job\r\nfor nightly main branch build as well to detect release issue earlier\r\nbesides cut a new release.\r\n- The old release installer workflow(test installer) is removed because\r\nits scope is moved to the integrated workflow.\r\n\r\nThis is an initial tool check in, Readme and integrated workflow to\r\nchain existing workflows to upload installer to release and publish to\r\nHomebrew will come later.\r\n\r\n**Testing done:**\r\nHave tested the updated workflow and tool on this branch, and can\r\nsuccessfully generate final installer and test it.\r\nAction test ref:\r\nhttps://github.com/runfinch/finch/actions/runs/5077161329\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-26T10:40:35-07:00",
+ "tree_id": "f4ee320ee326400884c15fa51a6485739e2ed39b",
+ "url": "https://github.com/runfinch/finch/commit/b83cc21e6082eeff076e035dfb4cad152fb5508c"
+ },
+ "date": 1685123087853,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 60497675833,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4498",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "60.50",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2549493760",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2719616",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "57360",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24076488250,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3799",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.08",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-69632",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1074688",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22856",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 369974323,
+ "unit": "ns/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.033",
+ "unit": "%cpu_avg/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.42",
+ "unit": "%cpu_peak/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3699",
+ "unit": "cpu_seconds/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "4096",
+ "unit": "disk_bytes/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26386",
+ "unit": "B/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "393",
+ "unit": "allocs/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1382122083,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.7556",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "46.15",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.382",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20385792",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "71304",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1348",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "ningziwe@amazon.com",
+ "name": "Ziwen Ning",
+ "username": "ningziwen"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "6a8ca1a559dada6ed320c9454fbc3229446a0a40",
+ "message": "fix: sort volume args in DOCKER_COMPAT mode (#417)\n\nIssue #, if available:\r\nhttps://github.com/runfinch/finch/issues/418\r\n\r\n*Description of changes:*\r\nSort volume args in DOCKER_COMPAT mode\r\n\r\n*Testing done:*\r\nUnit tests and new e2e tests.\r\nhttps://github.com/runfinch/common-tests/pull/66\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
+ "timestamp": "2023-05-26T21:10:30Z",
+ "tree_id": "7d92a6ddbd268a0ecf2c8acb172cadc75b283dc2",
+ "url": "https://github.com/runfinch/finch/commit/6a8ca1a559dada6ed320c9454fbc3229446a0a40"
+ },
+ "date": 1685135676234,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58235488416,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3539",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.24",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2539855872",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2629448",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55291",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24044756334,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3689",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.04",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1064960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1071448",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22795",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 352734625,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6700",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "8.466",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3527",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25346",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "378",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1603358500,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2830",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "15.29",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.603",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "80992",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1559",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0bcdd18b12b889931d3b7928eedf76c1ec9fac5a",
+ "message": "ci: Rename action and set up nightly build (#421)\n\n*Description of changes:*\r\nRename the action.\r\nSet up the installer build and test every day at 9 am UTC (2 am PDT) to\r\nvalidate latest main branch.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-26T16:03:45-07:00",
+ "tree_id": "ab82ce6b1d2aa83593bb648181463b6fe7840863",
+ "url": "https://github.com/runfinch/finch/commit/0bcdd18b12b889931d3b7928eedf76c1ec9fac5a"
+ },
+ "date": 1685142471616,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 60445500208,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.5098",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "66.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "60.45",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2549485568",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2716864",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "57287",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23953767625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4160",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.95",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "364544",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1066104",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22665",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 364310944,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.2778",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "8.333",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3642",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25824",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "389",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1316421583,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.024",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.316",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20402176",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67056",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1297",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "ac18046e70efc0e1e9fe11a30457f6f945df2a23",
+ "message": "build(deps): Bump github.com/runfinch/common-tests from 0.6.5 to 0.7.0 (#420)\n\nBumps\r\n[github.com/runfinch/common-tests](https://github.com/runfinch/common-tests)\r\nfrom 0.6.5 to 0.7.0.\r\n\r\nRelease notes
\r\nSourced from github.com/runfinch/common-tests's\r\nreleases.
\r\n\r\nv0.7.0
\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/runfinch/common-tests's\r\nchangelog.
\r\n\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n0.6.4\r\n(2023-04-06)
\r\nBug Fixes
\r\n\r\n- better handling of concurrent http servers (#57)\r\n(0ae6182)
\r\n
\r\n0.6.3\r\n(2023-03-27)
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/gomega from 1.27.2 to\r\n1.27.4 (#48)\r\n(f113e7b)
\r\n- deps: bump github.com/onsi/gomega from 1.27.4 to\r\n1.27.5 (#52)\r\n(bd056e7)
\r\n
\r\n0.6.2\r\n(2023-03-16)
\r\nBug Fixes
\r\n\r\n- Fix tests to match nerdctl 1.2.1 outputs (#50)\r\n(3d9b4f4)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.8.3 to\r\n2.8.4 (#41)\r\n(a9476c1)
\r\n- deps: bump github.com/onsi/gomega from 1.27.1 to\r\n1.27.2 (#40)\r\n(e8fc71a)
\r\n
\r\n0.6.1\r\n(2023-02-28)
\r\nBug Fixes
\r\n\r\n- Switch from
nc -l
to nginx
in run\r\n-p/--publish
test (7a6a6c3) \r\n
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\nafbbd97
\r\nchore(main): release 0.7.0 (#63) \r\n22a7f7e
\r\nfeat: Tests for bind mounts (#66) \r\n590a984
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#65) \r\nb761a7a
\r\nfeat: verify the result of finch inspect has State.Status and\r\nState.Error (#64) \r\n72120b5
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.5 to 1.27.6 (#54) \r\n0bd0901
\r\nbuild(deps): bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.5 (#62) \r\n882cd1e
\r\ntest: Functional test for PS command (#17) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/runfinch/common-tests&package-manager=go_modules&previous-version=0.6.5&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-26T16:30:20-07:00",
+ "tree_id": "5e6cfb42519bed0dde2505d4b43e33fd56d4cb40",
+ "url": "https://github.com/runfinch/finch/commit/ac18046e70efc0e1e9fe11a30457f6f945df2a23"
+ },
+ "date": 1685144060833,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 60827582042,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4192",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "60.83",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2463260672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2734632",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "57697",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23983460834,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4778",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.98",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "397312",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1071016",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22754",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 352366708,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.209",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "16.93",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3523",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25341",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "379",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1393570708,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.9706",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.394",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3641344",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "71856",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1359",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "f67ff9668457057514a351819cdc75fb8c6b2d46",
+ "message": "ci: Add release automation action (#424)\n\n*Description of changes:*\r\nThis PR added a new passive action subscribe to main branch new tag\r\ncreation.\r\nNew tag creation means Finch has a new release, the new workflow will\r\ntrigger build pkg, upload pkg and homebrew release on the latest tag.\r\n\r\n*Testing done:*\r\nThis is a new action and has cross branch/tag involved, needs some\r\nexperiment on main branch after check in.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-29T11:41:28-07:00",
+ "tree_id": "4e53e8ed0bd63d943da86e7680d75e44738efbcb",
+ "url": "https://github.com/runfinch/finch/commit/f67ff9668457057514a351819cdc75fb8c6b2d46"
+ },
+ "date": 1685385936628,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58086831958,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4109",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "77.42",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.09",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2559356928",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2618896",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55047",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23974785750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4805",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "55.56",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.97",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "110592",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1068024",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22705",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 350877403,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.286",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "20.83",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3508",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25472",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "376",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1382681458,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.9243",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.383",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "72160",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1359",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "c4c23a95a139a21cc7208071e3c3b688389f6071",
+ "message": "ci: Upload dependency source code along with the installers (#426)\n\n*Description of changes:*\r\nCurrently we need to upload the dependency source code manually.\r\nMake this along with the installer upload.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-29T18:22:38-07:00",
+ "tree_id": "e65c4af30a6b25e4a09ab3d7849c3b667d9212b8",
+ "url": "https://github.com/runfinch/finch/commit/c4c23a95a139a21cc7208071e3c3b688389f6071"
+ },
+ "date": 1685410006261,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58160629583,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4460",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.16",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2555277312",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2623840",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55161",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23993709958,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4244",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "54.55",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.99",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-36864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1068904",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22736",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 389470403,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.9169",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "17.41",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3894",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "27218",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "413",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1372505667,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.432",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "85.71",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.372",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20385792",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "69248",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1338",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "d933d11373c4c9a94137dfad78a8542d2c7be327",
+ "message": "ci: Integrate existing workflows into release-automation (#430)\n\n*Description of changes:*\r\nReuse existing workflows to release-automation.\r\nAdded input param to reuse workflow.\r\nRollout only build & test installer as initial.\r\n\r\n*Testing done:*\r\nHave tested the action in this branch\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-30T16:44:42-07:00",
+ "tree_id": "87f62fce80fd69e8450d0621c833ac32529c621e",
+ "url": "https://github.com/runfinch/finch/commit/d933d11373c4c9a94137dfad78a8542d2c7be327"
+ },
+ "date": 1685490527543,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 60424135250,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4092",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "60.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "60.42",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2541797376",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2712984",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "57189",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23942760000,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4236",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "83.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.94",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "475136",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1066040",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22663",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 343516819,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.7783",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "13.10",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3435",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25317",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "369",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1323526500,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5398",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.05",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.323",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67056",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1297",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "d08952e8b257a74d6d6a6f9da8949d3fd748ab23",
+ "message": "ci: Integrate the other workflows into release-automation (#431)\n\n*Description of changes:*\r\nEnabled the rest workflow for release automation.\r\nCheck in before next release after it is validated.\r\nAfter this PR is checked in, release-please PR merge will automatically\r\ntrigger installer build, test, upload installers and dependency source\r\ncode to release and cut Homebrew PR.\r\n\r\n*Testing done:*\r\nWait next release\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-31T09:55:51-07:00",
+ "tree_id": "0d7b69664ef0d583147c2b84c591c63f802cdf43",
+ "url": "https://github.com/runfinch/finch/commit/d08952e8b257a74d6d6a6f9da8949d3fd748ab23"
+ },
+ "date": 1685552409273,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 64000806417,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3944",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "80.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "64.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2570571776",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2864384",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "60628",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24004957333,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4239",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-73728",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1068296",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22699",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 338035722,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.9106",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "17.41",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3380",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "1365",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "24608",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "362",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1472173500,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3162",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "15.69",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.472",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3624960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "75792",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1440",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "6a67f0cfb0a3a1da438779f4faa04048f25d7dde",
+ "message": "build(deps): Bump github.com/lima-vm/lima from 0.15.1 to 0.16.0 (#428)\n\nBumps [github.com/lima-vm/lima](https://github.com/lima-vm/lima) from\r\n0.15.1 to 0.16.0.\r\n\r\nRelease notes
\r\nSourced from github.com/lima-vm/lima's\r\nreleases.
\r\n\r\nv0.16.0
\r\nThis release adds an experimental support for the user-v2
\r\nnetwork driver: limactl\r\nstart template://experimental/net-user-v2
.\r\nThe user-v2
network driver enables VM-to-VM networking\r\nwithout the root privilege on the host.\r\nThis should be useful for simulating multi-node Kubernetes clusters on a\r\nlaptop.
\r\nThis release also fixes a relatively minor vulnerability CVE-2023-32684.\r\nThis vulnerability is very unlikely to be exploitable as long\r\nas you are using the official templates of Lima.
\r\nChanges
\r\n\r\nlimactl
CLI:\r\n\r\n- (Experimental) Add
limactl snapshot\r\n(apply|create|delete|list)
commands (#1054,\r\nthanks to @afbjorklund
) \r\n- Escape only the value of env variables in
limactl shell
\r\n(#1501,\r\nthanks to @sam-berning
) \r\n
\r\n \r\n- YAML:\r\n\r\n
\r\n- Documents:\r\n\r\n
\r\n- Network:\r\n
\r\n- (Experimental) Add
user-v2
\r\nnetwork driver to enable VM-to-VM networking without root (#1383,\r\nthanks to @balajiv113
) \r\n
\r\n \r\n- nerdctl:\r\n\r\n
\r\n- Templates:\r\n
\r\n- AlmaLinux: update to 9.2 (#1550)
\r\n- Alpine: update to 3.18 and fix Rosetta support (#1560,\r\n#1580,\r\nthanks to
@jandubois
) \r\n- Arch Linux: update to 20230515.150700 (#1550)
\r\n- Fedora: update to 38 (#1502,\r\nthanks to
@cpach
) \r\n- Nomad: update to v0.9.4 (#1552)
\r\n- Rocky Linux: update to 9.2 and 8.8 (#1550,\r\n#1591)
\r\n- Ubuntu: update to 23.04 (#1550)
\r\n
\r\n \r\n- Misc:\r\n
\r\n- Improve disk efficiency (#1411)\r\nfor caches (#1544)
\r\n
\r\n \r\n
\r\nFull changes: https://github.com/lima-vm/lima/milestone/34?closed=1\r\nThanks to @afbjorklund
@balajiv113
@bumpsoo063
@cpach
@jandubois
@pendo324
@sam-berning
\r\nUsage
\r\n[macOS]$ limactl start\r\n...\r\nINFO[0029] READY. Run `lima` to open the shell.\r\n[macOS]$ lima uname\r\nLinux\r\n
\r\n
\r\nThe binaries were built automatically on GitHub Actions.\r\nThe build log is available for 90 days: https://github.com/lima-vm/lima/actions/runs/5118006806
\r\nThe sha256sum of the SHA256SUMS file itself is\r\n2062c42688128dca55331fc1a8f4841cbf41ed9dd11867d48decdf6880afde87
\r\n.
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n01dbd4d
\r\nMerge pull request from GHSA-f7qw-jj9c-rpq9 \r\nbc1bdb8
\r\nProhibit using a differential disk as a base disk \r\nbfa5bab
\r\nqemu: explicitly pass the basedisk format to QEMU \r\nefe1c47
\r\npkg/qemu/imgutil: add Info fields \r\n3dbc08c
\r\nMerge pull request #1592\r\nfrom afbjorklund/man-prefix \r\n703d69f
\r\nRemove the build directories from the manpages \r\ne7aa4ff
\r\nMerge pull request #1591\r\nfrom AkihiroSuda/dev \r\nb9ea964
\r\nMerge pull request #1590\r\nfrom balajiv113/usernet-default \r\n5656d1a
\r\ntemplates: update Rocky Linux to 8.8 \r\n5c0955d
\r\ntemplates: update CentOS Stream 9 to 20230523.0 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/lima-vm/lima&package-manager=go_modules&previous-version=0.15.1&new-version=0.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-31T10:22:24-07:00",
+ "tree_id": "556e3a36fb0bb31a7a51202de5d9db3ef55c2b48",
+ "url": "https://github.com/runfinch/finch/commit/6a67f0cfb0a3a1da438779f4faa04048f25d7dde"
+ },
+ "date": 1685554014744,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 87142543167,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3439",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "60.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "87.14",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2562846720",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3893736",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "82297",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23916208500,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3212",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "75.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.92",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16740352",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1066424",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22653",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 344664472,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.176",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "13.70",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3446",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25178",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "369",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1432082041,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3115",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "15.75",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.432",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20410368",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "73920",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1399",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "vsiravara@gmail.com",
+ "name": "Vishwas Siravara",
+ "username": "vsiravar"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9",
+ "message": "ci: Manually update submodule and add cleanup (#434)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\n\r\n- Add clean up in ci for finch version command\r\n- Add submodule updates to finch core\r\n\r\n*Testing done:*\r\n\r\nYes\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
+ "timestamp": "2023-05-31T14:02:33-07:00",
+ "tree_id": "c0224254ae7d46efe2947ff93511a51659565aaa",
+ "url": "https://github.com/runfinch/finch/commit/7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9"
+ },
+ "date": 1685567776862,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 60752686833,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4609",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "60.75",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2545029120",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2727768",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "57539",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23963708625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3698",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "36.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.96",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-32768",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1066744",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22678",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 335519917,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.454",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "23.89",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3355",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "24413",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "358",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1395882959,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.447",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.396",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20402176",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "72168",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1368",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "1c09471be3b9d214e4a4ef805980588f6e322b68",
+ "message": "ci: Add git clean before build and test (#435)\n\n*Description of changes:*\r\nIt append .modified postfix when build or test.\r\nAdd git clean to remove the dirty state.\r\nAdd git status to log when it happens\r\n\r\n*Testing done:*\r\nTODO with this current run.\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-31T15:47:26-07:00",
+ "tree_id": "d93daef2907cf471ae341cb360413598172833f1",
+ "url": "https://github.com/runfinch/finch/commit/1c09471be3b9d214e4a4ef805980588f6e322b68"
+ },
+ "date": 1685573492842,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 60223110917,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3976",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "60.22",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2561814528",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2703112",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "56957",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23942669166,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3113",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "86.11",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.94",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-77824",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1066608",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22672",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 352158875,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.257",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.33",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3521",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25472",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "376",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1422143333,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6647",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.422",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20385792",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "73480",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1389",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "975c4ee42c1529673a51382c62c4096dc663f80a",
+ "message": "fix: Stop lima process in postinstall and uninstall (#438)\n\n*Description of changes:*\r\nUnstopped lima process can prevent new installation and finch vm init\r\nsuccessfully.\r\nAdd kill limactl to post-installation and uninstall script to fix the\r\nissue.\r\n\r\n*Testing done:*\r\nTested locally.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-06-01T14:49:30-07:00",
+ "tree_id": "3aac93a3e14d71a61ea11cc9f58d98df0cd2d549",
+ "url": "https://github.com/runfinch/finch/commit/975c4ee42c1529673a51382c62c4096dc663f80a"
+ },
+ "date": 1685656418329,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58834885375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.5602",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "83.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.83",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1985929216",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2653072",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55846",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24013196417,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4365",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.01",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-8192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069952",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22753",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 347656153,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.9497",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.52",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3476",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25325",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "372",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1555816000,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6151",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.556",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3624960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "77936",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1498",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "41898282+github-actions[bot]@users.noreply.github.com",
+ "name": "github-actions[bot]",
+ "username": "github-actions[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "e9551b50010deb43ad26dcd3671ec2f246e84ed6",
+ "message": "build(deps): Bump submodules (#439)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
+ "timestamp": "2023-06-01T17:08:31-07:00",
+ "tree_id": "1d44ab428cafa8801c73cf50dbe39a71ea5aa9bb",
+ "url": "https://github.com/runfinch/finch/commit/e9551b50010deb43ad26dcd3671ec2f246e84ed6"
+ },
+ "date": 1685664758992,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 62292406500,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4920",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "82.76",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "62.29",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2842189824",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2793232",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "59024",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24054246458,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4095",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.05",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "36864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1072776",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22803",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 365775264,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3846",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.50",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3657",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26256",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "390",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1469184125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5555",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.469",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20385792",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "74824",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1428",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "vsiravara@gmail.com",
+ "name": "Vishwas Siravara",
+ "username": "vsiravar"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0aa4c5cc36c4d44e431a8c13004607990bdb2bf4",
+ "message": "ci: Update lima download url (#440)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nLIMA_URL in `finch` is stale\r\nhttps://github.com/runfinch/finch/blob/main/Makefile#L38. Keeping it\r\nconsistent with finch-core.\r\n*Testing done:*\r\n\r\nLocally. \r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
+ "timestamp": "2023-06-01T17:50:59-07:00",
+ "tree_id": "92182604e47f2ec0133a0b2a79ec61950bc73185",
+ "url": "https://github.com/runfinch/finch/commit/0aa4c5cc36c4d44e431a8c13004607990bdb2bf4"
+ },
+ "date": 1685667298767,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 60517807125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4173",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "60.52",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2203906048",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2722776",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "57431",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24103269792,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3754",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.10",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "17182720",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1070224",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22740",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 347204375,
+ "unit": "ns/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.117",
+ "unit": "%cpu_avg/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.83",
+ "unit": "%cpu_peak/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3471",
+ "unit": "cpu_seconds/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25160",
+ "unit": "B/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "370",
+ "unit": "allocs/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1418246792,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3990",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.418",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20385792",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "73048",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1388",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "7660d08f4e9e93468d0495aeafa2cf2de302227e",
+ "message": "ci: Preserve link when copy from build (#441)\n\n*Description of changes:*\r\nAdd 'p' flag to preserve original symbolic link when copying the build\r\nartifact\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
+ "timestamp": "2023-06-01T17:53:28-07:00",
+ "tree_id": "4fdbf68f34050cd3f3b5126a3b4960af6cf63267",
+ "url": "https://github.com/runfinch/finch/commit/7660d08f4e9e93468d0495aeafa2cf2de302227e"
+ },
+ "date": 1685667521916,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 56693100125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4240",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "64.71",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "56.69",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1974378496",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2556992",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "53657",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24047270625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3590",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.05",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "200704",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069528",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22744",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 360024959,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3540",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "11.57",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3599",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "5461",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25562",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "383",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1457617750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6192",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "20.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.458",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "75672",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1430",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "5f626bd8b7a021c95595aade5b34d7076968b88b",
+ "message": "ci: Change -rp to capital (#442)\n\n*Description of changes:*\r\nChange p to capital case\r\n\r\n*Testing done:*\r\nTested with the runner\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
+ "timestamp": "2023-06-01T18:10:52-07:00",
+ "tree_id": "3738d19bf5c514ac962bb1ff576dcedec89e59b8",
+ "url": "https://github.com/runfinch/finch/commit/5f626bd8b7a021c95595aade5b34d7076968b88b"
+ },
+ "date": 1685668718136,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58062300916,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4372",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "83.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.06",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1947766784",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2619728",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55073",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24126786959,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3860",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.13",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "139264",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1074704",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22866",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 351399431,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.218",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "23.38",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3513",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25178",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "375",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1402068250,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6067",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "28.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.402",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20385792",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "72216",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1368",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "b192874e2b1c5de1c2148813760cbe65e15d7553",
+ "message": "build(deps): Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#443)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.1\r\nto 0.9.3.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.9.3
\r\nMove fast and fix things...golang/go#54395
\r\nAs always, thank you for filing issues!
\r\ngopls/v0.9.2
\r\nThis release contains many bug fixes, particularly related to\r\nproblems that would require restarting gopls.
\r\nNote about network usage: among these fixes was a\r\nchange to allow network usage when reloading the workspace. Reloading\r\noccurs when a go.mod
, go.sum
, or\r\ngo.work
file changes on disk. In the past, gopls would only\r\nallow network during the first workspace load. This resulted in\r\nconfusing behavior when, for example, a new dependency is added to a\r\ngo.mod
file and gopls could not load it, but loading\r\nsucceeded on restart. See #54069 for more details.
\r\nConfiguration changes
\r\ndirectoryFilters at arbitrary depth
\r\nThe "directoryFilters"
\r\nsetting now supports excluding directories at arbitrary depth, using the\r\n**
operator. (note that for v0.9.2, the default value for\r\nthis setting is still ["-node_modules]"
. In the\r\nnext release, this will change to\r\n["-**/node_modules"]
).
\r\nBug fixes and Performance improvements...
\r\nThis release contains the following notable bug fixes / performance\r\nimprovements:
\r\n\r\n- Additional change optimization - Following up on\r\nthe work to optimize change processing from the v0.9.0\r\nrelease, this release contains additional optimizations that result\r\nin around 50% faster change processing (measured via edits in the\r\nKubernetes repo).
\r\n- Fix for a long-standing memory leak - #53780 fixed a long-standing bug\r\nthat caused gopls to hold on to its initial state, gradually leaking\r\nmemory as state changed during the editing session.
\r\n- Fewer restarts - This release contains many fixes\r\nfor cache-invalidation bugs that would cause gopls to get confused and\r\nrequire restarting. Additionally, see the note at top about enabling the\r\nnetwork when reloading the workspace. We believe we are close to our\r\ngoal that restarting gopls should never be required to fix workspace\r\nerrors. If you encounter such a bug, please file an issue!
\r\n
\r\nA full list of all issues fixed can be found in the gopls/v0.9.2\r\nmilestone.\r\nTo report a new problem, please file a new issue at https://go.dev/issues/new.
\r\nThank you to our contributors!
\r\nThank you for your contribution, @alandonovan
, @antoineco
, @dle8
, @euroelessar
, @findleyr
, @hyangah
, @jamalc
, @mssdvd
, @pjweinbgo
, @rentziass
, and @suzmue
!
\r\nWhat's next
\r\nThe next planned gopls release is v0.10.0. We’re\r\nexcited about features and improvements on the horizon, for example:
\r\n\r\n- Package renaming (#41567)
\r\n- More accurate static-analysis (#48738)
\r\n- Improved support for the new 1.19 doc comment format (#54260)
\r\n- Making it easier to work with
go.work
files (many\r\nissues, for example #53880 or\r\n#54261) \r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n0dda7d6
\r\ngo/pointer: remove replace directive \r\n98f1b4d
\r\ngopls/internal/lsp/cache: check number of orphaned files after\r\nfiltering \r\na260315
\r\ngo/pointer: create submodule \r\n96844c3
\r\ncmd/{guru,callgraph}: stop using go/pointer \r\ncd694d8
\r\ngo/packages: include\r\n"unsafe".GoFiles=["unsafe.go"] \r\n33c741d
\r\ngopls/internal/lsp: add min/max builtin \r\n933c7cc
\r\ninternal/lsp/source: use exact match in import highlighting \r\n5974258
\r\ngopls/internal/lsp: clear vuln diagnostics on config changes \r\nf3faea1
\r\ngo/packages: pass -pgo=off on go1.21 and later \r\n5f74ec7
\r\ninternal/lsp/debug: add links to profiles and GC \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.1&new-version=0.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T10:54:58-07:00",
+ "tree_id": "1c3e5ba43d97b43b11ab5af8f10989057ca03a11",
+ "url": "https://github.com/runfinch/finch/commit/b192874e2b1c5de1c2148813760cbe65e15d7553"
+ },
+ "date": 1685728729805,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 56582531834,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4819",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "70.97",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "56.58",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1970208768",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2550328",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "53502",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23935883834,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4342",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "46.15",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.94",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "819200",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1064560",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22645",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 346135833,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3667",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.17",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3461",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25317",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "373",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1478864083,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.7616",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "27.27",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.479",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3592192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "75488",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1440",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa",
+ "message": "build(deps): Bump github.com/docker/docker from 24.0.1+incompatible to 24.0.2+incompatible (#419)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.1+incompatible to 24.0.2+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.2
\r\n24.0.2
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a panic during build when referencing locally tagged images. moby/buildkit#3899,\r\nmoby/moby#45582
\r\n- Fix builds potentially failing with
exit code:\r\n4294967295
when performing many concurrent build stages. moby/moby#45620 \r\n- Fix DNS resolution on Windows ignoring
etc/hosts
\r\n(%WINDIR%\\System32\\Drivers\\etc\\hosts
), including resolution\r\nof localhost
. moby/moby#45562 \r\n- Apply a workaround for a containerd bug that causes concurrent\r\n
docker exec
commands to take significantly longer than\r\nexpected. moby/moby#45625 \r\n- containerd image store: Fix an issue where the image\r\n
Created
field would contain an incorrect value. moby/moby#45623 \r\n- containerd image store: Adjust the output of image pull progress so\r\nthat the output has the same format regardless of whether the containerd\r\nimage store is enabled. moby/moby#45602
\r\n- containerd image store: Switching between the default and containerd\r\nimage store now requires a daemon restart. moby/moby#45616
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n659604f
\r\nMerge pull request #45625\r\nfrom thaJeztah/24.0_backport_serialize_exec_starts_... \r\n6660133
\r\nMerge pull request #45582\r\nfrom thaJeztah/24.0_backport_vendor_buildkit_0.11.7... \r\n67b3563
\r\nMerge pull request #45623\r\nfrom vvoland/c8d-inspect-created-time-24 \r\n7a4ea19
\r\nlibcontainerd: work around exec start bug in c8d \r\nae6e933
\r\nvendor: github.com/moby/buildkit\r\nv0.11.7-0.20230525183624-798ad6b0ce9f \r\n0d9acd2
\r\nc8d/inspect: Fill Created
time if available \r\n37bc639
\r\nMerge pull request #45620\r\nfrom thaJeztah/24.0_backport_update_go_runc_v1.1.0 \r\n04eccf8
\r\nvendor: github.com/containerd/go-runc v1.1.0 \r\n2472277
\r\nMerge pull request #45616\r\nfrom thaJeztah/24.0_backport_lock_in_snapshotter_se... \r\n9d8acb7
\r\nMerge pull request #45612\r\nfrom vvoland/dangling-image-repotagsdigests-test-24 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.1+incompatible&new-version=24.0.2+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T10:55:29-07:00",
+ "tree_id": "1f2fcfedd0b5d03454c8a1dc8a59bb02d77cc8bd",
+ "url": "https://github.com/runfinch/finch/commit/f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa"
+ },
+ "date": 1685728765718,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 53682288083,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4698",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "72.73",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "53.68",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1957236736",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2380480",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "50949",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23962921750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4522",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "36.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.96",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-950272",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1066736",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22677",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 410573375,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.7773",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "29.49",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4105",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "28533",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "436",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1412059333,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.108",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.412",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3604480",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "72640",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1378",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "8635294bcb22207bfdaa3f96756f93ba580ff6e2",
+ "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.4 to 3.23.5 (#437)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.4 to 3.23.5.\r\n\r\nCommits
\r\n\r\n32e8a92
\r\nMerge pull request #1475\r\nfrom shirou/feature/fix_potential_leak_on_common_sleep \r\n3e789a4
\r\n[common]: fix potential leak on Sleep. \r\n03ae19b
\r\nMerge pull request #1472\r\nfrom powersj/fix/writeback \r\n194e6e2
\r\nMerge pull request #1467\r\nfrom shirou/dependabot/go_modules/github.com/yusufpa... \r\n5537690
\r\nchore(deps): bump github.com/yusufpapurcu/wmi from 1.2.2 to 1.2.3 \r\n1983d2b
\r\nMerge pull request #1468\r\nfrom shirou/dependabot/go_modules/github.com/stretch... \r\nd71f002
\r\nfix(mem): Correct capitalization of linux writeback \r\nfd69d68
\r\nchore(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.3 \r\n7c610c5
\r\nMerge pull request #1462\r\nfrom cuishuang/master \r\n9aa4e7a
\r\nfix some comments \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.4&new-version=3.23.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T10:55:58-07:00",
+ "tree_id": "69bedd1390c4851caf133cb4b095e3d019c0450c",
+ "url": "https://github.com/runfinch/finch/commit/8635294bcb22207bfdaa3f96756f93ba580ff6e2"
+ },
+ "date": 1685728959564,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 55525409792,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4954",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "55.53",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1977688064",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2515248",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "52698",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24038603375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4411",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.04",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "827392",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069560",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22755",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 377668764,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5615",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "10.00",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3776",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26669",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "400",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1393964625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.100",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "36.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.394",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20959232",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "72568",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1361",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0a381f17ea2602bc3b19f9b2101da9e3a589f6d3",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#432)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.5 to 2.9.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.7
\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\nv2.9.6
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n913e9e5
\r\nv2.9.7 \r\n07fc3a0
\r\nfix race when multiple defercleanups are called in goroutines \r\n9620623
\r\nv2.9.6 \r\n8ba8b22
\r\nensure report directory tests work when run in parallel \r\n0ac65de
\r\nfix: create parent directory before report files (#1212) \r\n4c2ae23
\r\nFix return value in index.md (#1208) \r\n3e39231
\r\nBump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.5&new-version=2.9.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T12:03:20-07:00",
+ "tree_id": "c1136794cddf05c4b049eb5ff3f0d828045c9e18",
+ "url": "https://github.com/runfinch/finch/commit/0a381f17ea2602bc3b19f9b2101da9e3a589f6d3"
+ },
+ "date": 1685732833337,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 59572202625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3798",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "58.82",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "59.57",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1969381376",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2674688",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "56341",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23913320708,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3644",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.91",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16814080",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1063128",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22598",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 338048889,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.734",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.33",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3380",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "24765",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "363",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1388564333,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3290",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.389",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "72144",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1359",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336",
+ "message": "build(deps): Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#429)\n\nBumps [github.com/stretchr/testify](https://github.com/stretchr/testify)\r\nfrom 1.8.2 to 1.8.4.\r\n\r\nCommits
\r\n\r\nf97607b
\r\nCreate GitHub release when new release tag is pushed (#1354) \r\n4c93d8f
\r\nEqualExportedValues: Handle nested pointer, slice and map fields (#1379) \r\n4b2f4d2
\r\nadd EventuallyWithT assertion (#1264) \r\nb3106d7
\r\nallow testing for functional options (#1023) \r\n437071b
\r\nassert: fix error message formatting for NotContains (#1362) \r\nc5fc9d6
\r\nCompare public elements of struct (#1309) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/stretchr/testify&package-manager=go_modules&previous-version=1.8.2&new-version=1.8.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T14:07:49-07:00",
+ "tree_id": "6315646cec92c8216dfe2441c6ffe9eaf37346ad",
+ "url": "https://github.com/runfinch/finch/commit/0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336",
- "message": "build(deps): Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#429)\n\nBumps [github.com/stretchr/testify](https://github.com/stretchr/testify)\r\nfrom 1.8.2 to 1.8.4.\r\n\r\nCommits
\r\n\r\nf97607b
\r\nCreate GitHub release when new release tag is pushed (#1354) \r\n4c93d8f
\r\nEqualExportedValues: Handle nested pointer, slice and map fields (#1379) \r\n4b2f4d2
\r\nadd EventuallyWithT assertion (#1264) \r\nb3106d7
\r\nallow testing for functional options (#1023) \r\n437071b
\r\nassert: fix error message formatting for NotContains (#1362) \r\nc5fc9d6
\r\nCompare public elements of struct (#1309) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/stretchr/testify&package-manager=go_modules&previous-version=1.8.2&new-version=1.8.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T14:07:49-07:00",
- "tree_id": "6315646cec92c8216dfe2441c6ffe9eaf37346ad",
- "url": "https://github.com/runfinch/finch/commit/0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336"
- },
- "date": 1685740305305,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58388853041,
- "unit": "ns/op\t 0.4145 %cpu_avg/op\t 81.82 %cpu_peak/op\t 58.39 cpu_seconds/op\t1970294784 disk_bytes/op\t 2623816 B/op\t 55166 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24024297708,
- "unit": "ns/op\t 0.3617 %cpu_avg/op\t 83.33 %cpu_peak/op\t 24.02 cpu_seconds/op\t -905216 disk_bytes/op\t 1072520 B/op\t 22800 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 352861695,
- "unit": "ns/op\t 0.8102 %cpu_avg/op\t 16.67 %cpu_peak/op\t 0.3528 cpu_seconds/op\t 0 disk_bytes/op\t 25173 B/op\t 375 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1512062708,
- "unit": "ns/op\t 0.5462 %cpu_avg/op\t 28.57 %cpu_peak/op\t 1.512 cpu_seconds/op\t 3641344 disk_bytes/op\t 76584 B/op\t 1468 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1685740305305,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58388853041,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4145",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "81.82",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.39",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1970294784",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2623816",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55166",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24024297708,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3617",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "83.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.02",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-905216",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1072520",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22800",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 352861695,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8102",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "16.67",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3528",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25173",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "375",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1512062708,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5462",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "28.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.512",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3641344",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "76584",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1468",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "da91f87369e5fde221b8edbac374954e71dae947",
+ "message": "fix: Add cleanup script to Makefile (#444)\n\n*Description of changes:*\r\nRemove files under other directories besides _output, and kill running\r\nprocesses for network, lima and qemu.\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-06-02T20:08:20-07:00",
+ "tree_id": "030696b83e1faf45fa5355cc74459ba8273e20e2",
+ "url": "https://github.com/runfinch/finch/commit/da91f87369e5fde221b8edbac374954e71dae947"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "da91f87369e5fde221b8edbac374954e71dae947",
- "message": "fix: Add cleanup script to Makefile (#444)\n\n*Description of changes:*\r\nRemove files under other directories besides _output, and kill running\r\nprocesses for network, lima and qemu.\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-06-02T20:08:20-07:00",
- "tree_id": "030696b83e1faf45fa5355cc74459ba8273e20e2",
- "url": "https://github.com/runfinch/finch/commit/da91f87369e5fde221b8edbac374954e71dae947"
- },
- "date": 1685763857454,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58515352917,
- "unit": "ns/op\t 0.4901 %cpu_avg/op\t 100.0 %cpu_peak/op\t 58.52 cpu_seconds/op\t1966522368 disk_bytes/op\t 2630544 B/op\t 55319 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24015349833,
- "unit": "ns/op\t 0.3984 %cpu_avg/op\t 36.36 %cpu_peak/op\t 24.02 cpu_seconds/op\t 1060864 disk_bytes/op\t 1069648 B/op\t 22748 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 371074708,
- "unit": "ns/op\t 0.8590 %cpu_avg/op\t 12.82 %cpu_peak/op\t 0.3710 cpu_seconds/op\t -1365 disk_bytes/op\t 26205 B/op\t 393 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1468305791,
- "unit": "ns/op\t 1.029 %cpu_avg/op\t 30.77 %cpu_peak/op\t 1.468 cpu_seconds/op\t 3608576 disk_bytes/op\t 75112 B/op\t 1426 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1685763857454,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58515352917,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4901",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "100.0",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.52",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1966522368",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2630544",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55319",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24015349833,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3984",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "36.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.02",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1060864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069648",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22748",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 371074708,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8590",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.82",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3710",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "-1365",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26205",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "393",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1468305791,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.029",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.468",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "75112",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1426",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "18236774d971065dec28d1db204e1f697d418a9b",
+ "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 (#446)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.2 to 1.9.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.2&new-version=1.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-05T11:15:01-07:00",
+ "tree_id": "70db57c1775154e572df0c514794b3324c7001f6",
+ "url": "https://github.com/runfinch/finch/commit/18236774d971065dec28d1db204e1f697d418a9b"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "18236774d971065dec28d1db204e1f697d418a9b",
- "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 (#446)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.2 to 1.9.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.2&new-version=1.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-05T11:15:01-07:00",
- "tree_id": "70db57c1775154e572df0c514794b3324c7001f6",
- "url": "https://github.com/runfinch/finch/commit/18236774d971065dec28d1db204e1f697d418a9b"
- },
- "date": 1685989144192,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58831576834,
- "unit": "ns/op\t 0.4394 %cpu_avg/op\t 40.00 %cpu_peak/op\t 58.83 cpu_seconds/op\t1933512704 disk_bytes/op\t 2653056 B/op\t 55831 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24094143166,
- "unit": "ns/op\t 0.3633 %cpu_avg/op\t 36.36 %cpu_peak/op\t 24.09 cpu_seconds/op\t 126976 disk_bytes/op\t 1070360 B/op\t 22755 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 352178208,
- "unit": "ns/op\t 0.7732 %cpu_avg/op\t 15.74 %cpu_peak/op\t 0.3521 cpu_seconds/op\t 0 disk_bytes/op\t 25397 B/op\t 376 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1376137000,
- "unit": "ns/op\t 0.6324 %cpu_avg/op\t 15.86 %cpu_peak/op\t 1.376 cpu_seconds/op\t 3624960 disk_bytes/op\t 69344 B/op\t 1339 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1685989144192,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58831576834,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4394",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.83",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1933512704",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2653056",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55831",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24094143166,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3633",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "36.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.09",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "126976",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1070360",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22755",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 352178208,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.7732",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.74",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3521",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25397",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "376",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1376137000,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6324",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "15.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.376",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3624960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "69344",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1339",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "a415e3ef7b2741853bf352b915c4100c77600619",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.7 to 2.10.0 (#449)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.7 to 2.10.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.10.0
\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.7&new-version=2.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-08T12:05:08-07:00",
+ "tree_id": "7d0426eaf21e581716ccaa1d2220d852432ff817",
+ "url": "https://github.com/runfinch/finch/commit/a415e3ef7b2741853bf352b915c4100c77600619"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "a415e3ef7b2741853bf352b915c4100c77600619",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.7 to 2.10.0 (#449)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.7 to 2.10.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.10.0
\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.7&new-version=2.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-08T12:05:08-07:00",
- "tree_id": "7d0426eaf21e581716ccaa1d2220d852432ff817",
- "url": "https://github.com/runfinch/finch/commit/a415e3ef7b2741853bf352b915c4100c77600619"
- },
- "date": 1686251355805,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 56522643750,
- "unit": "ns/op\t 0.4248 %cpu_avg/op\t 44.44 %cpu_peak/op\t 56.52 cpu_seconds/op\t1974063104 disk_bytes/op\t 2545456 B/op\t 53393 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24132778250,
- "unit": "ns/op\t 0.4629 %cpu_avg/op\t 44.44 %cpu_peak/op\t 24.13 cpu_seconds/op\t 18223104 disk_bytes/op\t 1072432 B/op\t 22812 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 336749305,
- "unit": "ns/op\t 1.327 %cpu_avg/op\t 26.85 %cpu_peak/op\t 0.3367 cpu_seconds/op\t 0 disk_bytes/op\t 24648 B/op\t 364 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1303412709,
- "unit": "ns/op\t 0.3423 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.303 cpu_seconds/op\t 15163392 disk_bytes/op\t 66168 B/op\t 1268 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1686251355805,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 56522643750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4248",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "56.52",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1974063104",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2545456",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "53393",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24132778250,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4629",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.13",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "18223104",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1072432",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22812",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 336749305,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.327",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "26.85",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3367",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "24648",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "364",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1303412709,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3423",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.303",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "15163392",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "66168",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1268",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "96fc8d09a051b2ead932e6eef064624b1a842b66",
+ "message": "build(deps): Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#448)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.7 to 1.27.8.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.8
\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n492512f
\r\nv1.27.8 \r\n096f392
\r\nHaveExactElement should not call FailureMessage if a submatcher returned\r\nan e... \r\n8884bee
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.7&new-version=1.27.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-12T10:30:23-07:00",
+ "tree_id": "10f049c03ae10bc0244c31448d03f26a23429098",
+ "url": "https://github.com/runfinch/finch/commit/96fc8d09a051b2ead932e6eef064624b1a842b66"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "96fc8d09a051b2ead932e6eef064624b1a842b66",
- "message": "build(deps): Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#448)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.7 to 1.27.8.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.8
\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n492512f
\r\nv1.27.8 \r\n096f392
\r\nHaveExactElement should not call FailureMessage if a submatcher returned\r\nan e... \r\n8884bee
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.7&new-version=1.27.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-12T10:30:23-07:00",
- "tree_id": "10f049c03ae10bc0244c31448d03f26a23429098",
- "url": "https://github.com/runfinch/finch/commit/96fc8d09a051b2ead932e6eef064624b1a842b66"
- },
- "date": 1686591269933,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 56992669709,
- "unit": "ns/op\t 0.4852 %cpu_avg/op\t 62.50 %cpu_peak/op\t 56.99 cpu_seconds/op\t1971453952 disk_bytes/op\t 2577024 B/op\t 54088 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24011717750,
- "unit": "ns/op\t 0.3645 %cpu_avg/op\t 40.00 %cpu_peak/op\t 24.01 cpu_seconds/op\t 16384 disk_bytes/op\t 1066000 B/op\t 22669 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 365736791,
- "unit": "ns/op\t 0.4695 %cpu_avg/op\t 11.43 %cpu_peak/op\t 0.3657 cpu_seconds/op\t 0 disk_bytes/op\t 26005 B/op\t 389 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1492483875,
- "unit": "ns/op\t 0.7751 %cpu_avg/op\t 30.00 %cpu_peak/op\t 1.492 cpu_seconds/op\t 20402176 disk_bytes/op\t 76992 B/op\t 1460 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1686591269933,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 56992669709,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4852",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "62.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "56.99",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1971453952",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2577024",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "54088",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24011717750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3645",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.01",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1066000",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22669",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 365736791,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4695",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "11.43",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3657",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26005",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "389",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1492483875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.7751",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.492",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20402176",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "76992",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1460",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "113054166+sam-berning@users.noreply.github.com",
+ "name": "Sam Berning",
+ "username": "sam-berning"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "9f4b87c616a0329cb6c8ff27db003766ef0bba2c",
+ "message": "test: mocks LimaUser to fix race condition in support bundle unit tests (#450)\n\nIssue #, if available: https://github.com/runfinch/finch/issues/447\r\n\r\n*Description of changes:*\r\n\r\nThere was a race condition in the unit tests for `support-bundle\r\ngenerate` caused by Lima's `osutil.LimaUser` not being thread-safe. I\r\ndon't think there's really a need to make it thread-safe, so I think\r\nit's easier to just wrap and mock it for the unit tests, which I've done\r\nhere.\r\n\r\n*Testing done:*\r\n\r\n```\r\nmake test-unit\r\n```\r\n\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Sam Berning ",
+ "timestamp": "2023-06-13T10:50:41-07:00",
+ "tree_id": "ae8b6aa66838b1b01fd822604932582730de8710",
+ "url": "https://github.com/runfinch/finch/commit/9f4b87c616a0329cb6c8ff27db003766ef0bba2c"
},
- {
- "commit": {
- "author": {
- "email": "113054166+sam-berning@users.noreply.github.com",
- "name": "Sam Berning",
- "username": "sam-berning"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "9f4b87c616a0329cb6c8ff27db003766ef0bba2c",
- "message": "test: mocks LimaUser to fix race condition in support bundle unit tests (#450)\n\nIssue #, if available: https://github.com/runfinch/finch/issues/447\r\n\r\n*Description of changes:*\r\n\r\nThere was a race condition in the unit tests for `support-bundle\r\ngenerate` caused by Lima's `osutil.LimaUser` not being thread-safe. I\r\ndon't think there's really a need to make it thread-safe, so I think\r\nit's easier to just wrap and mock it for the unit tests, which I've done\r\nhere.\r\n\r\n*Testing done:*\r\n\r\n```\r\nmake test-unit\r\n```\r\n\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Sam Berning ",
- "timestamp": "2023-06-13T10:50:41-07:00",
- "tree_id": "ae8b6aa66838b1b01fd822604932582730de8710",
- "url": "https://github.com/runfinch/finch/commit/9f4b87c616a0329cb6c8ff27db003766ef0bba2c"
- },
- "date": 1686678886770,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 56515338000,
- "unit": "ns/op\t 0.4973 %cpu_avg/op\t 55.56 %cpu_peak/op\t 56.52 cpu_seconds/op\t1972568064 disk_bytes/op\t 2548000 B/op\t 53441 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24146751375,
- "unit": "ns/op\t 0.3953 %cpu_avg/op\t 44.44 %cpu_peak/op\t 24.15 cpu_seconds/op\t 1081344 disk_bytes/op\t 1074312 B/op\t 22840 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 379490625,
- "unit": "ns/op\t 1.242 %cpu_avg/op\t 21.01 %cpu_peak/op\t 0.3794 cpu_seconds/op\t 0 disk_bytes/op\t 26906 B/op\t 403 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1423261750,
- "unit": "ns/op\t 1.034 %cpu_avg/op\t 40.00 %cpu_peak/op\t 1.423 cpu_seconds/op\t 3592192 disk_bytes/op\t 73096 B/op\t 1388 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1686678886770,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 56515338000,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4973",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "55.56",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "56.52",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1972568064",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2548000",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "53441",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24146751375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3953",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.15",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1081344",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1074312",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22840",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 379490625,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.242",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "21.01",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3794",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26906",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "403",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1423261750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.034",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.423",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3592192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "73096",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1388",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "fef6e772c28429ef14068702c1dfd8e9fec2dea1",
+ "message": "build(deps): Bump golang.org/x/crypto from 0.9.0 to 0.10.0 (#451)\n\nBumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.9.0\r\nto 0.10.0.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.9.0&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-16T10:41:24-07:00",
+ "tree_id": "b3101d1bb452fb552751813bab329f79af64f4ab",
+ "url": "https://github.com/runfinch/finch/commit/fef6e772c28429ef14068702c1dfd8e9fec2dea1"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "fef6e772c28429ef14068702c1dfd8e9fec2dea1",
- "message": "build(deps): Bump golang.org/x/crypto from 0.9.0 to 0.10.0 (#451)\n\nBumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.9.0\r\nto 0.10.0.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.9.0&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-16T10:41:24-07:00",
- "tree_id": "b3101d1bb452fb552751813bab329f79af64f4ab",
- "url": "https://github.com/runfinch/finch/commit/fef6e772c28429ef14068702c1dfd8e9fec2dea1"
- },
- "date": 1686937531226,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 57612230417,
- "unit": "ns/op\t 0.4093 %cpu_avg/op\t 44.44 %cpu_peak/op\t 57.61 cpu_seconds/op\t1986293760 disk_bytes/op\t 2602424 B/op\t 54680 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24094082292,
- "unit": "ns/op\t 0.4623 %cpu_avg/op\t 45.45 %cpu_peak/op\t 24.09 cpu_seconds/op\t 17649664 disk_bytes/op\t 1075880 B/op\t 22871 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 352437500,
- "unit": "ns/op\t 0.2216 %cpu_avg/op\t 7.407 %cpu_peak/op\t 0.3524 cpu_seconds/op\t 0 disk_bytes/op\t 25802 B/op\t 378 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1302175208,
- "unit": "ns/op\t 0.1852 %cpu_avg/op\t 22.41 %cpu_peak/op\t 1.302 cpu_seconds/op\t 3592192 disk_bytes/op\t 65752 B/op\t 1267 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1686937531226,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 57612230417,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4093",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "57.61",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1986293760",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2602424",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "54680",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24094082292,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4623",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.09",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "17649664",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1075880",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22871",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 352437500,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.2216",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "7.407",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3524",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25802",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "378",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1302175208,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.1852",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.41",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.302",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3592192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "65752",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1267",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "f7e091670fb2ac5377423e72f98aa8be33aa41c8",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 (#456)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.10.0 to 2.11.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.11.0
\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n5c32b2a
\r\nv2.11.0 \r\nd6bba86
\r\nProgrammatic focus is no longer overwrriten by CLI filters \r\n4a70a38
\r\nBump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218) \r\n97eda4d
\r\nBump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.10.0&new-version=2.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-27T11:58:39-07:00",
+ "tree_id": "38d4500d4339a269988a2d4b9bfda964b2951484",
+ "url": "https://github.com/runfinch/finch/commit/f7e091670fb2ac5377423e72f98aa8be33aa41c8"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "f7e091670fb2ac5377423e72f98aa8be33aa41c8",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 (#456)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.10.0 to 2.11.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.11.0
\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n5c32b2a
\r\nv2.11.0 \r\nd6bba86
\r\nProgrammatic focus is no longer overwrriten by CLI filters \r\n4a70a38
\r\nBump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218) \r\n97eda4d
\r\nBump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.10.0&new-version=2.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-27T11:58:39-07:00",
- "tree_id": "38d4500d4339a269988a2d4b9bfda964b2951484",
- "url": "https://github.com/runfinch/finch/commit/f7e091670fb2ac5377423e72f98aa8be33aa41c8"
- },
- "date": 1687892792915,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 59873770291,
- "unit": "ns/op\t 0.4560 %cpu_avg/op\t 82.35 %cpu_peak/op\t 59.87 cpu_seconds/op\t1978720256 disk_bytes/op\t 2688152 B/op\t 56630 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23973235375,
- "unit": "ns/op\t 0.3933 %cpu_avg/op\t 33.33 %cpu_peak/op\t 23.97 cpu_seconds/op\t 65536 disk_bytes/op\t 1065560 B/op\t 22659 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 349245500,
- "unit": "ns/op\t 1.012 %cpu_avg/op\t 15.00 %cpu_peak/op\t 0.3492 cpu_seconds/op\t 0 disk_bytes/op\t 25256 B/op\t 373 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1427052542,
- "unit": "ns/op\t 0.3994 %cpu_avg/op\t 22.22 %cpu_peak/op\t 1.427 cpu_seconds/op\t 3592192 disk_bytes/op\t 73984 B/op\t 1400 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1687892792915,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 59873770291,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4560",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "82.35",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "59.87",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1978720256",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2688152",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "56630",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23973235375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3933",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.97",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "65536",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1065560",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22659",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 349245500,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.012",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.00",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3492",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25256",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "373",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1427052542,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3994",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.427",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3592192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "73984",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1400",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "e321f1dc607626a7f65b33e0a0f503d8c856b1f2",
+ "message": "build(deps): Bump golang.org/x/tools from 0.9.3 to 0.10.0 (#455)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.3\r\nto 0.10.0.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.10.0
\r\nThis release contains initial support for standalone packages and\r\npackage renaming. Please see below for more details.
\r\nWe are also changing our release policy to better align with\r\nsemver.
\r\nSupport changes
\r\nThis version of gopls contains changes to our release policy,\r\ndeprecates support for some older Go versions, and deprecates support\r\nfor several experimental features.
\r\nNew release policy
\r\nAs described in golang/go#55267,\r\nwe are tightening our release policy to better follow semver, increase\r\nstability, and reduce release-related toil. Significant new features\r\nwill only be introduced in *.*.0
patch versions, and\r\nsubsequent patch releases will consist only of bugfixes. For example,\r\nthis version (v0.10.0) introduces several new features, described below.\r\nSubsequent v0.10.* releases will contain only bugfixes.
\r\nFinal support for Go 1.13-1.15
\r\nConsistent with the above release policy and our stated support\r\nwindow, the v0.10.*
minor version will be the final set\r\nof releases to support being used with Go 1.13-1.15. See golang/go#52982\r\nfor details.
\r\nGopls will pop up a warning if it resolves a version of the\r\ngo
command that is older than 1.16. Starting with\r\ngopls@v0.11.0, gopls will cease to function when used with a\r\ngo
command with a version older than 1.16.
\r\nDeprecated experimental features
\r\nThe following experimental features are deprecated, and will be\r\nremoved in gopls@v0.11.0:
\r\n\r\n\r\n- experimentalWorkspaceModule
golang/go#52897
go.work
\r\nfiles. See our documentation\r\nfor information on how to use go.work
files to work on\r\nmultiple modules. \r\n\r\n- experimentalWatchedFileDelay
golang/go#55268
workspace/didChangeWatchedFiles
\r\nnotifications. \r\n\r\n- experimentalUseInvalidMetadata
golang/go#54180
\r\n
\r\nNew Features
\r\nSupport for "standalone packages"
\r\nGopls now recognizes certain files as "standalone main\r\npackages", meaning they should be interpreted as main packages\r\nconsisting of a single file. To do this, gopls looks for packages named\r\nmain
containing a single build constraint that matches one\r\nof the tags configured by the new standaloneTags
\r\nsetting.
\r\nThis enables cross references and other features when working in a\r\nfile such as the example below that contains a //go:build\r\nignore
build constraint.
\r\n\r\n(preview) Support for package renaming
\r\ngolang/go#41567
golang/go#56184.
\r\nTo rename a package, initiate a rename request on the package clause\r\nof a file in the package:\r\n
\r\nWhen this renaming is applied, gopls will adjust other package files\r\naccordingly, rename the package directory, and update import paths\r\nreferencing the current package or any nested package in the renamed\r\ndirectory.\r\n
\r\nMethod information in hover
\r\nHovering over a type now shows a summary of its methods.
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n7261b32
\r\ngopls/internal/regtest: fix goimports on windows when using\r\nvendoring \r\n41e4e56
\r\ngopls/internal/lsp/source/completion: ensuring completion\r\ncompleteness \r\nac29460
\r\ngo/ssa: fix bug in writeSignature on external functions \r\n3b62e7e
\r\ngo/ssa: use core type within (*builder).receiver \r\nf394d45
\r\ngopls/internal/lsp/cache: compute xrefs and methodsets\r\nasynchronously \r\n27dbf85
\r\ngo.mod: update golang.org/x dependencies \r\nc6c9830
\r\ngo/types/objectpath: memoize scope lookup in objectpath.Encoder \r\n0245e1d
\r\ngopls/internal/regtest/codelens: set GOWORK=off for go mod vendor \r\n85be888
\r\ngo/analysis/passes/defers: add analyser for defer mistake \r\nc43232f
\r\ncmd/digraph: improve examples using go list, mod \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.3&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-29T18:05:02-04:00",
+ "tree_id": "15d367907740e52ecdec13591f1472991cc10c5e",
+ "url": "https://github.com/runfinch/finch/commit/e321f1dc607626a7f65b33e0a0f503d8c856b1f2"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "e321f1dc607626a7f65b33e0a0f503d8c856b1f2",
- "message": "build(deps): Bump golang.org/x/tools from 0.9.3 to 0.10.0 (#455)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.3\r\nto 0.10.0.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.10.0
\r\nThis release contains initial support for standalone packages and\r\npackage renaming. Please see below for more details.
\r\nWe are also changing our release policy to better align with\r\nsemver.
\r\nSupport changes
\r\nThis version of gopls contains changes to our release policy,\r\ndeprecates support for some older Go versions, and deprecates support\r\nfor several experimental features.
\r\nNew release policy
\r\nAs described in golang/go#55267,\r\nwe are tightening our release policy to better follow semver, increase\r\nstability, and reduce release-related toil. Significant new features\r\nwill only be introduced in *.*.0
patch versions, and\r\nsubsequent patch releases will consist only of bugfixes. For example,\r\nthis version (v0.10.0) introduces several new features, described below.\r\nSubsequent v0.10.* releases will contain only bugfixes.
\r\nFinal support for Go 1.13-1.15
\r\nConsistent with the above release policy and our stated support\r\nwindow, the v0.10.*
minor version will be the final set\r\nof releases to support being used with Go 1.13-1.15. See golang/go#52982\r\nfor details.
\r\nGopls will pop up a warning if it resolves a version of the\r\ngo
command that is older than 1.16. Starting with\r\ngopls@v0.11.0, gopls will cease to function when used with a\r\ngo
command with a version older than 1.16.
\r\nDeprecated experimental features
\r\nThe following experimental features are deprecated, and will be\r\nremoved in gopls@v0.11.0:
\r\n\r\n\r\n- experimentalWorkspaceModule
golang/go#52897
go.work
\r\nfiles. See our documentation\r\nfor information on how to use go.work
files to work on\r\nmultiple modules. \r\n\r\n- experimentalWatchedFileDelay
golang/go#55268
workspace/didChangeWatchedFiles
\r\nnotifications. \r\n\r\n- experimentalUseInvalidMetadata
golang/go#54180
\r\n
\r\nNew Features
\r\nSupport for "standalone packages"
\r\nGopls now recognizes certain files as "standalone main\r\npackages", meaning they should be interpreted as main packages\r\nconsisting of a single file. To do this, gopls looks for packages named\r\nmain
containing a single build constraint that matches one\r\nof the tags configured by the new standaloneTags
\r\nsetting.
\r\nThis enables cross references and other features when working in a\r\nfile such as the example below that contains a //go:build\r\nignore
build constraint.
\r\n\r\n(preview) Support for package renaming
\r\ngolang/go#41567
golang/go#56184.
\r\nTo rename a package, initiate a rename request on the package clause\r\nof a file in the package:\r\n
\r\nWhen this renaming is applied, gopls will adjust other package files\r\naccordingly, rename the package directory, and update import paths\r\nreferencing the current package or any nested package in the renamed\r\ndirectory.\r\n
\r\nMethod information in hover
\r\nHovering over a type now shows a summary of its methods.
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n7261b32
\r\ngopls/internal/regtest: fix goimports on windows when using\r\nvendoring \r\n41e4e56
\r\ngopls/internal/lsp/source/completion: ensuring completion\r\ncompleteness \r\nac29460
\r\ngo/ssa: fix bug in writeSignature on external functions \r\n3b62e7e
\r\ngo/ssa: use core type within (*builder).receiver \r\nf394d45
\r\ngopls/internal/lsp/cache: compute xrefs and methodsets\r\nasynchronously \r\n27dbf85
\r\ngo.mod: update golang.org/x dependencies \r\nc6c9830
\r\ngo/types/objectpath: memoize scope lookup in objectpath.Encoder \r\n0245e1d
\r\ngopls/internal/regtest/codelens: set GOWORK=off for go mod vendor \r\n85be888
\r\ngo/analysis/passes/defers: add analyser for defer mistake \r\nc43232f
\r\ncmd/digraph: improve examples using go list, mod \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.3&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-29T18:05:02-04:00",
- "tree_id": "15d367907740e52ecdec13591f1472991cc10c5e",
- "url": "https://github.com/runfinch/finch/commit/e321f1dc607626a7f65b33e0a0f503d8c856b1f2"
- },
- "date": 1688076590437,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 59452658792,
- "unit": "ns/op\t 0.4025 %cpu_avg/op\t 44.44 %cpu_peak/op\t 59.45 cpu_seconds/op\t1973895168 disk_bytes/op\t 2677272 B/op\t 56385 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23934815375,
- "unit": "ns/op\t 0.4682 %cpu_avg/op\t 83.33 %cpu_peak/op\t 23.93 cpu_seconds/op\t 17145856 disk_bytes/op\t 1064256 B/op\t 22622 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 397271854,
- "unit": "ns/op\t 1.255 %cpu_avg/op\t 23.05 %cpu_peak/op\t 0.3972 cpu_seconds/op\t 0 disk_bytes/op\t 27648 B/op\t 421 allocs/op",
- "extra": "4 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1292407291,
- "unit": "ns/op\t 0.2149 %cpu_avg/op\t 14.90 %cpu_peak/op\t 1.292 cpu_seconds/op\t 3592192 disk_bytes/op\t 65736 B/op\t 1267 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1688076590437,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 59452658792,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4025",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "59.45",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1973895168",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2677272",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "56385",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23934815375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4682",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "83.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.93",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "17145856",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1064256",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22622",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 397271854,
+ "unit": "ns/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.255",
+ "unit": "%cpu_avg/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "23.05",
+ "unit": "%cpu_peak/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3972",
+ "unit": "cpu_seconds/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "27648",
+ "unit": "B/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "421",
+ "unit": "allocs/op",
+ "extra": "4 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1292407291,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2149",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "14.90",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.292",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3592192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "65736",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1267",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "55906459+austinvazquez@users.noreply.github.com",
+ "name": "Austin Vazquez",
+ "username": "austinvazquez"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7",
+ "message": "chore: Update Go linter to v1.53.3 and resolve errors (#459)\n\nIssue #, if available:\r\nN/A\r\n\r\n*Description of changes:*\r\nUpdates golangci-lint in CI to v1.53.3 release and resolves linting\r\nerrors for unused arguments.\r\n\r\n*Testing done:*\r\n```make lint```\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Austin Vazquez ",
+ "timestamp": "2023-06-29T19:13:36-04:00",
+ "tree_id": "b8b267781610164eb5bd66888fce1a330bab334e",
+ "url": "https://github.com/runfinch/finch/commit/4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7"
},
- {
- "commit": {
- "author": {
- "email": "55906459+austinvazquez@users.noreply.github.com",
- "name": "Austin Vazquez",
- "username": "austinvazquez"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7",
- "message": "chore: Update Go linter to v1.53.3 and resolve errors (#459)\n\nIssue #, if available:\r\nN/A\r\n\r\n*Description of changes:*\r\nUpdates golangci-lint in CI to v1.53.3 release and resolves linting\r\nerrors for unused arguments.\r\n\r\n*Testing done:*\r\n```make lint```\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Austin Vazquez ",
- "timestamp": "2023-06-29T19:13:36-04:00",
- "tree_id": "b8b267781610164eb5bd66888fce1a330bab334e",
- "url": "https://github.com/runfinch/finch/commit/4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7"
- },
- "date": 1688080785299,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 123703164875,
- "unit": "ns/op\t 0.2715 %cpu_avg/op\t 55.56 %cpu_peak/op\t 123.7 cpu_seconds/op\t1987235840 disk_bytes/op\t 5489080 B/op\t 116304 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24054021083,
- "unit": "ns/op\t 0.3690 %cpu_avg/op\t 66.67 %cpu_peak/op\t 24.05 cpu_seconds/op\t 1069056 disk_bytes/op\t 1067720 B/op\t 22708 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 351214459,
- "unit": "ns/op\t 0.7177 %cpu_avg/op\t 17.78 %cpu_peak/op\t 0.3512 cpu_seconds/op\t 0 disk_bytes/op\t 25776 B/op\t 376 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1352368375,
- "unit": "ns/op\t 0.3078 %cpu_avg/op\t 22.22 %cpu_peak/op\t 1.352 cpu_seconds/op\t 3608576 disk_bytes/op\t 67952 B/op\t 1317 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1688080785299,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 123703164875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2715",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "55.56",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "123.7",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1987235840",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "5489080",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "116304",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24054021083,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3690",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "66.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.05",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1069056",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1067720",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22708",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 351214459,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.7177",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "17.78",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3512",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25776",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "376",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1352368375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3078",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.352",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67952",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1317",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "d6746a447e10bed6c13d197c8d693b27e02ac3aa",
+ "message": "build(deps): Bump k8s.io/apimachinery from 0.27.2 to 0.27.3 (#454)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.2 to 0.27.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.2&new-version=0.27.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-30T08:44:53-07:00",
+ "tree_id": "c4ed21f0d0322c401c302f18655c952447d551ad",
+ "url": "https://github.com/runfinch/finch/commit/d6746a447e10bed6c13d197c8d693b27e02ac3aa"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "d6746a447e10bed6c13d197c8d693b27e02ac3aa",
- "message": "build(deps): Bump k8s.io/apimachinery from 0.27.2 to 0.27.3 (#454)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.2 to 0.27.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.2&new-version=0.27.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-30T08:44:53-07:00",
- "tree_id": "c4ed21f0d0322c401c302f18655c952447d551ad",
- "url": "https://github.com/runfinch/finch/commit/d6746a447e10bed6c13d197c8d693b27e02ac3aa"
- },
- "date": 1688140181709,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 109783419791,
- "unit": "ns/op\t 0.2562 %cpu_avg/op\t 73.53 %cpu_peak/op\t 109.8 cpu_seconds/op\t1987923968 disk_bytes/op\t 4927528 B/op\t 103539 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23816873875,
- "unit": "ns/op\t 0.3982 %cpu_avg/op\t 36.36 %cpu_peak/op\t 23.82 cpu_seconds/op\t 1073152 disk_bytes/op\t 1061672 B/op\t 22560 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 350664250,
- "unit": "ns/op\t 0.6646 %cpu_avg/op\t 13.26 %cpu_peak/op\t 0.3506 cpu_seconds/op\t 0 disk_bytes/op\t 25605 B/op\t 376 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1492144875,
- "unit": "ns/op\t 0.4876 %cpu_avg/op\t 21.28 %cpu_peak/op\t 1.492 cpu_seconds/op\t 3596288 disk_bytes/op\t 76176 B/op\t 1458 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- }
- ]
- }
+ "date": 1688140181709,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 109783419791,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2562",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "73.53",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "109.8",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1987923968",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "4927528",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "103539",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23816873875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3982",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "36.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.82",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1073152",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1061672",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22560",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 350664250,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6646",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "13.26",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3506",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25605",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "376",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1492144875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4876",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "21.28",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.492",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3596288",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "76176",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1458",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ }
+ ]
+}
}
\ No newline at end of file
diff --git a/dev/bench/macOS/12/x86_64/data.js b/dev/bench/macOS/12/x86_64/data.js
index c5967d180..9f05350d3 100644
--- a/dev/bench/macOS/12/x86_64/data.js
+++ b/dev/bench/macOS/12/x86_64/data.js
@@ -1,2072 +1,8264 @@
window.BENCHMARK_DATA = {
"lastUpdate": 1688140218916,
- "repoUrl": "https://github.com/runfinch/finch",
- "entries": {
- "Finch Benchmark": [
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "325a8510c75b0b030be5ec075327ac337b7c22e5",
- "message": "ci: add benchmarking workflow (#384)\n\nhttps://github.com/runfinch/finch/issues/345\r\n\r\n*Description of changes:*\r\n\r\n*Testing done:*\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/x86_64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/x86_64/\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-04-28T18:08:29Z",
- "tree_id": "36a278e67f9282187e295ad59e2bcea15679a739",
- "url": "https://github.com/runfinch/finch/commit/325a8510c75b0b030be5ec075327ac337b7c22e5"
- },
- "date": 1682705660738,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 91255409465,
- "unit": "ns/op\t 0.2698 %cpu_avg/op\t 30.77 %cpu_peak/op\t 91.26 cpu_seconds/op\t2682449920 disk_bytes/op\t 4057504 B/op\t 85998 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26132336795,
- "unit": "ns/op\t 0.3783 %cpu_avg/op\t 31.25 %cpu_peak/op\t 26.13 cpu_seconds/op\t 512000 disk_bytes/op\t 1163328 B/op\t 24892 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 451716536,
- "unit": "ns/op\t 0.4689 %cpu_avg/op\t 7.509 %cpu_peak/op\t 0.4516 cpu_seconds/op\t 4096 disk_bytes/op\t 30037 B/op\t 483 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1740483594,
- "unit": "ns/op\t 0.2702 %cpu_avg/op\t 16.67 %cpu_peak/op\t 1.740 cpu_seconds/op\t 3526656 disk_bytes/op\t 88080 B/op\t 1720 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "76b31c0c453935f22588523f65888e103581cd89",
- "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.3 to 3.23.4 (#389)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.3 to 3.23.4.\r\n\r\nRelease notes
\r\nSourced from github.com/shirou/gopsutil/v3's\r\nreleases.
\r\n\r\nv3.23.4
\r\n\r\nWhat's Changed
\r\ncpu
\r\n\r\nprocess
\r\n\r\nOther Changes
\r\n\r\nNew Contributors
\r\n\r\nFull Changelog: https://github.com/shirou/gopsutil/compare/v3.23.3...v3.23.4
\r\n
\r\n \r\n\r\nCommits
\r\n\r\ndb89d12
\r\nMerge pull request #1453\r\nfrom Juneezee/refactor/errors.Is \r\n0439039
\r\nrefactor(process): compare error with errors.Is
\r\n17fac7c
\r\nMerge pull request #1450\r\nfrom gabibguti/master \r\n2d2db8f
\r\nCreate SECURITY.md \r\n10f213c
\r\nMerge pull request #1448\r\nfrom shirou/dependabot/github_actions/actions/upload... \r\nd6ee47e
\r\nchore(deps): bump actions/upload-artifact from 3.1.0 to 3.1.2 \r\ncf428f8
\r\nMerge pull request #1443\r\nfrom mmorel-35/linter \r\n755bcab
\r\nUpdate branch of sbom_generator.yml \r\n21a646b
\r\nMerge pull request #1447\r\nfrom shirou/feature/add_sbom_github_actions \r\nbcf3fe9
\r\nMerge pull request #1445\r\nfrom shirou/dependabot/go_modules/golang.org/x/sys-0... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.3&new-version=3.23.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T14:04:07-04:00",
- "tree_id": "f741032f7d876d262db9b5af37cdc5bbea24e279",
- "url": "https://github.com/runfinch/finch/commit/76b31c0c453935f22588523f65888e103581cd89"
- },
- "date": 1683137504233,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 83434578606,
- "unit": "ns/op\t 0.2697 %cpu_avg/op\t 40.00 %cpu_peak/op\t 83.43 cpu_seconds/op\t2696257536 disk_bytes/op\t 3742400 B/op\t 78828 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26006867487,
- "unit": "ns/op\t 0.3548 %cpu_avg/op\t 50.00 %cpu_peak/op\t 26.01 cpu_seconds/op\t 2736128 disk_bytes/op\t 1157200 B/op\t 24748 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 429929844,
- "unit": "ns/op\t 1.289 %cpu_avg/op\t 20.00 %cpu_peak/op\t 0.4299 cpu_seconds/op\t 0 disk_bytes/op\t 29005 B/op\t 459 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1583605176,
- "unit": "ns/op\t 0.4564 %cpu_avg/op\t 16.67 %cpu_peak/op\t 1.584 cpu_seconds/op\t 20365312 disk_bytes/op\t 81480 B/op\t 1571 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "710299445ed287c67114b277be7bd2a29715956b",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.3 (#390)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.2 to 2.9.3.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.3
\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n7a8249e
\r\nv2.9.3 \r\nc0c77b6
\r\nAdd RenderTimeline to GinkgoT() \r\n8b925ab
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183) \r\ne3795a4
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184) \r\nb453793
\r\nBump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182) \r\n73ed75b
\r\nBump actions/setup-go from 3 to 4 (#1164) \r\n0a2bc64
\r\nBump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173) \r\nf41c557
\r\nBump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174) \r\n8e423e5
\r\nBump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179) \r\n227c662
\r\nupdqte Measure deprecation message. fixes #1176 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.2&new-version=2.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T14:13:23-04:00",
- "tree_id": "5e835791535734dd48321218c7346d8ad9ec9c0b",
- "url": "https://github.com/runfinch/finch/commit/710299445ed287c67114b277be7bd2a29715956b"
- },
- "date": 1683138010469,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 80754922366,
- "unit": "ns/op\t 0.2755 %cpu_avg/op\t 33.33 %cpu_peak/op\t 80.75 cpu_seconds/op\t2702020608 disk_bytes/op\t 3627928 B/op\t 76233 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26992789978,
- "unit": "ns/op\t 0.3391 %cpu_avg/op\t 41.67 %cpu_peak/op\t 26.99 cpu_seconds/op\t -10420224 disk_bytes/op\t 1198016 B/op\t 25670 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 452201559,
- "unit": "ns/op\t 0.5555 %cpu_avg/op\t 14.84 %cpu_peak/op\t 0.4521 cpu_seconds/op\t 0 disk_bytes/op\t 30410 B/op\t 484 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1601655731,
- "unit": "ns/op\t 0.6963 %cpu_avg/op\t 21.43 %cpu_peak/op\t 1.602 cpu_seconds/op\t 3600384 disk_bytes/op\t 81848 B/op\t 1591 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785",
- "message": "build(deps): Bump github.com/docker/docker from 23.0.3+incompatible to 23.0.5+incompatible (#382)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.3+incompatible to 23.0.5+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv23.0.5
\r\n23.0.5
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Add the
--all
/ -a
option when pruning\r\nvolumes. docker/cli#4229 \r\n- Add
--format=json
for docker info
. docker/cli#4320 \r\n- Fix log loss with the AWSLogs log driver. moby/moby#45350
\r\n- Fix a regression introduced in v23.0.4 where dockerd would refuse to\r\nstart if the fixed-cidr config parameter is provided but not bip. moby/moby#45403
\r\n- Fix a panic in libnetwork during daemon start moby/moby#45376
\r\n- Fix "tag" event not being sent when an image is built with\r\n
buildx
. moby/moby#45410 \r\n
\r\nPackaging Updates
\r\n\r\nv23.0.4
\r\n23.0.4
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a performance regression in Docker CLI 23.0.0 docker/cli#4141.
\r\n- Fix progress indicator on
docker cp
not functioning as\r\nintended docker/cli#4157. \r\n- Fix shell completion for
docker compose --file
docker/cli#4177. \r\n- Fix an error caused by incorrect handling of\r\n"default-address-pools" in
daemon.json
moby/moby#45246. \r\n
\r\nPackaging Updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n94d3ad6
\r\nMerge pull request #45410\r\nfrom rumpl/23.0_backport-fix-buildx-tag-events \r\n933a9f8
\r\nMerge pull request #45407\r\nfrom thaJeztah/23.0_backport_vendor_runc_1.1.5 \r\nfe0a414
\r\nUse the image service instead of the reference store for tagging \r\n1b1230e
\r\nMerge pull request #45375\r\nfrom thaJeztah/23.0_backport_bump_swarmkit \r\n1b26303
\r\nMerge pull request #45374\r\nfrom thaJeztah/23.0_backport_stfu_grpc \r\n682542f
\r\nMerge pull request #45373\r\nfrom thaJeztah/23.0_backport_assorted_test_and_pack... \r\n40ec0eb
\r\nvendor: github.com/opencontainers/runc v1.1.5 \r\n9af6762
\r\nMerge pull request #45403\r\nfrom akerouanton/23.0-cherrypick-2d31697 \r\n0b6449a
\r\nMerge pull request #45376\r\nfrom thaJeztah/23.0_backport_delete_network_more_at... \r\n227d3f3
\r\ndaemon: set docker0 subpool as the IPAM pool \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.3+incompatible&new-version=23.0.5+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T15:41:11-04:00",
- "tree_id": "1c20d3fd2834f22310254aa23e661742782dcfd8",
- "url": "https://github.com/runfinch/finch/commit/3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785"
- },
- "date": 1683143351312,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 122272685835,
- "unit": "ns/op\t 0.2234 %cpu_avg/op\t 33.33 %cpu_peak/op\t 122.3 cpu_seconds/op\t2684911616 disk_bytes/op\t 5425872 B/op\t 114878 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26001654777,
- "unit": "ns/op\t 0.3715 %cpu_avg/op\t 30.77 %cpu_peak/op\t 26.00 cpu_seconds/op\t 3612672 disk_bytes/op\t 1159968 B/op\t 24795 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 451961459,
- "unit": "ns/op\t 0.4811 %cpu_avg/op\t 15.97 %cpu_peak/op\t 0.4519 cpu_seconds/op\t 0 disk_bytes/op\t 29965 B/op\t 480 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1649193359,
- "unit": "ns/op\t 0.2683 %cpu_avg/op\t 16.67 %cpu_peak/op\t 1.649 cpu_seconds/op\t 3600384 disk_bytes/op\t 83384 B/op\t 1629 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "cc679ef266c7da49e9339d69130f242d8285bc96",
- "message": "ci: remove setup-go and explicitly set shell in benchmark (#401)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nFix the workflow failure happened recently.\r\nhttps://github.com/runfinch/finch/actions/runs/4920343212/jobs/8789029862\r\n\r\n*Testing done:*\r\nIn feature branch.\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-05-16T13:59:41-07:00",
- "tree_id": "ce9148fa0e13ad776e232868257642729f8bf853",
- "url": "https://github.com/runfinch/finch/commit/cc679ef266c7da49e9339d69130f242d8285bc96"
- },
- "date": 1684271091425,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 80141305207,
- "unit": "ns/op\t 0.2935 %cpu_avg/op\t 38.46 %cpu_peak/op\t 80.14 cpu_seconds/op\t2664083456 disk_bytes/op\t 3601648 B/op\t 75648 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 28848313184,
- "unit": "ns/op\t 0.3679 %cpu_avg/op\t 46.67 %cpu_peak/op\t 28.85 cpu_seconds/op\t 24576 disk_bytes/op\t 1300448 B/op\t 27388 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 462562354,
- "unit": "ns/op\t 1.034 %cpu_avg/op\t 11.62 %cpu_peak/op\t 0.4625 cpu_seconds/op\t 0 disk_bytes/op\t 30349 B/op\t 492 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1767866725,
- "unit": "ns/op\t 0.2440 %cpu_avg/op\t 14.29 %cpu_peak/op\t 1.768 cpu_seconds/op\t 3624960 disk_bytes/op\t 88968 B/op\t 1749 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "41898282+github-actions[bot]@users.noreply.github.com",
- "name": "github-actions[bot]",
- "username": "github-actions[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "06d86b2bc348db9f0d8d02678faee556719b883d",
- "message": "build(deps): Bump submodules (#402)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
- "timestamp": "2023-05-17T16:24:01Z",
- "tree_id": "288eddf483f6ff89d0e83c6e089da366bce0295d",
- "url": "https://github.com/runfinch/finch/commit/06d86b2bc348db9f0d8d02678faee556719b883d"
- },
- "date": 1684340948075,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 77722208248,
- "unit": "ns/op\t 0.2990 %cpu_avg/op\t 42.86 %cpu_peak/op\t 77.72 cpu_seconds/op\t2564583424 disk_bytes/op\t 3503248 B/op\t 73464 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26327482250,
- "unit": "ns/op\t 0.3765 %cpu_avg/op\t 33.33 %cpu_peak/op\t 26.33 cpu_seconds/op\t -102400 disk_bytes/op\t 1170776 B/op\t 25046 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 466144249,
- "unit": "ns/op\t 0.5329 %cpu_avg/op\t 8.159 %cpu_peak/op\t 0.4661 cpu_seconds/op\t 0 disk_bytes/op\t 30624 B/op\t 496 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1773759790,
- "unit": "ns/op\t 0.4025 %cpu_avg/op\t 16.67 %cpu_peak/op\t 1.774 cpu_seconds/op\t 20398080 disk_bytes/op\t 88992 B/op\t 1758 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "05b6b2e7364036a3d30b67ad409f55526cc59ffe",
- "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 (#405)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.0 to 1.9.1.\r\n\r\nCommits
\r\n\r\nb30aa27
\r\nMerge pull request #1339\r\nfrom xieyuschen/patch-1 \r\n6acd903
\r\nMerge pull request #1376\r\nfrom ozfive/master \r\n105e63f
\r\nMerge pull request #1 from\r\nashmckenzie/ashmckenzie/fix-writer-scanner \r\nc052ba6
\r\nScan text in 64KB chunks \r\ne59b167
\r\nMerge pull request #1372\r\nfrom tommyblue/syslog_different_loglevels \r\n766cfec
\r\nThis commit fixes a potential denial of service vulnerability in\r\nlogrus.Write... \r\n70234da
\r\nAdd instructions to use different log levels for local and syslog \r\na448f82
\r\nMerge pull request #1362\r\nfrom FrancoisWagner/fix-data-race-in-hooks-test-pkg \r\nff07b25
\r\nFix data race in hooks.test package \r\nd8787af
\r\nUse text when shows the logrus output \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.0&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-17T16:59:12-07:00",
- "tree_id": "4200288d7d0b7a0007ed4d8c2a30b6f3c39a38dc",
- "url": "https://github.com/runfinch/finch/commit/05b6b2e7364036a3d30b67ad409f55526cc59ffe"
- },
- "date": 1684368471697,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 187808826186,
- "unit": "ns/op\t 0.1479 %cpu_avg/op\t 78.57 %cpu_peak/op\t 187.8 cpu_seconds/op\t2673029120 disk_bytes/op\t 8376808 B/op\t 174913 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 29312804066,
- "unit": "ns/op\t 0.3021 %cpu_avg/op\t 21.43 %cpu_peak/op\t 29.31 cpu_seconds/op\t 151552 disk_bytes/op\t 1319968 B/op\t 27829 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 499825203,
- "unit": "ns/op\t 0.9568 %cpu_avg/op\t 21.28 %cpu_peak/op\t 0.4997 cpu_seconds/op\t 20480 disk_bytes/op\t 31954 B/op\t 526 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1872207642,
- "unit": "ns/op\t 0.1247 %cpu_avg/op\t 13.23 %cpu_peak/op\t 1.872 cpu_seconds/op\t 3629056 disk_bytes/op\t 93672 B/op\t 1852 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "25aa324ca324248cf2093af23f205af1b5ae276f",
- "message": "build(deps): Bump github.com/docker/docker from 23.0.6+incompatible to 24.0.0+incompatible (#406)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.6+incompatible to 24.0.0+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.0
\r\n24.0.0
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nNew
\r\n\r\n- Introduce experimental support for containerd as the content store\r\n(replacing the existing storage drivers). moby/moby#43735,\r\nother\r\nmoby/moby pull requests
\r\n- The
--host
CLI flag now supports a path component in a\r\nssh://
host address, allowing use of an alternate socket\r\npath without configuration on the remote host. docker/cli#4073 \r\n- The
docker info
CLI command now reports a version and\r\nplatform field. docker/cli#4180 \r\n- Introduce the daemon flag
--default-network-opt
to\r\nconfigure options for newly created networks. moby/moby#43197 \r\n- Restrict access to
AF_VSOCK
in the\r\nsocket(2)
family of syscalls in the default seccomp\r\nprofile. moby/moby#44562 \r\n- Introduce support for setting OCI runtime annotations on containers.\r\ndocker/cli#45025,\r\nmoby/moby#45025
\r\n- Alternative runtimes can now be configured in\r\n
daemon.json
, enabling runtime names to be aliased and\r\noptions to be passed. moby/moby#45032 \r\n- The
docker-init
binary will now be discovered in\r\nFHS-compliant libexec directories, in addition to the PATH
.\r\nmoby/moby#45198 \r\n- API: Surface the daemon-level
--no-new-privileges
in\r\nGET /info
. moby/moby#45320 \r\n
\r\nRemoved
\r\n\r\ndocker info
no longer reports\r\nIndexServiceAddress
. docker/cli#4204 \r\n- libnetwork: Remove fallback code for obsolete kernel versions. moby/moby#44684,\r\nmoby/moby#44802
\r\n- libnetwork: Remove unused code related to classic Swarm. moby/moby#44965
\r\n- libnetwork: Remove usage of the
xt_u32
kernel module\r\nfrom encrypted Swarm overlay networks. moby/moby#45281 \r\n- Remove support for buildkit's deprecated
buildinfo
in\r\nfavor of standard provenance attestations. moby/moby#45097 \r\n- Remove the deprecated AUFS and legacy
overlay
storage\r\ndrivers. moby/moby#45342,\r\nmoby/moby# \r\n- Remove the deprecated
overlay2.override_kernel_check
\r\nstorage driver option. moby/moby#45368 \r\n- Remove workarounds for obsolete versions of\r\n
apparmor_parser
from the AppArmor profiles. moby/moby#45500 \r\n- API:
GET /images/json
no longer represents empty\r\nRepoTags and RepoDigests\r\nas<none>:<none>
/<none>@<none>
.\r\nEmpty arrays are be returned instead on API >= 1.43. moby/moby#45068 \r\n
\r\nDeprecated
\r\n\r\n- Deprecate the
--oom-score-adjust
daemon option. moby/moby#45315 \r\n- API: Deprecate the
VirtualSize
field in GET\r\n/images/json
and GET /images/{id}/json
. moby/moby#45346 \r\n
\r\nBug fixes and enhancements
\r\n\r\n- The
docker stack
command no longer validates the\r\nbuild
section of Compose files. docker/cli#4214 \r\n- Fix lingering healthcheck processes after timeout is reached. moby/moby#43739
\r\n- Reduce the overhead of container startup when using the\r\n
overlay2
storage driver. moby/moby#44285 \r\n- API: Handle multiple
before=
and since=
\r\nfilters in GET /images
. moby/moby#44503 \r\n- Fix numerous bugs in the embedded DNS resolver implementation used\r\nby user-defined networks. moby/moby#44664
\r\n- Add
execDuration
field to the map of event attributes.\r\nmoby/moby#45494 \r\n- Swarm-level networks can now be created with the Windows\r\n
internal
, l2bridge
, and nat
\r\ndrivers. moby/swarmkit#3121,\r\nmoby/moby#45291 \r\n
\r\nPackaging updates
\r\n\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n1331b8c
\r\nMerge pull request #45537\r\nfrom thaJeztah/24.0_backport_containerd_binary_1.7.1 \r\n907f037
\r\nupdate containerd binary to v1.7.1 \r\na5b597e
\r\nMerge pull request #45531\r\nfrom rumpl/24.0_backport_fix-empty-auth-pull \r\n8bbfa32
\r\nc8d: The authorizer needs to be set even if AuthConfig is empty \r\n807e415
\r\nMerge pull request #45526\r\nfrom laurazard/backport-classic-builder \r\n8587a1c
\r\nc8d/builder: implement cache \r\n9717369
\r\nc8d: implement classic builder \r\ned0c147
\r\nMerge pull request #45523\r\nfrom thaJeztah/24.0_backport_cleanup_reexec_inits \r\n90be9ab
\r\nMerge pull request #45525\r\nfrom thaJeztah/24.0_backport_c8d_authconfig_default \r\nd73f703
\r\nMerge pull request #45521\r\nfrom thaJeztah/24.0_backport_vendor_distribution_v2... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.6+incompatible&new-version=24.0.0+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-18T00:52:53Z",
- "tree_id": "e165710972d7cc4dd1908083cdd88af9c0f12942",
- "url": "https://github.com/runfinch/finch/commit/25aa324ca324248cf2093af23f205af1b5ae276f"
- },
- "date": 1684371571910,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 124215024224,
- "unit": "ns/op\t 0.1885 %cpu_avg/op\t 33.33 %cpu_peak/op\t 124.2 cpu_seconds/op\t2671398912 disk_bytes/op\t 5493936 B/op\t 116372 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 29373271417,
- "unit": "ns/op\t 0.3890 %cpu_avg/op\t 37.50 %cpu_peak/op\t 29.37 cpu_seconds/op\t 28672 disk_bytes/op\t 1322680 B/op\t 27868 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 466587877,
- "unit": "ns/op\t 0.3464 %cpu_avg/op\t 6.886 %cpu_peak/op\t 0.4665 cpu_seconds/op\t 0 disk_bytes/op\t 30762 B/op\t 496 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1854135702,
- "unit": "ns/op\t 0.2766 %cpu_avg/op\t 16.67 %cpu_peak/op\t 1.854 cpu_seconds/op\t 3620864 disk_bytes/op\t 92568 B/op\t 1829 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9",
- "message": "build(deps): Bump k8s.io/apimachinery from 0.27.1 to 0.27.2 (#407)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.1 to 0.27.2.\r\n\r\nCommits
\r\n\r\n756e222
\r\nMerge pull request #117298pohly/automated-cherry-pick-of-#117238
\r\nb1123d2
\r\nMerge pull request #117708Jefftree/automated-cherry-pick-of-#117705
\r\n4074a29
\r\nUpdate kube-openapi to fix race \r\ncc852ec
\r\napi: encode NamespacedName with lower case in JSON \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.1&new-version=0.27.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:14-07:00",
- "tree_id": "4995bf341e0dfa88b02d82d9034a40802015304b",
- "url": "https://github.com/runfinch/finch/commit/e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9"
- },
- "date": 1684775601704,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 76784140186,
- "unit": "ns/op\t 0.3044 %cpu_avg/op\t 45.45 %cpu_peak/op\t 76.78 cpu_seconds/op\t2678050816 disk_bytes/op\t 3462912 B/op\t 72547 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26125207519,
- "unit": "ns/op\t 0.3810 %cpu_avg/op\t 46.67 %cpu_peak/op\t 26.13 cpu_seconds/op\t 24576 disk_bytes/op\t 1163736 B/op\t 24883 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 479107485,
- "unit": "ns/op\t 0.9229 %cpu_avg/op\t 17.54 %cpu_peak/op\t 0.4790 cpu_seconds/op\t 2730 disk_bytes/op\t 30930 B/op\t 506 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1615983504,
- "unit": "ns/op\t 0.7202 %cpu_avg/op\t 31.25 %cpu_peak/op\t 1.616 cpu_seconds/op\t 13737984 disk_bytes/op\t 82824 B/op\t 1609 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb",
- "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.1 to 1.9.2 (#408)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.1 to 1.9.2.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.1&new-version=1.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:34-07:00",
- "tree_id": "f2d2b81654b4af29a2aed139fba3d507787ce928",
- "url": "https://github.com/runfinch/finch/commit/0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb"
- },
- "date": 1684775901025,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 76657389397,
- "unit": "ns/op\t 0.2867 %cpu_avg/op\t 46.67 %cpu_peak/op\t 76.66 cpu_seconds/op\t2661773312 disk_bytes/op\t 3463352 B/op\t 72494 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 27003244138,
- "unit": "ns/op\t 0.3393 %cpu_avg/op\t 30.77 %cpu_peak/op\t 27.00 cpu_seconds/op\t 1073152 disk_bytes/op\t 1199920 B/op\t 25691 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 454271019,
- "unit": "ns/op\t 0.4322 %cpu_avg/op\t 12.91 %cpu_peak/op\t 0.4542 cpu_seconds/op\t 0 disk_bytes/op\t 30090 B/op\t 483 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1644413704,
- "unit": "ns/op\t 0.7709 %cpu_avg/op\t 27.27 %cpu_peak/op\t 1.644 cpu_seconds/op\t 20389888 disk_bytes/op\t 83704 B/op\t 1629 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "80513c7785a6da4ae09d9c871acaf180f5d68f2c",
- "message": "build(deps): Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#409)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.6 to 1.27.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.7
\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n99a29d5
\r\nv1.27.7 \r\n05c1bc6
\r\nupdate gitignore \r\n57054d5
\r\nfix: gcustom.MakeMatcher accepts nil as actual value (#666) \r\n7cadcf6
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663) \r\nb524839
\r\nBump golang.org/x/net from 0.9.0 to 0.10.0 (#662) \r\n5f44694
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661) \r\n05dc99a
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#657) \r\n3a033d1
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#658) \r\na19238f
\r\nReplace deprecated NewGomegaWithT with NewWithT (#659) \r\n29ed041
\r\nBump golang.org/x/net from 0.8.0 to 0.9.0 (#656) \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.6&new-version=1.27.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:53-07:00",
- "tree_id": "e2fcfcda12bb1ccd87c7073b3933f3ac027af425",
- "url": "https://github.com/runfinch/finch/commit/80513c7785a6da4ae09d9c871acaf180f5d68f2c"
- },
- "date": 1684776268160,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 77847727826,
- "unit": "ns/op\t 0.3001 %cpu_avg/op\t 26.67 %cpu_peak/op\t 77.85 cpu_seconds/op\t2682880000 disk_bytes/op\t 3510528 B/op\t 73569 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26491678463,
- "unit": "ns/op\t 0.3022 %cpu_avg/op\t 26.67 %cpu_peak/op\t 26.49 cpu_seconds/op\t 24576 disk_bytes/op\t 1177592 B/op\t 25210 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 539397436,
- "unit": "ns/op\t 0.7973 %cpu_avg/op\t 15.83 %cpu_peak/op\t 0.5392 cpu_seconds/op\t 0 disk_bytes/op\t 34024 B/op\t 567 allocs/op",
- "extra": "2 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1897820816,
- "unit": "ns/op\t 0.3804 %cpu_avg/op\t 18.18 %cpu_peak/op\t 1.898 cpu_seconds/op\t 3624960 disk_bytes/op\t 93928 B/op\t 1869 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "bb1cab229c787752615eb00e74f240c4a4e0e23d",
- "message": "build(deps): Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.1+incompatible (#413)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.0+incompatible to 24.0.1+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.1
\r\n24.0.1
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nRemoved
\r\n\r\n- Remove CLI completions for storage drivers removed in the 24.0 major\r\nrelease. docker/cli#4302
\r\n
\r\nBug fixes and enhancements
\r\n\r\n- Fix an issue where DNS query NXDOMAIN replies from external servers\r\nwere forwarded to the client as SERVFAIL. moby/moby#45573
\r\n- Fix an issue where
docker pull --platform
would report\r\nNo such image
regarding another tag pointing to the same\r\nimage. moby/moby#45562 \r\n- Fix an issue where insecure registry configuration would be\r\nforgotten during config reload. moby/moby#45571
\r\n- containerd-storage: Fix an issue where images which have no layers\r\nwould not be listed in
docker images -a
moby/moby#45588 \r\n- API: Fix an issue where
GET /images/{id}/json
would\r\nreturn null
instead of empty RepoTags
and\r\nRepoDigests
. moby/moby#45564 \r\n- API: Fix an issue where
POST /commit
did not accept an\r\nempty request body. moby/moby#45568 \r\n
\r\nPackaging updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n463850e
\r\nMerge pull request #45588\r\nfrom vvoland/c8d-layerless-24 \r\n47a3dad
\r\nc8d/list: Show layerless images \r\na0bc3eb
\r\nMerge pull request #45571\r\nfrom thaJeztah/24.0_backport_fix_insecure_registrie... \r\n922b6aa
\r\nMerge pull request #45568\r\nfrom corhere/backport-24.0/fix-empty-container-decode \r\n0e605cf
\r\nMerge pull request #45573\r\nfrom thaJeztah/24.0_backport_fix_dns_servfail \r\n878c417
\r\nMerge pull request #45560\r\nfrom crazy-max/24.0_backport_fix-worker-id \r\n654e80a
\r\nMerge pull request #45570\r\nfrom crazy-max/24.0_backport_ci-bin-image-distribute \r\n0869b08
\r\nlibnetwork: just forward the external DNS response \r\n3467ba6
\r\nreorder load funcs to match newServiceConfig()'s order \r\nf9b886c
\r\nadd mirror to daemon reload test for insecure registries \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.0+incompatible&new-version=24.0.1+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T17:48:50Z",
- "tree_id": "92f651eed9097478240daebf4cbf33ab7a695969",
- "url": "https://github.com/runfinch/finch/commit/bb1cab229c787752615eb00e74f240c4a4e0e23d"
- },
- "date": 1684778048926,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 78814068645,
- "unit": "ns/op\t 0.2900 %cpu_avg/op\t 28.57 %cpu_peak/op\t 78.81 cpu_seconds/op\t2671955968 disk_bytes/op\t 3552416 B/op\t 74531 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26193892885,
- "unit": "ns/op\t 0.3422 %cpu_avg/op\t 35.71 %cpu_peak/op\t 26.19 cpu_seconds/op\t 86016 disk_bytes/op\t 1164848 B/op\t 24924 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 458107989,
- "unit": "ns/op\t 0.5107 %cpu_avg/op\t 12.27 %cpu_peak/op\t 0.4580 cpu_seconds/op\t 0 disk_bytes/op\t 30488 B/op\t 487 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1692006167,
- "unit": "ns/op\t 0.4404 %cpu_avg/op\t 21.43 %cpu_peak/op\t 1.692 cpu_seconds/op\t 3633152 disk_bytes/op\t 85904 B/op\t 1679 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "b83cc21e6082eeff076e035dfb4cad152fb5508c",
- "message": "ci: Finch .pkg installer builder (#416)\n\n**Description of changes:**\r\n\r\n- This PR contains the Finch .pkg builder tool.\r\n- The .pkg builder tool can be used by GitHub action to generate and\r\nnotarize macOS .pkg installer.\r\n- The old update to S3 workflow is extended with the functionality to\r\nbuild Finch, build .pkg and test .pkg. It can be used as a scheduled job\r\nfor nightly main branch build as well to detect release issue earlier\r\nbesides cut a new release.\r\n- The old release installer workflow(test installer) is removed because\r\nits scope is moved to the integrated workflow.\r\n\r\nThis is an initial tool check in, Readme and integrated workflow to\r\nchain existing workflows to upload installer to release and publish to\r\nHomebrew will come later.\r\n\r\n**Testing done:**\r\nHave tested the updated workflow and tool on this branch, and can\r\nsuccessfully generate final installer and test it.\r\nAction test ref:\r\nhttps://github.com/runfinch/finch/actions/runs/5077161329\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-26T10:40:35-07:00",
- "tree_id": "f4ee320ee326400884c15fa51a6485739e2ed39b",
- "url": "https://github.com/runfinch/finch/commit/b83cc21e6082eeff076e035dfb4cad152fb5508c"
- },
- "date": 1685123147000,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 80815974229,
- "unit": "ns/op\t 0.3142 %cpu_avg/op\t 35.71 %cpu_peak/op\t 80.82 cpu_seconds/op\t2657595392 disk_bytes/op\t 3627016 B/op\t 76212 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26215981608,
- "unit": "ns/op\t 0.3804 %cpu_avg/op\t 31.25 %cpu_peak/op\t 26.22 cpu_seconds/op\t 49152 disk_bytes/op\t 1165576 B/op\t 24936 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 454812879,
- "unit": "ns/op\t 0.2120 %cpu_avg/op\t 9.022 %cpu_peak/op\t 0.4547 cpu_seconds/op\t 0 disk_bytes/op\t 30317 B/op\t 486 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1791474025,
- "unit": "ns/op\t 0.3043 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.791 cpu_seconds/op\t 20389888 disk_bytes/op\t 89448 B/op\t 1768 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "6a8ca1a559dada6ed320c9454fbc3229446a0a40",
- "message": "fix: sort volume args in DOCKER_COMPAT mode (#417)\n\nIssue #, if available:\r\nhttps://github.com/runfinch/finch/issues/418\r\n\r\n*Description of changes:*\r\nSort volume args in DOCKER_COMPAT mode\r\n\r\n*Testing done:*\r\nUnit tests and new e2e tests.\r\nhttps://github.com/runfinch/common-tests/pull/66\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-05-26T21:10:30Z",
- "tree_id": "7d92a6ddbd268a0ecf2c8acb172cadc75b283dc2",
- "url": "https://github.com/runfinch/finch/commit/6a8ca1a559dada6ed320c9454fbc3229446a0a40"
- },
- "date": 1685135735533,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 77593156758,
- "unit": "ns/op\t 0.2886 %cpu_avg/op\t 35.71 %cpu_peak/op\t 77.59 cpu_seconds/op\t2671185920 disk_bytes/op\t 3491832 B/op\t 73213 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 25859983942,
- "unit": "ns/op\t 0.4467 %cpu_avg/op\t 45.45 %cpu_peak/op\t 25.86 cpu_seconds/op\t 28086272 disk_bytes/op\t 1150936 B/op\t 24596 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 464246695,
- "unit": "ns/op\t 0.4002 %cpu_avg/op\t 9.091 %cpu_peak/op\t 0.4642 cpu_seconds/op\t 0 disk_bytes/op\t 30338 B/op\t 492 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1890756652,
- "unit": "ns/op\t 0.5868 %cpu_avg/op\t 28.57 %cpu_peak/op\t 1.891 cpu_seconds/op\t 3620864 disk_bytes/op\t 93832 B/op\t 1868 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0bcdd18b12b889931d3b7928eedf76c1ec9fac5a",
- "message": "ci: Rename action and set up nightly build (#421)\n\n*Description of changes:*\r\nRename the action.\r\nSet up the installer build and test every day at 9 am UTC (2 am PDT) to\r\nvalidate latest main branch.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-26T16:03:45-07:00",
- "tree_id": "ab82ce6b1d2aa83593bb648181463b6fe7840863",
- "url": "https://github.com/runfinch/finch/commit/0bcdd18b12b889931d3b7928eedf76c1ec9fac5a"
- },
- "date": 1685142597112,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 80208039766,
- "unit": "ns/op\t 0.3279 %cpu_avg/op\t 53.85 %cpu_peak/op\t 80.21 cpu_seconds/op\t2669309952 disk_bytes/op\t 3604168 B/op\t 75741 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26553762850,
- "unit": "ns/op\t 0.3295 %cpu_avg/op\t 36.36 %cpu_peak/op\t 26.55 cpu_seconds/op\t 16805888 disk_bytes/op\t 1180800 B/op\t 25268 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 517685120,
- "unit": "ns/op\t 0.2687 %cpu_avg/op\t 13.25 %cpu_peak/op\t 0.5176 cpu_seconds/op\t 0 disk_bytes/op\t 32888 B/op\t 546 allocs/op",
- "extra": "2 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1810866498,
- "unit": "ns/op\t 0.3984 %cpu_avg/op\t 14.29 %cpu_peak/op\t 1.811 cpu_seconds/op\t 3620864 disk_bytes/op\t 90760 B/op\t 1789 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "ac18046e70efc0e1e9fe11a30457f6f945df2a23",
- "message": "build(deps): Bump github.com/runfinch/common-tests from 0.6.5 to 0.7.0 (#420)\n\nBumps\r\n[github.com/runfinch/common-tests](https://github.com/runfinch/common-tests)\r\nfrom 0.6.5 to 0.7.0.\r\n\r\nRelease notes
\r\nSourced from github.com/runfinch/common-tests's\r\nreleases.
\r\n\r\nv0.7.0
\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/runfinch/common-tests's\r\nchangelog.
\r\n\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n0.6.4\r\n(2023-04-06)
\r\nBug Fixes
\r\n\r\n- better handling of concurrent http servers (#57)\r\n(0ae6182)
\r\n
\r\n0.6.3\r\n(2023-03-27)
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/gomega from 1.27.2 to\r\n1.27.4 (#48)\r\n(f113e7b)
\r\n- deps: bump github.com/onsi/gomega from 1.27.4 to\r\n1.27.5 (#52)\r\n(bd056e7)
\r\n
\r\n0.6.2\r\n(2023-03-16)
\r\nBug Fixes
\r\n\r\n- Fix tests to match nerdctl 1.2.1 outputs (#50)\r\n(3d9b4f4)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.8.3 to\r\n2.8.4 (#41)\r\n(a9476c1)
\r\n- deps: bump github.com/onsi/gomega from 1.27.1 to\r\n1.27.2 (#40)\r\n(e8fc71a)
\r\n
\r\n0.6.1\r\n(2023-02-28)
\r\nBug Fixes
\r\n\r\n- Switch from
nc -l
to nginx
in run\r\n-p/--publish
test (7a6a6c3) \r\n
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\nafbbd97
\r\nchore(main): release 0.7.0 (#63) \r\n22a7f7e
\r\nfeat: Tests for bind mounts (#66) \r\n590a984
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#65) \r\nb761a7a
\r\nfeat: verify the result of finch inspect has State.Status and\r\nState.Error (#64) \r\n72120b5
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.5 to 1.27.6 (#54) \r\n0bd0901
\r\nbuild(deps): bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.5 (#62) \r\n882cd1e
\r\ntest: Functional test for PS command (#17) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/runfinch/common-tests&package-manager=go_modules&previous-version=0.6.5&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-26T16:30:20-07:00",
- "tree_id": "5e6cfb42519bed0dde2505d4b43e33fd56d4cb40",
- "url": "https://github.com/runfinch/finch/commit/ac18046e70efc0e1e9fe11a30457f6f945df2a23"
- },
- "date": 1685144132219,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 79869230608,
- "unit": "ns/op\t 0.3213 %cpu_avg/op\t 37.50 %cpu_peak/op\t 79.87 cpu_seconds/op\t2670006272 disk_bytes/op\t 3589656 B/op\t 75414 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26491240742,
- "unit": "ns/op\t 0.2868 %cpu_avg/op\t 23.08 %cpu_peak/op\t 26.49 cpu_seconds/op\t 16769024 disk_bytes/op\t 1178664 B/op\t 25223 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 480739117,
- "unit": "ns/op\t 0.6369 %cpu_avg/op\t 18.36 %cpu_peak/op\t 0.4807 cpu_seconds/op\t 0 disk_bytes/op\t 31360 B/op\t 510 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1693770930,
- "unit": "ns/op\t 0.4645 %cpu_avg/op\t 18.18 %cpu_peak/op\t 1.694 cpu_seconds/op\t 3608576 disk_bytes/op\t 86000 B/op\t 1680 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "f67ff9668457057514a351819cdc75fb8c6b2d46",
- "message": "ci: Add release automation action (#424)\n\n*Description of changes:*\r\nThis PR added a new passive action subscribe to main branch new tag\r\ncreation.\r\nNew tag creation means Finch has a new release, the new workflow will\r\ntrigger build pkg, upload pkg and homebrew release on the latest tag.\r\n\r\n*Testing done:*\r\nThis is a new action and has cross branch/tag involved, needs some\r\nexperiment on main branch after check in.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-29T11:41:28-07:00",
- "tree_id": "4e53e8ed0bd63d943da86e7680d75e44738efbcb",
- "url": "https://github.com/runfinch/finch/commit/f67ff9668457057514a351819cdc75fb8c6b2d46"
- },
- "date": 1685386132776,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 80178762675,
- "unit": "ns/op\t 0.3163 %cpu_avg/op\t 33.33 %cpu_peak/op\t 80.18 cpu_seconds/op\t2664640512 disk_bytes/op\t 3602384 B/op\t 75680 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26337855655,
- "unit": "ns/op\t 0.3749 %cpu_avg/op\t 33.33 %cpu_peak/op\t 26.34 cpu_seconds/op\t 17866752 disk_bytes/op\t 1171168 B/op\t 25052 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 502469927,
- "unit": "ns/op\t 0.3950 %cpu_avg/op\t 11.54 %cpu_peak/op\t 0.5024 cpu_seconds/op\t 0 disk_bytes/op\t 32044 B/op\t 531 allocs/op",
- "extra": "2 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1693710261,
- "unit": "ns/op\t 0.4779 %cpu_avg/op\t 16.67 %cpu_peak/op\t 1.694 cpu_seconds/op\t 20402176 disk_bytes/op\t 85488 B/op\t 1678 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "c4c23a95a139a21cc7208071e3c3b688389f6071",
- "message": "ci: Upload dependency source code along with the installers (#426)\n\n*Description of changes:*\r\nCurrently we need to upload the dependency source code manually.\r\nMake this along with the installer upload.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-29T18:22:38-07:00",
- "tree_id": "e65c4af30a6b25e4a09ab3d7849c3b667d9212b8",
- "url": "https://github.com/runfinch/finch/commit/c4c23a95a139a21cc7208071e3c3b688389f6071"
- },
- "date": 1685410068154,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 79903916918,
- "unit": "ns/op\t 0.2994 %cpu_avg/op\t 37.50 %cpu_peak/op\t 79.90 cpu_seconds/op\t2681700352 disk_bytes/op\t 3592384 B/op\t 75445 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26335826070,
- "unit": "ns/op\t 0.3629 %cpu_avg/op\t 28.57 %cpu_peak/op\t 26.34 cpu_seconds/op\t 98304 disk_bytes/op\t 1169640 B/op\t 25031 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 508135250,
- "unit": "ns/op\t 0.3741 %cpu_avg/op\t 18.45 %cpu_peak/op\t 0.5081 cpu_seconds/op\t 0 disk_bytes/op\t 32680 B/op\t 537 allocs/op",
- "extra": "2 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1733008321,
- "unit": "ns/op\t 0.2354 %cpu_avg/op\t 16.67 %cpu_peak/op\t 1.733 cpu_seconds/op\t 3612672 disk_bytes/op\t 87680 B/op\t 1719 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "d933d11373c4c9a94137dfad78a8542d2c7be327",
- "message": "ci: Integrate existing workflows into release-automation (#430)\n\n*Description of changes:*\r\nReuse existing workflows to release-automation.\r\nAdded input param to reuse workflow.\r\nRollout only build & test installer as initial.\r\n\r\n*Testing done:*\r\nHave tested the action in this branch\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-30T16:44:42-07:00",
- "tree_id": "87f62fce80fd69e8450d0621c833ac32529c621e",
- "url": "https://github.com/runfinch/finch/commit/d933d11373c4c9a94137dfad78a8542d2c7be327"
- },
- "date": 1685490655795,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 79493523844,
- "unit": "ns/op\t 0.2791 %cpu_avg/op\t 33.33 %cpu_peak/op\t 79.49 cpu_seconds/op\t2662977536 disk_bytes/op\t 3572376 B/op\t 74999 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 28731197735,
- "unit": "ns/op\t 0.2760 %cpu_avg/op\t 33.33 %cpu_peak/op\t 28.73 cpu_seconds/op\t 94208 disk_bytes/op\t 1293096 B/op\t 27217 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 515357166,
- "unit": "ns/op\t 0.8282 %cpu_avg/op\t 17.69 %cpu_peak/op\t 0.5152 cpu_seconds/op\t 0 disk_bytes/op\t 33208 B/op\t 548 allocs/op",
- "extra": "2 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1843118015,
- "unit": "ns/op\t 0.2251 %cpu_avg/op\t 12.47 %cpu_peak/op\t 1.843 cpu_seconds/op\t 20402176 disk_bytes/op\t 92480 B/op\t 1820 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "d08952e8b257a74d6d6a6f9da8949d3fd748ab23",
- "message": "ci: Integrate the other workflows into release-automation (#431)\n\n*Description of changes:*\r\nEnabled the rest workflow for release automation.\r\nCheck in before next release after it is validated.\r\nAfter this PR is checked in, release-please PR merge will automatically\r\ntrigger installer build, test, upload installers and dependency source\r\ncode to release and cut Homebrew PR.\r\n\r\n*Testing done:*\r\nWait next release\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-31T09:55:51-07:00",
- "tree_id": "0d7b69664ef0d583147c2b84c591c63f802cdf43",
- "url": "https://github.com/runfinch/finch/commit/d08952e8b257a74d6d6a6f9da8949d3fd748ab23"
- },
- "date": 1685552466003,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 77934401474,
- "unit": "ns/op\t 0.3095 %cpu_avg/op\t 38.46 %cpu_peak/op\t 77.93 cpu_seconds/op\t2681393152 disk_bytes/op\t 3515440 B/op\t 73661 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 28632920043,
- "unit": "ns/op\t 0.3255 %cpu_avg/op\t 30.77 %cpu_peak/op\t 28.63 cpu_seconds/op\t 16936960 disk_bytes/op\t 1290944 B/op\t 27169 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 484070460,
- "unit": "ns/op\t 0.6080 %cpu_avg/op\t 19.27 %cpu_peak/op\t 0.4840 cpu_seconds/op\t 0 disk_bytes/op\t 31730 B/op\t 514 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1747796128,
- "unit": "ns/op\t 0.3947 %cpu_avg/op\t 21.43 %cpu_peak/op\t 1.748 cpu_seconds/op\t 20389888 disk_bytes/op\t 88712 B/op\t 1732 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "6a67f0cfb0a3a1da438779f4faa04048f25d7dde",
- "message": "build(deps): Bump github.com/lima-vm/lima from 0.15.1 to 0.16.0 (#428)\n\nBumps [github.com/lima-vm/lima](https://github.com/lima-vm/lima) from\r\n0.15.1 to 0.16.0.\r\n\r\nRelease notes
\r\nSourced from github.com/lima-vm/lima's\r\nreleases.
\r\n\r\nv0.16.0
\r\nThis release adds an experimental support for the user-v2
\r\nnetwork driver: limactl\r\nstart template://experimental/net-user-v2
.\r\nThe user-v2
network driver enables VM-to-VM networking\r\nwithout the root privilege on the host.\r\nThis should be useful for simulating multi-node Kubernetes clusters on a\r\nlaptop.
\r\nThis release also fixes a relatively minor vulnerability CVE-2023-32684.\r\nThis vulnerability is very unlikely to be exploitable as long\r\nas you are using the official templates of Lima.
\r\nChanges
\r\n\r\nlimactl
CLI:\r\n\r\n- (Experimental) Add
limactl snapshot\r\n(apply|create|delete|list)
commands (#1054,\r\nthanks to @afbjorklund
) \r\n- Escape only the value of env variables in
limactl shell
\r\n(#1501,\r\nthanks to @sam-berning
) \r\n
\r\n \r\n- YAML:\r\n\r\n
\r\n- Documents:\r\n\r\n
\r\n- Network:\r\n
\r\n- (Experimental) Add
user-v2
\r\nnetwork driver to enable VM-to-VM networking without root (#1383,\r\nthanks to @balajiv113
) \r\n
\r\n \r\n- nerdctl:\r\n\r\n
\r\n- Templates:\r\n
\r\n- AlmaLinux: update to 9.2 (#1550)
\r\n- Alpine: update to 3.18 and fix Rosetta support (#1560,\r\n#1580,\r\nthanks to
@jandubois
) \r\n- Arch Linux: update to 20230515.150700 (#1550)
\r\n- Fedora: update to 38 (#1502,\r\nthanks to
@cpach
) \r\n- Nomad: update to v0.9.4 (#1552)
\r\n- Rocky Linux: update to 9.2 and 8.8 (#1550,\r\n#1591)
\r\n- Ubuntu: update to 23.04 (#1550)
\r\n
\r\n \r\n- Misc:\r\n
\r\n- Improve disk efficiency (#1411)\r\nfor caches (#1544)
\r\n
\r\n \r\n
\r\nFull changes: https://github.com/lima-vm/lima/milestone/34?closed=1\r\nThanks to @afbjorklund
@balajiv113
@bumpsoo063
@cpach
@jandubois
@pendo324
@sam-berning
\r\nUsage
\r\n[macOS]$ limactl start\r\n...\r\nINFO[0029] READY. Run `lima` to open the shell.\r\n[macOS]$ lima uname\r\nLinux\r\n
\r\n
\r\nThe binaries were built automatically on GitHub Actions.\r\nThe build log is available for 90 days: https://github.com/lima-vm/lima/actions/runs/5118006806
\r\nThe sha256sum of the SHA256SUMS file itself is\r\n2062c42688128dca55331fc1a8f4841cbf41ed9dd11867d48decdf6880afde87
\r\n.
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n01dbd4d
\r\nMerge pull request from GHSA-f7qw-jj9c-rpq9 \r\nbc1bdb8
\r\nProhibit using a differential disk as a base disk \r\nbfa5bab
\r\nqemu: explicitly pass the basedisk format to QEMU \r\nefe1c47
\r\npkg/qemu/imgutil: add Info fields \r\n3dbc08c
\r\nMerge pull request #1592\r\nfrom afbjorklund/man-prefix \r\n703d69f
\r\nRemove the build directories from the manpages \r\ne7aa4ff
\r\nMerge pull request #1591\r\nfrom AkihiroSuda/dev \r\nb9ea964
\r\nMerge pull request #1590\r\nfrom balajiv113/usernet-default \r\n5656d1a
\r\ntemplates: update Rocky Linux to 8.8 \r\n5c0955d
\r\ntemplates: update CentOS Stream 9 to 20230523.0 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/lima-vm/lima&package-manager=go_modules&previous-version=0.15.1&new-version=0.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-31T10:22:24-07:00",
- "tree_id": "556e3a36fb0bb31a7a51202de5d9db3ef55c2b48",
- "url": "https://github.com/runfinch/finch/commit/6a67f0cfb0a3a1da438779f4faa04048f25d7dde"
- },
- "date": 1685554070476,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 79617614731,
- "unit": "ns/op\t 0.2754 %cpu_avg/op\t 30.77 %cpu_peak/op\t 79.62 cpu_seconds/op\t2682560512 disk_bytes/op\t 3580944 B/op\t 75180 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26213130677,
- "unit": "ns/op\t 0.3183 %cpu_avg/op\t 33.33 %cpu_peak/op\t 26.21 cpu_seconds/op\t -102400 disk_bytes/op\t 1165480 B/op\t 24926 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 463688033,
- "unit": "ns/op\t 0.4314 %cpu_avg/op\t 12.27 %cpu_peak/op\t 0.4636 cpu_seconds/op\t 0 disk_bytes/op\t 30536 B/op\t 493 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1781458076,
- "unit": "ns/op\t 0.2986 %cpu_avg/op\t 18.18 %cpu_peak/op\t 1.781 cpu_seconds/op\t 20402176 disk_bytes/op\t 89464 B/op\t 1768 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "vsiravara@gmail.com",
- "name": "Vishwas Siravara",
- "username": "vsiravar"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9",
- "message": "ci: Manually update submodule and add cleanup (#434)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\n\r\n- Add clean up in ci for finch version command\r\n- Add submodule updates to finch core\r\n\r\n*Testing done:*\r\n\r\nYes\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
- "timestamp": "2023-05-31T14:02:33-07:00",
- "tree_id": "c0224254ae7d46efe2947ff93511a51659565aaa",
- "url": "https://github.com/runfinch/finch/commit/7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9"
- },
- "date": 1685567264070,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 77876782681,
- "unit": "ns/op\t 0.2753 %cpu_avg/op\t 35.71 %cpu_peak/op\t 77.88 cpu_seconds/op\t2671923200 disk_bytes/op\t 3509408 B/op\t 73551 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 25963721460,
- "unit": "ns/op\t 0.3416 %cpu_avg/op\t 26.67 %cpu_peak/op\t 25.96 cpu_seconds/op\t -10551296 disk_bytes/op\t 1155192 B/op\t 24697 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 455281564,
- "unit": "ns/op\t 0.3829 %cpu_avg/op\t 11.61 %cpu_peak/op\t 0.4552 cpu_seconds/op\t 0 disk_bytes/op\t 30056 B/op\t 486 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1791768219,
- "unit": "ns/op\t 0.1455 %cpu_avg/op\t 15.38 %cpu_peak/op\t 1.792 cpu_seconds/op\t 3612672 disk_bytes/op\t 89880 B/op\t 1769 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "1c09471be3b9d214e4a4ef805980588f6e322b68",
- "message": "ci: Add git clean before build and test (#435)\n\n*Description of changes:*\r\nIt append .modified postfix when build or test.\r\nAdd git clean to remove the dirty state.\r\nAdd git status to log when it happens\r\n\r\n*Testing done:*\r\nTODO with this current run.\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-31T15:47:26-07:00",
- "tree_id": "d93daef2907cf471ae341cb360413598172833f1",
- "url": "https://github.com/runfinch/finch/commit/1c09471be3b9d214e4a4ef805980588f6e322b68"
- },
- "date": 1685573623844,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 80331198986,
- "unit": "ns/op\t 0.3036 %cpu_avg/op\t 69.23 %cpu_peak/op\t 80.33 cpu_seconds/op\t2673315840 disk_bytes/op\t 3611760 B/op\t 75862 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26337086305,
- "unit": "ns/op\t 0.3334 %cpu_avg/op\t 25.00 %cpu_peak/op\t 26.34 cpu_seconds/op\t 24576 disk_bytes/op\t 1171208 B/op\t 25060 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 501394994,
- "unit": "ns/op\t 0.7511 %cpu_avg/op\t 20.31 %cpu_peak/op\t 0.5013 cpu_seconds/op\t 1365 disk_bytes/op\t 32373 B/op\t 530 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1910429807,
- "unit": "ns/op\t 0.3744 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.910 cpu_seconds/op\t 20389888 disk_bytes/op\t 94416 B/op\t 1879 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "repoUrl": "https://github.com/runfinch/finch",
+ "entries": {
+ "Finch Benchmark": [
+ {
+ "commit": {
+ "author": {
+ "email": "ningziwe@amazon.com",
+ "name": "Ziwen Ning",
+ "username": "ningziwen"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "325a8510c75b0b030be5ec075327ac337b7c22e5",
+ "message": "ci: add benchmarking workflow (#384)\n\nhttps://github.com/runfinch/finch/issues/345\r\n\r\n*Description of changes:*\r\n\r\n*Testing done:*\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/x86_64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/x86_64/\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
+ "timestamp": "2023-04-28T18:08:29Z",
+ "tree_id": "36a278e67f9282187e295ad59e2bcea15679a739",
+ "url": "https://github.com/runfinch/finch/commit/325a8510c75b0b030be5ec075327ac337b7c22e5"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "975c4ee42c1529673a51382c62c4096dc663f80a",
- "message": "fix: Stop lima process in postinstall and uninstall (#438)\n\n*Description of changes:*\r\nUnstopped lima process can prevent new installation and finch vm init\r\nsuccessfully.\r\nAdd kill limactl to post-installation and uninstall script to fix the\r\nissue.\r\n\r\n*Testing done:*\r\nTested locally.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-06-01T14:49:30-07:00",
- "tree_id": "3aac93a3e14d71a61ea11cc9f58d98df0cd2d549",
- "url": "https://github.com/runfinch/finch/commit/975c4ee42c1529673a51382c62c4096dc663f80a"
- },
- "date": 1685656550145,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 80510117087,
- "unit": "ns/op\t 0.3141 %cpu_avg/op\t 42.86 %cpu_peak/op\t 80.51 cpu_seconds/op\t2635149312 disk_bytes/op\t 3617136 B/op\t 76004 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26410238223,
- "unit": "ns/op\t 0.3498 %cpu_avg/op\t 38.46 %cpu_peak/op\t 26.41 cpu_seconds/op\t 4096 disk_bytes/op\t 1174352 B/op\t 25132 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 489150627,
- "unit": "ns/op\t 0.4759 %cpu_avg/op\t 13.73 %cpu_peak/op\t 0.4891 cpu_seconds/op\t 0 disk_bytes/op\t 31498 B/op\t 516 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1832854423,
- "unit": "ns/op\t 0.5745 %cpu_avg/op\t 21.43 %cpu_peak/op\t 1.833 cpu_seconds/op\t 3620864 disk_bytes/op\t 91632 B/op\t 1818 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1682705660738,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 91255409465,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2698",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "91.26",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2682449920",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "4057504",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "85998",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26132336795,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3783",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "31.25",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.13",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "512000",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1163328",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "24892",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 451716536,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4689",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "7.509",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4516",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "4096",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30037",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "483",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1740483594,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2702",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.740",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3526656",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "88080",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1720",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "76b31c0c453935f22588523f65888e103581cd89",
+ "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.3 to 3.23.4 (#389)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.3 to 3.23.4.\r\n\r\nRelease notes
\r\nSourced from github.com/shirou/gopsutil/v3's\r\nreleases.
\r\n\r\nv3.23.4
\r\n\r\nWhat's Changed
\r\ncpu
\r\n\r\nprocess
\r\n\r\nOther Changes
\r\n\r\nNew Contributors
\r\n\r\nFull Changelog: https://github.com/shirou/gopsutil/compare/v3.23.3...v3.23.4
\r\n
\r\n \r\n\r\nCommits
\r\n\r\ndb89d12
\r\nMerge pull request #1453\r\nfrom Juneezee/refactor/errors.Is \r\n0439039
\r\nrefactor(process): compare error with errors.Is
\r\n17fac7c
\r\nMerge pull request #1450\r\nfrom gabibguti/master \r\n2d2db8f
\r\nCreate SECURITY.md \r\n10f213c
\r\nMerge pull request #1448\r\nfrom shirou/dependabot/github_actions/actions/upload... \r\nd6ee47e
\r\nchore(deps): bump actions/upload-artifact from 3.1.0 to 3.1.2 \r\ncf428f8
\r\nMerge pull request #1443\r\nfrom mmorel-35/linter \r\n755bcab
\r\nUpdate branch of sbom_generator.yml \r\n21a646b
\r\nMerge pull request #1447\r\nfrom shirou/feature/add_sbom_github_actions \r\nbcf3fe9
\r\nMerge pull request #1445\r\nfrom shirou/dependabot/go_modules/golang.org/x/sys-0... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.3&new-version=3.23.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-03T14:04:07-04:00",
+ "tree_id": "f741032f7d876d262db9b5af37cdc5bbea24e279",
+ "url": "https://github.com/runfinch/finch/commit/76b31c0c453935f22588523f65888e103581cd89"
},
- {
- "commit": {
- "author": {
- "email": "41898282+github-actions[bot]@users.noreply.github.com",
- "name": "github-actions[bot]",
- "username": "github-actions[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "e9551b50010deb43ad26dcd3671ec2f246e84ed6",
- "message": "build(deps): Bump submodules (#439)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
- "timestamp": "2023-06-01T17:08:31-07:00",
- "tree_id": "1d44ab428cafa8801c73cf50dbe39a71ea5aa9bb",
- "url": "https://github.com/runfinch/finch/commit/e9551b50010deb43ad26dcd3671ec2f246e84ed6"
- },
- "date": 1685664821961,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 80915994020,
- "unit": "ns/op\t 0.3032 %cpu_avg/op\t 28.57 %cpu_peak/op\t 80.92 cpu_seconds/op\t2677755904 disk_bytes/op\t 3634432 B/op\t 76398 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 27326653349,
- "unit": "ns/op\t 0.3428 %cpu_avg/op\t 33.33 %cpu_peak/op\t 27.33 cpu_seconds/op\t 1003520 disk_bytes/op\t 1237272 B/op\t 25956 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 455895228,
- "unit": "ns/op\t 0.5632 %cpu_avg/op\t 9.573 %cpu_peak/op\t 0.4558 cpu_seconds/op\t 0 disk_bytes/op\t 30194 B/op\t 486 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 2213099881,
- "unit": "ns/op\t 0.4222 %cpu_avg/op\t 20.00 %cpu_peak/op\t 2.213 cpu_seconds/op\t 3608576 disk_bytes/op\t 107600 B/op\t 2179 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1683137504233,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 83434578606,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2697",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "83.43",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2696257536",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3742400",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "78828",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26006867487,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3548",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.01",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "2736128",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1157200",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "24748",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 429929844,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.289",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "20.00",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4299",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "29005",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "459",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1583605176,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4564",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.584",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20365312",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "81480",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1571",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "710299445ed287c67114b277be7bd2a29715956b",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.3 (#390)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.2 to 2.9.3.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.3
\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n7a8249e
\r\nv2.9.3 \r\nc0c77b6
\r\nAdd RenderTimeline to GinkgoT() \r\n8b925ab
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183) \r\ne3795a4
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184) \r\nb453793
\r\nBump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182) \r\n73ed75b
\r\nBump actions/setup-go from 3 to 4 (#1164) \r\n0a2bc64
\r\nBump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173) \r\nf41c557
\r\nBump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174) \r\n8e423e5
\r\nBump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179) \r\n227c662
\r\nupdqte Measure deprecation message. fixes #1176 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.2&new-version=2.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-03T14:13:23-04:00",
+ "tree_id": "5e835791535734dd48321218c7346d8ad9ec9c0b",
+ "url": "https://github.com/runfinch/finch/commit/710299445ed287c67114b277be7bd2a29715956b"
},
- {
- "commit": {
- "author": {
- "email": "vsiravara@gmail.com",
- "name": "Vishwas Siravara",
- "username": "vsiravar"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0aa4c5cc36c4d44e431a8c13004607990bdb2bf4",
- "message": "ci: Update lima download url (#440)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nLIMA_URL in `finch` is stale\r\nhttps://github.com/runfinch/finch/blob/main/Makefile#L38. Keeping it\r\nconsistent with finch-core.\r\n*Testing done:*\r\n\r\nLocally. \r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
- "timestamp": "2023-06-01T17:50:59-07:00",
- "tree_id": "92182604e47f2ec0133a0b2a79ec61950bc73185",
- "url": "https://github.com/runfinch/finch/commit/0aa4c5cc36c4d44e431a8c13004607990bdb2bf4"
- },
- "date": 1685667360047,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 75128585781,
- "unit": "ns/op\t 0.3622 %cpu_avg/op\t 53.85 %cpu_peak/op\t 75.13 cpu_seconds/op\t2108375040 disk_bytes/op\t 3325728 B/op\t 71095 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30154886070,
- "unit": "ns/op\t 0.3376 %cpu_avg/op\t 31.25 %cpu_peak/op\t 30.15 cpu_seconds/op\t 9310208 disk_bytes/op\t 1358920 B/op\t 28684 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 460320297,
- "unit": "ns/op\t 0.5775 %cpu_avg/op\t 14.93 %cpu_peak/op\t 0.4603 cpu_seconds/op\t 4096 disk_bytes/op\t 30197 B/op\t 489 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1602281487,
- "unit": "ns/op\t 0.2455 %cpu_avg/op\t 27.27 %cpu_peak/op\t 1.602 cpu_seconds/op\t 3612672 disk_bytes/op\t 81528 B/op\t 1588 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1683138010469,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 80754922366,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2755",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "80.75",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2702020608",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3627928",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "76233",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26992789978,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3391",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "41.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.99",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-10420224",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1198016",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25670",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 452201559,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5555",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "14.84",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4521",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30410",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "484",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1601655731,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6963",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "21.43",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.602",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3600384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "81848",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1591",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785",
+ "message": "build(deps): Bump github.com/docker/docker from 23.0.3+incompatible to 23.0.5+incompatible (#382)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.3+incompatible to 23.0.5+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv23.0.5
\r\n23.0.5
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Add the
--all
/ -a
option when pruning\r\nvolumes. docker/cli#4229 \r\n- Add
--format=json
for docker info
. docker/cli#4320 \r\n- Fix log loss with the AWSLogs log driver. moby/moby#45350
\r\n- Fix a regression introduced in v23.0.4 where dockerd would refuse to\r\nstart if the fixed-cidr config parameter is provided but not bip. moby/moby#45403
\r\n- Fix a panic in libnetwork during daemon start moby/moby#45376
\r\n- Fix "tag" event not being sent when an image is built with\r\n
buildx
. moby/moby#45410 \r\n
\r\nPackaging Updates
\r\n\r\nv23.0.4
\r\n23.0.4
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a performance regression in Docker CLI 23.0.0 docker/cli#4141.
\r\n- Fix progress indicator on
docker cp
not functioning as\r\nintended docker/cli#4157. \r\n- Fix shell completion for
docker compose --file
docker/cli#4177. \r\n- Fix an error caused by incorrect handling of\r\n"default-address-pools" in
daemon.json
moby/moby#45246. \r\n
\r\nPackaging Updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n94d3ad6
\r\nMerge pull request #45410\r\nfrom rumpl/23.0_backport-fix-buildx-tag-events \r\n933a9f8
\r\nMerge pull request #45407\r\nfrom thaJeztah/23.0_backport_vendor_runc_1.1.5 \r\nfe0a414
\r\nUse the image service instead of the reference store for tagging \r\n1b1230e
\r\nMerge pull request #45375\r\nfrom thaJeztah/23.0_backport_bump_swarmkit \r\n1b26303
\r\nMerge pull request #45374\r\nfrom thaJeztah/23.0_backport_stfu_grpc \r\n682542f
\r\nMerge pull request #45373\r\nfrom thaJeztah/23.0_backport_assorted_test_and_pack... \r\n40ec0eb
\r\nvendor: github.com/opencontainers/runc v1.1.5 \r\n9af6762
\r\nMerge pull request #45403\r\nfrom akerouanton/23.0-cherrypick-2d31697 \r\n0b6449a
\r\nMerge pull request #45376\r\nfrom thaJeztah/23.0_backport_delete_network_more_at... \r\n227d3f3
\r\ndaemon: set docker0 subpool as the IPAM pool \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.3+incompatible&new-version=23.0.5+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-03T15:41:11-04:00",
+ "tree_id": "1c20d3fd2834f22310254aa23e661742782dcfd8",
+ "url": "https://github.com/runfinch/finch/commit/3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "7660d08f4e9e93468d0495aeafa2cf2de302227e",
- "message": "ci: Preserve link when copy from build (#441)\n\n*Description of changes:*\r\nAdd 'p' flag to preserve original symbolic link when copying the build\r\nartifact\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
- "timestamp": "2023-06-01T17:53:28-07:00",
- "tree_id": "4fdbf68f34050cd3f3b5126a3b4960af6cf63267",
- "url": "https://github.com/runfinch/finch/commit/7660d08f4e9e93468d0495aeafa2cf2de302227e"
- },
- "date": 1685667663587,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 79006283656,
- "unit": "ns/op\t 0.3308 %cpu_avg/op\t 92.86 %cpu_peak/op\t 79.01 cpu_seconds/op\t2117160960 disk_bytes/op\t 3557408 B/op\t 74691 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30237830988,
- "unit": "ns/op\t 0.3828 %cpu_avg/op\t 40.00 %cpu_peak/op\t 30.24 cpu_seconds/op\t 139264 disk_bytes/op\t 1362784 B/op\t 28771 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 460594416,
- "unit": "ns/op\t 1.179 %cpu_avg/op\t 20.20 %cpu_peak/op\t 0.4605 cpu_seconds/op\t 0 disk_bytes/op\t 30616 B/op\t 493 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1832305129,
- "unit": "ns/op\t 0.8468 %cpu_avg/op\t 30.77 %cpu_peak/op\t 1.832 cpu_seconds/op\t 3768320 disk_bytes/op\t 91664 B/op\t 1818 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1683143351312,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 122272685835,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2234",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "122.3",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2684911616",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "5425872",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "114878",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26001654777,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3715",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1159968",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "24795",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 451961459,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4811",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.97",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4519",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "29965",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "480",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1649193359,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2683",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.649",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3600384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "83384",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1629",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "ningziwe@amazon.com",
+ "name": "Ziwen Ning",
+ "username": "ningziwen"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "cc679ef266c7da49e9339d69130f242d8285bc96",
+ "message": "ci: remove setup-go and explicitly set shell in benchmark (#401)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nFix the workflow failure happened recently.\r\nhttps://github.com/runfinch/finch/actions/runs/4920343212/jobs/8789029862\r\n\r\n*Testing done:*\r\nIn feature branch.\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
+ "timestamp": "2023-05-16T13:59:41-07:00",
+ "tree_id": "ce9148fa0e13ad776e232868257642729f8bf853",
+ "url": "https://github.com/runfinch/finch/commit/cc679ef266c7da49e9339d69130f242d8285bc96"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "5f626bd8b7a021c95595aade5b34d7076968b88b",
- "message": "ci: Change -rp to capital (#442)\n\n*Description of changes:*\r\nChange p to capital case\r\n\r\n*Testing done:*\r\nTested with the runner\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
- "timestamp": "2023-06-01T18:10:52-07:00",
- "tree_id": "3738d19bf5c514ac962bb1ff576dcedec89e59b8",
- "url": "https://github.com/runfinch/finch/commit/5f626bd8b7a021c95595aade5b34d7076968b88b"
- },
- "date": 1685669391212,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 83211224242,
- "unit": "ns/op\t 0.2873 %cpu_avg/op\t 40.00 %cpu_peak/op\t 83.21 cpu_seconds/op\t2365468672 disk_bytes/op\t 3735000 B/op\t 78718 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 36376382890,
- "unit": "ns/op\t 0.3257 %cpu_avg/op\t 30.00 %cpu_peak/op\t 36.38 cpu_seconds/op\t 20480 disk_bytes/op\t 1652056 B/op\t 34416 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 459450908,
- "unit": "ns/op\t 0.6651 %cpu_avg/op\t 16.67 %cpu_peak/op\t 0.4594 cpu_seconds/op\t 0 disk_bytes/op\t 30704 B/op\t 491 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1773797747,
- "unit": "ns/op\t 0.4832 %cpu_avg/op\t 29.41 %cpu_peak/op\t 1.774 cpu_seconds/op\t 3624960 disk_bytes/op\t 89424 B/op\t 1759 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1684271091425,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 80141305207,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2935",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "38.46",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "80.14",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2664083456",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3601648",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "75648",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 28848313184,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3679",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "46.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "28.85",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "24576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1300448",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "27388",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 462562354,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.034",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "11.62",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4625",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30349",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "492",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1767866725,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2440",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "14.29",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.768",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3624960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "88968",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1749",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "41898282+github-actions[bot]@users.noreply.github.com",
+ "name": "github-actions[bot]",
+ "username": "github-actions[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "06d86b2bc348db9f0d8d02678faee556719b883d",
+ "message": "build(deps): Bump submodules (#402)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
+ "timestamp": "2023-05-17T16:24:01Z",
+ "tree_id": "288eddf483f6ff89d0e83c6e089da366bce0295d",
+ "url": "https://github.com/runfinch/finch/commit/06d86b2bc348db9f0d8d02678faee556719b883d"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa",
- "message": "build(deps): Bump github.com/docker/docker from 24.0.1+incompatible to 24.0.2+incompatible (#419)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.1+incompatible to 24.0.2+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.2
\r\n24.0.2
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a panic during build when referencing locally tagged images. moby/buildkit#3899,\r\nmoby/moby#45582
\r\n- Fix builds potentially failing with
exit code:\r\n4294967295
when performing many concurrent build stages. moby/moby#45620 \r\n- Fix DNS resolution on Windows ignoring
etc/hosts
\r\n(%WINDIR%\\System32\\Drivers\\etc\\hosts
), including resolution\r\nof localhost
. moby/moby#45562 \r\n- Apply a workaround for a containerd bug that causes concurrent\r\n
docker exec
commands to take significantly longer than\r\nexpected. moby/moby#45625 \r\n- containerd image store: Fix an issue where the image\r\n
Created
field would contain an incorrect value. moby/moby#45623 \r\n- containerd image store: Adjust the output of image pull progress so\r\nthat the output has the same format regardless of whether the containerd\r\nimage store is enabled. moby/moby#45602
\r\n- containerd image store: Switching between the default and containerd\r\nimage store now requires a daemon restart. moby/moby#45616
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n659604f
\r\nMerge pull request #45625\r\nfrom thaJeztah/24.0_backport_serialize_exec_starts_... \r\n6660133
\r\nMerge pull request #45582\r\nfrom thaJeztah/24.0_backport_vendor_buildkit_0.11.7... \r\n67b3563
\r\nMerge pull request #45623\r\nfrom vvoland/c8d-inspect-created-time-24 \r\n7a4ea19
\r\nlibcontainerd: work around exec start bug in c8d \r\nae6e933
\r\nvendor: github.com/moby/buildkit\r\nv0.11.7-0.20230525183624-798ad6b0ce9f \r\n0d9acd2
\r\nc8d/inspect: Fill Created
time if available \r\n37bc639
\r\nMerge pull request #45620\r\nfrom thaJeztah/24.0_backport_update_go_runc_v1.1.0 \r\n04eccf8
\r\nvendor: github.com/containerd/go-runc v1.1.0 \r\n2472277
\r\nMerge pull request #45616\r\nfrom thaJeztah/24.0_backport_lock_in_snapshotter_se... \r\n9d8acb7
\r\nMerge pull request #45612\r\nfrom vvoland/dangling-image-repotagsdigests-test-24 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.1+incompatible&new-version=24.0.2+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T10:55:29-07:00",
- "tree_id": "1f2fcfedd0b5d03454c8a1dc8a59bb02d77cc8bd",
- "url": "https://github.com/runfinch/finch/commit/f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa"
- },
- "date": 1685728838478,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 78772244427,
- "unit": "ns/op\t 0.3156 %cpu_avg/op\t 40.00 %cpu_peak/op\t 78.77 cpu_seconds/op\t2111815680 disk_bytes/op\t 3551568 B/op\t 74524 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30251312425,
- "unit": "ns/op\t 0.3680 %cpu_avg/op\t 29.41 %cpu_peak/op\t 30.25 cpu_seconds/op\t 16384 disk_bytes/op\t 1360600 B/op\t 28732 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 454956347,
- "unit": "ns/op\t 0.4858 %cpu_avg/op\t 11.11 %cpu_peak/op\t 0.4548 cpu_seconds/op\t 0 disk_bytes/op\t 30037 B/op\t 483 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1690051191,
- "unit": "ns/op\t 0.4911 %cpu_avg/op\t 27.27 %cpu_peak/op\t 1.690 cpu_seconds/op\t 3612672 disk_bytes/op\t 85448 B/op\t 1669 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1684340948075,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 77722208248,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2990",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "42.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "77.72",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2564583424",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3503248",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "73464",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26327482250,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3765",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.33",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-102400",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1170776",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25046",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 466144249,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5329",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "8.159",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4661",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30624",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "496",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1773759790,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4025",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.774",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20398080",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "88992",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1758",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "05b6b2e7364036a3d30b67ad409f55526cc59ffe",
+ "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 (#405)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.0 to 1.9.1.\r\n\r\nCommits
\r\n\r\nb30aa27
\r\nMerge pull request #1339\r\nfrom xieyuschen/patch-1 \r\n6acd903
\r\nMerge pull request #1376\r\nfrom ozfive/master \r\n105e63f
\r\nMerge pull request #1 from\r\nashmckenzie/ashmckenzie/fix-writer-scanner \r\nc052ba6
\r\nScan text in 64KB chunks \r\ne59b167
\r\nMerge pull request #1372\r\nfrom tommyblue/syslog_different_loglevels \r\n766cfec
\r\nThis commit fixes a potential denial of service vulnerability in\r\nlogrus.Write... \r\n70234da
\r\nAdd instructions to use different log levels for local and syslog \r\na448f82
\r\nMerge pull request #1362\r\nfrom FrancoisWagner/fix-data-race-in-hooks-test-pkg \r\nff07b25
\r\nFix data race in hooks.test package \r\nd8787af
\r\nUse text when shows the logrus output \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.0&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-17T16:59:12-07:00",
+ "tree_id": "4200288d7d0b7a0007ed4d8c2a30b6f3c39a38dc",
+ "url": "https://github.com/runfinch/finch/commit/05b6b2e7364036a3d30b67ad409f55526cc59ffe"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "8635294bcb22207bfdaa3f96756f93ba580ff6e2",
- "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.4 to 3.23.5 (#437)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.4 to 3.23.5.\r\n\r\nCommits
\r\n\r\n32e8a92
\r\nMerge pull request #1475\r\nfrom shirou/feature/fix_potential_leak_on_common_sleep \r\n3e789a4
\r\n[common]: fix potential leak on Sleep. \r\n03ae19b
\r\nMerge pull request #1472\r\nfrom powersj/fix/writeback \r\n194e6e2
\r\nMerge pull request #1467\r\nfrom shirou/dependabot/go_modules/github.com/yusufpa... \r\n5537690
\r\nchore(deps): bump github.com/yusufpapurcu/wmi from 1.2.2 to 1.2.3 \r\n1983d2b
\r\nMerge pull request #1468\r\nfrom shirou/dependabot/go_modules/github.com/stretch... \r\nd71f002
\r\nfix(mem): Correct capitalization of linux writeback \r\nfd69d68
\r\nchore(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.3 \r\n7c610c5
\r\nMerge pull request #1462\r\nfrom cuishuang/master \r\n9aa4e7a
\r\nfix some comments \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.4&new-version=3.23.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T10:55:58-07:00",
- "tree_id": "69bedd1390c4851caf133cb4b095e3d019c0450c",
- "url": "https://github.com/runfinch/finch/commit/8635294bcb22207bfdaa3f96756f93ba580ff6e2"
- },
- "date": 1685729127879,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 84140983731,
- "unit": "ns/op\t 0.2662 %cpu_avg/op\t 33.33 %cpu_peak/op\t 84.14 cpu_seconds/op\t2115358720 disk_bytes/op\t 3765624 B/op\t 79393 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30606702354,
- "unit": "ns/op\t 0.3564 %cpu_avg/op\t 38.46 %cpu_peak/op\t 30.61 cpu_seconds/op\t 15269888 disk_bytes/op\t 1377824 B/op\t 29128 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 491115306,
- "unit": "ns/op\t 0.8067 %cpu_avg/op\t 16.62 %cpu_peak/op\t 0.4910 cpu_seconds/op\t 0 disk_bytes/op\t 31504 B/op\t 516 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1812201475,
- "unit": "ns/op\t 0.2600 %cpu_avg/op\t 14.29 %cpu_peak/op\t 1.812 cpu_seconds/op\t 3620864 disk_bytes/op\t 90328 B/op\t 1788 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1684368471697,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 187808826186,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.1479",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "78.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "187.8",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2673029120",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "8376808",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "174913",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 29312804066,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3021",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "21.43",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "29.31",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "151552",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1319968",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "27829",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 499825203,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.9568",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "21.28",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4997",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "20480",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "31954",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "526",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1872207642,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.1247",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "13.23",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.872",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3629056",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "93672",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1852",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "25aa324ca324248cf2093af23f205af1b5ae276f",
+ "message": "build(deps): Bump github.com/docker/docker from 23.0.6+incompatible to 24.0.0+incompatible (#406)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.6+incompatible to 24.0.0+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.0
\r\n24.0.0
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nNew
\r\n\r\n- Introduce experimental support for containerd as the content store\r\n(replacing the existing storage drivers). moby/moby#43735,\r\nother\r\nmoby/moby pull requests
\r\n- The
--host
CLI flag now supports a path component in a\r\nssh://
host address, allowing use of an alternate socket\r\npath without configuration on the remote host. docker/cli#4073 \r\n- The
docker info
CLI command now reports a version and\r\nplatform field. docker/cli#4180 \r\n- Introduce the daemon flag
--default-network-opt
to\r\nconfigure options for newly created networks. moby/moby#43197 \r\n- Restrict access to
AF_VSOCK
in the\r\nsocket(2)
family of syscalls in the default seccomp\r\nprofile. moby/moby#44562 \r\n- Introduce support for setting OCI runtime annotations on containers.\r\ndocker/cli#45025,\r\nmoby/moby#45025
\r\n- Alternative runtimes can now be configured in\r\n
daemon.json
, enabling runtime names to be aliased and\r\noptions to be passed. moby/moby#45032 \r\n- The
docker-init
binary will now be discovered in\r\nFHS-compliant libexec directories, in addition to the PATH
.\r\nmoby/moby#45198 \r\n- API: Surface the daemon-level
--no-new-privileges
in\r\nGET /info
. moby/moby#45320 \r\n
\r\nRemoved
\r\n\r\ndocker info
no longer reports\r\nIndexServiceAddress
. docker/cli#4204 \r\n- libnetwork: Remove fallback code for obsolete kernel versions. moby/moby#44684,\r\nmoby/moby#44802
\r\n- libnetwork: Remove unused code related to classic Swarm. moby/moby#44965
\r\n- libnetwork: Remove usage of the
xt_u32
kernel module\r\nfrom encrypted Swarm overlay networks. moby/moby#45281 \r\n- Remove support for buildkit's deprecated
buildinfo
in\r\nfavor of standard provenance attestations. moby/moby#45097 \r\n- Remove the deprecated AUFS and legacy
overlay
storage\r\ndrivers. moby/moby#45342,\r\nmoby/moby# \r\n- Remove the deprecated
overlay2.override_kernel_check
\r\nstorage driver option. moby/moby#45368 \r\n- Remove workarounds for obsolete versions of\r\n
apparmor_parser
from the AppArmor profiles. moby/moby#45500 \r\n- API:
GET /images/json
no longer represents empty\r\nRepoTags and RepoDigests\r\nas<none>:<none>
/<none>@<none>
.\r\nEmpty arrays are be returned instead on API >= 1.43. moby/moby#45068 \r\n
\r\nDeprecated
\r\n\r\n- Deprecate the
--oom-score-adjust
daemon option. moby/moby#45315 \r\n- API: Deprecate the
VirtualSize
field in GET\r\n/images/json
and GET /images/{id}/json
. moby/moby#45346 \r\n
\r\nBug fixes and enhancements
\r\n\r\n- The
docker stack
command no longer validates the\r\nbuild
section of Compose files. docker/cli#4214 \r\n- Fix lingering healthcheck processes after timeout is reached. moby/moby#43739
\r\n- Reduce the overhead of container startup when using the\r\n
overlay2
storage driver. moby/moby#44285 \r\n- API: Handle multiple
before=
and since=
\r\nfilters in GET /images
. moby/moby#44503 \r\n- Fix numerous bugs in the embedded DNS resolver implementation used\r\nby user-defined networks. moby/moby#44664
\r\n- Add
execDuration
field to the map of event attributes.\r\nmoby/moby#45494 \r\n- Swarm-level networks can now be created with the Windows\r\n
internal
, l2bridge
, and nat
\r\ndrivers. moby/swarmkit#3121,\r\nmoby/moby#45291 \r\n
\r\nPackaging updates
\r\n\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n1331b8c
\r\nMerge pull request #45537\r\nfrom thaJeztah/24.0_backport_containerd_binary_1.7.1 \r\n907f037
\r\nupdate containerd binary to v1.7.1 \r\na5b597e
\r\nMerge pull request #45531\r\nfrom rumpl/24.0_backport_fix-empty-auth-pull \r\n8bbfa32
\r\nc8d: The authorizer needs to be set even if AuthConfig is empty \r\n807e415
\r\nMerge pull request #45526\r\nfrom laurazard/backport-classic-builder \r\n8587a1c
\r\nc8d/builder: implement cache \r\n9717369
\r\nc8d: implement classic builder \r\ned0c147
\r\nMerge pull request #45523\r\nfrom thaJeztah/24.0_backport_cleanup_reexec_inits \r\n90be9ab
\r\nMerge pull request #45525\r\nfrom thaJeztah/24.0_backport_c8d_authconfig_default \r\nd73f703
\r\nMerge pull request #45521\r\nfrom thaJeztah/24.0_backport_vendor_distribution_v2... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.6+incompatible&new-version=24.0.0+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-18T00:52:53Z",
+ "tree_id": "e165710972d7cc4dd1908083cdd88af9c0f12942",
+ "url": "https://github.com/runfinch/finch/commit/25aa324ca324248cf2093af23f205af1b5ae276f"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "b192874e2b1c5de1c2148813760cbe65e15d7553",
- "message": "build(deps): Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#443)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.1\r\nto 0.9.3.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.9.3
\r\nMove fast and fix things...golang/go#54395
\r\nAs always, thank you for filing issues!
\r\ngopls/v0.9.2
\r\nThis release contains many bug fixes, particularly related to\r\nproblems that would require restarting gopls.
\r\nNote about network usage: among these fixes was a\r\nchange to allow network usage when reloading the workspace. Reloading\r\noccurs when a go.mod
, go.sum
, or\r\ngo.work
file changes on disk. In the past, gopls would only\r\nallow network during the first workspace load. This resulted in\r\nconfusing behavior when, for example, a new dependency is added to a\r\ngo.mod
file and gopls could not load it, but loading\r\nsucceeded on restart. See #54069 for more details.
\r\nConfiguration changes
\r\ndirectoryFilters at arbitrary depth
\r\nThe "directoryFilters"
\r\nsetting now supports excluding directories at arbitrary depth, using the\r\n**
operator. (note that for v0.9.2, the default value for\r\nthis setting is still ["-node_modules]"
. In the\r\nnext release, this will change to\r\n["-**/node_modules"]
).
\r\nBug fixes and Performance improvements...
\r\nThis release contains the following notable bug fixes / performance\r\nimprovements:
\r\n\r\n- Additional change optimization - Following up on\r\nthe work to optimize change processing from the v0.9.0\r\nrelease, this release contains additional optimizations that result\r\nin around 50% faster change processing (measured via edits in the\r\nKubernetes repo).
\r\n- Fix for a long-standing memory leak - #53780 fixed a long-standing bug\r\nthat caused gopls to hold on to its initial state, gradually leaking\r\nmemory as state changed during the editing session.
\r\n- Fewer restarts - This release contains many fixes\r\nfor cache-invalidation bugs that would cause gopls to get confused and\r\nrequire restarting. Additionally, see the note at top about enabling the\r\nnetwork when reloading the workspace. We believe we are close to our\r\ngoal that restarting gopls should never be required to fix workspace\r\nerrors. If you encounter such a bug, please file an issue!
\r\n
\r\nA full list of all issues fixed can be found in the gopls/v0.9.2\r\nmilestone.\r\nTo report a new problem, please file a new issue at https://go.dev/issues/new.
\r\nThank you to our contributors!
\r\nThank you for your contribution, @alandonovan
, @antoineco
, @dle8
, @euroelessar
, @findleyr
, @hyangah
, @jamalc
, @mssdvd
, @pjweinbgo
, @rentziass
, and @suzmue
!
\r\nWhat's next
\r\nThe next planned gopls release is v0.10.0. We’re\r\nexcited about features and improvements on the horizon, for example:
\r\n\r\n- Package renaming (#41567)
\r\n- More accurate static-analysis (#48738)
\r\n- Improved support for the new 1.19 doc comment format (#54260)
\r\n- Making it easier to work with
go.work
files (many\r\nissues, for example #53880 or\r\n#54261) \r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n0dda7d6
\r\ngo/pointer: remove replace directive \r\n98f1b4d
\r\ngopls/internal/lsp/cache: check number of orphaned files after\r\nfiltering \r\na260315
\r\ngo/pointer: create submodule \r\n96844c3
\r\ncmd/{guru,callgraph}: stop using go/pointer \r\ncd694d8
\r\ngo/packages: include\r\n"unsafe".GoFiles=["unsafe.go"] \r\n33c741d
\r\ngopls/internal/lsp: add min/max builtin \r\n933c7cc
\r\ninternal/lsp/source: use exact match in import highlighting \r\n5974258
\r\ngopls/internal/lsp: clear vuln diagnostics on config changes \r\nf3faea1
\r\ngo/packages: pass -pgo=off on go1.21 and later \r\n5f74ec7
\r\ninternal/lsp/debug: add links to profiles and GC \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.1&new-version=0.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T10:54:58-07:00",
- "tree_id": "1c3e5ba43d97b43b11ab5af8f10989057ca03a11",
- "url": "https://github.com/runfinch/finch/commit/b192874e2b1c5de1c2148813760cbe65e15d7553"
- },
- "date": 1685731091890,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 78116010877,
- "unit": "ns/op\t 0.3150 %cpu_avg/op\t 31.25 %cpu_peak/op\t 78.12 cpu_seconds/op\t2110771200 disk_bytes/op\t 3525984 B/op\t 73919 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30182653618,
- "unit": "ns/op\t 0.3385 %cpu_avg/op\t 36.36 %cpu_peak/op\t 30.18 cpu_seconds/op\t 1130496 disk_bytes/op\t 1357424 B/op\t 28686 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 462228666,
- "unit": "ns/op\t 0.4644 %cpu_avg/op\t 9.890 %cpu_peak/op\t 0.4622 cpu_seconds/op\t 0 disk_bytes/op\t 30509 B/op\t 493 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1762075305,
- "unit": "ns/op\t 0.2850 %cpu_avg/op\t 21.43 %cpu_peak/op\t 1.762 cpu_seconds/op\t 8327168 disk_bytes/op\t 89672 B/op\t 1753 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1684371571910,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 124215024224,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.1885",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "124.2",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2671398912",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "5493936",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "116372",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 29373271417,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3890",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "29.37",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "28672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1322680",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "27868",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 466587877,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3464",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "6.886",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4665",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30762",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "496",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1854135702,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2766",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.854",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3620864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "92568",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1829",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9",
+ "message": "build(deps): Bump k8s.io/apimachinery from 0.27.1 to 0.27.2 (#407)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.1 to 0.27.2.\r\n\r\nCommits
\r\n\r\n756e222
\r\nMerge pull request #117298pohly/automated-cherry-pick-of-#117238
\r\nb1123d2
\r\nMerge pull request #117708Jefftree/automated-cherry-pick-of-#117705
\r\n4074a29
\r\nUpdate kube-openapi to fix race \r\ncc852ec
\r\napi: encode NamespacedName with lower case in JSON \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.1&new-version=0.27.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T10:08:14-07:00",
+ "tree_id": "4995bf341e0dfa88b02d82d9034a40802015304b",
+ "url": "https://github.com/runfinch/finch/commit/e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0a381f17ea2602bc3b19f9b2101da9e3a589f6d3",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#432)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.5 to 2.9.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.7
\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\nv2.9.6
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n913e9e5
\r\nv2.9.7 \r\n07fc3a0
\r\nfix race when multiple defercleanups are called in goroutines \r\n9620623
\r\nv2.9.6 \r\n8ba8b22
\r\nensure report directory tests work when run in parallel \r\n0ac65de
\r\nfix: create parent directory before report files (#1212) \r\n4c2ae23
\r\nFix return value in index.md (#1208) \r\n3e39231
\r\nBump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.5&new-version=2.9.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T12:03:20-07:00",
- "tree_id": "c1136794cddf05c4b049eb5ff3f0d828045c9e18",
- "url": "https://github.com/runfinch/finch/commit/0a381f17ea2602bc3b19f9b2101da9e3a589f6d3"
- },
- "date": 1685732915392,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 81371069278,
- "unit": "ns/op\t 0.2865 %cpu_avg/op\t 33.33 %cpu_peak/op\t 81.37 cpu_seconds/op\t2128130048 disk_bytes/op\t 3658592 B/op\t 76927 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30142829537,
- "unit": "ns/op\t 0.3231 %cpu_avg/op\t 28.57 %cpu_peak/op\t 30.14 cpu_seconds/op\t 16384 disk_bytes/op\t 1356904 B/op\t 28653 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 465772448,
- "unit": "ns/op\t 0.6825 %cpu_avg/op\t 16.18 %cpu_peak/op\t 0.4657 cpu_seconds/op\t 0 disk_bytes/op\t 30912 B/op\t 498 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1766951634,
- "unit": "ns/op\t 0.4789 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.767 cpu_seconds/op\t 3612672 disk_bytes/op\t 88968 B/op\t 1752 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1684775601704,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 76784140186,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3044",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "76.78",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2678050816",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3462912",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "72547",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26125207519,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3810",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "46.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.13",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "24576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1163736",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "24883",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 479107485,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.9229",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "17.54",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4790",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "2730",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30930",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "506",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1615983504,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.7202",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "31.25",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.616",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "13737984",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "82824",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1609",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb",
+ "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.1 to 1.9.2 (#408)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.1 to 1.9.2.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.1&new-version=1.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T10:08:34-07:00",
+ "tree_id": "f2d2b81654b4af29a2aed139fba3d507787ce928",
+ "url": "https://github.com/runfinch/finch/commit/0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb"
+ },
+ "date": 1684775901025,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 76657389397,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2867",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "46.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "76.66",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2661773312",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3463352",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "72494",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 27003244138,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3393",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "27.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1073152",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1199920",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25691",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 454271019,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4322",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.91",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4542",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30090",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "483",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1644413704,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.7709",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "27.27",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.644",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "83704",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1629",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "80513c7785a6da4ae09d9c871acaf180f5d68f2c",
+ "message": "build(deps): Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#409)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.6 to 1.27.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.7
\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n99a29d5
\r\nv1.27.7 \r\n05c1bc6
\r\nupdate gitignore \r\n57054d5
\r\nfix: gcustom.MakeMatcher accepts nil as actual value (#666) \r\n7cadcf6
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663) \r\nb524839
\r\nBump golang.org/x/net from 0.9.0 to 0.10.0 (#662) \r\n5f44694
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661) \r\n05dc99a
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#657) \r\n3a033d1
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#658) \r\na19238f
\r\nReplace deprecated NewGomegaWithT with NewWithT (#659) \r\n29ed041
\r\nBump golang.org/x/net from 0.8.0 to 0.9.0 (#656) \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.6&new-version=1.27.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T10:08:53-07:00",
+ "tree_id": "e2fcfcda12bb1ccd87c7073b3933f3ac027af425",
+ "url": "https://github.com/runfinch/finch/commit/80513c7785a6da4ae09d9c871acaf180f5d68f2c"
+ },
+ "date": 1684776268160,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 77847727826,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3001",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "26.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "77.85",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2682880000",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3510528",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "73569",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26491678463,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3022",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "26.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.49",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "24576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1177592",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25210",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 539397436,
+ "unit": "ns/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.7973",
+ "unit": "%cpu_avg/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.83",
+ "unit": "%cpu_peak/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.5392",
+ "unit": "cpu_seconds/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "34024",
+ "unit": "B/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "567",
+ "unit": "allocs/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1897820816,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3804",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "18.18",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.898",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3624960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "93928",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1869",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "bb1cab229c787752615eb00e74f240c4a4e0e23d",
+ "message": "build(deps): Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.1+incompatible (#413)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.0+incompatible to 24.0.1+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.1
\r\n24.0.1
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nRemoved
\r\n\r\n- Remove CLI completions for storage drivers removed in the 24.0 major\r\nrelease. docker/cli#4302
\r\n
\r\nBug fixes and enhancements
\r\n\r\n- Fix an issue where DNS query NXDOMAIN replies from external servers\r\nwere forwarded to the client as SERVFAIL. moby/moby#45573
\r\n- Fix an issue where
docker pull --platform
would report\r\nNo such image
regarding another tag pointing to the same\r\nimage. moby/moby#45562 \r\n- Fix an issue where insecure registry configuration would be\r\nforgotten during config reload. moby/moby#45571
\r\n- containerd-storage: Fix an issue where images which have no layers\r\nwould not be listed in
docker images -a
moby/moby#45588 \r\n- API: Fix an issue where
GET /images/{id}/json
would\r\nreturn null
instead of empty RepoTags
and\r\nRepoDigests
. moby/moby#45564 \r\n- API: Fix an issue where
POST /commit
did not accept an\r\nempty request body. moby/moby#45568 \r\n
\r\nPackaging updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n463850e
\r\nMerge pull request #45588\r\nfrom vvoland/c8d-layerless-24 \r\n47a3dad
\r\nc8d/list: Show layerless images \r\na0bc3eb
\r\nMerge pull request #45571\r\nfrom thaJeztah/24.0_backport_fix_insecure_registrie... \r\n922b6aa
\r\nMerge pull request #45568\r\nfrom corhere/backport-24.0/fix-empty-container-decode \r\n0e605cf
\r\nMerge pull request #45573\r\nfrom thaJeztah/24.0_backport_fix_dns_servfail \r\n878c417
\r\nMerge pull request #45560\r\nfrom crazy-max/24.0_backport_fix-worker-id \r\n654e80a
\r\nMerge pull request #45570\r\nfrom crazy-max/24.0_backport_ci-bin-image-distribute \r\n0869b08
\r\nlibnetwork: just forward the external DNS response \r\n3467ba6
\r\nreorder load funcs to match newServiceConfig()'s order \r\nf9b886c
\r\nadd mirror to daemon reload test for insecure registries \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.0+incompatible&new-version=24.0.1+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T17:48:50Z",
+ "tree_id": "92f651eed9097478240daebf4cbf33ab7a695969",
+ "url": "https://github.com/runfinch/finch/commit/bb1cab229c787752615eb00e74f240c4a4e0e23d"
+ },
+ "date": 1684778048926,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 78814068645,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2900",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "28.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "78.81",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2671955968",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3552416",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "74531",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26193892885,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3422",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "35.71",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.19",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "86016",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1164848",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "24924",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 458107989,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5107",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.27",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4580",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30488",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "487",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1692006167,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4404",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "21.43",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.692",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3633152",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "85904",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1679",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "b83cc21e6082eeff076e035dfb4cad152fb5508c",
+ "message": "ci: Finch .pkg installer builder (#416)\n\n**Description of changes:**\r\n\r\n- This PR contains the Finch .pkg builder tool.\r\n- The .pkg builder tool can be used by GitHub action to generate and\r\nnotarize macOS .pkg installer.\r\n- The old update to S3 workflow is extended with the functionality to\r\nbuild Finch, build .pkg and test .pkg. It can be used as a scheduled job\r\nfor nightly main branch build as well to detect release issue earlier\r\nbesides cut a new release.\r\n- The old release installer workflow(test installer) is removed because\r\nits scope is moved to the integrated workflow.\r\n\r\nThis is an initial tool check in, Readme and integrated workflow to\r\nchain existing workflows to upload installer to release and publish to\r\nHomebrew will come later.\r\n\r\n**Testing done:**\r\nHave tested the updated workflow and tool on this branch, and can\r\nsuccessfully generate final installer and test it.\r\nAction test ref:\r\nhttps://github.com/runfinch/finch/actions/runs/5077161329\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-26T10:40:35-07:00",
+ "tree_id": "f4ee320ee326400884c15fa51a6485739e2ed39b",
+ "url": "https://github.com/runfinch/finch/commit/b83cc21e6082eeff076e035dfb4cad152fb5508c"
+ },
+ "date": 1685123147000,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 80815974229,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3142",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "35.71",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "80.82",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2657595392",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3627016",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "76212",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26215981608,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3804",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "31.25",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.22",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "49152",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1165576",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "24936",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 454812879,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.2120",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "9.022",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4547",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30317",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "486",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1791474025,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3043",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.791",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "89448",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1768",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "ningziwe@amazon.com",
+ "name": "Ziwen Ning",
+ "username": "ningziwen"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "6a8ca1a559dada6ed320c9454fbc3229446a0a40",
+ "message": "fix: sort volume args in DOCKER_COMPAT mode (#417)\n\nIssue #, if available:\r\nhttps://github.com/runfinch/finch/issues/418\r\n\r\n*Description of changes:*\r\nSort volume args in DOCKER_COMPAT mode\r\n\r\n*Testing done:*\r\nUnit tests and new e2e tests.\r\nhttps://github.com/runfinch/common-tests/pull/66\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
+ "timestamp": "2023-05-26T21:10:30Z",
+ "tree_id": "7d92a6ddbd268a0ecf2c8acb172cadc75b283dc2",
+ "url": "https://github.com/runfinch/finch/commit/6a8ca1a559dada6ed320c9454fbc3229446a0a40"
+ },
+ "date": 1685135735533,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 77593156758,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2886",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "35.71",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "77.59",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2671185920",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3491832",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "73213",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 25859983942,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4467",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "25.86",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "28086272",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1150936",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "24596",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 464246695,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4002",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "9.091",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4642",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30338",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "492",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1890756652,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5868",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "28.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.891",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3620864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "93832",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1868",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0bcdd18b12b889931d3b7928eedf76c1ec9fac5a",
+ "message": "ci: Rename action and set up nightly build (#421)\n\n*Description of changes:*\r\nRename the action.\r\nSet up the installer build and test every day at 9 am UTC (2 am PDT) to\r\nvalidate latest main branch.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-26T16:03:45-07:00",
+ "tree_id": "ab82ce6b1d2aa83593bb648181463b6fe7840863",
+ "url": "https://github.com/runfinch/finch/commit/0bcdd18b12b889931d3b7928eedf76c1ec9fac5a"
+ },
+ "date": 1685142597112,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 80208039766,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3279",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "53.85",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "80.21",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2669309952",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3604168",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "75741",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26553762850,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3295",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "36.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.55",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16805888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1180800",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25268",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 517685120,
+ "unit": "ns/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.2687",
+ "unit": "%cpu_avg/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "13.25",
+ "unit": "%cpu_peak/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.5176",
+ "unit": "cpu_seconds/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "32888",
+ "unit": "B/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "546",
+ "unit": "allocs/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1810866498,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3984",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "14.29",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.811",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3620864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "90760",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1789",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "ac18046e70efc0e1e9fe11a30457f6f945df2a23",
+ "message": "build(deps): Bump github.com/runfinch/common-tests from 0.6.5 to 0.7.0 (#420)\n\nBumps\r\n[github.com/runfinch/common-tests](https://github.com/runfinch/common-tests)\r\nfrom 0.6.5 to 0.7.0.\r\n\r\nRelease notes
\r\nSourced from github.com/runfinch/common-tests's\r\nreleases.
\r\n\r\nv0.7.0
\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/runfinch/common-tests's\r\nchangelog.
\r\n\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n0.6.4\r\n(2023-04-06)
\r\nBug Fixes
\r\n\r\n- better handling of concurrent http servers (#57)\r\n(0ae6182)
\r\n
\r\n0.6.3\r\n(2023-03-27)
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/gomega from 1.27.2 to\r\n1.27.4 (#48)\r\n(f113e7b)
\r\n- deps: bump github.com/onsi/gomega from 1.27.4 to\r\n1.27.5 (#52)\r\n(bd056e7)
\r\n
\r\n0.6.2\r\n(2023-03-16)
\r\nBug Fixes
\r\n\r\n- Fix tests to match nerdctl 1.2.1 outputs (#50)\r\n(3d9b4f4)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.8.3 to\r\n2.8.4 (#41)\r\n(a9476c1)
\r\n- deps: bump github.com/onsi/gomega from 1.27.1 to\r\n1.27.2 (#40)\r\n(e8fc71a)
\r\n
\r\n0.6.1\r\n(2023-02-28)
\r\nBug Fixes
\r\n\r\n- Switch from
nc -l
to nginx
in run\r\n-p/--publish
test (7a6a6c3) \r\n
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\nafbbd97
\r\nchore(main): release 0.7.0 (#63) \r\n22a7f7e
\r\nfeat: Tests for bind mounts (#66) \r\n590a984
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#65) \r\nb761a7a
\r\nfeat: verify the result of finch inspect has State.Status and\r\nState.Error (#64) \r\n72120b5
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.5 to 1.27.6 (#54) \r\n0bd0901
\r\nbuild(deps): bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.5 (#62) \r\n882cd1e
\r\ntest: Functional test for PS command (#17) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/runfinch/common-tests&package-manager=go_modules&previous-version=0.6.5&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-26T16:30:20-07:00",
+ "tree_id": "5e6cfb42519bed0dde2505d4b43e33fd56d4cb40",
+ "url": "https://github.com/runfinch/finch/commit/ac18046e70efc0e1e9fe11a30457f6f945df2a23"
+ },
+ "date": 1685144132219,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 79869230608,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3213",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "79.87",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2670006272",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3589656",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "75414",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26491240742,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.2868",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "23.08",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.49",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16769024",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1178664",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25223",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 480739117,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6369",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.36",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4807",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "31360",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "510",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1693770930,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4645",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "18.18",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.694",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "86000",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1680",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "f67ff9668457057514a351819cdc75fb8c6b2d46",
+ "message": "ci: Add release automation action (#424)\n\n*Description of changes:*\r\nThis PR added a new passive action subscribe to main branch new tag\r\ncreation.\r\nNew tag creation means Finch has a new release, the new workflow will\r\ntrigger build pkg, upload pkg and homebrew release on the latest tag.\r\n\r\n*Testing done:*\r\nThis is a new action and has cross branch/tag involved, needs some\r\nexperiment on main branch after check in.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-29T11:41:28-07:00",
+ "tree_id": "4e53e8ed0bd63d943da86e7680d75e44738efbcb",
+ "url": "https://github.com/runfinch/finch/commit/f67ff9668457057514a351819cdc75fb8c6b2d46"
+ },
+ "date": 1685386132776,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 80178762675,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3163",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "80.18",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2664640512",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3602384",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "75680",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26337855655,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3749",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.34",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "17866752",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1171168",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25052",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 502469927,
+ "unit": "ns/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3950",
+ "unit": "%cpu_avg/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "11.54",
+ "unit": "%cpu_peak/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.5024",
+ "unit": "cpu_seconds/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "32044",
+ "unit": "B/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "531",
+ "unit": "allocs/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1693710261,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4779",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.694",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20402176",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "85488",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1678",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "c4c23a95a139a21cc7208071e3c3b688389f6071",
+ "message": "ci: Upload dependency source code along with the installers (#426)\n\n*Description of changes:*\r\nCurrently we need to upload the dependency source code manually.\r\nMake this along with the installer upload.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-29T18:22:38-07:00",
+ "tree_id": "e65c4af30a6b25e4a09ab3d7849c3b667d9212b8",
+ "url": "https://github.com/runfinch/finch/commit/c4c23a95a139a21cc7208071e3c3b688389f6071"
+ },
+ "date": 1685410068154,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 79903916918,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2994",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "79.90",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2681700352",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3592384",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "75445",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26335826070,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3629",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "28.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.34",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "98304",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1169640",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25031",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 508135250,
+ "unit": "ns/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3741",
+ "unit": "%cpu_avg/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.45",
+ "unit": "%cpu_peak/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.5081",
+ "unit": "cpu_seconds/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "32680",
+ "unit": "B/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "537",
+ "unit": "allocs/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1733008321,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2354",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.733",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "87680",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1719",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "d933d11373c4c9a94137dfad78a8542d2c7be327",
+ "message": "ci: Integrate existing workflows into release-automation (#430)\n\n*Description of changes:*\r\nReuse existing workflows to release-automation.\r\nAdded input param to reuse workflow.\r\nRollout only build & test installer as initial.\r\n\r\n*Testing done:*\r\nHave tested the action in this branch\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-30T16:44:42-07:00",
+ "tree_id": "87f62fce80fd69e8450d0621c833ac32529c621e",
+ "url": "https://github.com/runfinch/finch/commit/d933d11373c4c9a94137dfad78a8542d2c7be327"
+ },
+ "date": 1685490655795,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 79493523844,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2791",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "79.49",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2662977536",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3572376",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "74999",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 28731197735,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.2760",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "28.73",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "94208",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1293096",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "27217",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 515357166,
+ "unit": "ns/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8282",
+ "unit": "%cpu_avg/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "17.69",
+ "unit": "%cpu_peak/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.5152",
+ "unit": "cpu_seconds/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "33208",
+ "unit": "B/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "548",
+ "unit": "allocs/op",
+ "extra": "2 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1843118015,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2251",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "12.47",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.843",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20402176",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "92480",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1820",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "d08952e8b257a74d6d6a6f9da8949d3fd748ab23",
+ "message": "ci: Integrate the other workflows into release-automation (#431)\n\n*Description of changes:*\r\nEnabled the rest workflow for release automation.\r\nCheck in before next release after it is validated.\r\nAfter this PR is checked in, release-please PR merge will automatically\r\ntrigger installer build, test, upload installers and dependency source\r\ncode to release and cut Homebrew PR.\r\n\r\n*Testing done:*\r\nWait next release\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-31T09:55:51-07:00",
+ "tree_id": "0d7b69664ef0d583147c2b84c591c63f802cdf43",
+ "url": "https://github.com/runfinch/finch/commit/d08952e8b257a74d6d6a6f9da8949d3fd748ab23"
+ },
+ "date": 1685552466003,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 77934401474,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3095",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "38.46",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "77.93",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2681393152",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3515440",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "73661",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 28632920043,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3255",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "28.63",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16936960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1290944",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "27169",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 484070460,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6080",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "19.27",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4840",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "31730",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "514",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1747796128,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3947",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "21.43",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.748",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "88712",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1732",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "6a67f0cfb0a3a1da438779f4faa04048f25d7dde",
+ "message": "build(deps): Bump github.com/lima-vm/lima from 0.15.1 to 0.16.0 (#428)\n\nBumps [github.com/lima-vm/lima](https://github.com/lima-vm/lima) from\r\n0.15.1 to 0.16.0.\r\n\r\nRelease notes
\r\nSourced from github.com/lima-vm/lima's\r\nreleases.
\r\n\r\nv0.16.0
\r\nThis release adds an experimental support for the user-v2
\r\nnetwork driver: limactl\r\nstart template://experimental/net-user-v2
.\r\nThe user-v2
network driver enables VM-to-VM networking\r\nwithout the root privilege on the host.\r\nThis should be useful for simulating multi-node Kubernetes clusters on a\r\nlaptop.
\r\nThis release also fixes a relatively minor vulnerability CVE-2023-32684.\r\nThis vulnerability is very unlikely to be exploitable as long\r\nas you are using the official templates of Lima.
\r\nChanges
\r\n\r\nlimactl
CLI:\r\n\r\n- (Experimental) Add
limactl snapshot\r\n(apply|create|delete|list)
commands (#1054,\r\nthanks to @afbjorklund
) \r\n- Escape only the value of env variables in
limactl shell
\r\n(#1501,\r\nthanks to @sam-berning
) \r\n
\r\n \r\n- YAML:\r\n\r\n
\r\n- Documents:\r\n\r\n
\r\n- Network:\r\n
\r\n- (Experimental) Add
user-v2
\r\nnetwork driver to enable VM-to-VM networking without root (#1383,\r\nthanks to @balajiv113
) \r\n
\r\n \r\n- nerdctl:\r\n\r\n
\r\n- Templates:\r\n
\r\n- AlmaLinux: update to 9.2 (#1550)
\r\n- Alpine: update to 3.18 and fix Rosetta support (#1560,\r\n#1580,\r\nthanks to
@jandubois
) \r\n- Arch Linux: update to 20230515.150700 (#1550)
\r\n- Fedora: update to 38 (#1502,\r\nthanks to
@cpach
) \r\n- Nomad: update to v0.9.4 (#1552)
\r\n- Rocky Linux: update to 9.2 and 8.8 (#1550,\r\n#1591)
\r\n- Ubuntu: update to 23.04 (#1550)
\r\n
\r\n \r\n- Misc:\r\n
\r\n- Improve disk efficiency (#1411)\r\nfor caches (#1544)
\r\n
\r\n \r\n
\r\nFull changes: https://github.com/lima-vm/lima/milestone/34?closed=1\r\nThanks to @afbjorklund
@balajiv113
@bumpsoo063
@cpach
@jandubois
@pendo324
@sam-berning
\r\nUsage
\r\n[macOS]$ limactl start\r\n...\r\nINFO[0029] READY. Run `lima` to open the shell.\r\n[macOS]$ lima uname\r\nLinux\r\n
\r\n
\r\nThe binaries were built automatically on GitHub Actions.\r\nThe build log is available for 90 days: https://github.com/lima-vm/lima/actions/runs/5118006806
\r\nThe sha256sum of the SHA256SUMS file itself is\r\n2062c42688128dca55331fc1a8f4841cbf41ed9dd11867d48decdf6880afde87
\r\n.
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n01dbd4d
\r\nMerge pull request from GHSA-f7qw-jj9c-rpq9 \r\nbc1bdb8
\r\nProhibit using a differential disk as a base disk \r\nbfa5bab
\r\nqemu: explicitly pass the basedisk format to QEMU \r\nefe1c47
\r\npkg/qemu/imgutil: add Info fields \r\n3dbc08c
\r\nMerge pull request #1592\r\nfrom afbjorklund/man-prefix \r\n703d69f
\r\nRemove the build directories from the manpages \r\ne7aa4ff
\r\nMerge pull request #1591\r\nfrom AkihiroSuda/dev \r\nb9ea964
\r\nMerge pull request #1590\r\nfrom balajiv113/usernet-default \r\n5656d1a
\r\ntemplates: update Rocky Linux to 8.8 \r\n5c0955d
\r\ntemplates: update CentOS Stream 9 to 20230523.0 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/lima-vm/lima&package-manager=go_modules&previous-version=0.15.1&new-version=0.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-31T10:22:24-07:00",
+ "tree_id": "556e3a36fb0bb31a7a51202de5d9db3ef55c2b48",
+ "url": "https://github.com/runfinch/finch/commit/6a67f0cfb0a3a1da438779f4faa04048f25d7dde"
+ },
+ "date": 1685554070476,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 79617614731,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2754",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "79.62",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2682560512",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3580944",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "75180",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26213130677,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3183",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.21",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-102400",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1165480",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "24926",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 463688033,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4314",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.27",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4636",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30536",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "493",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1781458076,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2986",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "18.18",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.781",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20402176",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "89464",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1768",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "vsiravara@gmail.com",
+ "name": "Vishwas Siravara",
+ "username": "vsiravar"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9",
+ "message": "ci: Manually update submodule and add cleanup (#434)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\n\r\n- Add clean up in ci for finch version command\r\n- Add submodule updates to finch core\r\n\r\n*Testing done:*\r\n\r\nYes\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
+ "timestamp": "2023-05-31T14:02:33-07:00",
+ "tree_id": "c0224254ae7d46efe2947ff93511a51659565aaa",
+ "url": "https://github.com/runfinch/finch/commit/7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9"
+ },
+ "date": 1685567264070,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 77876782681,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2753",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "35.71",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "77.88",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2671923200",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3509408",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "73551",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 25963721460,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3416",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "26.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "25.96",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-10551296",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1155192",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "24697",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 455281564,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3829",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "11.61",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4552",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30056",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "486",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1791768219,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.1455",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "15.38",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.792",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "89880",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1769",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "1c09471be3b9d214e4a4ef805980588f6e322b68",
+ "message": "ci: Add git clean before build and test (#435)\n\n*Description of changes:*\r\nIt append .modified postfix when build or test.\r\nAdd git clean to remove the dirty state.\r\nAdd git status to log when it happens\r\n\r\n*Testing done:*\r\nTODO with this current run.\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-31T15:47:26-07:00",
+ "tree_id": "d93daef2907cf471ae341cb360413598172833f1",
+ "url": "https://github.com/runfinch/finch/commit/1c09471be3b9d214e4a4ef805980588f6e322b68"
+ },
+ "date": 1685573623844,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 80331198986,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3036",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "69.23",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "80.33",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2673315840",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3611760",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "75862",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26337086305,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3334",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.34",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "24576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1171208",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25060",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 501394994,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.7511",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "20.31",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.5013",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "1365",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "32373",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "530",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1910429807,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3744",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.910",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "94416",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1879",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "975c4ee42c1529673a51382c62c4096dc663f80a",
+ "message": "fix: Stop lima process in postinstall and uninstall (#438)\n\n*Description of changes:*\r\nUnstopped lima process can prevent new installation and finch vm init\r\nsuccessfully.\r\nAdd kill limactl to post-installation and uninstall script to fix the\r\nissue.\r\n\r\n*Testing done:*\r\nTested locally.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-06-01T14:49:30-07:00",
+ "tree_id": "3aac93a3e14d71a61ea11cc9f58d98df0cd2d549",
+ "url": "https://github.com/runfinch/finch/commit/975c4ee42c1529673a51382c62c4096dc663f80a"
+ },
+ "date": 1685656550145,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 80510117087,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3141",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "42.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "80.51",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2635149312",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3617136",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "76004",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 26410238223,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3498",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "38.46",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "26.41",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "4096",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1174352",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25132",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 489150627,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4759",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "13.73",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4891",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "31498",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "516",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1832854423,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5745",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "21.43",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.833",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3620864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "91632",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1818",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "41898282+github-actions[bot]@users.noreply.github.com",
+ "name": "github-actions[bot]",
+ "username": "github-actions[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "e9551b50010deb43ad26dcd3671ec2f246e84ed6",
+ "message": "build(deps): Bump submodules (#439)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
+ "timestamp": "2023-06-01T17:08:31-07:00",
+ "tree_id": "1d44ab428cafa8801c73cf50dbe39a71ea5aa9bb",
+ "url": "https://github.com/runfinch/finch/commit/e9551b50010deb43ad26dcd3671ec2f246e84ed6"
+ },
+ "date": 1685664821961,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 80915994020,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3032",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "28.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "80.92",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2677755904",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3634432",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "76398",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 27326653349,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3428",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "27.33",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1003520",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1237272",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25956",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 455895228,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5632",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "9.573",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4558",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30194",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "486",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 2213099881,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4222",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "20.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "2.213",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "107600",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "2179",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "vsiravara@gmail.com",
+ "name": "Vishwas Siravara",
+ "username": "vsiravar"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0aa4c5cc36c4d44e431a8c13004607990bdb2bf4",
+ "message": "ci: Update lima download url (#440)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nLIMA_URL in `finch` is stale\r\nhttps://github.com/runfinch/finch/blob/main/Makefile#L38. Keeping it\r\nconsistent with finch-core.\r\n*Testing done:*\r\n\r\nLocally. \r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
+ "timestamp": "2023-06-01T17:50:59-07:00",
+ "tree_id": "92182604e47f2ec0133a0b2a79ec61950bc73185",
+ "url": "https://github.com/runfinch/finch/commit/0aa4c5cc36c4d44e431a8c13004607990bdb2bf4"
+ },
+ "date": 1685667360047,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 75128585781,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3622",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "53.85",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "75.13",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2108375040",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3325728",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "71095",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30154886070,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3376",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "31.25",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.15",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "9310208",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1358920",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28684",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 460320297,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5775",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "14.93",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4603",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "4096",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30197",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "489",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1602281487,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2455",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "27.27",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.602",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "81528",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1588",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "7660d08f4e9e93468d0495aeafa2cf2de302227e",
+ "message": "ci: Preserve link when copy from build (#441)\n\n*Description of changes:*\r\nAdd 'p' flag to preserve original symbolic link when copying the build\r\nartifact\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
+ "timestamp": "2023-06-01T17:53:28-07:00",
+ "tree_id": "4fdbf68f34050cd3f3b5126a3b4960af6cf63267",
+ "url": "https://github.com/runfinch/finch/commit/7660d08f4e9e93468d0495aeafa2cf2de302227e"
+ },
+ "date": 1685667663587,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 79006283656,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3308",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "92.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "79.01",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2117160960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3557408",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "74691",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30237830988,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3828",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.24",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "139264",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1362784",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28771",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 460594416,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.179",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "20.20",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4605",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30616",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "493",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1832305129,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.8468",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.832",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3768320",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "91664",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1818",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "5f626bd8b7a021c95595aade5b34d7076968b88b",
+ "message": "ci: Change -rp to capital (#442)\n\n*Description of changes:*\r\nChange p to capital case\r\n\r\n*Testing done:*\r\nTested with the runner\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
+ "timestamp": "2023-06-01T18:10:52-07:00",
+ "tree_id": "3738d19bf5c514ac962bb1ff576dcedec89e59b8",
+ "url": "https://github.com/runfinch/finch/commit/5f626bd8b7a021c95595aade5b34d7076968b88b"
+ },
+ "date": 1685669391212,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 83211224242,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2873",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "83.21",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2365468672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3735000",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "78718",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 36376382890,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3257",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "36.38",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "20480",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1652056",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "34416",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 459450908,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6651",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "16.67",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4594",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30704",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "491",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1773797747,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4832",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "29.41",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.774",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3624960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "89424",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1759",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa",
+ "message": "build(deps): Bump github.com/docker/docker from 24.0.1+incompatible to 24.0.2+incompatible (#419)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.1+incompatible to 24.0.2+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.2
\r\n24.0.2
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a panic during build when referencing locally tagged images. moby/buildkit#3899,\r\nmoby/moby#45582
\r\n- Fix builds potentially failing with
exit code:\r\n4294967295
when performing many concurrent build stages. moby/moby#45620 \r\n- Fix DNS resolution on Windows ignoring
etc/hosts
\r\n(%WINDIR%\\System32\\Drivers\\etc\\hosts
), including resolution\r\nof localhost
. moby/moby#45562 \r\n- Apply a workaround for a containerd bug that causes concurrent\r\n
docker exec
commands to take significantly longer than\r\nexpected. moby/moby#45625 \r\n- containerd image store: Fix an issue where the image\r\n
Created
field would contain an incorrect value. moby/moby#45623 \r\n- containerd image store: Adjust the output of image pull progress so\r\nthat the output has the same format regardless of whether the containerd\r\nimage store is enabled. moby/moby#45602
\r\n- containerd image store: Switching between the default and containerd\r\nimage store now requires a daemon restart. moby/moby#45616
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n659604f
\r\nMerge pull request #45625\r\nfrom thaJeztah/24.0_backport_serialize_exec_starts_... \r\n6660133
\r\nMerge pull request #45582\r\nfrom thaJeztah/24.0_backport_vendor_buildkit_0.11.7... \r\n67b3563
\r\nMerge pull request #45623\r\nfrom vvoland/c8d-inspect-created-time-24 \r\n7a4ea19
\r\nlibcontainerd: work around exec start bug in c8d \r\nae6e933
\r\nvendor: github.com/moby/buildkit\r\nv0.11.7-0.20230525183624-798ad6b0ce9f \r\n0d9acd2
\r\nc8d/inspect: Fill Created
time if available \r\n37bc639
\r\nMerge pull request #45620\r\nfrom thaJeztah/24.0_backport_update_go_runc_v1.1.0 \r\n04eccf8
\r\nvendor: github.com/containerd/go-runc v1.1.0 \r\n2472277
\r\nMerge pull request #45616\r\nfrom thaJeztah/24.0_backport_lock_in_snapshotter_se... \r\n9d8acb7
\r\nMerge pull request #45612\r\nfrom vvoland/dangling-image-repotagsdigests-test-24 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.1+incompatible&new-version=24.0.2+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T10:55:29-07:00",
+ "tree_id": "1f2fcfedd0b5d03454c8a1dc8a59bb02d77cc8bd",
+ "url": "https://github.com/runfinch/finch/commit/f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa"
+ },
+ "date": 1685728838478,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 78772244427,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3156",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "78.77",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2111815680",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3551568",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "74524",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30251312425,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3680",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "29.41",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.25",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1360600",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28732",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 454956347,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4858",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "11.11",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4548",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30037",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "483",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1690051191,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4911",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "27.27",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.690",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "85448",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1669",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "8635294bcb22207bfdaa3f96756f93ba580ff6e2",
+ "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.4 to 3.23.5 (#437)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.4 to 3.23.5.\r\n\r\nCommits
\r\n\r\n32e8a92
\r\nMerge pull request #1475\r\nfrom shirou/feature/fix_potential_leak_on_common_sleep \r\n3e789a4
\r\n[common]: fix potential leak on Sleep. \r\n03ae19b
\r\nMerge pull request #1472\r\nfrom powersj/fix/writeback \r\n194e6e2
\r\nMerge pull request #1467\r\nfrom shirou/dependabot/go_modules/github.com/yusufpa... \r\n5537690
\r\nchore(deps): bump github.com/yusufpapurcu/wmi from 1.2.2 to 1.2.3 \r\n1983d2b
\r\nMerge pull request #1468\r\nfrom shirou/dependabot/go_modules/github.com/stretch... \r\nd71f002
\r\nfix(mem): Correct capitalization of linux writeback \r\nfd69d68
\r\nchore(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.3 \r\n7c610c5
\r\nMerge pull request #1462\r\nfrom cuishuang/master \r\n9aa4e7a
\r\nfix some comments \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.4&new-version=3.23.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T10:55:58-07:00",
+ "tree_id": "69bedd1390c4851caf133cb4b095e3d019c0450c",
+ "url": "https://github.com/runfinch/finch/commit/8635294bcb22207bfdaa3f96756f93ba580ff6e2"
+ },
+ "date": 1685729127879,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 84140983731,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2662",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "84.14",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2115358720",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3765624",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "79393",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30606702354,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3564",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "38.46",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.61",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "15269888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1377824",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "29128",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 491115306,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8067",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "16.62",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4910",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "31504",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "516",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1812201475,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2600",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "14.29",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.812",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3620864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "90328",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1788",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "b192874e2b1c5de1c2148813760cbe65e15d7553",
+ "message": "build(deps): Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#443)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.1\r\nto 0.9.3.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.9.3
\r\nMove fast and fix things...golang/go#54395
\r\nAs always, thank you for filing issues!
\r\ngopls/v0.9.2
\r\nThis release contains many bug fixes, particularly related to\r\nproblems that would require restarting gopls.
\r\nNote about network usage: among these fixes was a\r\nchange to allow network usage when reloading the workspace. Reloading\r\noccurs when a go.mod
, go.sum
, or\r\ngo.work
file changes on disk. In the past, gopls would only\r\nallow network during the first workspace load. This resulted in\r\nconfusing behavior when, for example, a new dependency is added to a\r\ngo.mod
file and gopls could not load it, but loading\r\nsucceeded on restart. See #54069 for more details.
\r\nConfiguration changes
\r\ndirectoryFilters at arbitrary depth
\r\nThe "directoryFilters"
\r\nsetting now supports excluding directories at arbitrary depth, using the\r\n**
operator. (note that for v0.9.2, the default value for\r\nthis setting is still ["-node_modules]"
. In the\r\nnext release, this will change to\r\n["-**/node_modules"]
).
\r\nBug fixes and Performance improvements...
\r\nThis release contains the following notable bug fixes / performance\r\nimprovements:
\r\n\r\n- Additional change optimization - Following up on\r\nthe work to optimize change processing from the v0.9.0\r\nrelease, this release contains additional optimizations that result\r\nin around 50% faster change processing (measured via edits in the\r\nKubernetes repo).
\r\n- Fix for a long-standing memory leak - #53780 fixed a long-standing bug\r\nthat caused gopls to hold on to its initial state, gradually leaking\r\nmemory as state changed during the editing session.
\r\n- Fewer restarts - This release contains many fixes\r\nfor cache-invalidation bugs that would cause gopls to get confused and\r\nrequire restarting. Additionally, see the note at top about enabling the\r\nnetwork when reloading the workspace. We believe we are close to our\r\ngoal that restarting gopls should never be required to fix workspace\r\nerrors. If you encounter such a bug, please file an issue!
\r\n
\r\nA full list of all issues fixed can be found in the gopls/v0.9.2\r\nmilestone.\r\nTo report a new problem, please file a new issue at https://go.dev/issues/new.
\r\nThank you to our contributors!
\r\nThank you for your contribution, @alandonovan
, @antoineco
, @dle8
, @euroelessar
, @findleyr
, @hyangah
, @jamalc
, @mssdvd
, @pjweinbgo
, @rentziass
, and @suzmue
!
\r\nWhat's next
\r\nThe next planned gopls release is v0.10.0. We’re\r\nexcited about features and improvements on the horizon, for example:
\r\n\r\n- Package renaming (#41567)
\r\n- More accurate static-analysis (#48738)
\r\n- Improved support for the new 1.19 doc comment format (#54260)
\r\n- Making it easier to work with
go.work
files (many\r\nissues, for example #53880 or\r\n#54261) \r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n0dda7d6
\r\ngo/pointer: remove replace directive \r\n98f1b4d
\r\ngopls/internal/lsp/cache: check number of orphaned files after\r\nfiltering \r\na260315
\r\ngo/pointer: create submodule \r\n96844c3
\r\ncmd/{guru,callgraph}: stop using go/pointer \r\ncd694d8
\r\ngo/packages: include\r\n"unsafe".GoFiles=["unsafe.go"] \r\n33c741d
\r\ngopls/internal/lsp: add min/max builtin \r\n933c7cc
\r\ninternal/lsp/source: use exact match in import highlighting \r\n5974258
\r\ngopls/internal/lsp: clear vuln diagnostics on config changes \r\nf3faea1
\r\ngo/packages: pass -pgo=off on go1.21 and later \r\n5f74ec7
\r\ninternal/lsp/debug: add links to profiles and GC \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.1&new-version=0.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T10:54:58-07:00",
+ "tree_id": "1c3e5ba43d97b43b11ab5af8f10989057ca03a11",
+ "url": "https://github.com/runfinch/finch/commit/b192874e2b1c5de1c2148813760cbe65e15d7553"
+ },
+ "date": 1685731091890,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 78116010877,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3150",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "31.25",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "78.12",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2110771200",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3525984",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "73919",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30182653618,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3385",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "36.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.18",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1130496",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1357424",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28686",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 462228666,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4644",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "9.890",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4622",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30509",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "493",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1762075305,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2850",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "21.43",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.762",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "8327168",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "89672",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1753",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0a381f17ea2602bc3b19f9b2101da9e3a589f6d3",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#432)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.5 to 2.9.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.7
\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\nv2.9.6
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n913e9e5
\r\nv2.9.7 \r\n07fc3a0
\r\nfix race when multiple defercleanups are called in goroutines \r\n9620623
\r\nv2.9.6 \r\n8ba8b22
\r\nensure report directory tests work when run in parallel \r\n0ac65de
\r\nfix: create parent directory before report files (#1212) \r\n4c2ae23
\r\nFix return value in index.md (#1208) \r\n3e39231
\r\nBump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.5&new-version=2.9.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T12:03:20-07:00",
+ "tree_id": "c1136794cddf05c4b049eb5ff3f0d828045c9e18",
+ "url": "https://github.com/runfinch/finch/commit/0a381f17ea2602bc3b19f9b2101da9e3a589f6d3"
+ },
+ "date": 1685732915392,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 81371069278,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2865",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "81.37",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2128130048",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3658592",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "76927",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30142829537,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3231",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "28.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.14",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1356904",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28653",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 465772448,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6825",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "16.18",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4657",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30912",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "498",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1766951634,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4789",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.767",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "88968",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1752",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336",
+ "message": "build(deps): Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#429)\n\nBumps [github.com/stretchr/testify](https://github.com/stretchr/testify)\r\nfrom 1.8.2 to 1.8.4.\r\n\r\nCommits
\r\n\r\nf97607b
\r\nCreate GitHub release when new release tag is pushed (#1354) \r\n4c93d8f
\r\nEqualExportedValues: Handle nested pointer, slice and map fields (#1379) \r\n4b2f4d2
\r\nadd EventuallyWithT assertion (#1264) \r\nb3106d7
\r\nallow testing for functional options (#1023) \r\n437071b
\r\nassert: fix error message formatting for NotContains (#1362) \r\nc5fc9d6
\r\nCompare public elements of struct (#1309) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/stretchr/testify&package-manager=go_modules&previous-version=1.8.2&new-version=1.8.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T14:07:49-07:00",
+ "tree_id": "6315646cec92c8216dfe2441c6ffe9eaf37346ad",
+ "url": "https://github.com/runfinch/finch/commit/0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336",
- "message": "build(deps): Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#429)\n\nBumps [github.com/stretchr/testify](https://github.com/stretchr/testify)\r\nfrom 1.8.2 to 1.8.4.\r\n\r\nCommits
\r\n\r\nf97607b
\r\nCreate GitHub release when new release tag is pushed (#1354) \r\n4c93d8f
\r\nEqualExportedValues: Handle nested pointer, slice and map fields (#1379) \r\n4b2f4d2
\r\nadd EventuallyWithT assertion (#1264) \r\nb3106d7
\r\nallow testing for functional options (#1023) \r\n437071b
\r\nassert: fix error message formatting for NotContains (#1362) \r\nc5fc9d6
\r\nCompare public elements of struct (#1309) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/stretchr/testify&package-manager=go_modules&previous-version=1.8.2&new-version=1.8.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T14:07:49-07:00",
- "tree_id": "6315646cec92c8216dfe2441c6ffe9eaf37346ad",
- "url": "https://github.com/runfinch/finch/commit/0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336"
- },
- "date": 1685740383104,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 78186096777,
- "unit": "ns/op\t 0.2962 %cpu_avg/op\t 46.67 %cpu_peak/op\t 78.19 cpu_seconds/op\t2112491520 disk_bytes/op\t 3524960 B/op\t 73923 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30209162422,
- "unit": "ns/op\t 0.3688 %cpu_avg/op\t 30.77 %cpu_peak/op\t 30.21 cpu_seconds/op\t 24576 disk_bytes/op\t 1357848 B/op\t 28669 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 452817353,
- "unit": "ns/op\t 0.3230 %cpu_avg/op\t 13.51 %cpu_peak/op\t 0.4527 cpu_seconds/op\t 0 disk_bytes/op\t 30032 B/op\t 483 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1811282804,
- "unit": "ns/op\t 0.05635 %cpu_avg/op\t 9.748 %cpu_peak/op\t 1.811 cpu_seconds/op\t 3624960 disk_bytes/op\t 90632 B/op\t 1792 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1685740383104,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 78186096777,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2962",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "46.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "78.19",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2112491520",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3524960",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "73923",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30209162422,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3688",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.21",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "24576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1357848",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28669",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 452817353,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3230",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "13.51",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4527",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30032",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "483",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1811282804,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.05635",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "9.748",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.811",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3624960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "90632",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1792",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "da91f87369e5fde221b8edbac374954e71dae947",
+ "message": "fix: Add cleanup script to Makefile (#444)\n\n*Description of changes:*\r\nRemove files under other directories besides _output, and kill running\r\nprocesses for network, lima and qemu.\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-06-02T20:08:20-07:00",
+ "tree_id": "030696b83e1faf45fa5355cc74459ba8273e20e2",
+ "url": "https://github.com/runfinch/finch/commit/da91f87369e5fde221b8edbac374954e71dae947"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "da91f87369e5fde221b8edbac374954e71dae947",
- "message": "fix: Add cleanup script to Makefile (#444)\n\n*Description of changes:*\r\nRemove files under other directories besides _output, and kill running\r\nprocesses for network, lima and qemu.\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-06-02T20:08:20-07:00",
- "tree_id": "030696b83e1faf45fa5355cc74459ba8273e20e2",
- "url": "https://github.com/runfinch/finch/commit/da91f87369e5fde221b8edbac374954e71dae947"
- },
- "date": 1685762018031,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 79510629853,
- "unit": "ns/op\t 0.3612 %cpu_avg/op\t 57.14 %cpu_peak/op\t 79.51 cpu_seconds/op\t2119712768 disk_bytes/op\t 3580200 B/op\t 75173 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30285023660,
- "unit": "ns/op\t 0.3454 %cpu_avg/op\t 33.33 %cpu_peak/op\t 30.28 cpu_seconds/op\t 16384 disk_bytes/op\t 1361960 B/op\t 28781 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 457090063,
- "unit": "ns/op\t 0.1655 %cpu_avg/op\t 7.021 %cpu_peak/op\t 0.4570 cpu_seconds/op\t 4096 disk_bytes/op\t 30608 B/op\t 492 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1800832289,
- "unit": "ns/op\t 0.09917 %cpu_avg/op\t 9.365 %cpu_peak/op\t 1.801 cpu_seconds/op\t 3608576 disk_bytes/op\t 90176 B/op\t 1781 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1685762018031,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 79510629853,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3612",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "57.14",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "79.51",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2119712768",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3580200",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "75173",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30285023660,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3454",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.28",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1361960",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28781",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 457090063,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.1655",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "7.021",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4570",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "4096",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30608",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "492",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1800832289,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.09917",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "9.365",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.801",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3608576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "90176",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1781",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "18236774d971065dec28d1db204e1f697d418a9b",
+ "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 (#446)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.2 to 1.9.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.2&new-version=1.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-05T11:15:01-07:00",
+ "tree_id": "70db57c1775154e572df0c514794b3324c7001f6",
+ "url": "https://github.com/runfinch/finch/commit/18236774d971065dec28d1db204e1f697d418a9b"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "18236774d971065dec28d1db204e1f697d418a9b",
- "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 (#446)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.2 to 1.9.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.2&new-version=1.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-05T11:15:01-07:00",
- "tree_id": "70db57c1775154e572df0c514794b3324c7001f6",
- "url": "https://github.com/runfinch/finch/commit/18236774d971065dec28d1db204e1f697d418a9b"
- },
- "date": 1685989218513,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 81747169608,
- "unit": "ns/op\t 0.2831 %cpu_avg/op\t 35.71 %cpu_peak/op\t 81.75 cpu_seconds/op\t2118422528 disk_bytes/op\t 3671520 B/op\t 77253 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30220206706,
- "unit": "ns/op\t 0.3359 %cpu_avg/op\t 35.71 %cpu_peak/op\t 30.22 cpu_seconds/op\t 20480 disk_bytes/op\t 1360960 B/op\t 28754 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 460731775,
- "unit": "ns/op\t 0.5679 %cpu_avg/op\t 14.65 %cpu_peak/op\t 0.4606 cpu_seconds/op\t 0 disk_bytes/op\t 30773 B/op\t 492 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1844783511,
- "unit": "ns/op\t 0.5196 %cpu_avg/op\t 28.57 %cpu_peak/op\t 1.845 cpu_seconds/op\t 20402176 disk_bytes/op\t 91664 B/op\t 1818 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1685989218513,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 81747169608,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2831",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "35.71",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "81.75",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2118422528",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3671520",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "77253",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30220206706,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3359",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "35.71",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.22",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "20480",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1360960",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28754",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 460731775,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5679",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "14.65",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4606",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30773",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "492",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1844783511,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5196",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "28.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.845",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20402176",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "91664",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1818",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "a415e3ef7b2741853bf352b915c4100c77600619",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.7 to 2.10.0 (#449)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.7 to 2.10.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.10.0
\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.7&new-version=2.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-08T12:05:08-07:00",
+ "tree_id": "7d0426eaf21e581716ccaa1d2220d852432ff817",
+ "url": "https://github.com/runfinch/finch/commit/a415e3ef7b2741853bf352b915c4100c77600619"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "a415e3ef7b2741853bf352b915c4100c77600619",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.7 to 2.10.0 (#449)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.7 to 2.10.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.10.0
\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.7&new-version=2.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-08T12:05:08-07:00",
- "tree_id": "7d0426eaf21e581716ccaa1d2220d852432ff817",
- "url": "https://github.com/runfinch/finch/commit/a415e3ef7b2741853bf352b915c4100c77600619"
- },
- "date": 1686251432958,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 81273940326,
- "unit": "ns/op\t 0.2730 %cpu_avg/op\t 30.77 %cpu_peak/op\t 81.27 cpu_seconds/op\t2122547200 disk_bytes/op\t 3651808 B/op\t 76783 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30220504793,
- "unit": "ns/op\t 0.3363 %cpu_avg/op\t 35.71 %cpu_peak/op\t 30.22 cpu_seconds/op\t -167936 disk_bytes/op\t 1359488 B/op\t 28728 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 462941166,
- "unit": "ns/op\t 0.6239 %cpu_avg/op\t 11.79 %cpu_peak/op\t 0.4629 cpu_seconds/op\t 0 disk_bytes/op\t 30490 B/op\t 490 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1733022464,
- "unit": "ns/op\t 0.4185 %cpu_avg/op\t 18.75 %cpu_peak/op\t 1.733 cpu_seconds/op\t 8028160 disk_bytes/op\t 87656 B/op\t 1728 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1686251432958,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 81273940326,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2730",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "81.27",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2122547200",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3651808",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "76783",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30220504793,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3363",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "35.71",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.22",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-167936",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1359488",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28728",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 462941166,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6239",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "11.79",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4629",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30490",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "490",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1733022464,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4185",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "18.75",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.733",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "8028160",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "87656",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1728",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "96fc8d09a051b2ead932e6eef064624b1a842b66",
+ "message": "build(deps): Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#448)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.7 to 1.27.8.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.8
\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n492512f
\r\nv1.27.8 \r\n096f392
\r\nHaveExactElement should not call FailureMessage if a submatcher returned\r\nan e... \r\n8884bee
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.7&new-version=1.27.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-12T10:30:23-07:00",
+ "tree_id": "10f049c03ae10bc0244c31448d03f26a23429098",
+ "url": "https://github.com/runfinch/finch/commit/96fc8d09a051b2ead932e6eef064624b1a842b66"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "96fc8d09a051b2ead932e6eef064624b1a842b66",
- "message": "build(deps): Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#448)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.7 to 1.27.8.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.8
\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n492512f
\r\nv1.27.8 \r\n096f392
\r\nHaveExactElement should not call FailureMessage if a submatcher returned\r\nan e... \r\n8884bee
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.7&new-version=1.27.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-12T10:30:23-07:00",
- "tree_id": "10f049c03ae10bc0244c31448d03f26a23429098",
- "url": "https://github.com/runfinch/finch/commit/96fc8d09a051b2ead932e6eef064624b1a842b66"
- },
- "date": 1686591350873,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 81322200629,
- "unit": "ns/op\t 0.3443 %cpu_avg/op\t 50.00 %cpu_peak/op\t 81.32 cpu_seconds/op\t2129481728 disk_bytes/op\t 3654288 B/op\t 76840 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30194693836,
- "unit": "ns/op\t 0.3698 %cpu_avg/op\t 28.57 %cpu_peak/op\t 30.19 cpu_seconds/op\t 24576 disk_bytes/op\t 1359624 B/op\t 28700 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 482218536,
- "unit": "ns/op\t 0.9473 %cpu_avg/op\t 16.93 %cpu_peak/op\t 0.4821 cpu_seconds/op\t 0 disk_bytes/op\t 31546 B/op\t 512 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1739793799,
- "unit": "ns/op\t 0.4596 %cpu_avg/op\t 16.67 %cpu_peak/op\t 1.740 cpu_seconds/op\t 3624960 disk_bytes/op\t 87704 B/op\t 1729 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1686591350873,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 81322200629,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3443",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "81.32",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2129481728",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3654288",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "76840",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30194693836,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3698",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "28.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.19",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "24576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1359624",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28700",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 482218536,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.9473",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "16.93",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4821",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "31546",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "512",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1739793799,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4596",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.740",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3624960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "87704",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1729",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "113054166+sam-berning@users.noreply.github.com",
+ "name": "Sam Berning",
+ "username": "sam-berning"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "9f4b87c616a0329cb6c8ff27db003766ef0bba2c",
+ "message": "test: mocks LimaUser to fix race condition in support bundle unit tests (#450)\n\nIssue #, if available: https://github.com/runfinch/finch/issues/447\r\n\r\n*Description of changes:*\r\n\r\nThere was a race condition in the unit tests for `support-bundle\r\ngenerate` caused by Lima's `osutil.LimaUser` not being thread-safe. I\r\ndon't think there's really a need to make it thread-safe, so I think\r\nit's easier to just wrap and mock it for the unit tests, which I've done\r\nhere.\r\n\r\n*Testing done:*\r\n\r\n```\r\nmake test-unit\r\n```\r\n\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Sam Berning ",
+ "timestamp": "2023-06-13T10:50:41-07:00",
+ "tree_id": "ae8b6aa66838b1b01fd822604932582730de8710",
+ "url": "https://github.com/runfinch/finch/commit/9f4b87c616a0329cb6c8ff27db003766ef0bba2c"
},
- {
- "commit": {
- "author": {
- "email": "113054166+sam-berning@users.noreply.github.com",
- "name": "Sam Berning",
- "username": "sam-berning"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "9f4b87c616a0329cb6c8ff27db003766ef0bba2c",
- "message": "test: mocks LimaUser to fix race condition in support bundle unit tests (#450)\n\nIssue #, if available: https://github.com/runfinch/finch/issues/447\r\n\r\n*Description of changes:*\r\n\r\nThere was a race condition in the unit tests for `support-bundle\r\ngenerate` caused by Lima's `osutil.LimaUser` not being thread-safe. I\r\ndon't think there's really a need to make it thread-safe, so I think\r\nit's easier to just wrap and mock it for the unit tests, which I've done\r\nhere.\r\n\r\n*Testing done:*\r\n\r\n```\r\nmake test-unit\r\n```\r\n\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Sam Berning ",
- "timestamp": "2023-06-13T10:50:41-07:00",
- "tree_id": "ae8b6aa66838b1b01fd822604932582730de8710",
- "url": "https://github.com/runfinch/finch/commit/9f4b87c616a0329cb6c8ff27db003766ef0bba2c"
- },
- "date": 1686678988796,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 81174092142,
- "unit": "ns/op\t 0.2982 %cpu_avg/op\t 30.77 %cpu_peak/op\t 81.17 cpu_seconds/op\t2122047488 disk_bytes/op\t 3645832 B/op\t 76691 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30328325172,
- "unit": "ns/op\t 0.3389 %cpu_avg/op\t 33.33 %cpu_peak/op\t 30.33 cpu_seconds/op\t 16793600 disk_bytes/op\t 1364360 B/op\t 28828 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 493650694,
- "unit": "ns/op\t 1.089 %cpu_avg/op\t 18.80 %cpu_peak/op\t 0.4936 cpu_seconds/op\t 5461 disk_bytes/op\t 31528 B/op\t 519 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1752151835,
- "unit": "ns/op\t 0.5077 %cpu_avg/op\t 21.43 %cpu_peak/op\t 1.752 cpu_seconds/op\t 20389888 disk_bytes/op\t 88104 B/op\t 1729 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1686678988796,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 81174092142,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2982",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "81.17",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2122047488",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3645832",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "76691",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30328325172,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3389",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.33",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16793600",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1364360",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28828",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 493650694,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.089",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.80",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4936",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "5461",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "31528",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "519",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1752151835,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5077",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "21.43",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.752",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "88104",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1729",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "fef6e772c28429ef14068702c1dfd8e9fec2dea1",
+ "message": "build(deps): Bump golang.org/x/crypto from 0.9.0 to 0.10.0 (#451)\n\nBumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.9.0\r\nto 0.10.0.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.9.0&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-16T10:41:24-07:00",
+ "tree_id": "b3101d1bb452fb552751813bab329f79af64f4ab",
+ "url": "https://github.com/runfinch/finch/commit/fef6e772c28429ef14068702c1dfd8e9fec2dea1"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "fef6e772c28429ef14068702c1dfd8e9fec2dea1",
- "message": "build(deps): Bump golang.org/x/crypto from 0.9.0 to 0.10.0 (#451)\n\nBumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.9.0\r\nto 0.10.0.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.9.0&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-16T10:41:24-07:00",
- "tree_id": "b3101d1bb452fb552751813bab329f79af64f4ab",
- "url": "https://github.com/runfinch/finch/commit/fef6e772c28429ef14068702c1dfd8e9fec2dea1"
- },
- "date": 1686937601637,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 81921212151,
- "unit": "ns/op\t 0.2804 %cpu_avg/op\t 30.77 %cpu_peak/op\t 81.92 cpu_seconds/op\t2127917056 disk_bytes/op\t 3673904 B/op\t 77351 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30123733634,
- "unit": "ns/op\t 0.3150 %cpu_avg/op\t 30.77 %cpu_peak/op\t 30.12 cpu_seconds/op\t 24576 disk_bytes/op\t 1353752 B/op\t 28588 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 484382245,
- "unit": "ns/op\t 0.8655 %cpu_avg/op\t 15.55 %cpu_peak/op\t 0.4843 cpu_seconds/op\t 43690 disk_bytes/op\t 31320 B/op\t 513 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1865211795,
- "unit": "ns/op\t 0.1202 %cpu_avg/op\t 12.91 %cpu_peak/op\t 1.865 cpu_seconds/op\t 8323072 disk_bytes/op\t 93688 B/op\t 1853 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1686937601637,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 81921212151,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2804",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "81.92",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2127917056",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3673904",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "77351",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30123733634,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3150",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "30.77",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.12",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "24576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1353752",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28588",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 484382245,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8655",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.55",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4843",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "43690",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "31320",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "513",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1865211795,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.1202",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "12.91",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.865",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "8323072",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "93688",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1853",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "f7e091670fb2ac5377423e72f98aa8be33aa41c8",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 (#456)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.10.0 to 2.11.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.11.0
\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n5c32b2a
\r\nv2.11.0 \r\nd6bba86
\r\nProgrammatic focus is no longer overwrriten by CLI filters \r\n4a70a38
\r\nBump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218) \r\n97eda4d
\r\nBump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.10.0&new-version=2.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-27T11:58:39-07:00",
+ "tree_id": "38d4500d4339a269988a2d4b9bfda964b2951484",
+ "url": "https://github.com/runfinch/finch/commit/f7e091670fb2ac5377423e72f98aa8be33aa41c8"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "f7e091670fb2ac5377423e72f98aa8be33aa41c8",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 (#456)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.10.0 to 2.11.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.11.0
\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n5c32b2a
\r\nv2.11.0 \r\nd6bba86
\r\nProgrammatic focus is no longer overwrriten by CLI filters \r\n4a70a38
\r\nBump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218) \r\n97eda4d
\r\nBump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.10.0&new-version=2.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-27T11:58:39-07:00",
- "tree_id": "38d4500d4339a269988a2d4b9bfda964b2951484",
- "url": "https://github.com/runfinch/finch/commit/f7e091670fb2ac5377423e72f98aa8be33aa41c8"
- },
- "date": 1687892953713,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 240497057235,
- "unit": "ns/op\t 0.2484 %cpu_avg/op\t 100.0 %cpu_peak/op\t 240.5 cpu_seconds/op\t2329104384 disk_bytes/op\t10776224 B/op\t 224358 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30185227284,
- "unit": "ns/op\t 0.3814 %cpu_avg/op\t 38.46 %cpu_peak/op\t 30.19 cpu_seconds/op\t -102400 disk_bytes/op\t 1357152 B/op\t 28667 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 434798406,
- "unit": "ns/op\t 0.3775 %cpu_avg/op\t 8.159 %cpu_peak/op\t 0.4347 cpu_seconds/op\t 0 disk_bytes/op\t 29762 B/op\t 466 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1846595948,
- "unit": "ns/op\t 0.2957 %cpu_avg/op\t 20.00 %cpu_peak/op\t 1.847 cpu_seconds/op\t 3620864 disk_bytes/op\t 92424 B/op\t 1828 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1687892953713,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 240497057235,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2484",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "100.0",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "240.5",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2329104384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "10776224",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "224358",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30185227284,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3814",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "38.46",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.19",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-102400",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1357152",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28667",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 434798406,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.3775",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "8.159",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4347",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "29762",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "466",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1846595948,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2957",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "20.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.847",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3620864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "92424",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1828",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "e321f1dc607626a7f65b33e0a0f503d8c856b1f2",
+ "message": "build(deps): Bump golang.org/x/tools from 0.9.3 to 0.10.0 (#455)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.3\r\nto 0.10.0.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.10.0
\r\nThis release contains initial support for standalone packages and\r\npackage renaming. Please see below for more details.
\r\nWe are also changing our release policy to better align with\r\nsemver.
\r\nSupport changes
\r\nThis version of gopls contains changes to our release policy,\r\ndeprecates support for some older Go versions, and deprecates support\r\nfor several experimental features.
\r\nNew release policy
\r\nAs described in golang/go#55267,\r\nwe are tightening our release policy to better follow semver, increase\r\nstability, and reduce release-related toil. Significant new features\r\nwill only be introduced in *.*.0
patch versions, and\r\nsubsequent patch releases will consist only of bugfixes. For example,\r\nthis version (v0.10.0) introduces several new features, described below.\r\nSubsequent v0.10.* releases will contain only bugfixes.
\r\nFinal support for Go 1.13-1.15
\r\nConsistent with the above release policy and our stated support\r\nwindow, the v0.10.*
minor version will be the final set\r\nof releases to support being used with Go 1.13-1.15. See golang/go#52982\r\nfor details.
\r\nGopls will pop up a warning if it resolves a version of the\r\ngo
command that is older than 1.16. Starting with\r\ngopls@v0.11.0, gopls will cease to function when used with a\r\ngo
command with a version older than 1.16.
\r\nDeprecated experimental features
\r\nThe following experimental features are deprecated, and will be\r\nremoved in gopls@v0.11.0:
\r\n\r\n\r\n- experimentalWorkspaceModule
golang/go#52897
go.work
\r\nfiles. See our documentation\r\nfor information on how to use go.work
files to work on\r\nmultiple modules. \r\n\r\n- experimentalWatchedFileDelay
golang/go#55268
workspace/didChangeWatchedFiles
\r\nnotifications. \r\n\r\n- experimentalUseInvalidMetadata
golang/go#54180
\r\n
\r\nNew Features
\r\nSupport for "standalone packages"
\r\nGopls now recognizes certain files as "standalone main\r\npackages", meaning they should be interpreted as main packages\r\nconsisting of a single file. To do this, gopls looks for packages named\r\nmain
containing a single build constraint that matches one\r\nof the tags configured by the new standaloneTags
\r\nsetting.
\r\nThis enables cross references and other features when working in a\r\nfile such as the example below that contains a //go:build\r\nignore
build constraint.
\r\n\r\n(preview) Support for package renaming
\r\ngolang/go#41567
golang/go#56184.
\r\nTo rename a package, initiate a rename request on the package clause\r\nof a file in the package:\r\n
\r\nWhen this renaming is applied, gopls will adjust other package files\r\naccordingly, rename the package directory, and update import paths\r\nreferencing the current package or any nested package in the renamed\r\ndirectory.\r\n
\r\nMethod information in hover
\r\nHovering over a type now shows a summary of its methods.
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n7261b32
\r\ngopls/internal/regtest: fix goimports on windows when using\r\nvendoring \r\n41e4e56
\r\ngopls/internal/lsp/source/completion: ensuring completion\r\ncompleteness \r\nac29460
\r\ngo/ssa: fix bug in writeSignature on external functions \r\n3b62e7e
\r\ngo/ssa: use core type within (*builder).receiver \r\nf394d45
\r\ngopls/internal/lsp/cache: compute xrefs and methodsets\r\nasynchronously \r\n27dbf85
\r\ngo.mod: update golang.org/x dependencies \r\nc6c9830
\r\ngo/types/objectpath: memoize scope lookup in objectpath.Encoder \r\n0245e1d
\r\ngopls/internal/regtest/codelens: set GOWORK=off for go mod vendor \r\n85be888
\r\ngo/analysis/passes/defers: add analyser for defer mistake \r\nc43232f
\r\ncmd/digraph: improve examples using go list, mod \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.3&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-29T18:05:02-04:00",
+ "tree_id": "15d367907740e52ecdec13591f1472991cc10c5e",
+ "url": "https://github.com/runfinch/finch/commit/e321f1dc607626a7f65b33e0a0f503d8c856b1f2"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "e321f1dc607626a7f65b33e0a0f503d8c856b1f2",
- "message": "build(deps): Bump golang.org/x/tools from 0.9.3 to 0.10.0 (#455)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.3\r\nto 0.10.0.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.10.0
\r\nThis release contains initial support for standalone packages and\r\npackage renaming. Please see below for more details.
\r\nWe are also changing our release policy to better align with\r\nsemver.
\r\nSupport changes
\r\nThis version of gopls contains changes to our release policy,\r\ndeprecates support for some older Go versions, and deprecates support\r\nfor several experimental features.
\r\nNew release policy
\r\nAs described in golang/go#55267,\r\nwe are tightening our release policy to better follow semver, increase\r\nstability, and reduce release-related toil. Significant new features\r\nwill only be introduced in *.*.0
patch versions, and\r\nsubsequent patch releases will consist only of bugfixes. For example,\r\nthis version (v0.10.0) introduces several new features, described below.\r\nSubsequent v0.10.* releases will contain only bugfixes.
\r\nFinal support for Go 1.13-1.15
\r\nConsistent with the above release policy and our stated support\r\nwindow, the v0.10.*
minor version will be the final set\r\nof releases to support being used with Go 1.13-1.15. See golang/go#52982\r\nfor details.
\r\nGopls will pop up a warning if it resolves a version of the\r\ngo
command that is older than 1.16. Starting with\r\ngopls@v0.11.0, gopls will cease to function when used with a\r\ngo
command with a version older than 1.16.
\r\nDeprecated experimental features
\r\nThe following experimental features are deprecated, and will be\r\nremoved in gopls@v0.11.0:
\r\n\r\n\r\n- experimentalWorkspaceModule
golang/go#52897
go.work
\r\nfiles. See our documentation\r\nfor information on how to use go.work
files to work on\r\nmultiple modules. \r\n\r\n- experimentalWatchedFileDelay
golang/go#55268
workspace/didChangeWatchedFiles
\r\nnotifications. \r\n\r\n- experimentalUseInvalidMetadata
golang/go#54180
\r\n
\r\nNew Features
\r\nSupport for "standalone packages"
\r\nGopls now recognizes certain files as "standalone main\r\npackages", meaning they should be interpreted as main packages\r\nconsisting of a single file. To do this, gopls looks for packages named\r\nmain
containing a single build constraint that matches one\r\nof the tags configured by the new standaloneTags
\r\nsetting.
\r\nThis enables cross references and other features when working in a\r\nfile such as the example below that contains a //go:build\r\nignore
build constraint.
\r\n\r\n(preview) Support for package renaming
\r\ngolang/go#41567
golang/go#56184.
\r\nTo rename a package, initiate a rename request on the package clause\r\nof a file in the package:\r\n
\r\nWhen this renaming is applied, gopls will adjust other package files\r\naccordingly, rename the package directory, and update import paths\r\nreferencing the current package or any nested package in the renamed\r\ndirectory.\r\n
\r\nMethod information in hover
\r\nHovering over a type now shows a summary of its methods.
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n7261b32
\r\ngopls/internal/regtest: fix goimports on windows when using\r\nvendoring \r\n41e4e56
\r\ngopls/internal/lsp/source/completion: ensuring completion\r\ncompleteness \r\nac29460
\r\ngo/ssa: fix bug in writeSignature on external functions \r\n3b62e7e
\r\ngo/ssa: use core type within (*builder).receiver \r\nf394d45
\r\ngopls/internal/lsp/cache: compute xrefs and methodsets\r\nasynchronously \r\n27dbf85
\r\ngo.mod: update golang.org/x dependencies \r\nc6c9830
\r\ngo/types/objectpath: memoize scope lookup in objectpath.Encoder \r\n0245e1d
\r\ngopls/internal/regtest/codelens: set GOWORK=off for go mod vendor \r\n85be888
\r\ngo/analysis/passes/defers: add analyser for defer mistake \r\nc43232f
\r\ncmd/digraph: improve examples using go list, mod \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.3&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-29T18:05:02-04:00",
- "tree_id": "15d367907740e52ecdec13591f1472991cc10c5e",
- "url": "https://github.com/runfinch/finch/commit/e321f1dc607626a7f65b33e0a0f503d8c856b1f2"
- },
- "date": 1688076632159,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 87214897444,
- "unit": "ns/op\t 0.3202 %cpu_avg/op\t 33.33 %cpu_peak/op\t 87.21 cpu_seconds/op\t2140299264 disk_bytes/op\t 3897912 B/op\t 82338 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30216009313,
- "unit": "ns/op\t 0.2886 %cpu_avg/op\t 27.27 %cpu_peak/op\t 30.22 cpu_seconds/op\t 86016 disk_bytes/op\t 1358744 B/op\t 28695 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 474079733,
- "unit": "ns/op\t 0.5509 %cpu_avg/op\t 9.117 %cpu_peak/op\t 0.4740 cpu_seconds/op\t 4096 disk_bytes/op\t 31386 B/op\t 503 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1692623134,
- "unit": "ns/op\t 0.4661 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.693 cpu_seconds/op\t 3600384 disk_bytes/op\t 86240 B/op\t 1679 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1688076632159,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 87214897444,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3202",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "87.21",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2140299264",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3897912",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "82338",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30216009313,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.2886",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "27.27",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.22",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "86016",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1358744",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28695",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 474079733,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5509",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "9.117",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4740",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "4096",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "31386",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "503",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1692623134,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4661",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.693",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3600384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "86240",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1679",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "55906459+austinvazquez@users.noreply.github.com",
+ "name": "Austin Vazquez",
+ "username": "austinvazquez"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7",
+ "message": "chore: Update Go linter to v1.53.3 and resolve errors (#459)\n\nIssue #, if available:\r\nN/A\r\n\r\n*Description of changes:*\r\nUpdates golangci-lint in CI to v1.53.3 release and resolves linting\r\nerrors for unused arguments.\r\n\r\n*Testing done:*\r\n```make lint```\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Austin Vazquez ",
+ "timestamp": "2023-06-29T19:13:36-04:00",
+ "tree_id": "b8b267781610164eb5bd66888fce1a330bab334e",
+ "url": "https://github.com/runfinch/finch/commit/4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7"
},
- {
- "commit": {
- "author": {
- "email": "55906459+austinvazquez@users.noreply.github.com",
- "name": "Austin Vazquez",
- "username": "austinvazquez"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7",
- "message": "chore: Update Go linter to v1.53.3 and resolve errors (#459)\n\nIssue #, if available:\r\nN/A\r\n\r\n*Description of changes:*\r\nUpdates golangci-lint in CI to v1.53.3 release and resolves linting\r\nerrors for unused arguments.\r\n\r\n*Testing done:*\r\n```make lint```\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Austin Vazquez ",
- "timestamp": "2023-06-29T19:13:36-04:00",
- "tree_id": "b8b267781610164eb5bd66888fce1a330bab334e",
- "url": "https://github.com/runfinch/finch/commit/4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7"
- },
- "date": 1688080737895,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 85158688852,
- "unit": "ns/op\t 0.2927 %cpu_avg/op\t 45.45 %cpu_peak/op\t 85.16 cpu_seconds/op\t2126159872 disk_bytes/op\t 3808592 B/op\t 80385 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30132955947,
- "unit": "ns/op\t 0.3447 %cpu_avg/op\t 30.00 %cpu_peak/op\t 30.13 cpu_seconds/op\t 16384 disk_bytes/op\t 1355192 B/op\t 28605 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 473794334,
- "unit": "ns/op\t 0.6263 %cpu_avg/op\t 14.39 %cpu_peak/op\t 0.4737 cpu_seconds/op\t 0 disk_bytes/op\t 31224 B/op\t 501 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1744901221,
- "unit": "ns/op\t 0.05631 %cpu_avg/op\t 9.404 %cpu_peak/op\t 1.745 cpu_seconds/op\t 3612672 disk_bytes/op\t 88008 B/op\t 1728 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
+ "date": 1688080737895,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 85158688852,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2927",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "85.16",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2126159872",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3808592",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "80385",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30132955947,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3447",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.13",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1355192",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28605",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 473794334,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6263",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "14.39",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4737",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "31224",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "501",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1744901221,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.05631",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "9.404",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.745",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "88008",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1728",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "d6746a447e10bed6c13d197c8d693b27e02ac3aa",
+ "message": "build(deps): Bump k8s.io/apimachinery from 0.27.2 to 0.27.3 (#454)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.2 to 0.27.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.2&new-version=0.27.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-30T08:44:53-07:00",
+ "tree_id": "c4ed21f0d0322c401c302f18655c952447d551ad",
+ "url": "https://github.com/runfinch/finch/commit/d6746a447e10bed6c13d197c8d693b27e02ac3aa"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "d6746a447e10bed6c13d197c8d693b27e02ac3aa",
- "message": "build(deps): Bump k8s.io/apimachinery from 0.27.2 to 0.27.3 (#454)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.2 to 0.27.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.2&new-version=0.27.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-30T08:44:53-07:00",
- "tree_id": "c4ed21f0d0322c401c302f18655c952447d551ad",
- "url": "https://github.com/runfinch/finch/commit/d6746a447e10bed6c13d197c8d693b27e02ac3aa"
- },
- "date": 1688140217943,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 87424131287,
- "unit": "ns/op\t 0.2694 %cpu_avg/op\t 38.46 %cpu_peak/op\t 87.42 cpu_seconds/op\t2091024384 disk_bytes/op\t 3904968 B/op\t 82561 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 30160902727,
- "unit": "ns/op\t 0.4213 %cpu_avg/op\t 41.67 %cpu_peak/op\t 30.16 cpu_seconds/op\t -45056 disk_bytes/op\t 1357232 B/op\t 28653 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 457631993,
- "unit": "ns/op\t 0.8444 %cpu_avg/op\t 16.03 %cpu_peak/op\t 0.4575 cpu_seconds/op\t 0 disk_bytes/op\t 30512 B/op\t 489 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1695769438,
- "unit": "ns/op\t 0.6171 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.696 cpu_seconds/op\t 3616768 disk_bytes/op\t 86648 B/op\t 1684 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- }
- ]
- }
+ "date": 1688140217943,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 87424131287,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2694",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "38.46",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "87.42",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2091024384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3904968",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "82561",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 30160902727,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4213",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "41.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "30.16",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-45056",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1357232",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "28653",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 457631993,
+ "unit": "ns/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8444",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "16.03",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4575",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "30512",
+ "unit": "B/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "489",
+ "unit": "allocs/op",
+ "extra": "3 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1695769438,
+ "unit": "ns/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6171",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.696",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3616768",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "86648",
+ "unit": "B/op",
+ "extra": "1 times\n12 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1684",
+ "unit": "allocs/op",
+ "extra": "1 times\n12 procs"
+ }
+ ]
+ }
+ ]
+}
}
\ No newline at end of file
diff --git a/dev/bench/macOS/13/arm64/data.js b/dev/bench/macOS/13/arm64/data.js
index 7daa1a173..be60bc9ff 100644
--- a/dev/bench/macOS/13/arm64/data.js
+++ b/dev/bench/macOS/13/arm64/data.js
@@ -1,2072 +1,8264 @@
window.BENCHMARK_DATA = {
"lastUpdate": 1688140211897,
- "repoUrl": "https://github.com/runfinch/finch",
- "entries": {
- "Finch Benchmark": [
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "325a8510c75b0b030be5ec075327ac337b7c22e5",
- "message": "ci: add benchmarking workflow (#384)\n\nhttps://github.com/runfinch/finch/issues/345\r\n\r\n*Description of changes:*\r\n\r\n*Testing done:*\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/x86_64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/x86_64/\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-04-28T18:08:29Z",
- "tree_id": "36a278e67f9282187e295ad59e2bcea15679a739",
- "url": "https://github.com/runfinch/finch/commit/325a8510c75b0b030be5ec075327ac337b7c22e5"
- },
- "date": 1682705619744,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 71582241583,
- "unit": "ns/op\t 0.4146 %cpu_avg/op\t 44.44 %cpu_peak/op\t 71.58 cpu_seconds/op\t2587455488 disk_bytes/op\t 3174808 B/op\t 67696 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 27115681958,
- "unit": "ns/op\t 0.4361 %cpu_avg/op\t 50.00 %cpu_peak/op\t 27.12 cpu_seconds/op\t 733184 disk_bytes/op\t 1198032 B/op\t 25669 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 370115208,
- "unit": "ns/op\t 1.086 %cpu_avg/op\t 19.44 %cpu_peak/op\t 0.3701 cpu_seconds/op\t 0 disk_bytes/op\t 26080 B/op\t 393 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1354717334,
- "unit": "ns/op\t 0.7051 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.355 cpu_seconds/op\t 3526656 disk_bytes/op\t 68168 B/op\t 1328 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "76b31c0c453935f22588523f65888e103581cd89",
- "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.3 to 3.23.4 (#389)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.3 to 3.23.4.\r\n\r\nRelease notes
\r\nSourced from github.com/shirou/gopsutil/v3's\r\nreleases.
\r\n\r\nv3.23.4
\r\n\r\nWhat's Changed
\r\ncpu
\r\n\r\nprocess
\r\n\r\nOther Changes
\r\n\r\nNew Contributors
\r\n\r\nFull Changelog: https://github.com/shirou/gopsutil/compare/v3.23.3...v3.23.4
\r\n
\r\n \r\n\r\nCommits
\r\n\r\ndb89d12
\r\nMerge pull request #1453\r\nfrom Juneezee/refactor/errors.Is \r\n0439039
\r\nrefactor(process): compare error with errors.Is
\r\n17fac7c
\r\nMerge pull request #1450\r\nfrom gabibguti/master \r\n2d2db8f
\r\nCreate SECURITY.md \r\n10f213c
\r\nMerge pull request #1448\r\nfrom shirou/dependabot/github_actions/actions/upload... \r\nd6ee47e
\r\nchore(deps): bump actions/upload-artifact from 3.1.0 to 3.1.2 \r\ncf428f8
\r\nMerge pull request #1443\r\nfrom mmorel-35/linter \r\n755bcab
\r\nUpdate branch of sbom_generator.yml \r\n21a646b
\r\nMerge pull request #1447\r\nfrom shirou/feature/add_sbom_github_actions \r\nbcf3fe9
\r\nMerge pull request #1445\r\nfrom shirou/dependabot/go_modules/golang.org/x/sys-0... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.3&new-version=3.23.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T14:04:07-04:00",
- "tree_id": "f741032f7d876d262db9b5af37cdc5bbea24e279",
- "url": "https://github.com/runfinch/finch/commit/76b31c0c453935f22588523f65888e103581cd89"
- },
- "date": 1683137425436,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 71382328000,
- "unit": "ns/op\t 0.4381 %cpu_avg/op\t 66.67 %cpu_peak/op\t 71.38 cpu_seconds/op\t2586419200 disk_bytes/op\t 3174312 B/op\t 67673 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23947762083,
- "unit": "ns/op\t 0.5122 %cpu_avg/op\t 44.44 %cpu_peak/op\t 23.95 cpu_seconds/op\t 25554944 disk_bytes/op\t 1063584 B/op\t 22626 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 357500167,
- "unit": "ns/op\t 1.465 %cpu_avg/op\t 17.86 %cpu_peak/op\t 0.3574 cpu_seconds/op\t 24576 disk_bytes/op\t 25482 B/op\t 383 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1353868292,
- "unit": "ns/op\t 0.7753 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.354 cpu_seconds/op\t 20307968 disk_bytes/op\t 68984 B/op\t 1330 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "710299445ed287c67114b277be7bd2a29715956b",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.3 (#390)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.2 to 2.9.3.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.3
\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n7a8249e
\r\nv2.9.3 \r\nc0c77b6
\r\nAdd RenderTimeline to GinkgoT() \r\n8b925ab
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183) \r\ne3795a4
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184) \r\nb453793
\r\nBump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182) \r\n73ed75b
\r\nBump actions/setup-go from 3 to 4 (#1164) \r\n0a2bc64
\r\nBump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173) \r\nf41c557
\r\nBump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174) \r\n8e423e5
\r\nBump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179) \r\n227c662
\r\nupdqte Measure deprecation message. fixes #1176 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.2&new-version=2.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T14:13:23-04:00",
- "tree_id": "5e835791535734dd48321218c7346d8ad9ec9c0b",
- "url": "https://github.com/runfinch/finch/commit/710299445ed287c67114b277be7bd2a29715956b"
- },
- "date": 1683137907781,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 66393193541,
- "unit": "ns/op\t 0.4296 %cpu_avg/op\t 58.33 %cpu_peak/op\t 66.39 cpu_seconds/op\t2615177216 disk_bytes/op\t 2963680 B/op\t 62888 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23964867375,
- "unit": "ns/op\t 0.5141 %cpu_avg/op\t 37.50 %cpu_peak/op\t 23.96 cpu_seconds/op\t 1286144 disk_bytes/op\t 1067792 B/op\t 22709 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 379624653,
- "unit": "ns/op\t 1.255 %cpu_avg/op\t 18.52 %cpu_peak/op\t 0.3796 cpu_seconds/op\t 0 disk_bytes/op\t 26754 B/op\t 407 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1322227459,
- "unit": "ns/op\t 0.5695 %cpu_avg/op\t 22.22 %cpu_peak/op\t 1.322 cpu_seconds/op\t 3530752 disk_bytes/op\t 67328 B/op\t 1299 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785",
- "message": "build(deps): Bump github.com/docker/docker from 23.0.3+incompatible to 23.0.5+incompatible (#382)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.3+incompatible to 23.0.5+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv23.0.5
\r\n23.0.5
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Add the
--all
/ -a
option when pruning\r\nvolumes. docker/cli#4229 \r\n- Add
--format=json
for docker info
. docker/cli#4320 \r\n- Fix log loss with the AWSLogs log driver. moby/moby#45350
\r\n- Fix a regression introduced in v23.0.4 where dockerd would refuse to\r\nstart if the fixed-cidr config parameter is provided but not bip. moby/moby#45403
\r\n- Fix a panic in libnetwork during daemon start moby/moby#45376
\r\n- Fix "tag" event not being sent when an image is built with\r\n
buildx
. moby/moby#45410 \r\n
\r\nPackaging Updates
\r\n\r\nv23.0.4
\r\n23.0.4
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a performance regression in Docker CLI 23.0.0 docker/cli#4141.
\r\n- Fix progress indicator on
docker cp
not functioning as\r\nintended docker/cli#4157. \r\n- Fix shell completion for
docker compose --file
docker/cli#4177. \r\n- Fix an error caused by incorrect handling of\r\n"default-address-pools" in
daemon.json
moby/moby#45246. \r\n
\r\nPackaging Updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n94d3ad6
\r\nMerge pull request #45410\r\nfrom rumpl/23.0_backport-fix-buildx-tag-events \r\n933a9f8
\r\nMerge pull request #45407\r\nfrom thaJeztah/23.0_backport_vendor_runc_1.1.5 \r\nfe0a414
\r\nUse the image service instead of the reference store for tagging \r\n1b1230e
\r\nMerge pull request #45375\r\nfrom thaJeztah/23.0_backport_bump_swarmkit \r\n1b26303
\r\nMerge pull request #45374\r\nfrom thaJeztah/23.0_backport_stfu_grpc \r\n682542f
\r\nMerge pull request #45373\r\nfrom thaJeztah/23.0_backport_assorted_test_and_pack... \r\n40ec0eb
\r\nvendor: github.com/opencontainers/runc v1.1.5 \r\n9af6762
\r\nMerge pull request #45403\r\nfrom akerouanton/23.0-cherrypick-2d31697 \r\n0b6449a
\r\nMerge pull request #45376\r\nfrom thaJeztah/23.0_backport_delete_network_more_at... \r\n227d3f3
\r\ndaemon: set docker0 subpool as the IPAM pool \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.3+incompatible&new-version=23.0.5+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T15:41:11-04:00",
- "tree_id": "1c20d3fd2834f22310254aa23e661742782dcfd8",
- "url": "https://github.com/runfinch/finch/commit/3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785"
- },
- "date": 1683143193424,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 99472525916,
- "unit": "ns/op\t 0.4035 %cpu_avg/op\t 66.67 %cpu_peak/op\t 99.47 cpu_seconds/op\t2539454464 disk_bytes/op\t 4494792 B/op\t 93727 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 27342219167,
- "unit": "ns/op\t 0.4816 %cpu_avg/op\t 40.00 %cpu_peak/op\t 27.34 cpu_seconds/op\t 872448 disk_bytes/op\t 1234792 B/op\t 25874 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 372034972,
- "unit": "ns/op\t 1.413 %cpu_avg/op\t 20.66 %cpu_peak/op\t 0.3720 cpu_seconds/op\t 6306474 disk_bytes/op\t 26586 B/op\t 398 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1298690666,
- "unit": "ns/op\t 0.9748 %cpu_avg/op\t 54.55 %cpu_peak/op\t 1.299 cpu_seconds/op\t 3547136 disk_bytes/op\t 65752 B/op\t 1271 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "cc679ef266c7da49e9339d69130f242d8285bc96",
- "message": "ci: remove setup-go and explicitly set shell in benchmark (#401)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nFix the workflow failure happened recently.\r\nhttps://github.com/runfinch/finch/actions/runs/4920343212/jobs/8789029862\r\n\r\n*Testing done:*\r\nIn feature branch.\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-05-16T13:59:41-07:00",
- "tree_id": "ce9148fa0e13ad776e232868257642729f8bf853",
- "url": "https://github.com/runfinch/finch/commit/cc679ef266c7da49e9339d69130f242d8285bc96"
- },
- "date": 1684271038983,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 60938075750,
- "unit": "ns/op\t 0.4824 %cpu_avg/op\t 66.67 %cpu_peak/op\t 60.94 cpu_seconds/op\t2509930496 disk_bytes/op\t 2738240 B/op\t 57767 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24052628167,
- "unit": "ns/op\t 0.5687 %cpu_avg/op\t 45.45 %cpu_peak/op\t 24.05 cpu_seconds/op\t -15908864 disk_bytes/op\t 1069120 B/op\t 22745 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 372893125,
- "unit": "ns/op\t 0.8285 %cpu_avg/op\t 12.18 %cpu_peak/op\t 0.3728 cpu_seconds/op\t 0 disk_bytes/op\t 26821 B/op\t 398 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1379727083,
- "unit": "ns/op\t 0.6775 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.380 cpu_seconds/op\t 3592192 disk_bytes/op\t 71288 B/op\t 1348 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "41898282+github-actions[bot]@users.noreply.github.com",
- "name": "github-actions[bot]",
- "username": "github-actions[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "06d86b2bc348db9f0d8d02678faee556719b883d",
- "message": "build(deps): Bump submodules (#402)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
- "timestamp": "2023-05-17T16:24:01Z",
- "tree_id": "288eddf483f6ff89d0e83c6e089da366bce0295d",
- "url": "https://github.com/runfinch/finch/commit/06d86b2bc348db9f0d8d02678faee556719b883d"
- },
- "date": 1684340898109,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 61902854333,
- "unit": "ns/op\t 0.4362 %cpu_avg/op\t 63.64 %cpu_peak/op\t 61.90 cpu_seconds/op\t2538090496 disk_bytes/op\t 2780200 B/op\t 58700 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24044588666,
- "unit": "ns/op\t 0.4177 %cpu_avg/op\t 44.44 %cpu_peak/op\t 24.04 cpu_seconds/op\t -57344 disk_bytes/op\t 1070544 B/op\t 22764 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 350766139,
- "unit": "ns/op\t 0.7794 %cpu_avg/op\t 16.19 %cpu_peak/op\t 0.3507 cpu_seconds/op\t 0 disk_bytes/op\t 25552 B/op\t 377 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1332116125,
- "unit": "ns/op\t 0.3799 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.332 cpu_seconds/op\t 20385792 disk_bytes/op\t 68384 B/op\t 1304 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "05b6b2e7364036a3d30b67ad409f55526cc59ffe",
- "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 (#405)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.0 to 1.9.1.\r\n\r\nCommits
\r\n\r\nb30aa27
\r\nMerge pull request #1339\r\nfrom xieyuschen/patch-1 \r\n6acd903
\r\nMerge pull request #1376\r\nfrom ozfive/master \r\n105e63f
\r\nMerge pull request #1 from\r\nashmckenzie/ashmckenzie/fix-writer-scanner \r\nc052ba6
\r\nScan text in 64KB chunks \r\ne59b167
\r\nMerge pull request #1372\r\nfrom tommyblue/syslog_different_loglevels \r\n766cfec
\r\nThis commit fixes a potential denial of service vulnerability in\r\nlogrus.Write... \r\n70234da
\r\nAdd instructions to use different log levels for local and syslog \r\na448f82
\r\nMerge pull request #1362\r\nfrom FrancoisWagner/fix-data-race-in-hooks-test-pkg \r\nff07b25
\r\nFix data race in hooks.test package \r\nd8787af
\r\nUse text when shows the logrus output \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.0&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-17T16:59:12-07:00",
- "tree_id": "4200288d7d0b7a0007ed4d8c2a30b6f3c39a38dc",
- "url": "https://github.com/runfinch/finch/commit/05b6b2e7364036a3d30b67ad409f55526cc59ffe"
- },
- "date": 1684368470605,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 180893819750,
- "unit": "ns/op\t 0.2240 %cpu_avg/op\t 57.14 %cpu_peak/op\t 180.9 cpu_seconds/op\t2550149120 disk_bytes/op\t 8156320 B/op\t 169974 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24064461500,
- "unit": "ns/op\t 0.3533 %cpu_avg/op\t 40.00 %cpu_peak/op\t 24.06 cpu_seconds/op\t -32768 disk_bytes/op\t 1068584 B/op\t 22719 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 337115709,
- "unit": "ns/op\t 1.160 %cpu_avg/op\t 19.44 %cpu_peak/op\t 0.3371 cpu_seconds/op\t 0 disk_bytes/op\t 24426 B/op\t 361 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1406490458,
- "unit": "ns/op\t 0.4333 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.406 cpu_seconds/op\t 3612672 disk_bytes/op\t 72640 B/op\t 1378 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "25aa324ca324248cf2093af23f205af1b5ae276f",
- "message": "build(deps): Bump github.com/docker/docker from 23.0.6+incompatible to 24.0.0+incompatible (#406)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.6+incompatible to 24.0.0+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.0
\r\n24.0.0
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nNew
\r\n\r\n- Introduce experimental support for containerd as the content store\r\n(replacing the existing storage drivers). moby/moby#43735,\r\nother\r\nmoby/moby pull requests
\r\n- The
--host
CLI flag now supports a path component in a\r\nssh://
host address, allowing use of an alternate socket\r\npath without configuration on the remote host. docker/cli#4073 \r\n- The
docker info
CLI command now reports a version and\r\nplatform field. docker/cli#4180 \r\n- Introduce the daemon flag
--default-network-opt
to\r\nconfigure options for newly created networks. moby/moby#43197 \r\n- Restrict access to
AF_VSOCK
in the\r\nsocket(2)
family of syscalls in the default seccomp\r\nprofile. moby/moby#44562 \r\n- Introduce support for setting OCI runtime annotations on containers.\r\ndocker/cli#45025,\r\nmoby/moby#45025
\r\n- Alternative runtimes can now be configured in\r\n
daemon.json
, enabling runtime names to be aliased and\r\noptions to be passed. moby/moby#45032 \r\n- The
docker-init
binary will now be discovered in\r\nFHS-compliant libexec directories, in addition to the PATH
.\r\nmoby/moby#45198 \r\n- API: Surface the daemon-level
--no-new-privileges
in\r\nGET /info
. moby/moby#45320 \r\n
\r\nRemoved
\r\n\r\ndocker info
no longer reports\r\nIndexServiceAddress
. docker/cli#4204 \r\n- libnetwork: Remove fallback code for obsolete kernel versions. moby/moby#44684,\r\nmoby/moby#44802
\r\n- libnetwork: Remove unused code related to classic Swarm. moby/moby#44965
\r\n- libnetwork: Remove usage of the
xt_u32
kernel module\r\nfrom encrypted Swarm overlay networks. moby/moby#45281 \r\n- Remove support for buildkit's deprecated
buildinfo
in\r\nfavor of standard provenance attestations. moby/moby#45097 \r\n- Remove the deprecated AUFS and legacy
overlay
storage\r\ndrivers. moby/moby#45342,\r\nmoby/moby# \r\n- Remove the deprecated
overlay2.override_kernel_check
\r\nstorage driver option. moby/moby#45368 \r\n- Remove workarounds for obsolete versions of\r\n
apparmor_parser
from the AppArmor profiles. moby/moby#45500 \r\n- API:
GET /images/json
no longer represents empty\r\nRepoTags and RepoDigests\r\nas<none>:<none>
/<none>@<none>
.\r\nEmpty arrays are be returned instead on API >= 1.43. moby/moby#45068 \r\n
\r\nDeprecated
\r\n\r\n- Deprecate the
--oom-score-adjust
daemon option. moby/moby#45315 \r\n- API: Deprecate the
VirtualSize
field in GET\r\n/images/json
and GET /images/{id}/json
. moby/moby#45346 \r\n
\r\nBug fixes and enhancements
\r\n\r\n- The
docker stack
command no longer validates the\r\nbuild
section of Compose files. docker/cli#4214 \r\n- Fix lingering healthcheck processes after timeout is reached. moby/moby#43739
\r\n- Reduce the overhead of container startup when using the\r\n
overlay2
storage driver. moby/moby#44285 \r\n- API: Handle multiple
before=
and since=
\r\nfilters in GET /images
. moby/moby#44503 \r\n- Fix numerous bugs in the embedded DNS resolver implementation used\r\nby user-defined networks. moby/moby#44664
\r\n- Add
execDuration
field to the map of event attributes.\r\nmoby/moby#45494 \r\n- Swarm-level networks can now be created with the Windows\r\n
internal
, l2bridge
, and nat
\r\ndrivers. moby/swarmkit#3121,\r\nmoby/moby#45291 \r\n
\r\nPackaging updates
\r\n\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n1331b8c
\r\nMerge pull request #45537\r\nfrom thaJeztah/24.0_backport_containerd_binary_1.7.1 \r\n907f037
\r\nupdate containerd binary to v1.7.1 \r\na5b597e
\r\nMerge pull request #45531\r\nfrom rumpl/24.0_backport_fix-empty-auth-pull \r\n8bbfa32
\r\nc8d: The authorizer needs to be set even if AuthConfig is empty \r\n807e415
\r\nMerge pull request #45526\r\nfrom laurazard/backport-classic-builder \r\n8587a1c
\r\nc8d/builder: implement cache \r\n9717369
\r\nc8d: implement classic builder \r\ned0c147
\r\nMerge pull request #45523\r\nfrom thaJeztah/24.0_backport_cleanup_reexec_inits \r\n90be9ab
\r\nMerge pull request #45525\r\nfrom thaJeztah/24.0_backport_c8d_authconfig_default \r\nd73f703
\r\nMerge pull request #45521\r\nfrom thaJeztah/24.0_backport_vendor_distribution_v2... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.6+incompatible&new-version=24.0.0+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-18T00:52:53Z",
- "tree_id": "e165710972d7cc4dd1908083cdd88af9c0f12942",
- "url": "https://github.com/runfinch/finch/commit/25aa324ca324248cf2093af23f205af1b5ae276f"
- },
- "date": 1684371450786,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 86104120833,
- "unit": "ns/op\t 0.3338 %cpu_avg/op\t 57.14 %cpu_peak/op\t 86.10 cpu_seconds/op\t2517471232 disk_bytes/op\t 3841320 B/op\t 81140 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24054235917,
- "unit": "ns/op\t 0.5103 %cpu_avg/op\t 42.86 %cpu_peak/op\t 24.05 cpu_seconds/op\t -28672 disk_bytes/op\t 1069480 B/op\t 22742 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 347545958,
- "unit": "ns/op\t 1.620 %cpu_avg/op\t 21.67 %cpu_peak/op\t 0.3475 cpu_seconds/op\t 5461 disk_bytes/op\t 25309 B/op\t 373 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1378863500,
- "unit": "ns/op\t 1.062 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.379 cpu_seconds/op\t 3661824 disk_bytes/op\t 72592 B/op\t 1360 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9",
- "message": "build(deps): Bump k8s.io/apimachinery from 0.27.1 to 0.27.2 (#407)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.1 to 0.27.2.\r\n\r\nCommits
\r\n\r\n756e222
\r\nMerge pull request #117298pohly/automated-cherry-pick-of-#117238
\r\nb1123d2
\r\nMerge pull request #117708Jefftree/automated-cherry-pick-of-#117705
\r\n4074a29
\r\nUpdate kube-openapi to fix race \r\ncc852ec
\r\napi: encode NamespacedName with lower case in JSON \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.1&new-version=0.27.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:14-07:00",
- "tree_id": "4995bf341e0dfa88b02d82d9034a40802015304b",
- "url": "https://github.com/runfinch/finch/commit/e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9"
- },
- "date": 1684775581516,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 65102236375,
- "unit": "ns/op\t 0.4893 %cpu_avg/op\t 50.00 %cpu_peak/op\t 65.10 cpu_seconds/op\t2512056320 disk_bytes/op\t 2905680 B/op\t 61582 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 25482304125,
- "unit": "ns/op\t 0.4793 %cpu_avg/op\t 50.00 %cpu_peak/op\t 25.48 cpu_seconds/op\t -8192 disk_bytes/op\t 1131160 B/op\t 24135 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 369071028,
- "unit": "ns/op\t 0.1122 %cpu_avg/op\t 3.704 %cpu_peak/op\t 0.3690 cpu_seconds/op\t 0 disk_bytes/op\t 26402 B/op\t 393 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1312303250,
- "unit": "ns/op\t 0.9644 %cpu_avg/op\t 36.36 %cpu_peak/op\t 1.312 cpu_seconds/op\t 3624960 disk_bytes/op\t 66160 B/op\t 1277 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb",
- "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.1 to 1.9.2 (#408)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.1 to 1.9.2.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.1&new-version=1.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:34-07:00",
- "tree_id": "f2d2b81654b4af29a2aed139fba3d507787ce928",
- "url": "https://github.com/runfinch/finch/commit/0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb"
- },
- "date": 1684775853786,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 62832548000,
- "unit": "ns/op\t 0.4479 %cpu_avg/op\t 53.85 %cpu_peak/op\t 62.83 cpu_seconds/op\t2535944192 disk_bytes/op\t 2811848 B/op\t 59435 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24917876875,
- "unit": "ns/op\t 0.4061 %cpu_avg/op\t 41.67 %cpu_peak/op\t 24.92 cpu_seconds/op\t 32768 disk_bytes/op\t 1105472 B/op\t 23553 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 376179125,
- "unit": "ns/op\t 0.9786 %cpu_avg/op\t 24.77 %cpu_peak/op\t 0.3761 cpu_seconds/op\t 0 disk_bytes/op\t 26552 B/op\t 399 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1435575375,
- "unit": "ns/op\t 0.8930 %cpu_avg/op\t 28.57 %cpu_peak/op\t 1.436 cpu_seconds/op\t 3612672 disk_bytes/op\t 74344 B/op\t 1409 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "80513c7785a6da4ae09d9c871acaf180f5d68f2c",
- "message": "build(deps): Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#409)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.6 to 1.27.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.7
\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n99a29d5
\r\nv1.27.7 \r\n05c1bc6
\r\nupdate gitignore \r\n57054d5
\r\nfix: gcustom.MakeMatcher accepts nil as actual value (#666) \r\n7cadcf6
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663) \r\nb524839
\r\nBump golang.org/x/net from 0.9.0 to 0.10.0 (#662) \r\n5f44694
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661) \r\n05dc99a
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#657) \r\n3a033d1
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#658) \r\na19238f
\r\nReplace deprecated NewGomegaWithT with NewWithT (#659) \r\n29ed041
\r\nBump golang.org/x/net from 0.8.0 to 0.9.0 (#656) \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.6&new-version=1.27.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:53-07:00",
- "tree_id": "e2fcfcda12bb1ccd87c7073b3933f3ac027af425",
- "url": "https://github.com/runfinch/finch/commit/80513c7785a6da4ae09d9c871acaf180f5d68f2c"
- },
- "date": 1684776127164,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 64072702916,
- "unit": "ns/op\t 0.4488 %cpu_avg/op\t 50.00 %cpu_peak/op\t 64.07 cpu_seconds/op\t2538119168 disk_bytes/op\t 2872128 B/op\t 60802 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 25247371042,
- "unit": "ns/op\t 0.4278 %cpu_avg/op\t 37.50 %cpu_peak/op\t 25.25 cpu_seconds/op\t 102400 disk_bytes/op\t 1121880 B/op\t 23936 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 410213555,
- "unit": "ns/op\t 1.797 %cpu_avg/op\t 30.56 %cpu_peak/op\t 0.4102 cpu_seconds/op\t 0 disk_bytes/op\t 28586 B/op\t 437 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1388379792,
- "unit": "ns/op\t 1.235 %cpu_avg/op\t 30.00 %cpu_peak/op\t 1.388 cpu_seconds/op\t 3579904 disk_bytes/op\t 71320 B/op\t 1348 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "bb1cab229c787752615eb00e74f240c4a4e0e23d",
- "message": "build(deps): Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.1+incompatible (#413)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.0+incompatible to 24.0.1+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.1
\r\n24.0.1
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nRemoved
\r\n\r\n- Remove CLI completions for storage drivers removed in the 24.0 major\r\nrelease. docker/cli#4302
\r\n
\r\nBug fixes and enhancements
\r\n\r\n- Fix an issue where DNS query NXDOMAIN replies from external servers\r\nwere forwarded to the client as SERVFAIL. moby/moby#45573
\r\n- Fix an issue where
docker pull --platform
would report\r\nNo such image
regarding another tag pointing to the same\r\nimage. moby/moby#45562 \r\n- Fix an issue where insecure registry configuration would be\r\nforgotten during config reload. moby/moby#45571
\r\n- containerd-storage: Fix an issue where images which have no layers\r\nwould not be listed in
docker images -a
moby/moby#45588 \r\n- API: Fix an issue where
GET /images/{id}/json
would\r\nreturn null
instead of empty RepoTags
and\r\nRepoDigests
. moby/moby#45564 \r\n- API: Fix an issue where
POST /commit
did not accept an\r\nempty request body. moby/moby#45568 \r\n
\r\nPackaging updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n463850e
\r\nMerge pull request #45588\r\nfrom vvoland/c8d-layerless-24 \r\n47a3dad
\r\nc8d/list: Show layerless images \r\na0bc3eb
\r\nMerge pull request #45571\r\nfrom thaJeztah/24.0_backport_fix_insecure_registrie... \r\n922b6aa
\r\nMerge pull request #45568\r\nfrom corhere/backport-24.0/fix-empty-container-decode \r\n0e605cf
\r\nMerge pull request #45573\r\nfrom thaJeztah/24.0_backport_fix_dns_servfail \r\n878c417
\r\nMerge pull request #45560\r\nfrom crazy-max/24.0_backport_fix-worker-id \r\n654e80a
\r\nMerge pull request #45570\r\nfrom crazy-max/24.0_backport_ci-bin-image-distribute \r\n0869b08
\r\nlibnetwork: just forward the external DNS response \r\n3467ba6
\r\nreorder load funcs to match newServiceConfig()'s order \r\nf9b886c
\r\nadd mirror to daemon reload test for insecure registries \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.0+incompatible&new-version=24.0.1+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T17:48:50Z",
- "tree_id": "92f651eed9097478240daebf4cbf33ab7a695969",
- "url": "https://github.com/runfinch/finch/commit/bb1cab229c787752615eb00e74f240c4a4e0e23d"
- },
- "date": 1684778010598,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 66175046958,
- "unit": "ns/op\t 0.4271 %cpu_avg/op\t 62.50 %cpu_peak/op\t 66.17 cpu_seconds/op\t2476941312 disk_bytes/op\t 2958312 B/op\t 62769 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24043387000,
- "unit": "ns/op\t 0.4011 %cpu_avg/op\t 44.44 %cpu_peak/op\t 24.04 cpu_seconds/op\t -28241920 disk_bytes/op\t 1071472 B/op\t 22789 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 372383778,
- "unit": "ns/op\t 0.8292 %cpu_avg/op\t 12.50 %cpu_peak/op\t 0.3723 cpu_seconds/op\t 0 disk_bytes/op\t 26378 B/op\t 396 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1363868542,
- "unit": "ns/op\t 0.8620 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.364 cpu_seconds/op\t 3612672 disk_bytes/op\t 69248 B/op\t 1338 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "b83cc21e6082eeff076e035dfb4cad152fb5508c",
- "message": "ci: Finch .pkg installer builder (#416)\n\n**Description of changes:**\r\n\r\n- This PR contains the Finch .pkg builder tool.\r\n- The .pkg builder tool can be used by GitHub action to generate and\r\nnotarize macOS .pkg installer.\r\n- The old update to S3 workflow is extended with the functionality to\r\nbuild Finch, build .pkg and test .pkg. It can be used as a scheduled job\r\nfor nightly main branch build as well to detect release issue earlier\r\nbesides cut a new release.\r\n- The old release installer workflow(test installer) is removed because\r\nits scope is moved to the integrated workflow.\r\n\r\nThis is an initial tool check in, Readme and integrated workflow to\r\nchain existing workflows to upload installer to release and publish to\r\nHomebrew will come later.\r\n\r\n**Testing done:**\r\nHave tested the updated workflow and tool on this branch, and can\r\nsuccessfully generate final installer and test it.\r\nAction test ref:\r\nhttps://github.com/runfinch/finch/actions/runs/5077161329\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-26T10:40:35-07:00",
- "tree_id": "f4ee320ee326400884c15fa51a6485739e2ed39b",
- "url": "https://github.com/runfinch/finch/commit/b83cc21e6082eeff076e035dfb4cad152fb5508c"
- },
- "date": 1685123080313,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 62002138916,
- "unit": "ns/op\t 0.4386 %cpu_avg/op\t 66.67 %cpu_peak/op\t 62.00 cpu_seconds/op\t2434990080 disk_bytes/op\t 2783248 B/op\t 58785 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23875910708,
- "unit": "ns/op\t 0.4210 %cpu_avg/op\t 37.50 %cpu_peak/op\t 23.88 cpu_seconds/op\t 11087872 disk_bytes/op\t 1063976 B/op\t 22618 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 356385737,
- "unit": "ns/op\t 0.7036 %cpu_avg/op\t 15.81 %cpu_peak/op\t 0.3563 cpu_seconds/op\t 0 disk_bytes/op\t 25797 B/op\t 382 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1482135708,
- "unit": "ns/op\t 1.198 %cpu_avg/op\t 30.00 %cpu_peak/op\t 1.482 cpu_seconds/op\t 3629056 disk_bytes/op\t 75728 B/op\t 1449 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "6a8ca1a559dada6ed320c9454fbc3229446a0a40",
- "message": "fix: sort volume args in DOCKER_COMPAT mode (#417)\n\nIssue #, if available:\r\nhttps://github.com/runfinch/finch/issues/418\r\n\r\n*Description of changes:*\r\nSort volume args in DOCKER_COMPAT mode\r\n\r\n*Testing done:*\r\nUnit tests and new e2e tests.\r\nhttps://github.com/runfinch/common-tests/pull/66\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-05-26T21:10:30Z",
- "tree_id": "7d92a6ddbd268a0ecf2c8acb172cadc75b283dc2",
- "url": "https://github.com/runfinch/finch/commit/6a8ca1a559dada6ed320c9454fbc3229446a0a40"
- },
- "date": 1685135678685,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 61109075166,
- "unit": "ns/op\t 0.5363 %cpu_avg/op\t 50.00 %cpu_peak/op\t 61.11 cpu_seconds/op\t2531868672 disk_bytes/op\t 2739688 B/op\t 57794 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23822496458,
- "unit": "ns/op\t 0.4148 %cpu_avg/op\t 29.99 %cpu_peak/op\t 23.82 cpu_seconds/op\t 25346048 disk_bytes/op\t 1062800 B/op\t 22585 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 350237528,
- "unit": "ns/op\t 1.100 %cpu_avg/op\t 14.76 %cpu_peak/op\t 0.3502 cpu_seconds/op\t 0 disk_bytes/op\t 25189 B/op\t 375 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1324873542,
- "unit": "ns/op\t 0.4685 %cpu_avg/op\t 20.44 %cpu_peak/op\t 1.325 cpu_seconds/op\t 20406272 disk_bytes/op\t 67056 B/op\t 1297 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0bcdd18b12b889931d3b7928eedf76c1ec9fac5a",
- "message": "ci: Rename action and set up nightly build (#421)\n\n*Description of changes:*\r\nRename the action.\r\nSet up the installer build and test every day at 9 am UTC (2 am PDT) to\r\nvalidate latest main branch.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-26T16:03:45-07:00",
- "tree_id": "ab82ce6b1d2aa83593bb648181463b6fe7840863",
- "url": "https://github.com/runfinch/finch/commit/0bcdd18b12b889931d3b7928eedf76c1ec9fac5a"
- },
- "date": 1685142468148,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58189551041,
- "unit": "ns/op\t 0.4748 %cpu_avg/op\t 50.00 %cpu_peak/op\t 58.19 cpu_seconds/op\t2534551552 disk_bytes/op\t 2616344 B/op\t 55010 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23904738791,
- "unit": "ns/op\t 0.4035 %cpu_avg/op\t 50.00 %cpu_peak/op\t 23.90 cpu_seconds/op\t 737280 disk_bytes/op\t 1065064 B/op\t 22643 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 388213541,
- "unit": "ns/op\t 0.5318 %cpu_avg/op\t 18.33 %cpu_peak/op\t 0.3882 cpu_seconds/op\t 5461 disk_bytes/op\t 27282 B/op\t 413 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1304016458,
- "unit": "ns/op\t 0.4994 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.304 cpu_seconds/op\t 3596288 disk_bytes/op\t 66616 B/op\t 1279 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "ac18046e70efc0e1e9fe11a30457f6f945df2a23",
- "message": "build(deps): Bump github.com/runfinch/common-tests from 0.6.5 to 0.7.0 (#420)\n\nBumps\r\n[github.com/runfinch/common-tests](https://github.com/runfinch/common-tests)\r\nfrom 0.6.5 to 0.7.0.\r\n\r\nRelease notes
\r\nSourced from github.com/runfinch/common-tests's\r\nreleases.
\r\n\r\nv0.7.0
\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/runfinch/common-tests's\r\nchangelog.
\r\n\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n0.6.4\r\n(2023-04-06)
\r\nBug Fixes
\r\n\r\n- better handling of concurrent http servers (#57)\r\n(0ae6182)
\r\n
\r\n0.6.3\r\n(2023-03-27)
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/gomega from 1.27.2 to\r\n1.27.4 (#48)\r\n(f113e7b)
\r\n- deps: bump github.com/onsi/gomega from 1.27.4 to\r\n1.27.5 (#52)\r\n(bd056e7)
\r\n
\r\n0.6.2\r\n(2023-03-16)
\r\nBug Fixes
\r\n\r\n- Fix tests to match nerdctl 1.2.1 outputs (#50)\r\n(3d9b4f4)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.8.3 to\r\n2.8.4 (#41)\r\n(a9476c1)
\r\n- deps: bump github.com/onsi/gomega from 1.27.1 to\r\n1.27.2 (#40)\r\n(e8fc71a)
\r\n
\r\n0.6.1\r\n(2023-02-28)
\r\nBug Fixes
\r\n\r\n- Switch from
nc -l
to nginx
in run\r\n-p/--publish
test (7a6a6c3) \r\n
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\nafbbd97
\r\nchore(main): release 0.7.0 (#63) \r\n22a7f7e
\r\nfeat: Tests for bind mounts (#66) \r\n590a984
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#65) \r\nb761a7a
\r\nfeat: verify the result of finch inspect has State.Status and\r\nState.Error (#64) \r\n72120b5
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.5 to 1.27.6 (#54) \r\n0bd0901
\r\nbuild(deps): bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.5 (#62) \r\n882cd1e
\r\ntest: Functional test for PS command (#17) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/runfinch/common-tests&package-manager=go_modules&previous-version=0.6.5&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-26T16:30:20-07:00",
- "tree_id": "5e6cfb42519bed0dde2505d4b43e33fd56d4cb40",
- "url": "https://github.com/runfinch/finch/commit/ac18046e70efc0e1e9fe11a30457f6f945df2a23"
- },
- "date": 1685144063322,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 60622561542,
- "unit": "ns/op\t 0.4602 %cpu_avg/op\t 71.43 %cpu_peak/op\t 60.62 cpu_seconds/op\t2549374976 disk_bytes/op\t 2722432 B/op\t 57398 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23975648375,
- "unit": "ns/op\t 0.4158 %cpu_avg/op\t 44.44 %cpu_peak/op\t 23.98 cpu_seconds/op\t 16027648 disk_bytes/op\t 1068520 B/op\t 22725 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 360948361,
- "unit": "ns/op\t 0.8981 %cpu_avg/op\t 18.10 %cpu_peak/op\t 0.3609 cpu_seconds/op\t 0 disk_bytes/op\t 25816 B/op\t 386 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1312138792,
- "unit": "ns/op\t 0.3660 %cpu_avg/op\t 16.10 %cpu_peak/op\t 1.312 cpu_seconds/op\t -4567040 disk_bytes/op\t 67656 B/op\t 1291 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "f67ff9668457057514a351819cdc75fb8c6b2d46",
- "message": "ci: Add release automation action (#424)\n\n*Description of changes:*\r\nThis PR added a new passive action subscribe to main branch new tag\r\ncreation.\r\nNew tag creation means Finch has a new release, the new workflow will\r\ntrigger build pkg, upload pkg and homebrew release on the latest tag.\r\n\r\n*Testing done:*\r\nThis is a new action and has cross branch/tag involved, needs some\r\nexperiment on main branch after check in.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-29T11:41:28-07:00",
- "tree_id": "4e53e8ed0bd63d943da86e7680d75e44738efbcb",
- "url": "https://github.com/runfinch/finch/commit/f67ff9668457057514a351819cdc75fb8c6b2d46"
- },
- "date": 1685385929759,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 59222706583,
- "unit": "ns/op\t 0.3855 %cpu_avg/op\t 62.50 %cpu_peak/op\t 59.22 cpu_seconds/op\t2543312896 disk_bytes/op\t 2656888 B/op\t 55926 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23862741625,
- "unit": "ns/op\t 0.5184 %cpu_avg/op\t 66.67 %cpu_peak/op\t 23.86 cpu_seconds/op\t 32006144 disk_bytes/op\t 1064240 B/op\t 22629 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 359128139,
- "unit": "ns/op\t 1.339 %cpu_avg/op\t 21.67 %cpu_peak/op\t 0.3591 cpu_seconds/op\t 0 disk_bytes/op\t 25626 B/op\t 382 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1292237416,
- "unit": "ns/op\t 0.1373 %cpu_avg/op\t 16.47 %cpu_peak/op\t 1.292 cpu_seconds/op\t 3612672 disk_bytes/op\t 65464 B/op\t 1259 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "c4c23a95a139a21cc7208071e3c3b688389f6071",
- "message": "ci: Upload dependency source code along with the installers (#426)\n\n*Description of changes:*\r\nCurrently we need to upload the dependency source code manually.\r\nMake this along with the installer upload.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-29T18:22:38-07:00",
- "tree_id": "e65c4af30a6b25e4a09ab3d7849c3b667d9212b8",
- "url": "https://github.com/runfinch/finch/commit/c4c23a95a139a21cc7208071e3c3b688389f6071"
- },
- "date": 1685410004376,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 61964372834,
- "unit": "ns/op\t 0.4134 %cpu_avg/op\t 44.44 %cpu_peak/op\t 61.96 cpu_seconds/op\t2531565568 disk_bytes/op\t 2778680 B/op\t 58676 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24002455958,
- "unit": "ns/op\t 0.4373 %cpu_avg/op\t 40.00 %cpu_peak/op\t 24.00 cpu_seconds/op\t -73728 disk_bytes/op\t 1067312 B/op\t 22685 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 343225264,
- "unit": "ns/op\t 0.6481 %cpu_avg/op\t 11.57 %cpu_peak/op\t 0.3432 cpu_seconds/op\t 5592405 disk_bytes/op\t 25186 B/op\t 372 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1328667167,
- "unit": "ns/op\t 0.8924 %cpu_avg/op\t 40.00 %cpu_peak/op\t 1.329 cpu_seconds/op\t 3596288 disk_bytes/op\t 67920 B/op\t 1299 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "d933d11373c4c9a94137dfad78a8542d2c7be327",
- "message": "ci: Integrate existing workflows into release-automation (#430)\n\n*Description of changes:*\r\nReuse existing workflows to release-automation.\r\nAdded input param to reuse workflow.\r\nRollout only build & test installer as initial.\r\n\r\n*Testing done:*\r\nHave tested the action in this branch\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-30T16:44:42-07:00",
- "tree_id": "87f62fce80fd69e8450d0621c833ac32529c621e",
- "url": "https://github.com/runfinch/finch/commit/d933d11373c4c9a94137dfad78a8542d2c7be327"
- },
- "date": 1685490523568,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 59423656750,
- "unit": "ns/op\t 0.4761 %cpu_avg/op\t 85.71 %cpu_peak/op\t 59.42 cpu_seconds/op\t2530586624 disk_bytes/op\t 2676424 B/op\t 56362 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23873176834,
- "unit": "ns/op\t 0.3975 %cpu_avg/op\t 44.44 %cpu_peak/op\t 23.87 cpu_seconds/op\t 458752 disk_bytes/op\t 1063416 B/op\t 22590 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 352180403,
- "unit": "ns/op\t 1.346 %cpu_avg/op\t 15.76 %cpu_peak/op\t 0.3521 cpu_seconds/op\t 0 disk_bytes/op\t 25461 B/op\t 376 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1396065958,
- "unit": "ns/op\t 0.5610 %cpu_avg/op\t 22.22 %cpu_peak/op\t 1.396 cpu_seconds/op\t 3612672 disk_bytes/op\t 71760 B/op\t 1358 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "d08952e8b257a74d6d6a6f9da8949d3fd748ab23",
- "message": "ci: Integrate the other workflows into release-automation (#431)\n\n*Description of changes:*\r\nEnabled the rest workflow for release automation.\r\nCheck in before next release after it is validated.\r\nAfter this PR is checked in, release-please PR merge will automatically\r\ntrigger installer build, test, upload installers and dependency source\r\ncode to release and cut Homebrew PR.\r\n\r\n*Testing done:*\r\nWait next release\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-31T09:55:51-07:00",
- "tree_id": "0d7b69664ef0d583147c2b84c591c63f802cdf43",
- "url": "https://github.com/runfinch/finch/commit/d08952e8b257a74d6d6a6f9da8949d3fd748ab23"
- },
- "date": 1685552406730,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 63012348000,
- "unit": "ns/op\t 0.4615 %cpu_avg/op\t 55.56 %cpu_peak/op\t 63.01 cpu_seconds/op\t2534215680 disk_bytes/op\t 2819536 B/op\t 59623 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 27240375250,
- "unit": "ns/op\t 0.4598 %cpu_avg/op\t 44.44 %cpu_peak/op\t 27.24 cpu_seconds/op\t 4427776 disk_bytes/op\t 1229600 B/op\t 25748 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 373338278,
- "unit": "ns/op\t 1.081 %cpu_avg/op\t 17.78 %cpu_peak/op\t 0.3733 cpu_seconds/op\t 0 disk_bytes/op\t 26709 B/op\t 397 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1472416667,
- "unit": "ns/op\t 0.9267 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.472 cpu_seconds/op\t 3612672 disk_bytes/op\t 74808 B/op\t 1428 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "6a67f0cfb0a3a1da438779f4faa04048f25d7dde",
- "message": "build(deps): Bump github.com/lima-vm/lima from 0.15.1 to 0.16.0 (#428)\n\nBumps [github.com/lima-vm/lima](https://github.com/lima-vm/lima) from\r\n0.15.1 to 0.16.0.\r\n\r\nRelease notes
\r\nSourced from github.com/lima-vm/lima's\r\nreleases.
\r\n\r\nv0.16.0
\r\nThis release adds an experimental support for the user-v2
\r\nnetwork driver: limactl\r\nstart template://experimental/net-user-v2
.\r\nThe user-v2
network driver enables VM-to-VM networking\r\nwithout the root privilege on the host.\r\nThis should be useful for simulating multi-node Kubernetes clusters on a\r\nlaptop.
\r\nThis release also fixes a relatively minor vulnerability CVE-2023-32684.\r\nThis vulnerability is very unlikely to be exploitable as long\r\nas you are using the official templates of Lima.
\r\nChanges
\r\n\r\nlimactl
CLI:\r\n\r\n- (Experimental) Add
limactl snapshot\r\n(apply|create|delete|list)
commands (#1054,\r\nthanks to @afbjorklund
) \r\n- Escape only the value of env variables in
limactl shell
\r\n(#1501,\r\nthanks to @sam-berning
) \r\n
\r\n \r\n- YAML:\r\n\r\n
\r\n- Documents:\r\n\r\n
\r\n- Network:\r\n
\r\n- (Experimental) Add
user-v2
\r\nnetwork driver to enable VM-to-VM networking without root (#1383,\r\nthanks to @balajiv113
) \r\n
\r\n \r\n- nerdctl:\r\n\r\n
\r\n- Templates:\r\n
\r\n- AlmaLinux: update to 9.2 (#1550)
\r\n- Alpine: update to 3.18 and fix Rosetta support (#1560,\r\n#1580,\r\nthanks to
@jandubois
) \r\n- Arch Linux: update to 20230515.150700 (#1550)
\r\n- Fedora: update to 38 (#1502,\r\nthanks to
@cpach
) \r\n- Nomad: update to v0.9.4 (#1552)
\r\n- Rocky Linux: update to 9.2 and 8.8 (#1550,\r\n#1591)
\r\n- Ubuntu: update to 23.04 (#1550)
\r\n
\r\n \r\n- Misc:\r\n
\r\n- Improve disk efficiency (#1411)\r\nfor caches (#1544)
\r\n
\r\n \r\n
\r\nFull changes: https://github.com/lima-vm/lima/milestone/34?closed=1\r\nThanks to @afbjorklund
@balajiv113
@bumpsoo063
@cpach
@jandubois
@pendo324
@sam-berning
\r\nUsage
\r\n[macOS]$ limactl start\r\n...\r\nINFO[0029] READY. Run `lima` to open the shell.\r\n[macOS]$ lima uname\r\nLinux\r\n
\r\n
\r\nThe binaries were built automatically on GitHub Actions.\r\nThe build log is available for 90 days: https://github.com/lima-vm/lima/actions/runs/5118006806
\r\nThe sha256sum of the SHA256SUMS file itself is\r\n2062c42688128dca55331fc1a8f4841cbf41ed9dd11867d48decdf6880afde87
\r\n.
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n01dbd4d
\r\nMerge pull request from GHSA-f7qw-jj9c-rpq9 \r\nbc1bdb8
\r\nProhibit using a differential disk as a base disk \r\nbfa5bab
\r\nqemu: explicitly pass the basedisk format to QEMU \r\nefe1c47
\r\npkg/qemu/imgutil: add Info fields \r\n3dbc08c
\r\nMerge pull request #1592\r\nfrom afbjorklund/man-prefix \r\n703d69f
\r\nRemove the build directories from the manpages \r\ne7aa4ff
\r\nMerge pull request #1591\r\nfrom AkihiroSuda/dev \r\nb9ea964
\r\nMerge pull request #1590\r\nfrom balajiv113/usernet-default \r\n5656d1a
\r\ntemplates: update Rocky Linux to 8.8 \r\n5c0955d
\r\ntemplates: update CentOS Stream 9 to 20230523.0 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/lima-vm/lima&package-manager=go_modules&previous-version=0.15.1&new-version=0.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-31T10:22:24-07:00",
- "tree_id": "556e3a36fb0bb31a7a51202de5d9db3ef55c2b48",
- "url": "https://github.com/runfinch/finch/commit/6a67f0cfb0a3a1da438779f4faa04048f25d7dde"
- },
- "date": 1685554077983,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 70264795958,
- "unit": "ns/op\t 0.3997 %cpu_avg/op\t 71.43 %cpu_peak/op\t 70.26 cpu_seconds/op\t2539876352 disk_bytes/op\t 3120376 B/op\t 66457 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23954638333,
- "unit": "ns/op\t 0.4083 %cpu_avg/op\t 62.50 %cpu_peak/op\t 23.95 cpu_seconds/op\t 741376 disk_bytes/op\t 1068896 B/op\t 22721 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 372378916,
- "unit": "ns/op\t 1.636 %cpu_avg/op\t 27.61 %cpu_peak/op\t 0.3723 cpu_seconds/op\t 5461 disk_bytes/op\t 26384 B/op\t 396 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1377558917,
- "unit": "ns/op\t 1.115 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.378 cpu_seconds/op\t 20389888 disk_bytes/op\t 71272 B/op\t 1348 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "vsiravara@gmail.com",
- "name": "Vishwas Siravara",
- "username": "vsiravar"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9",
- "message": "ci: Manually update submodule and add cleanup (#434)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\n\r\n- Add clean up in ci for finch version command\r\n- Add submodule updates to finch core\r\n\r\n*Testing done:*\r\n\r\nYes\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
- "timestamp": "2023-05-31T14:02:33-07:00",
- "tree_id": "c0224254ae7d46efe2947ff93511a51659565aaa",
- "url": "https://github.com/runfinch/finch/commit/7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9"
- },
- "date": 1685567199347,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 63763963667,
- "unit": "ns/op\t 0.3759 %cpu_avg/op\t 88.89 %cpu_peak/op\t 63.76 cpu_seconds/op\t2554966016 disk_bytes/op\t 2847616 B/op\t 60267 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23913614208,
- "unit": "ns/op\t 0.4998 %cpu_avg/op\t 60.00 %cpu_peak/op\t 23.91 cpu_seconds/op\t -28672 disk_bytes/op\t 1062776 B/op\t 22583 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 362507306,
- "unit": "ns/op\t 0.8517 %cpu_avg/op\t 18.33 %cpu_peak/op\t 0.3624 cpu_seconds/op\t 13653 disk_bytes/op\t 26426 B/op\t 388 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1393565083,
- "unit": "ns/op\t 0.5869 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.394 cpu_seconds/op\t 3612672 disk_bytes/op\t 73016 B/op\t 1370 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "1c09471be3b9d214e4a4ef805980588f6e322b68",
- "message": "ci: Add git clean before build and test (#435)\n\n*Description of changes:*\r\nIt append .modified postfix when build or test.\r\nAdd git clean to remove the dirty state.\r\nAdd git status to log when it happens\r\n\r\n*Testing done:*\r\nTODO with this current run.\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-31T15:47:26-07:00",
- "tree_id": "d93daef2907cf471ae341cb360413598172833f1",
- "url": "https://github.com/runfinch/finch/commit/1c09471be3b9d214e4a4ef805980588f6e322b68"
- },
- "date": 1685573494810,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 61959578833,
- "unit": "ns/op\t 0.4169 %cpu_avg/op\t 40.00 %cpu_peak/op\t 61.96 cpu_seconds/op\t2540748800 disk_bytes/op\t 2775776 B/op\t 58628 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24942337917,
- "unit": "ns/op\t 0.3478 %cpu_avg/op\t 33.33 %cpu_peak/op\t 24.94 cpu_seconds/op\t 3649536 disk_bytes/op\t 1107400 B/op\t 23611 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 360831653,
- "unit": "ns/op\t 0.6250 %cpu_avg/op\t 10.00 %cpu_peak/op\t 0.3608 cpu_seconds/op\t 0 disk_bytes/op\t 25992 B/op\t 386 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1388015916,
- "unit": "ns/op\t 0.5876 %cpu_avg/op\t 22.22 %cpu_peak/op\t 1.388 cpu_seconds/op\t 20385792 disk_bytes/op\t 72176 B/op\t 1359 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "repoUrl": "https://github.com/runfinch/finch",
+ "entries": {
+ "Finch Benchmark": [
+ {
+ "commit": {
+ "author": {
+ "email": "ningziwe@amazon.com",
+ "name": "Ziwen Ning",
+ "username": "ningziwen"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "325a8510c75b0b030be5ec075327ac337b7c22e5",
+ "message": "ci: add benchmarking workflow (#384)\n\nhttps://github.com/runfinch/finch/issues/345\r\n\r\n*Description of changes:*\r\n\r\n*Testing done:*\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/x86_64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/x86_64/\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
+ "timestamp": "2023-04-28T18:08:29Z",
+ "tree_id": "36a278e67f9282187e295ad59e2bcea15679a739",
+ "url": "https://github.com/runfinch/finch/commit/325a8510c75b0b030be5ec075327ac337b7c22e5"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "975c4ee42c1529673a51382c62c4096dc663f80a",
- "message": "fix: Stop lima process in postinstall and uninstall (#438)\n\n*Description of changes:*\r\nUnstopped lima process can prevent new installation and finch vm init\r\nsuccessfully.\r\nAdd kill limactl to post-installation and uninstall script to fix the\r\nissue.\r\n\r\n*Testing done:*\r\nTested locally.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-06-01T14:49:30-07:00",
- "tree_id": "3aac93a3e14d71a61ea11cc9f58d98df0cd2d549",
- "url": "https://github.com/runfinch/finch/commit/975c4ee42c1529673a51382c62c4096dc663f80a"
- },
- "date": 1685656413592,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 63110303167,
- "unit": "ns/op\t 0.4526 %cpu_avg/op\t 60.00 %cpu_peak/op\t 63.11 cpu_seconds/op\t2536759296 disk_bytes/op\t 2823640 B/op\t 59698 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23903201084,
- "unit": "ns/op\t 0.5218 %cpu_avg/op\t 40.00 %cpu_peak/op\t 23.90 cpu_seconds/op\t 4452352 disk_bytes/op\t 1064312 B/op\t 22621 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 352293570,
- "unit": "ns/op\t 1.328 %cpu_avg/op\t 23.61 %cpu_peak/op\t 0.3522 cpu_seconds/op\t 0 disk_bytes/op\t 25200 B/op\t 375 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1369190084,
- "unit": "ns/op\t 0.2321 %cpu_avg/op\t 16.08 %cpu_peak/op\t 1.369 cpu_seconds/op\t 3612672 disk_bytes/op\t 68416 B/op\t 1328 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1682705619744,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 71582241583,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4146",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "71.58",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2587455488",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3174808",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "67696",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 27115681958,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4361",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "27.12",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "733184",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1198032",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25669",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 370115208,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.086",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "19.44",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3701",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26080",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "393",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1354717334,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.7051",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.355",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3526656",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "68168",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1328",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "76b31c0c453935f22588523f65888e103581cd89",
+ "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.3 to 3.23.4 (#389)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.3 to 3.23.4.\r\n\r\nRelease notes
\r\nSourced from github.com/shirou/gopsutil/v3's\r\nreleases.
\r\n\r\nv3.23.4
\r\n\r\nWhat's Changed
\r\ncpu
\r\n\r\nprocess
\r\n\r\nOther Changes
\r\n\r\nNew Contributors
\r\n\r\nFull Changelog: https://github.com/shirou/gopsutil/compare/v3.23.3...v3.23.4
\r\n
\r\n \r\n\r\nCommits
\r\n\r\ndb89d12
\r\nMerge pull request #1453\r\nfrom Juneezee/refactor/errors.Is \r\n0439039
\r\nrefactor(process): compare error with errors.Is
\r\n17fac7c
\r\nMerge pull request #1450\r\nfrom gabibguti/master \r\n2d2db8f
\r\nCreate SECURITY.md \r\n10f213c
\r\nMerge pull request #1448\r\nfrom shirou/dependabot/github_actions/actions/upload... \r\nd6ee47e
\r\nchore(deps): bump actions/upload-artifact from 3.1.0 to 3.1.2 \r\ncf428f8
\r\nMerge pull request #1443\r\nfrom mmorel-35/linter \r\n755bcab
\r\nUpdate branch of sbom_generator.yml \r\n21a646b
\r\nMerge pull request #1447\r\nfrom shirou/feature/add_sbom_github_actions \r\nbcf3fe9
\r\nMerge pull request #1445\r\nfrom shirou/dependabot/go_modules/golang.org/x/sys-0... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.3&new-version=3.23.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-03T14:04:07-04:00",
+ "tree_id": "f741032f7d876d262db9b5af37cdc5bbea24e279",
+ "url": "https://github.com/runfinch/finch/commit/76b31c0c453935f22588523f65888e103581cd89"
},
- {
- "commit": {
- "author": {
- "email": "41898282+github-actions[bot]@users.noreply.github.com",
- "name": "github-actions[bot]",
- "username": "github-actions[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "e9551b50010deb43ad26dcd3671ec2f246e84ed6",
- "message": "build(deps): Bump submodules (#439)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
- "timestamp": "2023-06-01T17:08:31-07:00",
- "tree_id": "1d44ab428cafa8801c73cf50dbe39a71ea5aa9bb",
- "url": "https://github.com/runfinch/finch/commit/e9551b50010deb43ad26dcd3671ec2f246e84ed6"
- },
- "date": 1685666518162,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 63629323000,
- "unit": "ns/op\t 0.4108 %cpu_avg/op\t 63.64 %cpu_peak/op\t 63.63 cpu_seconds/op\t2536259584 disk_bytes/op\t 2843712 B/op\t 60167 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23881799625,
- "unit": "ns/op\t 0.3939 %cpu_avg/op\t 66.67 %cpu_peak/op\t 23.88 cpu_seconds/op\t -24576 disk_bytes/op\t 1065560 B/op\t 22660 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 356840806,
- "unit": "ns/op\t 2.543 %cpu_avg/op\t 30.00 %cpu_peak/op\t 0.3568 cpu_seconds/op\t 0 disk_bytes/op\t 25640 B/op\t 379 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1357839084,
- "unit": "ns/op\t 0.6649 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.358 cpu_seconds/op\t 3612672 disk_bytes/op\t 69064 B/op\t 1331 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1683137425436,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 71382328000,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4381",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "66.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "71.38",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2586419200",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3174312",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "67673",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23947762083,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5122",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.95",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "25554944",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1063584",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22626",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 357500167,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.465",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "17.86",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3574",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "24576",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25482",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "383",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1353868292,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.7753",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.354",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20307968",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "68984",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1330",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "710299445ed287c67114b277be7bd2a29715956b",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.3 (#390)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.2 to 2.9.3.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.3
\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n7a8249e
\r\nv2.9.3 \r\nc0c77b6
\r\nAdd RenderTimeline to GinkgoT() \r\n8b925ab
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183) \r\ne3795a4
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184) \r\nb453793
\r\nBump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182) \r\n73ed75b
\r\nBump actions/setup-go from 3 to 4 (#1164) \r\n0a2bc64
\r\nBump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173) \r\nf41c557
\r\nBump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174) \r\n8e423e5
\r\nBump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179) \r\n227c662
\r\nupdqte Measure deprecation message. fixes #1176 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.2&new-version=2.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-03T14:13:23-04:00",
+ "tree_id": "5e835791535734dd48321218c7346d8ad9ec9c0b",
+ "url": "https://github.com/runfinch/finch/commit/710299445ed287c67114b277be7bd2a29715956b"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "7660d08f4e9e93468d0495aeafa2cf2de302227e",
- "message": "ci: Preserve link when copy from build (#441)\n\n*Description of changes:*\r\nAdd 'p' flag to preserve original symbolic link when copying the build\r\nartifact\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
- "timestamp": "2023-06-01T17:53:28-07:00",
- "tree_id": "4fdbf68f34050cd3f3b5126a3b4960af6cf63267",
- "url": "https://github.com/runfinch/finch/commit/7660d08f4e9e93468d0495aeafa2cf2de302227e"
- },
- "date": 1685669540666,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 63425315334,
- "unit": "ns/op\t 0.4150 %cpu_avg/op\t 50.00 %cpu_peak/op\t 63.43 cpu_seconds/op\t1961365504 disk_bytes/op\t 2834072 B/op\t 59945 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23992429875,
- "unit": "ns/op\t 0.4683 %cpu_avg/op\t 40.00 %cpu_peak/op\t 23.99 cpu_seconds/op\t 2035712 disk_bytes/op\t 1069640 B/op\t 22740 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 345730597,
- "unit": "ns/op\t 1.598 %cpu_avg/op\t 25.00 %cpu_peak/op\t 0.3457 cpu_seconds/op\t 0 disk_bytes/op\t 24917 B/op\t 369 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1474023750,
- "unit": "ns/op\t 0.9861 %cpu_avg/op\t 40.00 %cpu_peak/op\t 1.474 cpu_seconds/op\t 3596288 disk_bytes/op\t 75704 B/op\t 1440 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1683137907781,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 66393193541,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4296",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "58.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "66.39",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2615177216",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2963680",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "62888",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23964867375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5141",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.96",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1286144",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1067792",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22709",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 379624653,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.255",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.52",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3796",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26754",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "407",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1322227459,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5695",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.322",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3530752",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67328",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1299",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785",
+ "message": "build(deps): Bump github.com/docker/docker from 23.0.3+incompatible to 23.0.5+incompatible (#382)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.3+incompatible to 23.0.5+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv23.0.5
\r\n23.0.5
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Add the
--all
/ -a
option when pruning\r\nvolumes. docker/cli#4229 \r\n- Add
--format=json
for docker info
. docker/cli#4320 \r\n- Fix log loss with the AWSLogs log driver. moby/moby#45350
\r\n- Fix a regression introduced in v23.0.4 where dockerd would refuse to\r\nstart if the fixed-cidr config parameter is provided but not bip. moby/moby#45403
\r\n- Fix a panic in libnetwork during daemon start moby/moby#45376
\r\n- Fix "tag" event not being sent when an image is built with\r\n
buildx
. moby/moby#45410 \r\n
\r\nPackaging Updates
\r\n\r\nv23.0.4
\r\n23.0.4
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a performance regression in Docker CLI 23.0.0 docker/cli#4141.
\r\n- Fix progress indicator on
docker cp
not functioning as\r\nintended docker/cli#4157. \r\n- Fix shell completion for
docker compose --file
docker/cli#4177. \r\n- Fix an error caused by incorrect handling of\r\n"default-address-pools" in
daemon.json
moby/moby#45246. \r\n
\r\nPackaging Updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n94d3ad6
\r\nMerge pull request #45410\r\nfrom rumpl/23.0_backport-fix-buildx-tag-events \r\n933a9f8
\r\nMerge pull request #45407\r\nfrom thaJeztah/23.0_backport_vendor_runc_1.1.5 \r\nfe0a414
\r\nUse the image service instead of the reference store for tagging \r\n1b1230e
\r\nMerge pull request #45375\r\nfrom thaJeztah/23.0_backport_bump_swarmkit \r\n1b26303
\r\nMerge pull request #45374\r\nfrom thaJeztah/23.0_backport_stfu_grpc \r\n682542f
\r\nMerge pull request #45373\r\nfrom thaJeztah/23.0_backport_assorted_test_and_pack... \r\n40ec0eb
\r\nvendor: github.com/opencontainers/runc v1.1.5 \r\n9af6762
\r\nMerge pull request #45403\r\nfrom akerouanton/23.0-cherrypick-2d31697 \r\n0b6449a
\r\nMerge pull request #45376\r\nfrom thaJeztah/23.0_backport_delete_network_more_at... \r\n227d3f3
\r\ndaemon: set docker0 subpool as the IPAM pool \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.3+incompatible&new-version=23.0.5+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-03T15:41:11-04:00",
+ "tree_id": "1c20d3fd2834f22310254aa23e661742782dcfd8",
+ "url": "https://github.com/runfinch/finch/commit/3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785"
},
- {
- "commit": {
- "author": {
- "email": "vsiravara@gmail.com",
- "name": "Vishwas Siravara",
- "username": "vsiravar"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0aa4c5cc36c4d44e431a8c13004607990bdb2bf4",
- "message": "ci: Update lima download url (#440)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nLIMA_URL in `finch` is stale\r\nhttps://github.com/runfinch/finch/blob/main/Makefile#L38. Keeping it\r\nconsistent with finch-core.\r\n*Testing done:*\r\n\r\nLocally. \r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
- "timestamp": "2023-06-01T17:50:59-07:00",
- "tree_id": "92182604e47f2ec0133a0b2a79ec61950bc73185",
- "url": "https://github.com/runfinch/finch/commit/0aa4c5cc36c4d44e431a8c13004607990bdb2bf4"
- },
- "date": 1685669541642,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58254449125,
- "unit": "ns/op\t 0.4543 %cpu_avg/op\t 44.44 %cpu_peak/op\t 58.25 cpu_seconds/op\t1967153152 disk_bytes/op\t 2624560 B/op\t 55189 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24103065958,
- "unit": "ns/op\t 0.4281 %cpu_avg/op\t 42.86 %cpu_peak/op\t 24.10 cpu_seconds/op\t 19660800 disk_bytes/op\t 1072416 B/op\t 22807 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 368869778,
- "unit": "ns/op\t 1.131 %cpu_avg/op\t 21.65 %cpu_peak/op\t 0.3688 cpu_seconds/op\t 27306 disk_bytes/op\t 26253 B/op\t 393 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1390187417,
- "unit": "ns/op\t 0.9979 %cpu_avg/op\t 50.00 %cpu_peak/op\t 1.390 cpu_seconds/op\t 13881344 disk_bytes/op\t 71872 B/op\t 1359 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1683143193424,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 99472525916,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4035",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "66.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "99.47",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2539454464",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "4494792",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "93727",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 27342219167,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4816",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "27.34",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "872448",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1234792",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25874",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 372034972,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.413",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "20.66",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3720",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "6306474",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26586",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "398",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1298690666,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.9748",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "54.55",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.299",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3547136",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "65752",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1271",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "ningziwe@amazon.com",
+ "name": "Ziwen Ning",
+ "username": "ningziwen"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "cc679ef266c7da49e9339d69130f242d8285bc96",
+ "message": "ci: remove setup-go and explicitly set shell in benchmark (#401)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nFix the workflow failure happened recently.\r\nhttps://github.com/runfinch/finch/actions/runs/4920343212/jobs/8789029862\r\n\r\n*Testing done:*\r\nIn feature branch.\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
+ "timestamp": "2023-05-16T13:59:41-07:00",
+ "tree_id": "ce9148fa0e13ad776e232868257642729f8bf853",
+ "url": "https://github.com/runfinch/finch/commit/cc679ef266c7da49e9339d69130f242d8285bc96"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "5f626bd8b7a021c95595aade5b34d7076968b88b",
- "message": "ci: Change -rp to capital (#442)\n\n*Description of changes:*\r\nChange p to capital case\r\n\r\n*Testing done:*\r\nTested with the runner\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
- "timestamp": "2023-06-01T18:10:52-07:00",
- "tree_id": "3738d19bf5c514ac962bb1ff576dcedec89e59b8",
- "url": "https://github.com/runfinch/finch/commit/5f626bd8b7a021c95595aade5b34d7076968b88b"
- },
- "date": 1685671975402,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58943559292,
- "unit": "ns/op\t 0.4052 %cpu_avg/op\t 70.00 %cpu_peak/op\t 58.94 cpu_seconds/op\t1934385152 disk_bytes/op\t 2647720 B/op\t 55721 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24004892916,
- "unit": "ns/op\t 0.4692 %cpu_avg/op\t 40.00 %cpu_peak/op\t 24.00 cpu_seconds/op\t -290816 disk_bytes/op\t 1071256 B/op\t 22786 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 368665333,
- "unit": "ns/op\t 0.1323 %cpu_avg/op\t 4.762 %cpu_peak/op\t 0.3686 cpu_seconds/op\t 0 disk_bytes/op\t 26514 B/op\t 393 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1342566875,
- "unit": "ns/op\t 1.445 %cpu_avg/op\t 55.56 %cpu_peak/op\t 1.343 cpu_seconds/op\t 3624960 disk_bytes/op\t 69368 B/op\t 1326 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1684271038983,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 60938075750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4824",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "66.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "60.94",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2509930496",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2738240",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "57767",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24052628167,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5687",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.05",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-15908864",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069120",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22745",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 372893125,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8285",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.18",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3728",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26821",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "398",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1379727083,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6775",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.380",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3592192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "71288",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1348",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "41898282+github-actions[bot]@users.noreply.github.com",
+ "name": "github-actions[bot]",
+ "username": "github-actions[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "06d86b2bc348db9f0d8d02678faee556719b883d",
+ "message": "build(deps): Bump submodules (#402)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
+ "timestamp": "2023-05-17T16:24:01Z",
+ "tree_id": "288eddf483f6ff89d0e83c6e089da366bce0295d",
+ "url": "https://github.com/runfinch/finch/commit/06d86b2bc348db9f0d8d02678faee556719b883d"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "b192874e2b1c5de1c2148813760cbe65e15d7553",
- "message": "build(deps): Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#443)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.1\r\nto 0.9.3.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.9.3
\r\nMove fast and fix things...golang/go#54395
\r\nAs always, thank you for filing issues!
\r\ngopls/v0.9.2
\r\nThis release contains many bug fixes, particularly related to\r\nproblems that would require restarting gopls.
\r\nNote about network usage: among these fixes was a\r\nchange to allow network usage when reloading the workspace. Reloading\r\noccurs when a go.mod
, go.sum
, or\r\ngo.work
file changes on disk. In the past, gopls would only\r\nallow network during the first workspace load. This resulted in\r\nconfusing behavior when, for example, a new dependency is added to a\r\ngo.mod
file and gopls could not load it, but loading\r\nsucceeded on restart. See #54069 for more details.
\r\nConfiguration changes
\r\ndirectoryFilters at arbitrary depth
\r\nThe "directoryFilters"
\r\nsetting now supports excluding directories at arbitrary depth, using the\r\n**
operator. (note that for v0.9.2, the default value for\r\nthis setting is still ["-node_modules]"
. In the\r\nnext release, this will change to\r\n["-**/node_modules"]
).
\r\nBug fixes and Performance improvements...
\r\nThis release contains the following notable bug fixes / performance\r\nimprovements:
\r\n\r\n- Additional change optimization - Following up on\r\nthe work to optimize change processing from the v0.9.0\r\nrelease, this release contains additional optimizations that result\r\nin around 50% faster change processing (measured via edits in the\r\nKubernetes repo).
\r\n- Fix for a long-standing memory leak - #53780 fixed a long-standing bug\r\nthat caused gopls to hold on to its initial state, gradually leaking\r\nmemory as state changed during the editing session.
\r\n- Fewer restarts - This release contains many fixes\r\nfor cache-invalidation bugs that would cause gopls to get confused and\r\nrequire restarting. Additionally, see the note at top about enabling the\r\nnetwork when reloading the workspace. We believe we are close to our\r\ngoal that restarting gopls should never be required to fix workspace\r\nerrors. If you encounter such a bug, please file an issue!
\r\n
\r\nA full list of all issues fixed can be found in the gopls/v0.9.2\r\nmilestone.\r\nTo report a new problem, please file a new issue at https://go.dev/issues/new.
\r\nThank you to our contributors!
\r\nThank you for your contribution, @alandonovan
, @antoineco
, @dle8
, @euroelessar
, @findleyr
, @hyangah
, @jamalc
, @mssdvd
, @pjweinbgo
, @rentziass
, and @suzmue
!
\r\nWhat's next
\r\nThe next planned gopls release is v0.10.0. We’re\r\nexcited about features and improvements on the horizon, for example:
\r\n\r\n- Package renaming (#41567)
\r\n- More accurate static-analysis (#48738)
\r\n- Improved support for the new 1.19 doc comment format (#54260)
\r\n- Making it easier to work with
go.work
files (many\r\nissues, for example #53880 or\r\n#54261) \r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n0dda7d6
\r\ngo/pointer: remove replace directive \r\n98f1b4d
\r\ngopls/internal/lsp/cache: check number of orphaned files after\r\nfiltering \r\na260315
\r\ngo/pointer: create submodule \r\n96844c3
\r\ncmd/{guru,callgraph}: stop using go/pointer \r\ncd694d8
\r\ngo/packages: include\r\n"unsafe".GoFiles=["unsafe.go"] \r\n33c741d
\r\ngopls/internal/lsp: add min/max builtin \r\n933c7cc
\r\ninternal/lsp/source: use exact match in import highlighting \r\n5974258
\r\ngopls/internal/lsp: clear vuln diagnostics on config changes \r\nf3faea1
\r\ngo/packages: pass -pgo=off on go1.21 and later \r\n5f74ec7
\r\ninternal/lsp/debug: add links to profiles and GC \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.1&new-version=0.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T10:54:58-07:00",
- "tree_id": "1c3e5ba43d97b43b11ab5af8f10989057ca03a11",
- "url": "https://github.com/runfinch/finch/commit/b192874e2b1c5de1c2148813760cbe65e15d7553"
- },
- "date": 1685728732154,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58134125125,
- "unit": "ns/op\t 0.4850 %cpu_avg/op\t 66.67 %cpu_peak/op\t 58.13 cpu_seconds/op\t1956167680 disk_bytes/op\t 2624736 B/op\t 55202 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24037016708,
- "unit": "ns/op\t 0.3405 %cpu_avg/op\t 37.50 %cpu_peak/op\t 24.04 cpu_seconds/op\t 229376 disk_bytes/op\t 1072240 B/op\t 22796 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 358839680,
- "unit": "ns/op\t 0.4867 %cpu_avg/op\t 15.74 %cpu_peak/op\t 0.3588 cpu_seconds/op\t 5461 disk_bytes/op\t 26064 B/op\t 383 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1331529333,
- "unit": "ns/op\t 0.7573 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.332 cpu_seconds/op\t 20389888 disk_bytes/op\t 66648 B/op\t 1287 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1684340898109,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 61902854333,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4362",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "63.64",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "61.90",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2538090496",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2780200",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "58700",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24044588666,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4177",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.04",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-57344",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1070544",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22764",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 350766139,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.7794",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "16.19",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3507",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25552",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "377",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1332116125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3799",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.332",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20385792",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "68384",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1304",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "05b6b2e7364036a3d30b67ad409f55526cc59ffe",
+ "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 (#405)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.0 to 1.9.1.\r\n\r\nCommits
\r\n\r\nb30aa27
\r\nMerge pull request #1339\r\nfrom xieyuschen/patch-1 \r\n6acd903
\r\nMerge pull request #1376\r\nfrom ozfive/master \r\n105e63f
\r\nMerge pull request #1 from\r\nashmckenzie/ashmckenzie/fix-writer-scanner \r\nc052ba6
\r\nScan text in 64KB chunks \r\ne59b167
\r\nMerge pull request #1372\r\nfrom tommyblue/syslog_different_loglevels \r\n766cfec
\r\nThis commit fixes a potential denial of service vulnerability in\r\nlogrus.Write... \r\n70234da
\r\nAdd instructions to use different log levels for local and syslog \r\na448f82
\r\nMerge pull request #1362\r\nfrom FrancoisWagner/fix-data-race-in-hooks-test-pkg \r\nff07b25
\r\nFix data race in hooks.test package \r\nd8787af
\r\nUse text when shows the logrus output \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.0&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-17T16:59:12-07:00",
+ "tree_id": "4200288d7d0b7a0007ed4d8c2a30b6f3c39a38dc",
+ "url": "https://github.com/runfinch/finch/commit/05b6b2e7364036a3d30b67ad409f55526cc59ffe"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa",
- "message": "build(deps): Bump github.com/docker/docker from 24.0.1+incompatible to 24.0.2+incompatible (#419)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.1+incompatible to 24.0.2+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.2
\r\n24.0.2
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a panic during build when referencing locally tagged images. moby/buildkit#3899,\r\nmoby/moby#45582
\r\n- Fix builds potentially failing with
exit code:\r\n4294967295
when performing many concurrent build stages. moby/moby#45620 \r\n- Fix DNS resolution on Windows ignoring
etc/hosts
\r\n(%WINDIR%\\System32\\Drivers\\etc\\hosts
), including resolution\r\nof localhost
. moby/moby#45562 \r\n- Apply a workaround for a containerd bug that causes concurrent\r\n
docker exec
commands to take significantly longer than\r\nexpected. moby/moby#45625 \r\n- containerd image store: Fix an issue where the image\r\n
Created
field would contain an incorrect value. moby/moby#45623 \r\n- containerd image store: Adjust the output of image pull progress so\r\nthat the output has the same format regardless of whether the containerd\r\nimage store is enabled. moby/moby#45602
\r\n- containerd image store: Switching between the default and containerd\r\nimage store now requires a daemon restart. moby/moby#45616
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n659604f
\r\nMerge pull request #45625\r\nfrom thaJeztah/24.0_backport_serialize_exec_starts_... \r\n6660133
\r\nMerge pull request #45582\r\nfrom thaJeztah/24.0_backport_vendor_buildkit_0.11.7... \r\n67b3563
\r\nMerge pull request #45623\r\nfrom vvoland/c8d-inspect-created-time-24 \r\n7a4ea19
\r\nlibcontainerd: work around exec start bug in c8d \r\nae6e933
\r\nvendor: github.com/moby/buildkit\r\nv0.11.7-0.20230525183624-798ad6b0ce9f \r\n0d9acd2
\r\nc8d/inspect: Fill Created
time if available \r\n37bc639
\r\nMerge pull request #45620\r\nfrom thaJeztah/24.0_backport_update_go_runc_v1.1.0 \r\n04eccf8
\r\nvendor: github.com/containerd/go-runc v1.1.0 \r\n2472277
\r\nMerge pull request #45616\r\nfrom thaJeztah/24.0_backport_lock_in_snapshotter_se... \r\n9d8acb7
\r\nMerge pull request #45612\r\nfrom vvoland/dangling-image-repotagsdigests-test-24 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.1+incompatible&new-version=24.0.2+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T10:55:29-07:00",
- "tree_id": "1f2fcfedd0b5d03454c8a1dc8a59bb02d77cc8bd",
- "url": "https://github.com/runfinch/finch/commit/f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa"
- },
- "date": 1685728772825,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 56259239875,
- "unit": "ns/op\t 0.4040 %cpu_avg/op\t 75.00 %cpu_peak/op\t 56.26 cpu_seconds/op\t1953894400 disk_bytes/op\t 2546304 B/op\t 53400 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24016903250,
- "unit": "ns/op\t 0.5053 %cpu_avg/op\t 33.33 %cpu_peak/op\t 24.02 cpu_seconds/op\t 253952 disk_bytes/op\t 1069128 B/op\t 22721 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 392414361,
- "unit": "ns/op\t 1.067 %cpu_avg/op\t 21.67 %cpu_peak/op\t 0.3924 cpu_seconds/op\t 0 disk_bytes/op\t 27408 B/op\t 416 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1439073542,
- "unit": "ns/op\t 1.114 %cpu_avg/op\t 22.22 %cpu_peak/op\t 1.439 cpu_seconds/op\t 20389888 disk_bytes/op\t 73552 B/op\t 1398 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1684368470605,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 180893819750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2240",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "57.14",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "180.9",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2550149120",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "8156320",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "169974",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24064461500,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3533",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.06",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-32768",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1068584",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22719",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 337115709,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.160",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "19.44",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3371",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "24426",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "361",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1406490458,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4333",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.406",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "72640",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1378",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "25aa324ca324248cf2093af23f205af1b5ae276f",
+ "message": "build(deps): Bump github.com/docker/docker from 23.0.6+incompatible to 24.0.0+incompatible (#406)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.6+incompatible to 24.0.0+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.0
\r\n24.0.0
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nNew
\r\n\r\n- Introduce experimental support for containerd as the content store\r\n(replacing the existing storage drivers). moby/moby#43735,\r\nother\r\nmoby/moby pull requests
\r\n- The
--host
CLI flag now supports a path component in a\r\nssh://
host address, allowing use of an alternate socket\r\npath without configuration on the remote host. docker/cli#4073 \r\n- The
docker info
CLI command now reports a version and\r\nplatform field. docker/cli#4180 \r\n- Introduce the daemon flag
--default-network-opt
to\r\nconfigure options for newly created networks. moby/moby#43197 \r\n- Restrict access to
AF_VSOCK
in the\r\nsocket(2)
family of syscalls in the default seccomp\r\nprofile. moby/moby#44562 \r\n- Introduce support for setting OCI runtime annotations on containers.\r\ndocker/cli#45025,\r\nmoby/moby#45025
\r\n- Alternative runtimes can now be configured in\r\n
daemon.json
, enabling runtime names to be aliased and\r\noptions to be passed. moby/moby#45032 \r\n- The
docker-init
binary will now be discovered in\r\nFHS-compliant libexec directories, in addition to the PATH
.\r\nmoby/moby#45198 \r\n- API: Surface the daemon-level
--no-new-privileges
in\r\nGET /info
. moby/moby#45320 \r\n
\r\nRemoved
\r\n\r\ndocker info
no longer reports\r\nIndexServiceAddress
. docker/cli#4204 \r\n- libnetwork: Remove fallback code for obsolete kernel versions. moby/moby#44684,\r\nmoby/moby#44802
\r\n- libnetwork: Remove unused code related to classic Swarm. moby/moby#44965
\r\n- libnetwork: Remove usage of the
xt_u32
kernel module\r\nfrom encrypted Swarm overlay networks. moby/moby#45281 \r\n- Remove support for buildkit's deprecated
buildinfo
in\r\nfavor of standard provenance attestations. moby/moby#45097 \r\n- Remove the deprecated AUFS and legacy
overlay
storage\r\ndrivers. moby/moby#45342,\r\nmoby/moby# \r\n- Remove the deprecated
overlay2.override_kernel_check
\r\nstorage driver option. moby/moby#45368 \r\n- Remove workarounds for obsolete versions of\r\n
apparmor_parser
from the AppArmor profiles. moby/moby#45500 \r\n- API:
GET /images/json
no longer represents empty\r\nRepoTags and RepoDigests\r\nas<none>:<none>
/<none>@<none>
.\r\nEmpty arrays are be returned instead on API >= 1.43. moby/moby#45068 \r\n
\r\nDeprecated
\r\n\r\n- Deprecate the
--oom-score-adjust
daemon option. moby/moby#45315 \r\n- API: Deprecate the
VirtualSize
field in GET\r\n/images/json
and GET /images/{id}/json
. moby/moby#45346 \r\n
\r\nBug fixes and enhancements
\r\n\r\n- The
docker stack
command no longer validates the\r\nbuild
section of Compose files. docker/cli#4214 \r\n- Fix lingering healthcheck processes after timeout is reached. moby/moby#43739
\r\n- Reduce the overhead of container startup when using the\r\n
overlay2
storage driver. moby/moby#44285 \r\n- API: Handle multiple
before=
and since=
\r\nfilters in GET /images
. moby/moby#44503 \r\n- Fix numerous bugs in the embedded DNS resolver implementation used\r\nby user-defined networks. moby/moby#44664
\r\n- Add
execDuration
field to the map of event attributes.\r\nmoby/moby#45494 \r\n- Swarm-level networks can now be created with the Windows\r\n
internal
, l2bridge
, and nat
\r\ndrivers. moby/swarmkit#3121,\r\nmoby/moby#45291 \r\n
\r\nPackaging updates
\r\n\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n1331b8c
\r\nMerge pull request #45537\r\nfrom thaJeztah/24.0_backport_containerd_binary_1.7.1 \r\n907f037
\r\nupdate containerd binary to v1.7.1 \r\na5b597e
\r\nMerge pull request #45531\r\nfrom rumpl/24.0_backport_fix-empty-auth-pull \r\n8bbfa32
\r\nc8d: The authorizer needs to be set even if AuthConfig is empty \r\n807e415
\r\nMerge pull request #45526\r\nfrom laurazard/backport-classic-builder \r\n8587a1c
\r\nc8d/builder: implement cache \r\n9717369
\r\nc8d: implement classic builder \r\ned0c147
\r\nMerge pull request #45523\r\nfrom thaJeztah/24.0_backport_cleanup_reexec_inits \r\n90be9ab
\r\nMerge pull request #45525\r\nfrom thaJeztah/24.0_backport_c8d_authconfig_default \r\nd73f703
\r\nMerge pull request #45521\r\nfrom thaJeztah/24.0_backport_vendor_distribution_v2... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.6+incompatible&new-version=24.0.0+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-18T00:52:53Z",
+ "tree_id": "e165710972d7cc4dd1908083cdd88af9c0f12942",
+ "url": "https://github.com/runfinch/finch/commit/25aa324ca324248cf2093af23f205af1b5ae276f"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "8635294bcb22207bfdaa3f96756f93ba580ff6e2",
- "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.4 to 3.23.5 (#437)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.4 to 3.23.5.\r\n\r\nCommits
\r\n\r\n32e8a92
\r\nMerge pull request #1475\r\nfrom shirou/feature/fix_potential_leak_on_common_sleep \r\n3e789a4
\r\n[common]: fix potential leak on Sleep. \r\n03ae19b
\r\nMerge pull request #1472\r\nfrom powersj/fix/writeback \r\n194e6e2
\r\nMerge pull request #1467\r\nfrom shirou/dependabot/go_modules/github.com/yusufpa... \r\n5537690
\r\nchore(deps): bump github.com/yusufpapurcu/wmi from 1.2.2 to 1.2.3 \r\n1983d2b
\r\nMerge pull request #1468\r\nfrom shirou/dependabot/go_modules/github.com/stretch... \r\nd71f002
\r\nfix(mem): Correct capitalization of linux writeback \r\nfd69d68
\r\nchore(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.3 \r\n7c610c5
\r\nMerge pull request #1462\r\nfrom cuishuang/master \r\n9aa4e7a
\r\nfix some comments \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.4&new-version=3.23.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T10:55:58-07:00",
- "tree_id": "69bedd1390c4851caf133cb4b095e3d019c0450c",
- "url": "https://github.com/runfinch/finch/commit/8635294bcb22207bfdaa3f96756f93ba580ff6e2"
- },
- "date": 1685728964679,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 57394324750,
- "unit": "ns/op\t 0.5612 %cpu_avg/op\t 62.50 %cpu_peak/op\t 57.39 cpu_seconds/op\t1973747712 disk_bytes/op\t 2590888 B/op\t 54424 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23992495166,
- "unit": "ns/op\t 0.4125 %cpu_avg/op\t 33.33 %cpu_peak/op\t 23.99 cpu_seconds/op\t -339968 disk_bytes/op\t 1069472 B/op\t 22733 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 389422570,
- "unit": "ns/op\t 0.5817 %cpu_avg/op\t 13.94 %cpu_peak/op\t 0.3894 cpu_seconds/op\t 0 disk_bytes/op\t 27253 B/op\t 414 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1453115666,
- "unit": "ns/op\t 1.190 %cpu_avg/op\t 37.50 %cpu_peak/op\t 1.453 cpu_seconds/op\t 3629056 disk_bytes/op\t 74976 B/op\t 1421 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1684371450786,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 86104120833,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3338",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "57.14",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "86.10",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2517471232",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3841320",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "81140",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24054235917,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5103",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "42.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.05",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-28672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069480",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22742",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 347545958,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.620",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "21.67",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3475",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "5461",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25309",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "373",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1378863500,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.062",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.379",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3661824",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "72592",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1360",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9",
+ "message": "build(deps): Bump k8s.io/apimachinery from 0.27.1 to 0.27.2 (#407)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.1 to 0.27.2.\r\n\r\nCommits
\r\n\r\n756e222
\r\nMerge pull request #117298pohly/automated-cherry-pick-of-#117238
\r\nb1123d2
\r\nMerge pull request #117708Jefftree/automated-cherry-pick-of-#117705
\r\n4074a29
\r\nUpdate kube-openapi to fix race \r\ncc852ec
\r\napi: encode NamespacedName with lower case in JSON \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.1&new-version=0.27.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T10:08:14-07:00",
+ "tree_id": "4995bf341e0dfa88b02d82d9034a40802015304b",
+ "url": "https://github.com/runfinch/finch/commit/e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0a381f17ea2602bc3b19f9b2101da9e3a589f6d3",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#432)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.5 to 2.9.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.7
\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\nv2.9.6
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n913e9e5
\r\nv2.9.7 \r\n07fc3a0
\r\nfix race when multiple defercleanups are called in goroutines \r\n9620623
\r\nv2.9.6 \r\n8ba8b22
\r\nensure report directory tests work when run in parallel \r\n0ac65de
\r\nfix: create parent directory before report files (#1212) \r\n4c2ae23
\r\nFix return value in index.md (#1208) \r\n3e39231
\r\nBump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.5&new-version=2.9.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T12:03:20-07:00",
- "tree_id": "c1136794cddf05c4b049eb5ff3f0d828045c9e18",
- "url": "https://github.com/runfinch/finch/commit/0a381f17ea2602bc3b19f9b2101da9e3a589f6d3"
- },
- "date": 1685733809970,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 56993507000,
- "unit": "ns/op\t 0.3851 %cpu_avg/op\t 40.00 %cpu_peak/op\t 56.99 cpu_seconds/op\t1973469184 disk_bytes/op\t 2570920 B/op\t 53959 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24001292541,
- "unit": "ns/op\t 0.5169 %cpu_avg/op\t 50.00 %cpu_peak/op\t 24.00 cpu_seconds/op\t 167936 disk_bytes/op\t 1070648 B/op\t 22766 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 362383333,
- "unit": "ns/op\t 0.9090 %cpu_avg/op\t 19.05 %cpu_peak/op\t 0.3623 cpu_seconds/op\t 5461 disk_bytes/op\t 26352 B/op\t 392 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1366922042,
- "unit": "ns/op\t 0.4375 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.367 cpu_seconds/op\t 3612672 disk_bytes/op\t 68888 B/op\t 1339 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1684775581516,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 65102236375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4893",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "65.10",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2512056320",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2905680",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "61582",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 25482304125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4793",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "25.48",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-8192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1131160",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "24135",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 369071028,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.1122",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "3.704",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3690",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26402",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "393",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1312303250,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.9644",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "36.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.312",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3624960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "66160",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1277",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb",
+ "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.1 to 1.9.2 (#408)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.1 to 1.9.2.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.1&new-version=1.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T10:08:34-07:00",
+ "tree_id": "f2d2b81654b4af29a2aed139fba3d507787ce928",
+ "url": "https://github.com/runfinch/finch/commit/0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb"
+ },
+ "date": 1684775853786,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 62832548000,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4479",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "53.85",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "62.83",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2535944192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2811848",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "59435",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24917876875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4061",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "41.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.92",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "32768",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1105472",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "23553",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 376179125,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.9786",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "24.77",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3761",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26552",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "399",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1435575375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.8930",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "28.57",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.436",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "74344",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1409",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "80513c7785a6da4ae09d9c871acaf180f5d68f2c",
+ "message": "build(deps): Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#409)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.6 to 1.27.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.7
\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n99a29d5
\r\nv1.27.7 \r\n05c1bc6
\r\nupdate gitignore \r\n57054d5
\r\nfix: gcustom.MakeMatcher accepts nil as actual value (#666) \r\n7cadcf6
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663) \r\nb524839
\r\nBump golang.org/x/net from 0.9.0 to 0.10.0 (#662) \r\n5f44694
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661) \r\n05dc99a
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#657) \r\n3a033d1
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#658) \r\na19238f
\r\nReplace deprecated NewGomegaWithT with NewWithT (#659) \r\n29ed041
\r\nBump golang.org/x/net from 0.8.0 to 0.9.0 (#656) \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.6&new-version=1.27.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T10:08:53-07:00",
+ "tree_id": "e2fcfcda12bb1ccd87c7073b3933f3ac027af425",
+ "url": "https://github.com/runfinch/finch/commit/80513c7785a6da4ae09d9c871acaf180f5d68f2c"
+ },
+ "date": 1684776127164,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 64072702916,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4488",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "64.07",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2538119168",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2872128",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "60802",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 25247371042,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4278",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "25.25",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "102400",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1121880",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "23936",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 410213555,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.797",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "30.56",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.4102",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "28586",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "437",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1388379792,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.235",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.388",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3579904",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "71320",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1348",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "bb1cab229c787752615eb00e74f240c4a4e0e23d",
+ "message": "build(deps): Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.1+incompatible (#413)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.0+incompatible to 24.0.1+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.1
\r\n24.0.1
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nRemoved
\r\n\r\n- Remove CLI completions for storage drivers removed in the 24.0 major\r\nrelease. docker/cli#4302
\r\n
\r\nBug fixes and enhancements
\r\n\r\n- Fix an issue where DNS query NXDOMAIN replies from external servers\r\nwere forwarded to the client as SERVFAIL. moby/moby#45573
\r\n- Fix an issue where
docker pull --platform
would report\r\nNo such image
regarding another tag pointing to the same\r\nimage. moby/moby#45562 \r\n- Fix an issue where insecure registry configuration would be\r\nforgotten during config reload. moby/moby#45571
\r\n- containerd-storage: Fix an issue where images which have no layers\r\nwould not be listed in
docker images -a
moby/moby#45588 \r\n- API: Fix an issue where
GET /images/{id}/json
would\r\nreturn null
instead of empty RepoTags
and\r\nRepoDigests
. moby/moby#45564 \r\n- API: Fix an issue where
POST /commit
did not accept an\r\nempty request body. moby/moby#45568 \r\n
\r\nPackaging updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n463850e
\r\nMerge pull request #45588\r\nfrom vvoland/c8d-layerless-24 \r\n47a3dad
\r\nc8d/list: Show layerless images \r\na0bc3eb
\r\nMerge pull request #45571\r\nfrom thaJeztah/24.0_backport_fix_insecure_registrie... \r\n922b6aa
\r\nMerge pull request #45568\r\nfrom corhere/backport-24.0/fix-empty-container-decode \r\n0e605cf
\r\nMerge pull request #45573\r\nfrom thaJeztah/24.0_backport_fix_dns_servfail \r\n878c417
\r\nMerge pull request #45560\r\nfrom crazy-max/24.0_backport_fix-worker-id \r\n654e80a
\r\nMerge pull request #45570\r\nfrom crazy-max/24.0_backport_ci-bin-image-distribute \r\n0869b08
\r\nlibnetwork: just forward the external DNS response \r\n3467ba6
\r\nreorder load funcs to match newServiceConfig()'s order \r\nf9b886c
\r\nadd mirror to daemon reload test for insecure registries \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.0+incompatible&new-version=24.0.1+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-22T17:48:50Z",
+ "tree_id": "92f651eed9097478240daebf4cbf33ab7a695969",
+ "url": "https://github.com/runfinch/finch/commit/bb1cab229c787752615eb00e74f240c4a4e0e23d"
+ },
+ "date": 1684778010598,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 66175046958,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4271",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "62.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "66.17",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2476941312",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2958312",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "62769",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24043387000,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4011",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.04",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-28241920",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1071472",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22789",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 372383778,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8292",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.50",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3723",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26378",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "396",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1363868542,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.8620",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.364",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "69248",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1338",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "b83cc21e6082eeff076e035dfb4cad152fb5508c",
+ "message": "ci: Finch .pkg installer builder (#416)\n\n**Description of changes:**\r\n\r\n- This PR contains the Finch .pkg builder tool.\r\n- The .pkg builder tool can be used by GitHub action to generate and\r\nnotarize macOS .pkg installer.\r\n- The old update to S3 workflow is extended with the functionality to\r\nbuild Finch, build .pkg and test .pkg. It can be used as a scheduled job\r\nfor nightly main branch build as well to detect release issue earlier\r\nbesides cut a new release.\r\n- The old release installer workflow(test installer) is removed because\r\nits scope is moved to the integrated workflow.\r\n\r\nThis is an initial tool check in, Readme and integrated workflow to\r\nchain existing workflows to upload installer to release and publish to\r\nHomebrew will come later.\r\n\r\n**Testing done:**\r\nHave tested the updated workflow and tool on this branch, and can\r\nsuccessfully generate final installer and test it.\r\nAction test ref:\r\nhttps://github.com/runfinch/finch/actions/runs/5077161329\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-26T10:40:35-07:00",
+ "tree_id": "f4ee320ee326400884c15fa51a6485739e2ed39b",
+ "url": "https://github.com/runfinch/finch/commit/b83cc21e6082eeff076e035dfb4cad152fb5508c"
+ },
+ "date": 1685123080313,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 62002138916,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4386",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "66.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "62.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2434990080",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2783248",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "58785",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23875910708,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4210",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.88",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "11087872",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1063976",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22618",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 356385737,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.7036",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.81",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3563",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25797",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "382",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1482135708,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.198",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.482",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3629056",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "75728",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1449",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "ningziwe@amazon.com",
+ "name": "Ziwen Ning",
+ "username": "ningziwen"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "6a8ca1a559dada6ed320c9454fbc3229446a0a40",
+ "message": "fix: sort volume args in DOCKER_COMPAT mode (#417)\n\nIssue #, if available:\r\nhttps://github.com/runfinch/finch/issues/418\r\n\r\n*Description of changes:*\r\nSort volume args in DOCKER_COMPAT mode\r\n\r\n*Testing done:*\r\nUnit tests and new e2e tests.\r\nhttps://github.com/runfinch/common-tests/pull/66\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
+ "timestamp": "2023-05-26T21:10:30Z",
+ "tree_id": "7d92a6ddbd268a0ecf2c8acb172cadc75b283dc2",
+ "url": "https://github.com/runfinch/finch/commit/6a8ca1a559dada6ed320c9454fbc3229446a0a40"
+ },
+ "date": 1685135678685,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 61109075166,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.5363",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "61.11",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2531868672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2739688",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "57794",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23822496458,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4148",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "29.99",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.82",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "25346048",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1062800",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22585",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 350237528,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.100",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "14.76",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3502",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25189",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "375",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1324873542,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4685",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "20.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.325",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20406272",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67056",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1297",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0bcdd18b12b889931d3b7928eedf76c1ec9fac5a",
+ "message": "ci: Rename action and set up nightly build (#421)\n\n*Description of changes:*\r\nRename the action.\r\nSet up the installer build and test every day at 9 am UTC (2 am PDT) to\r\nvalidate latest main branch.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-26T16:03:45-07:00",
+ "tree_id": "ab82ce6b1d2aa83593bb648181463b6fe7840863",
+ "url": "https://github.com/runfinch/finch/commit/0bcdd18b12b889931d3b7928eedf76c1ec9fac5a"
+ },
+ "date": 1685142468148,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58189551041,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4748",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.19",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2534551552",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2616344",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55010",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23904738791,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4035",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.90",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "737280",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1065064",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22643",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 388213541,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5318",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.33",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3882",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "5461",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "27282",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "413",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1304016458,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4994",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.304",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3596288",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "66616",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1279",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "ac18046e70efc0e1e9fe11a30457f6f945df2a23",
+ "message": "build(deps): Bump github.com/runfinch/common-tests from 0.6.5 to 0.7.0 (#420)\n\nBumps\r\n[github.com/runfinch/common-tests](https://github.com/runfinch/common-tests)\r\nfrom 0.6.5 to 0.7.0.\r\n\r\nRelease notes
\r\nSourced from github.com/runfinch/common-tests's\r\nreleases.
\r\n\r\nv0.7.0
\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/runfinch/common-tests's\r\nchangelog.
\r\n\r\n0.7.0\r\n(2023-05-26)
\r\nFeatures
\r\n\r\n- Tests for bind mounts (#66)\r\n(22a7f7e)
\r\n- verify the result of finch inspect has State.Status and State.Error\r\n(#64)\r\n(b761a7a)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.9.2 to\r\n2.9.5 (#62)\r\n(0bd0901)
\r\n- deps: bump github.com/onsi/gomega from 1.27.5 to\r\n1.27.6 (#54)\r\n(72120b5)
\r\n- deps: bump github.com/onsi/gomega from 1.27.6 to\r\n1.27.7 (#65)\r\n(590a984)
\r\n
\r\n0.6.4\r\n(2023-04-06)
\r\nBug Fixes
\r\n\r\n- better handling of concurrent http servers (#57)\r\n(0ae6182)
\r\n
\r\n0.6.3\r\n(2023-03-27)
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/gomega from 1.27.2 to\r\n1.27.4 (#48)\r\n(f113e7b)
\r\n- deps: bump github.com/onsi/gomega from 1.27.4 to\r\n1.27.5 (#52)\r\n(bd056e7)
\r\n
\r\n0.6.2\r\n(2023-03-16)
\r\nBug Fixes
\r\n\r\n- Fix tests to match nerdctl 1.2.1 outputs (#50)\r\n(3d9b4f4)
\r\n
\r\nBuild System or External Dependencies
\r\n\r\n- deps: bump github.com/onsi/ginkgo/v2 from 2.8.3 to\r\n2.8.4 (#41)\r\n(a9476c1)
\r\n- deps: bump github.com/onsi/gomega from 1.27.1 to\r\n1.27.2 (#40)\r\n(e8fc71a)
\r\n
\r\n0.6.1\r\n(2023-02-28)
\r\nBug Fixes
\r\n\r\n- Switch from
nc -l
to nginx
in run\r\n-p/--publish
test (7a6a6c3) \r\n
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\nafbbd97
\r\nchore(main): release 0.7.0 (#63) \r\n22a7f7e
\r\nfeat: Tests for bind mounts (#66) \r\n590a984
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#65) \r\nb761a7a
\r\nfeat: verify the result of finch inspect has State.Status and\r\nState.Error (#64) \r\n72120b5
\r\nbuild(deps): bump github.com/onsi/gomega from 1.27.5 to 1.27.6 (#54) \r\n0bd0901
\r\nbuild(deps): bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.5 (#62) \r\n882cd1e
\r\ntest: Functional test for PS command (#17) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/runfinch/common-tests&package-manager=go_modules&previous-version=0.6.5&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-26T16:30:20-07:00",
+ "tree_id": "5e6cfb42519bed0dde2505d4b43e33fd56d4cb40",
+ "url": "https://github.com/runfinch/finch/commit/ac18046e70efc0e1e9fe11a30457f6f945df2a23"
+ },
+ "date": 1685144063322,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 60622561542,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4602",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "71.43",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "60.62",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2549374976",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2722432",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "57398",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23975648375,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4158",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.98",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "16027648",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1068520",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22725",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 360948361,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8981",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.10",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3609",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25816",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "386",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1312138792,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.3660",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.10",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.312",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "-4567040",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67656",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1291",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "f67ff9668457057514a351819cdc75fb8c6b2d46",
+ "message": "ci: Add release automation action (#424)\n\n*Description of changes:*\r\nThis PR added a new passive action subscribe to main branch new tag\r\ncreation.\r\nNew tag creation means Finch has a new release, the new workflow will\r\ntrigger build pkg, upload pkg and homebrew release on the latest tag.\r\n\r\n*Testing done:*\r\nThis is a new action and has cross branch/tag involved, needs some\r\nexperiment on main branch after check in.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-29T11:41:28-07:00",
+ "tree_id": "4e53e8ed0bd63d943da86e7680d75e44738efbcb",
+ "url": "https://github.com/runfinch/finch/commit/f67ff9668457057514a351819cdc75fb8c6b2d46"
+ },
+ "date": 1685385929759,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 59222706583,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3855",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "62.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "59.22",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2543312896",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2656888",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55926",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23862741625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5184",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "66.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.86",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "32006144",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1064240",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22629",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 359128139,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.339",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "21.67",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3591",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25626",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "382",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1292237416,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.1373",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.47",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.292",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "65464",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1259",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "c4c23a95a139a21cc7208071e3c3b688389f6071",
+ "message": "ci: Upload dependency source code along with the installers (#426)\n\n*Description of changes:*\r\nCurrently we need to upload the dependency source code manually.\r\nMake this along with the installer upload.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-29T18:22:38-07:00",
+ "tree_id": "e65c4af30a6b25e4a09ab3d7849c3b667d9212b8",
+ "url": "https://github.com/runfinch/finch/commit/c4c23a95a139a21cc7208071e3c3b688389f6071"
+ },
+ "date": 1685410004376,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 61964372834,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4134",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "61.96",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2531565568",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2778680",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "58676",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24002455958,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4373",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-73728",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1067312",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22685",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 343225264,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6481",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "11.57",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3432",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "5592405",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25186",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "372",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1328667167,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.8924",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.329",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3596288",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67920",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1299",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "d933d11373c4c9a94137dfad78a8542d2c7be327",
+ "message": "ci: Integrate existing workflows into release-automation (#430)\n\n*Description of changes:*\r\nReuse existing workflows to release-automation.\r\nAdded input param to reuse workflow.\r\nRollout only build & test installer as initial.\r\n\r\n*Testing done:*\r\nHave tested the action in this branch\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-30T16:44:42-07:00",
+ "tree_id": "87f62fce80fd69e8450d0621c833ac32529c621e",
+ "url": "https://github.com/runfinch/finch/commit/d933d11373c4c9a94137dfad78a8542d2c7be327"
+ },
+ "date": 1685490523568,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 59423656750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4761",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "85.71",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "59.42",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2530586624",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2676424",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "56362",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23873176834,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3975",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.87",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "458752",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1063416",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22590",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 352180403,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.346",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.76",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3521",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25461",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "376",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1396065958,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5610",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.396",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "71760",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1358",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "d08952e8b257a74d6d6a6f9da8949d3fd748ab23",
+ "message": "ci: Integrate the other workflows into release-automation (#431)\n\n*Description of changes:*\r\nEnabled the rest workflow for release automation.\r\nCheck in before next release after it is validated.\r\nAfter this PR is checked in, release-please PR merge will automatically\r\ntrigger installer build, test, upload installers and dependency source\r\ncode to release and cut Homebrew PR.\r\n\r\n*Testing done:*\r\nWait next release\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-31T09:55:51-07:00",
+ "tree_id": "0d7b69664ef0d583147c2b84c591c63f802cdf43",
+ "url": "https://github.com/runfinch/finch/commit/d08952e8b257a74d6d6a6f9da8949d3fd748ab23"
+ },
+ "date": 1685552406730,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 63012348000,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4615",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "55.56",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "63.01",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2534215680",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2819536",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "59623",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 27240375250,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4598",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "27.24",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "4427776",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1229600",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "25748",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 373338278,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.081",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "17.78",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3733",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26709",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "397",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1472416667,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.9267",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.472",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "74808",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1428",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "6a67f0cfb0a3a1da438779f4faa04048f25d7dde",
+ "message": "build(deps): Bump github.com/lima-vm/lima from 0.15.1 to 0.16.0 (#428)\n\nBumps [github.com/lima-vm/lima](https://github.com/lima-vm/lima) from\r\n0.15.1 to 0.16.0.\r\n\r\nRelease notes
\r\nSourced from github.com/lima-vm/lima's\r\nreleases.
\r\n\r\nv0.16.0
\r\nThis release adds an experimental support for the user-v2
\r\nnetwork driver: limactl\r\nstart template://experimental/net-user-v2
.\r\nThe user-v2
network driver enables VM-to-VM networking\r\nwithout the root privilege on the host.\r\nThis should be useful for simulating multi-node Kubernetes clusters on a\r\nlaptop.
\r\nThis release also fixes a relatively minor vulnerability CVE-2023-32684.\r\nThis vulnerability is very unlikely to be exploitable as long\r\nas you are using the official templates of Lima.
\r\nChanges
\r\n\r\nlimactl
CLI:\r\n\r\n- (Experimental) Add
limactl snapshot\r\n(apply|create|delete|list)
commands (#1054,\r\nthanks to @afbjorklund
) \r\n- Escape only the value of env variables in
limactl shell
\r\n(#1501,\r\nthanks to @sam-berning
) \r\n
\r\n \r\n- YAML:\r\n\r\n
\r\n- Documents:\r\n\r\n
\r\n- Network:\r\n
\r\n- (Experimental) Add
user-v2
\r\nnetwork driver to enable VM-to-VM networking without root (#1383,\r\nthanks to @balajiv113
) \r\n
\r\n \r\n- nerdctl:\r\n\r\n
\r\n- Templates:\r\n
\r\n- AlmaLinux: update to 9.2 (#1550)
\r\n- Alpine: update to 3.18 and fix Rosetta support (#1560,\r\n#1580,\r\nthanks to
@jandubois
) \r\n- Arch Linux: update to 20230515.150700 (#1550)
\r\n- Fedora: update to 38 (#1502,\r\nthanks to
@cpach
) \r\n- Nomad: update to v0.9.4 (#1552)
\r\n- Rocky Linux: update to 9.2 and 8.8 (#1550,\r\n#1591)
\r\n- Ubuntu: update to 23.04 (#1550)
\r\n
\r\n \r\n- Misc:\r\n
\r\n- Improve disk efficiency (#1411)\r\nfor caches (#1544)
\r\n
\r\n \r\n
\r\nFull changes: https://github.com/lima-vm/lima/milestone/34?closed=1\r\nThanks to @afbjorklund
@balajiv113
@bumpsoo063
@cpach
@jandubois
@pendo324
@sam-berning
\r\nUsage
\r\n[macOS]$ limactl start\r\n...\r\nINFO[0029] READY. Run `lima` to open the shell.\r\n[macOS]$ lima uname\r\nLinux\r\n
\r\n
\r\nThe binaries were built automatically on GitHub Actions.\r\nThe build log is available for 90 days: https://github.com/lima-vm/lima/actions/runs/5118006806
\r\nThe sha256sum of the SHA256SUMS file itself is\r\n2062c42688128dca55331fc1a8f4841cbf41ed9dd11867d48decdf6880afde87
\r\n.
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n01dbd4d
\r\nMerge pull request from GHSA-f7qw-jj9c-rpq9 \r\nbc1bdb8
\r\nProhibit using a differential disk as a base disk \r\nbfa5bab
\r\nqemu: explicitly pass the basedisk format to QEMU \r\nefe1c47
\r\npkg/qemu/imgutil: add Info fields \r\n3dbc08c
\r\nMerge pull request #1592\r\nfrom afbjorklund/man-prefix \r\n703d69f
\r\nRemove the build directories from the manpages \r\ne7aa4ff
\r\nMerge pull request #1591\r\nfrom AkihiroSuda/dev \r\nb9ea964
\r\nMerge pull request #1590\r\nfrom balajiv113/usernet-default \r\n5656d1a
\r\ntemplates: update Rocky Linux to 8.8 \r\n5c0955d
\r\ntemplates: update CentOS Stream 9 to 20230523.0 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/lima-vm/lima&package-manager=go_modules&previous-version=0.15.1&new-version=0.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-05-31T10:22:24-07:00",
+ "tree_id": "556e3a36fb0bb31a7a51202de5d9db3ef55c2b48",
+ "url": "https://github.com/runfinch/finch/commit/6a67f0cfb0a3a1da438779f4faa04048f25d7dde"
+ },
+ "date": 1685554077983,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 70264795958,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3997",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "71.43",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "70.26",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2539876352",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "3120376",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "66457",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23954638333,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4083",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "62.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.95",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "741376",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1068896",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22721",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 372378916,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.636",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "27.61",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3723",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "5461",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26384",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "396",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1377558917,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.115",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.378",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "71272",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1348",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "vsiravara@gmail.com",
+ "name": "Vishwas Siravara",
+ "username": "vsiravar"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9",
+ "message": "ci: Manually update submodule and add cleanup (#434)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\n\r\n- Add clean up in ci for finch version command\r\n- Add submodule updates to finch core\r\n\r\n*Testing done:*\r\n\r\nYes\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
+ "timestamp": "2023-05-31T14:02:33-07:00",
+ "tree_id": "c0224254ae7d46efe2947ff93511a51659565aaa",
+ "url": "https://github.com/runfinch/finch/commit/7ba69ce25b7100c8cbc36066abcb6b6a7f0632e9"
+ },
+ "date": 1685567199347,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 63763963667,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3759",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "88.89",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "63.76",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2554966016",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2847616",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "60267",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23913614208,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4998",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "60.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.91",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-28672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1062776",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22583",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 362507306,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8517",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.33",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3624",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "13653",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26426",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "388",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1393565083,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5869",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.394",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "73016",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1370",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "1c09471be3b9d214e4a4ef805980588f6e322b68",
+ "message": "ci: Add git clean before build and test (#435)\n\n*Description of changes:*\r\nIt append .modified postfix when build or test.\r\nAdd git clean to remove the dirty state.\r\nAdd git status to log when it happens\r\n\r\n*Testing done:*\r\nTODO with this current run.\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-05-31T15:47:26-07:00",
+ "tree_id": "d93daef2907cf471ae341cb360413598172833f1",
+ "url": "https://github.com/runfinch/finch/commit/1c09471be3b9d214e4a4ef805980588f6e322b68"
+ },
+ "date": 1685573494810,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 61959578833,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4169",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "61.96",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2540748800",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2775776",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "58628",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24942337917,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3478",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.94",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "3649536",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1107400",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "23611",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 360831653,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6250",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "10.00",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3608",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25992",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "386",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1388015916,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5876",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.388",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20385792",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "72176",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1359",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "975c4ee42c1529673a51382c62c4096dc663f80a",
+ "message": "fix: Stop lima process in postinstall and uninstall (#438)\n\n*Description of changes:*\r\nUnstopped lima process can prevent new installation and finch vm init\r\nsuccessfully.\r\nAdd kill limactl to post-installation and uninstall script to fix the\r\nissue.\r\n\r\n*Testing done:*\r\nTested locally.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-06-01T14:49:30-07:00",
+ "tree_id": "3aac93a3e14d71a61ea11cc9f58d98df0cd2d549",
+ "url": "https://github.com/runfinch/finch/commit/975c4ee42c1529673a51382c62c4096dc663f80a"
+ },
+ "date": 1685656413592,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 63110303167,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4526",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "60.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "63.11",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2536759296",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2823640",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "59698",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23903201084,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5218",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.90",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "4452352",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1064312",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22621",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 352293570,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.328",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "23.61",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3522",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25200",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "375",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1369190084,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.2321",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "16.08",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.369",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "68416",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1328",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "41898282+github-actions[bot]@users.noreply.github.com",
+ "name": "github-actions[bot]",
+ "username": "github-actions[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "e9551b50010deb43ad26dcd3671ec2f246e84ed6",
+ "message": "build(deps): Bump submodules (#439)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
+ "timestamp": "2023-06-01T17:08:31-07:00",
+ "tree_id": "1d44ab428cafa8801c73cf50dbe39a71ea5aa9bb",
+ "url": "https://github.com/runfinch/finch/commit/e9551b50010deb43ad26dcd3671ec2f246e84ed6"
+ },
+ "date": 1685666518162,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 63629323000,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4108",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "63.64",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "63.63",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2536259584",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2843712",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "60167",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23881799625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3939",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "66.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.88",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-24576",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1065560",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22660",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 356840806,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "2.543",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3568",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25640",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "379",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1357839084,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6649",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.358",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "69064",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1331",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "7660d08f4e9e93468d0495aeafa2cf2de302227e",
+ "message": "ci: Preserve link when copy from build (#441)\n\n*Description of changes:*\r\nAdd 'p' flag to preserve original symbolic link when copying the build\r\nartifact\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
+ "timestamp": "2023-06-01T17:53:28-07:00",
+ "tree_id": "4fdbf68f34050cd3f3b5126a3b4960af6cf63267",
+ "url": "https://github.com/runfinch/finch/commit/7660d08f4e9e93468d0495aeafa2cf2de302227e"
+ },
+ "date": 1685669540666,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 63425315334,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4150",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "63.43",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1961365504",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2834072",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "59945",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23992429875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4683",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.99",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "2035712",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069640",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22740",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 345730597,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.598",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3457",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "24917",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "369",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1474023750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.9861",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.474",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3596288",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "75704",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1440",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "vsiravara@gmail.com",
+ "name": "Vishwas Siravara",
+ "username": "vsiravar"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0aa4c5cc36c4d44e431a8c13004607990bdb2bf4",
+ "message": "ci: Update lima download url (#440)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nLIMA_URL in `finch` is stale\r\nhttps://github.com/runfinch/finch/blob/main/Makefile#L38. Keeping it\r\nconsistent with finch-core.\r\n*Testing done:*\r\n\r\nLocally. \r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Vishwas Siravara ",
+ "timestamp": "2023-06-01T17:50:59-07:00",
+ "tree_id": "92182604e47f2ec0133a0b2a79ec61950bc73185",
+ "url": "https://github.com/runfinch/finch/commit/0aa4c5cc36c4d44e431a8c13004607990bdb2bf4"
+ },
+ "date": 1685669541642,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58254449125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4543",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.25",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1967153152",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2624560",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55189",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24103065958,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4281",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "42.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.10",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "19660800",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1072416",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22807",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 368869778,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.131",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "21.65",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3688",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "27306",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26253",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "393",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1390187417,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.9979",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.390",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "13881344",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "71872",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1359",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "5f626bd8b7a021c95595aade5b34d7076968b88b",
+ "message": "ci: Change -rp to capital (#442)\n\n*Description of changes:*\r\nChange p to capital case\r\n\r\n*Testing done:*\r\nTested with the runner\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.",
+ "timestamp": "2023-06-01T18:10:52-07:00",
+ "tree_id": "3738d19bf5c514ac962bb1ff576dcedec89e59b8",
+ "url": "https://github.com/runfinch/finch/commit/5f626bd8b7a021c95595aade5b34d7076968b88b"
+ },
+ "date": 1685671975402,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58943559292,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4052",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "70.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.94",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1934385152",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2647720",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55721",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24004892916,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4692",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-290816",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1071256",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22786",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 368665333,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.1323",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "4.762",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3686",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26514",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "393",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1342566875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.445",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "55.56",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.343",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3624960",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "69368",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1326",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "b192874e2b1c5de1c2148813760cbe65e15d7553",
+ "message": "build(deps): Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#443)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.1\r\nto 0.9.3.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.9.3
\r\nMove fast and fix things...golang/go#54395
\r\nAs always, thank you for filing issues!
\r\ngopls/v0.9.2
\r\nThis release contains many bug fixes, particularly related to\r\nproblems that would require restarting gopls.
\r\nNote about network usage: among these fixes was a\r\nchange to allow network usage when reloading the workspace. Reloading\r\noccurs when a go.mod
, go.sum
, or\r\ngo.work
file changes on disk. In the past, gopls would only\r\nallow network during the first workspace load. This resulted in\r\nconfusing behavior when, for example, a new dependency is added to a\r\ngo.mod
file and gopls could not load it, but loading\r\nsucceeded on restart. See #54069 for more details.
\r\nConfiguration changes
\r\ndirectoryFilters at arbitrary depth
\r\nThe "directoryFilters"
\r\nsetting now supports excluding directories at arbitrary depth, using the\r\n**
operator. (note that for v0.9.2, the default value for\r\nthis setting is still ["-node_modules]"
. In the\r\nnext release, this will change to\r\n["-**/node_modules"]
).
\r\nBug fixes and Performance improvements...
\r\nThis release contains the following notable bug fixes / performance\r\nimprovements:
\r\n\r\n- Additional change optimization - Following up on\r\nthe work to optimize change processing from the v0.9.0\r\nrelease, this release contains additional optimizations that result\r\nin around 50% faster change processing (measured via edits in the\r\nKubernetes repo).
\r\n- Fix for a long-standing memory leak - #53780 fixed a long-standing bug\r\nthat caused gopls to hold on to its initial state, gradually leaking\r\nmemory as state changed during the editing session.
\r\n- Fewer restarts - This release contains many fixes\r\nfor cache-invalidation bugs that would cause gopls to get confused and\r\nrequire restarting. Additionally, see the note at top about enabling the\r\nnetwork when reloading the workspace. We believe we are close to our\r\ngoal that restarting gopls should never be required to fix workspace\r\nerrors. If you encounter such a bug, please file an issue!
\r\n
\r\nA full list of all issues fixed can be found in the gopls/v0.9.2\r\nmilestone.\r\nTo report a new problem, please file a new issue at https://go.dev/issues/new.
\r\nThank you to our contributors!
\r\nThank you for your contribution, @alandonovan
, @antoineco
, @dle8
, @euroelessar
, @findleyr
, @hyangah
, @jamalc
, @mssdvd
, @pjweinbgo
, @rentziass
, and @suzmue
!
\r\nWhat's next
\r\nThe next planned gopls release is v0.10.0. We’re\r\nexcited about features and improvements on the horizon, for example:
\r\n\r\n- Package renaming (#41567)
\r\n- More accurate static-analysis (#48738)
\r\n- Improved support for the new 1.19 doc comment format (#54260)
\r\n- Making it easier to work with
go.work
files (many\r\nissues, for example #53880 or\r\n#54261) \r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n0dda7d6
\r\ngo/pointer: remove replace directive \r\n98f1b4d
\r\ngopls/internal/lsp/cache: check number of orphaned files after\r\nfiltering \r\na260315
\r\ngo/pointer: create submodule \r\n96844c3
\r\ncmd/{guru,callgraph}: stop using go/pointer \r\ncd694d8
\r\ngo/packages: include\r\n"unsafe".GoFiles=["unsafe.go"] \r\n33c741d
\r\ngopls/internal/lsp: add min/max builtin \r\n933c7cc
\r\ninternal/lsp/source: use exact match in import highlighting \r\n5974258
\r\ngopls/internal/lsp: clear vuln diagnostics on config changes \r\nf3faea1
\r\ngo/packages: pass -pgo=off on go1.21 and later \r\n5f74ec7
\r\ninternal/lsp/debug: add links to profiles and GC \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.1&new-version=0.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T10:54:58-07:00",
+ "tree_id": "1c3e5ba43d97b43b11ab5af8f10989057ca03a11",
+ "url": "https://github.com/runfinch/finch/commit/b192874e2b1c5de1c2148813760cbe65e15d7553"
+ },
+ "date": 1685728732154,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58134125125,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4850",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "66.67",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.13",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1956167680",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2624736",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55202",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24037016708,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3405",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.04",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "229376",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1072240",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22796",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 358839680,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.4867",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.74",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3588",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "5461",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26064",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "383",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1331529333,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.7573",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.332",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "66648",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1287",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa",
+ "message": "build(deps): Bump github.com/docker/docker from 24.0.1+incompatible to 24.0.2+incompatible (#419)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.1+incompatible to 24.0.2+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.2
\r\n24.0.2
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a panic during build when referencing locally tagged images. moby/buildkit#3899,\r\nmoby/moby#45582
\r\n- Fix builds potentially failing with
exit code:\r\n4294967295
when performing many concurrent build stages. moby/moby#45620 \r\n- Fix DNS resolution on Windows ignoring
etc/hosts
\r\n(%WINDIR%\\System32\\Drivers\\etc\\hosts
), including resolution\r\nof localhost
. moby/moby#45562 \r\n- Apply a workaround for a containerd bug that causes concurrent\r\n
docker exec
commands to take significantly longer than\r\nexpected. moby/moby#45625 \r\n- containerd image store: Fix an issue where the image\r\n
Created
field would contain an incorrect value. moby/moby#45623 \r\n- containerd image store: Adjust the output of image pull progress so\r\nthat the output has the same format regardless of whether the containerd\r\nimage store is enabled. moby/moby#45602
\r\n- containerd image store: Switching between the default and containerd\r\nimage store now requires a daemon restart. moby/moby#45616
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n659604f
\r\nMerge pull request #45625\r\nfrom thaJeztah/24.0_backport_serialize_exec_starts_... \r\n6660133
\r\nMerge pull request #45582\r\nfrom thaJeztah/24.0_backport_vendor_buildkit_0.11.7... \r\n67b3563
\r\nMerge pull request #45623\r\nfrom vvoland/c8d-inspect-created-time-24 \r\n7a4ea19
\r\nlibcontainerd: work around exec start bug in c8d \r\nae6e933
\r\nvendor: github.com/moby/buildkit\r\nv0.11.7-0.20230525183624-798ad6b0ce9f \r\n0d9acd2
\r\nc8d/inspect: Fill Created
time if available \r\n37bc639
\r\nMerge pull request #45620\r\nfrom thaJeztah/24.0_backport_update_go_runc_v1.1.0 \r\n04eccf8
\r\nvendor: github.com/containerd/go-runc v1.1.0 \r\n2472277
\r\nMerge pull request #45616\r\nfrom thaJeztah/24.0_backport_lock_in_snapshotter_se... \r\n9d8acb7
\r\nMerge pull request #45612\r\nfrom vvoland/dangling-image-repotagsdigests-test-24 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.1+incompatible&new-version=24.0.2+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T10:55:29-07:00",
+ "tree_id": "1f2fcfedd0b5d03454c8a1dc8a59bb02d77cc8bd",
+ "url": "https://github.com/runfinch/finch/commit/f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa"
+ },
+ "date": 1685728772825,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 56259239875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4040",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "75.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "56.26",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1953894400",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2546304",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "53400",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24016903250,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5053",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.02",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "253952",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069128",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22721",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 392414361,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.067",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "21.67",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3924",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "27408",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "416",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1439073542,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.114",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.439",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "73552",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1398",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "8635294bcb22207bfdaa3f96756f93ba580ff6e2",
+ "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.4 to 3.23.5 (#437)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.4 to 3.23.5.\r\n\r\nCommits
\r\n\r\n32e8a92
\r\nMerge pull request #1475\r\nfrom shirou/feature/fix_potential_leak_on_common_sleep \r\n3e789a4
\r\n[common]: fix potential leak on Sleep. \r\n03ae19b
\r\nMerge pull request #1472\r\nfrom powersj/fix/writeback \r\n194e6e2
\r\nMerge pull request #1467\r\nfrom shirou/dependabot/go_modules/github.com/yusufpa... \r\n5537690
\r\nchore(deps): bump github.com/yusufpapurcu/wmi from 1.2.2 to 1.2.3 \r\n1983d2b
\r\nMerge pull request #1468\r\nfrom shirou/dependabot/go_modules/github.com/stretch... \r\nd71f002
\r\nfix(mem): Correct capitalization of linux writeback \r\nfd69d68
\r\nchore(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.3 \r\n7c610c5
\r\nMerge pull request #1462\r\nfrom cuishuang/master \r\n9aa4e7a
\r\nfix some comments \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.4&new-version=3.23.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T10:55:58-07:00",
+ "tree_id": "69bedd1390c4851caf133cb4b095e3d019c0450c",
+ "url": "https://github.com/runfinch/finch/commit/8635294bcb22207bfdaa3f96756f93ba580ff6e2"
+ },
+ "date": 1685728964679,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 57394324750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.5612",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "62.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "57.39",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1973747712",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2590888",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "54424",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23992495166,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4125",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.99",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-339968",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069472",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22733",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 389422570,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5817",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "13.94",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3894",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "27253",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "414",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1453115666,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.190",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.453",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3629056",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "74976",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1421",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0a381f17ea2602bc3b19f9b2101da9e3a589f6d3",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#432)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.5 to 2.9.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.7
\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\nv2.9.6
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.7
\r\nFixes
\r\n\r\n- fix race when multiple defercleanups are called in goroutines\r\n[07fc3a0]
\r\n
\r\n2.9.6
\r\nFixes
\r\n\r\n- fix: create parent directory before report files (#1212)\r\n[0ac65de]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202)\r\n[3e39231]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n913e9e5
\r\nv2.9.7 \r\n07fc3a0
\r\nfix race when multiple defercleanups are called in goroutines \r\n9620623
\r\nv2.9.6 \r\n8ba8b22
\r\nensure report directory tests work when run in parallel \r\n0ac65de
\r\nfix: create parent directory before report files (#1212) \r\n4c2ae23
\r\nFix return value in index.md (#1208) \r\n3e39231
\r\nBump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#1202) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.5&new-version=2.9.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T12:03:20-07:00",
+ "tree_id": "c1136794cddf05c4b049eb5ff3f0d828045c9e18",
+ "url": "https://github.com/runfinch/finch/commit/0a381f17ea2602bc3b19f9b2101da9e3a589f6d3"
+ },
+ "date": 1685733809970,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 56993507000,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3851",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "56.99",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1973469184",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2570920",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "53959",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24001292541,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5169",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "167936",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1070648",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22766",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 362383333,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.9090",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "19.05",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3623",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "5461",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26352",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "392",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1366922042,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.4375",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.367",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "68888",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1339",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336",
+ "message": "build(deps): Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#429)\n\nBumps [github.com/stretchr/testify](https://github.com/stretchr/testify)\r\nfrom 1.8.2 to 1.8.4.\r\n\r\nCommits
\r\n\r\nf97607b
\r\nCreate GitHub release when new release tag is pushed (#1354) \r\n4c93d8f
\r\nEqualExportedValues: Handle nested pointer, slice and map fields (#1379) \r\n4b2f4d2
\r\nadd EventuallyWithT assertion (#1264) \r\nb3106d7
\r\nallow testing for functional options (#1023) \r\n437071b
\r\nassert: fix error message formatting for NotContains (#1362) \r\nc5fc9d6
\r\nCompare public elements of struct (#1309) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/stretchr/testify&package-manager=go_modules&previous-version=1.8.2&new-version=1.8.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-02T14:07:49-07:00",
+ "tree_id": "6315646cec92c8216dfe2441c6ffe9eaf37346ad",
+ "url": "https://github.com/runfinch/finch/commit/0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336",
- "message": "build(deps): Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#429)\n\nBumps [github.com/stretchr/testify](https://github.com/stretchr/testify)\r\nfrom 1.8.2 to 1.8.4.\r\n\r\nCommits
\r\n\r\nf97607b
\r\nCreate GitHub release when new release tag is pushed (#1354) \r\n4c93d8f
\r\nEqualExportedValues: Handle nested pointer, slice and map fields (#1379) \r\n4b2f4d2
\r\nadd EventuallyWithT assertion (#1264) \r\nb3106d7
\r\nallow testing for functional options (#1023) \r\n437071b
\r\nassert: fix error message formatting for NotContains (#1362) \r\nc5fc9d6
\r\nCompare public elements of struct (#1309) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/stretchr/testify&package-manager=go_modules&previous-version=1.8.2&new-version=1.8.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-02T14:07:49-07:00",
- "tree_id": "6315646cec92c8216dfe2441c6ffe9eaf37346ad",
- "url": "https://github.com/runfinch/finch/commit/0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336"
- },
- "date": 1685740306678,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 57031538875,
- "unit": "ns/op\t 0.4392 %cpu_avg/op\t 50.00 %cpu_peak/op\t 57.03 cpu_seconds/op\t1935048704 disk_bytes/op\t 2570840 B/op\t 53985 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23990308292,
- "unit": "ns/op\t 0.4905 %cpu_avg/op\t 50.00 %cpu_peak/op\t 23.99 cpu_seconds/op\t -16384 disk_bytes/op\t 1068760 B/op\t 22722 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 352115306,
- "unit": "ns/op\t 1.032 %cpu_avg/op\t 24.07 %cpu_peak/op\t 0.3521 cpu_seconds/op\t 0 disk_bytes/op\t 25877 B/op\t 378 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1553577959,
- "unit": "ns/op\t 1.208 %cpu_avg/op\t 37.50 %cpu_peak/op\t 1.554 cpu_seconds/op\t 3612672 disk_bytes/op\t 79768 B/op\t 1525 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1685740306678,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 57031538875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4392",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "57.03",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1935048704",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2570840",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "53985",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23990308292,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4905",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "50.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "23.99",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-16384",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1068760",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22722",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 352115306,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.032",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "24.07",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3521",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25877",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "378",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1553577959,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.208",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.554",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "79768",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1525",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "cnkevin@amazon.com",
+ "name": "Kevin Li",
+ "username": "KevinLiAWS"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "da91f87369e5fde221b8edbac374954e71dae947",
+ "message": "fix: Add cleanup script to Makefile (#444)\n\n*Description of changes:*\r\nRemove files under other directories besides _output, and kill running\r\nprocesses for network, lima and qemu.\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
+ "timestamp": "2023-06-02T20:08:20-07:00",
+ "tree_id": "030696b83e1faf45fa5355cc74459ba8273e20e2",
+ "url": "https://github.com/runfinch/finch/commit/da91f87369e5fde221b8edbac374954e71dae947"
},
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "da91f87369e5fde221b8edbac374954e71dae947",
- "message": "fix: Add cleanup script to Makefile (#444)\n\n*Description of changes:*\r\nRemove files under other directories besides _output, and kill running\r\nprocesses for network, lima and qemu.\r\n\r\n*Testing done:*\r\nTested locally\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-06-02T20:08:20-07:00",
- "tree_id": "030696b83e1faf45fa5355cc74459ba8273e20e2",
- "url": "https://github.com/runfinch/finch/commit/da91f87369e5fde221b8edbac374954e71dae947"
- },
- "date": 1685761932614,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58092269625,
- "unit": "ns/op\t 0.4816 %cpu_avg/op\t 57.14 %cpu_peak/op\t 58.09 cpu_seconds/op\t1961717760 disk_bytes/op\t 2619952 B/op\t 55091 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23998801583,
- "unit": "ns/op\t 0.5525 %cpu_avg/op\t 45.45 %cpu_peak/op\t 24.00 cpu_seconds/op\t 122880 disk_bytes/op\t 1067208 B/op\t 22684 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 347376875,
- "unit": "ns/op\t 1.347 %cpu_avg/op\t 20.63 %cpu_peak/op\t 0.3473 cpu_seconds/op\t 0 disk_bytes/op\t 25154 B/op\t 372 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1372047959,
- "unit": "ns/op\t 1.780 %cpu_avg/op\t 45.45 %cpu_peak/op\t 1.372 cpu_seconds/op\t 3629056 disk_bytes/op\t 68784 B/op\t 1337 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1685761932614,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58092269625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4816",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "57.14",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.09",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1961717760",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2619952",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55091",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23998801583,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5525",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "122880",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1067208",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22684",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 347376875,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.347",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "20.63",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3473",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "25154",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "372",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1372047959,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.780",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.372",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3629056",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "68784",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1337",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "18236774d971065dec28d1db204e1f697d418a9b",
+ "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 (#446)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.2 to 1.9.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.2&new-version=1.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-05T11:15:01-07:00",
+ "tree_id": "70db57c1775154e572df0c514794b3324c7001f6",
+ "url": "https://github.com/runfinch/finch/commit/18236774d971065dec28d1db204e1f697d418a9b"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "18236774d971065dec28d1db204e1f697d418a9b",
- "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 (#446)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.2 to 1.9.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.2&new-version=1.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-05T11:15:01-07:00",
- "tree_id": "70db57c1775154e572df0c514794b3324c7001f6",
- "url": "https://github.com/runfinch/finch/commit/18236774d971065dec28d1db204e1f697d418a9b"
- },
- "date": 1685989139738,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 62565040042,
- "unit": "ns/op\t 0.4151 %cpu_avg/op\t 62.50 %cpu_peak/op\t 62.56 cpu_seconds/op\t1576263680 disk_bytes/op\t 2803232 B/op\t 59237 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 25112187542,
- "unit": "ns/op\t 0.4992 %cpu_avg/op\t 45.45 %cpu_peak/op\t 25.11 cpu_seconds/op\t 20099072 disk_bytes/op\t 1113912 B/op\t 23744 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 372674278,
- "unit": "ns/op\t 1.026 %cpu_avg/op\t 12.50 %cpu_peak/op\t 0.3726 cpu_seconds/op\t 176128 disk_bytes/op\t 26821 B/op\t 398 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1376942333,
- "unit": "ns/op\t 0.8792 %cpu_avg/op\t 30.00 %cpu_peak/op\t 1.377 cpu_seconds/op\t 3612672 disk_bytes/op\t 71720 B/op\t 1349 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1685989139738,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 62565040042,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4151",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "62.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "62.56",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1576263680",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2803232",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "59237",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 25112187542,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4992",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "25.11",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "20099072",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1113912",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "23744",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 372674278,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.026",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "12.50",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3726",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "176128",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26821",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "398",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1376942333,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.8792",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.377",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3612672",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "71720",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1349",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "a415e3ef7b2741853bf352b915c4100c77600619",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.7 to 2.10.0 (#449)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.7 to 2.10.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.10.0
\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.7&new-version=2.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-08T12:05:08-07:00",
+ "tree_id": "7d0426eaf21e581716ccaa1d2220d852432ff817",
+ "url": "https://github.com/runfinch/finch/commit/a415e3ef7b2741853bf352b915c4100c77600619"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "a415e3ef7b2741853bf352b915c4100c77600619",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.7 to 2.10.0 (#449)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.7 to 2.10.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.10.0
\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.10.0
\r\nFeatures
\r\n\r\n- feat(ginkgo/generators): add --tags flag (#1216)\r\n[a782a77]\r\nadds a new --tags flag to ginkgo generate
\r\n
\r\nFixes
\r\n\r\n- Fix broken link of MIGRATING_TO_V2.md (#1217)\r\n[548d78e]
\r\n
\r\nMaintenance
\r\n\r\n- Bump golang.org/x/tools from 0.9.1 to 0.9.3 (#1215)\r\n[2b76a5e]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.7&new-version=2.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-08T12:05:08-07:00",
- "tree_id": "7d0426eaf21e581716ccaa1d2220d852432ff817",
- "url": "https://github.com/runfinch/finch/commit/a415e3ef7b2741853bf352b915c4100c77600619"
- },
- "date": 1686251347269,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 56854493708,
- "unit": "ns/op\t 0.4467 %cpu_avg/op\t 55.56 %cpu_peak/op\t 56.85 cpu_seconds/op\t1977962496 disk_bytes/op\t 2569656 B/op\t 53931 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24042810875,
- "unit": "ns/op\t 0.5703 %cpu_avg/op\t 44.44 %cpu_peak/op\t 24.04 cpu_seconds/op\t 1978368 disk_bytes/op\t 1069816 B/op\t 22739 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 380375195,
- "unit": "ns/op\t 0.8102 %cpu_avg/op\t 15.28 %cpu_peak/op\t 0.3803 cpu_seconds/op\t 0 disk_bytes/op\t 27344 B/op\t 404 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1333188084,
- "unit": "ns/op\t 0.6593 %cpu_avg/op\t 22.22 %cpu_peak/op\t 1.333 cpu_seconds/op\t 20389888 disk_bytes/op\t 67512 B/op\t 1307 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1686251347269,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 56854493708,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4467",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "55.56",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "56.85",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1977962496",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2569656",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "53931",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24042810875,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.5703",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.04",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1978368",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069816",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22739",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 380375195,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8102",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "15.28",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3803",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "27344",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "404",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1333188084,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.6593",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.333",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67512",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1307",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "96fc8d09a051b2ead932e6eef064624b1a842b66",
+ "message": "build(deps): Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#448)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.7 to 1.27.8.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.8
\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n492512f
\r\nv1.27.8 \r\n096f392
\r\nHaveExactElement should not call FailureMessage if a submatcher returned\r\nan e... \r\n8884bee
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.7&new-version=1.27.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-12T10:30:23-07:00",
+ "tree_id": "10f049c03ae10bc0244c31448d03f26a23429098",
+ "url": "https://github.com/runfinch/finch/commit/96fc8d09a051b2ead932e6eef064624b1a842b66"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "96fc8d09a051b2ead932e6eef064624b1a842b66",
- "message": "build(deps): Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#448)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.7 to 1.27.8.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.8
\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.8
\r\nFixes
\r\n\r\n- HaveExactElement should not call FailureMessage if a submatcher\r\nreturned an error [096f392]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669)\r\n[8884bee]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n492512f
\r\nv1.27.8 \r\n096f392
\r\nHaveExactElement should not call FailureMessage if a submatcher returned\r\nan e... \r\n8884bee
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.7&new-version=1.27.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-12T10:30:23-07:00",
- "tree_id": "10f049c03ae10bc0244c31448d03f26a23429098",
- "url": "https://github.com/runfinch/finch/commit/96fc8d09a051b2ead932e6eef064624b1a842b66"
- },
- "date": 1686591264735,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 59191317334,
- "unit": "ns/op\t 0.4202 %cpu_avg/op\t 45.45 %cpu_peak/op\t 59.19 cpu_seconds/op\t1962905600 disk_bytes/op\t 2660080 B/op\t 55994 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24033565542,
- "unit": "ns/op\t 0.4518 %cpu_avg/op\t 42.86 %cpu_peak/op\t 24.03 cpu_seconds/op\t 17158144 disk_bytes/op\t 1069904 B/op\t 22744 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 386023208,
- "unit": "ns/op\t 1.181 %cpu_avg/op\t 26.48 %cpu_peak/op\t 0.3860 cpu_seconds/op\t 0 disk_bytes/op\t 27205 B/op\t 410 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1474228750,
- "unit": "ns/op\t 0.9267 %cpu_avg/op\t 30.00 %cpu_peak/op\t 1.474 cpu_seconds/op\t 20389888 disk_bytes/op\t 75648 B/op\t 1439 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1686591264735,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 59191317334,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4202",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "45.45",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "59.19",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1962905600",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2660080",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55994",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24033565542,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4518",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "42.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.03",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "17158144",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069904",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22744",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 386023208,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.181",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "26.48",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3860",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "27205",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "410",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1474228750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.9267",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "30.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.474",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "75648",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1439",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "113054166+sam-berning@users.noreply.github.com",
+ "name": "Sam Berning",
+ "username": "sam-berning"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "9f4b87c616a0329cb6c8ff27db003766ef0bba2c",
+ "message": "test: mocks LimaUser to fix race condition in support bundle unit tests (#450)\n\nIssue #, if available: https://github.com/runfinch/finch/issues/447\r\n\r\n*Description of changes:*\r\n\r\nThere was a race condition in the unit tests for `support-bundle\r\ngenerate` caused by Lima's `osutil.LimaUser` not being thread-safe. I\r\ndon't think there's really a need to make it thread-safe, so I think\r\nit's easier to just wrap and mock it for the unit tests, which I've done\r\nhere.\r\n\r\n*Testing done:*\r\n\r\n```\r\nmake test-unit\r\n```\r\n\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Sam Berning ",
+ "timestamp": "2023-06-13T10:50:41-07:00",
+ "tree_id": "ae8b6aa66838b1b01fd822604932582730de8710",
+ "url": "https://github.com/runfinch/finch/commit/9f4b87c616a0329cb6c8ff27db003766ef0bba2c"
},
- {
- "commit": {
- "author": {
- "email": "113054166+sam-berning@users.noreply.github.com",
- "name": "Sam Berning",
- "username": "sam-berning"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "9f4b87c616a0329cb6c8ff27db003766ef0bba2c",
- "message": "test: mocks LimaUser to fix race condition in support bundle unit tests (#450)\n\nIssue #, if available: https://github.com/runfinch/finch/issues/447\r\n\r\n*Description of changes:*\r\n\r\nThere was a race condition in the unit tests for `support-bundle\r\ngenerate` caused by Lima's `osutil.LimaUser` not being thread-safe. I\r\ndon't think there's really a need to make it thread-safe, so I think\r\nit's easier to just wrap and mock it for the unit tests, which I've done\r\nhere.\r\n\r\n*Testing done:*\r\n\r\n```\r\nmake test-unit\r\n```\r\n\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Sam Berning ",
- "timestamp": "2023-06-13T10:50:41-07:00",
- "tree_id": "ae8b6aa66838b1b01fd822604932582730de8710",
- "url": "https://github.com/runfinch/finch/commit/9f4b87c616a0329cb6c8ff27db003766ef0bba2c"
- },
- "date": 1686678880155,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 58733504834,
- "unit": "ns/op\t 0.5438 %cpu_avg/op\t 55.56 %cpu_peak/op\t 58.73 cpu_seconds/op\t1974431744 disk_bytes/op\t 2648312 B/op\t 55716 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 23995766833,
- "unit": "ns/op\t 0.3896 %cpu_avg/op\t 44.44 %cpu_peak/op\t 24.00 cpu_seconds/op\t 32043008 disk_bytes/op\t 1069056 B/op\t 22741 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 372189819,
- "unit": "ns/op\t 0.2451 %cpu_avg/op\t 8.333 %cpu_peak/op\t 0.3721 cpu_seconds/op\t 0 disk_bytes/op\t 26725 B/op\t 397 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1444301458,
- "unit": "ns/op\t 0.5877 %cpu_avg/op\t 36.36 %cpu_peak/op\t 1.444 cpu_seconds/op\t 3629056 disk_bytes/op\t 74952 B/op\t 1412 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1686678880155,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 58733504834,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.5438",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "55.56",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "58.73",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1974431744",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2648312",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "55716",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 23995766833,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3896",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.00",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "32043008",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1069056",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22741",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 372189819,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.2451",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "8.333",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3721",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26725",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "397",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1444301458,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5877",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "36.36",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.444",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3629056",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "74952",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1412",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "fef6e772c28429ef14068702c1dfd8e9fec2dea1",
+ "message": "build(deps): Bump golang.org/x/crypto from 0.9.0 to 0.10.0 (#451)\n\nBumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.9.0\r\nto 0.10.0.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.9.0&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-16T10:41:24-07:00",
+ "tree_id": "b3101d1bb452fb552751813bab329f79af64f4ab",
+ "url": "https://github.com/runfinch/finch/commit/fef6e772c28429ef14068702c1dfd8e9fec2dea1"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "fef6e772c28429ef14068702c1dfd8e9fec2dea1",
- "message": "build(deps): Bump golang.org/x/crypto from 0.9.0 to 0.10.0 (#451)\n\nBumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.9.0\r\nto 0.10.0.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.9.0&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-16T10:41:24-07:00",
- "tree_id": "b3101d1bb452fb552751813bab329f79af64f4ab",
- "url": "https://github.com/runfinch/finch/commit/fef6e772c28429ef14068702c1dfd8e9fec2dea1"
- },
- "date": 1686937522853,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 60372971250,
- "unit": "ns/op\t 0.4209 %cpu_avg/op\t 42.86 %cpu_peak/op\t 60.37 cpu_seconds/op\t1972834304 disk_bytes/op\t 2717376 B/op\t 57292 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24076345791,
- "unit": "ns/op\t 0.3645 %cpu_avg/op\t 37.50 %cpu_peak/op\t 24.08 cpu_seconds/op\t 1753088 disk_bytes/op\t 1071304 B/op\t 22769 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 361987208,
- "unit": "ns/op\t 0.5497 %cpu_avg/op\t 14.07 %cpu_peak/op\t 0.3619 cpu_seconds/op\t 0 disk_bytes/op\t 26178 B/op\t 387 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1316209958,
- "unit": "ns/op\t 0.8444 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.316 cpu_seconds/op\t 20373504 disk_bytes/op\t 67248 B/op\t 1291 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1686937522853,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 60372971250,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4209",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "42.86",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "60.37",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1972834304",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2717376",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "57292",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24076345791,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3645",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "37.50",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.08",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "1753088",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1071304",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22769",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 361987208,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.5497",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "14.07",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3619",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26178",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "387",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1316209958,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.8444",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.316",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20373504",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67248",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1291",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "f7e091670fb2ac5377423e72f98aa8be33aa41c8",
+ "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 (#456)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.10.0 to 2.11.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.11.0
\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n5c32b2a
\r\nv2.11.0 \r\nd6bba86
\r\nProgrammatic focus is no longer overwrriten by CLI filters \r\n4a70a38
\r\nBump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218) \r\n97eda4d
\r\nBump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.10.0&new-version=2.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-27T11:58:39-07:00",
+ "tree_id": "38d4500d4339a269988a2d4b9bfda964b2951484",
+ "url": "https://github.com/runfinch/finch/commit/f7e091670fb2ac5377423e72f98aa8be33aa41c8"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "f7e091670fb2ac5377423e72f98aa8be33aa41c8",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 (#456)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.10.0 to 2.11.0.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.11.0
\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.11.0
\r\nIn prior versions of Ginkgo specs the CLI filter flags (e.g.\r\n--focus
, --label-filter
) would\r\noverride any programmatic focus. This behavior has proved\r\nsurprising and confusing in at least the following ways:
\r\n\r\n- users cannot combine programmatic filters and CLI filters to more\r\nefficiently select subsets of tests
\r\n- CLI filters can override programmatic focus on CI systems resulting\r\nin an exit code of 0 despite the presence of (incorrectly!) committed\r\nfocused specs.
\r\n
\r\nGoing forward Ginkgo will AND all programmatic and CLI filters.\r\nMoreover, the presence of any programmatic focused tests will always\r\nresult in a non-zero exit code.
\r\nThis change is technically a change in Ginkgo's external contract and\r\nmay require some users to make changes to successfully adopt.\r\nSpecifically: it's possible some users were intentionally using CLI\r\nfilters to override programmatic focus. If this is you please open an\r\nissue so we can explore solutions to the underlying problem you are\r\ntrying to solve.
\r\nFixes
\r\n\r\n- Programmatic focus is no longer overwrriten by CLI filters\r\n[d6bba86]
\r\n
\r\nMaintenance
\r\n\r\n- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218)\r\n[4a70a38]
\r\n- Bump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219)\r\n[97eda4d]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n5c32b2a
\r\nv2.11.0 \r\nd6bba86
\r\nProgrammatic focus is no longer overwrriten by CLI filters \r\n4a70a38
\r\nBump github.com/onsi/gomega from 1.27.7 to 1.27.8 (#1218) \r\n97eda4d
\r\nBump golang.org/x/sys from 0.8.0 to 0.9.0 (#1219) \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.10.0&new-version=2.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-27T11:58:39-07:00",
- "tree_id": "38d4500d4339a269988a2d4b9bfda964b2951484",
- "url": "https://github.com/runfinch/finch/commit/f7e091670fb2ac5377423e72f98aa8be33aa41c8"
- },
- "date": 1687892819863,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 168203129750,
- "unit": "ns/op\t 0.2420 %cpu_avg/op\t 71.43 %cpu_peak/op\t 168.2 cpu_seconds/op\t1987342336 disk_bytes/op\t 7445480 B/op\t 157749 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24052233750,
- "unit": "ns/op\t 0.4112 %cpu_avg/op\t 60.00 %cpu_peak/op\t 24.05 cpu_seconds/op\t 4464640 disk_bytes/op\t 1067864 B/op\t 22717 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 375722014,
- "unit": "ns/op\t 0.8186 %cpu_avg/op\t 18.50 %cpu_peak/op\t 0.3757 cpu_seconds/op\t 0 disk_bytes/op\t 26530 B/op\t 399 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1347888083,
- "unit": "ns/op\t 1.629 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.348 cpu_seconds/op\t 20389888 disk_bytes/op\t 67920 B/op\t 1317 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1687892819863,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 168203129750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2420",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "71.43",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "168.2",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1987342336",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "7445480",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "157749",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24052233750,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4112",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "60.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.05",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "4464640",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1067864",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22717",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 375722014,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.8186",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "18.50",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3757",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26530",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "399",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1347888083,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.629",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "25.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.348",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "67920",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1317",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "e321f1dc607626a7f65b33e0a0f503d8c856b1f2",
+ "message": "build(deps): Bump golang.org/x/tools from 0.9.3 to 0.10.0 (#455)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.3\r\nto 0.10.0.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.10.0
\r\nThis release contains initial support for standalone packages and\r\npackage renaming. Please see below for more details.
\r\nWe are also changing our release policy to better align with\r\nsemver.
\r\nSupport changes
\r\nThis version of gopls contains changes to our release policy,\r\ndeprecates support for some older Go versions, and deprecates support\r\nfor several experimental features.
\r\nNew release policy
\r\nAs described in golang/go#55267,\r\nwe are tightening our release policy to better follow semver, increase\r\nstability, and reduce release-related toil. Significant new features\r\nwill only be introduced in *.*.0
patch versions, and\r\nsubsequent patch releases will consist only of bugfixes. For example,\r\nthis version (v0.10.0) introduces several new features, described below.\r\nSubsequent v0.10.* releases will contain only bugfixes.
\r\nFinal support for Go 1.13-1.15
\r\nConsistent with the above release policy and our stated support\r\nwindow, the v0.10.*
minor version will be the final set\r\nof releases to support being used with Go 1.13-1.15. See golang/go#52982\r\nfor details.
\r\nGopls will pop up a warning if it resolves a version of the\r\ngo
command that is older than 1.16. Starting with\r\ngopls@v0.11.0, gopls will cease to function when used with a\r\ngo
command with a version older than 1.16.
\r\nDeprecated experimental features
\r\nThe following experimental features are deprecated, and will be\r\nremoved in gopls@v0.11.0:
\r\n\r\n\r\n- experimentalWorkspaceModule
golang/go#52897
go.work
\r\nfiles. See our documentation\r\nfor information on how to use go.work
files to work on\r\nmultiple modules. \r\n\r\n- experimentalWatchedFileDelay
golang/go#55268
workspace/didChangeWatchedFiles
\r\nnotifications. \r\n\r\n- experimentalUseInvalidMetadata
golang/go#54180
\r\n
\r\nNew Features
\r\nSupport for "standalone packages"
\r\nGopls now recognizes certain files as "standalone main\r\npackages", meaning they should be interpreted as main packages\r\nconsisting of a single file. To do this, gopls looks for packages named\r\nmain
containing a single build constraint that matches one\r\nof the tags configured by the new standaloneTags
\r\nsetting.
\r\nThis enables cross references and other features when working in a\r\nfile such as the example below that contains a //go:build\r\nignore
build constraint.
\r\n\r\n(preview) Support for package renaming
\r\ngolang/go#41567
golang/go#56184.
\r\nTo rename a package, initiate a rename request on the package clause\r\nof a file in the package:\r\n
\r\nWhen this renaming is applied, gopls will adjust other package files\r\naccordingly, rename the package directory, and update import paths\r\nreferencing the current package or any nested package in the renamed\r\ndirectory.\r\n
\r\nMethod information in hover
\r\nHovering over a type now shows a summary of its methods.
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n7261b32
\r\ngopls/internal/regtest: fix goimports on windows when using\r\nvendoring \r\n41e4e56
\r\ngopls/internal/lsp/source/completion: ensuring completion\r\ncompleteness \r\nac29460
\r\ngo/ssa: fix bug in writeSignature on external functions \r\n3b62e7e
\r\ngo/ssa: use core type within (*builder).receiver \r\nf394d45
\r\ngopls/internal/lsp/cache: compute xrefs and methodsets\r\nasynchronously \r\n27dbf85
\r\ngo.mod: update golang.org/x dependencies \r\nc6c9830
\r\ngo/types/objectpath: memoize scope lookup in objectpath.Encoder \r\n0245e1d
\r\ngopls/internal/regtest/codelens: set GOWORK=off for go mod vendor \r\n85be888
\r\ngo/analysis/passes/defers: add analyser for defer mistake \r\nc43232f
\r\ncmd/digraph: improve examples using go list, mod \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.3&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-29T18:05:02-04:00",
+ "tree_id": "15d367907740e52ecdec13591f1472991cc10c5e",
+ "url": "https://github.com/runfinch/finch/commit/e321f1dc607626a7f65b33e0a0f503d8c856b1f2"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "e321f1dc607626a7f65b33e0a0f503d8c856b1f2",
- "message": "build(deps): Bump golang.org/x/tools from 0.9.3 to 0.10.0 (#455)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.9.3\r\nto 0.10.0.\r\n\r\nRelease notes
\r\nSourced from golang.org/x/tools's\r\nreleases.
\r\n\r\ngopls/v0.10.0
\r\nThis release contains initial support for standalone packages and\r\npackage renaming. Please see below for more details.
\r\nWe are also changing our release policy to better align with\r\nsemver.
\r\nSupport changes
\r\nThis version of gopls contains changes to our release policy,\r\ndeprecates support for some older Go versions, and deprecates support\r\nfor several experimental features.
\r\nNew release policy
\r\nAs described in golang/go#55267,\r\nwe are tightening our release policy to better follow semver, increase\r\nstability, and reduce release-related toil. Significant new features\r\nwill only be introduced in *.*.0
patch versions, and\r\nsubsequent patch releases will consist only of bugfixes. For example,\r\nthis version (v0.10.0) introduces several new features, described below.\r\nSubsequent v0.10.* releases will contain only bugfixes.
\r\nFinal support for Go 1.13-1.15
\r\nConsistent with the above release policy and our stated support\r\nwindow, the v0.10.*
minor version will be the final set\r\nof releases to support being used with Go 1.13-1.15. See golang/go#52982\r\nfor details.
\r\nGopls will pop up a warning if it resolves a version of the\r\ngo
command that is older than 1.16. Starting with\r\ngopls@v0.11.0, gopls will cease to function when used with a\r\ngo
command with a version older than 1.16.
\r\nDeprecated experimental features
\r\nThe following experimental features are deprecated, and will be\r\nremoved in gopls@v0.11.0:
\r\n\r\n\r\n- experimentalWorkspaceModule
golang/go#52897
go.work
\r\nfiles. See our documentation\r\nfor information on how to use go.work
files to work on\r\nmultiple modules. \r\n\r\n- experimentalWatchedFileDelay
golang/go#55268
workspace/didChangeWatchedFiles
\r\nnotifications. \r\n\r\n- experimentalUseInvalidMetadata
golang/go#54180
\r\n
\r\nNew Features
\r\nSupport for "standalone packages"
\r\nGopls now recognizes certain files as "standalone main\r\npackages", meaning they should be interpreted as main packages\r\nconsisting of a single file. To do this, gopls looks for packages named\r\nmain
containing a single build constraint that matches one\r\nof the tags configured by the new standaloneTags
\r\nsetting.
\r\nThis enables cross references and other features when working in a\r\nfile such as the example below that contains a //go:build\r\nignore
build constraint.
\r\n\r\n(preview) Support for package renaming
\r\ngolang/go#41567
golang/go#56184.
\r\nTo rename a package, initiate a rename request on the package clause\r\nof a file in the package:\r\n
\r\nWhen this renaming is applied, gopls will adjust other package files\r\naccordingly, rename the package directory, and update import paths\r\nreferencing the current package or any nested package in the renamed\r\ndirectory.\r\n
\r\nMethod information in hover
\r\nHovering over a type now shows a summary of its methods.
\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n7261b32
\r\ngopls/internal/regtest: fix goimports on windows when using\r\nvendoring \r\n41e4e56
\r\ngopls/internal/lsp/source/completion: ensuring completion\r\ncompleteness \r\nac29460
\r\ngo/ssa: fix bug in writeSignature on external functions \r\n3b62e7e
\r\ngo/ssa: use core type within (*builder).receiver \r\nf394d45
\r\ngopls/internal/lsp/cache: compute xrefs and methodsets\r\nasynchronously \r\n27dbf85
\r\ngo.mod: update golang.org/x dependencies \r\nc6c9830
\r\ngo/types/objectpath: memoize scope lookup in objectpath.Encoder \r\n0245e1d
\r\ngopls/internal/regtest/codelens: set GOWORK=off for go mod vendor \r\n85be888
\r\ngo/analysis/passes/defers: add analyser for defer mistake \r\nc43232f
\r\ncmd/digraph: improve examples using go list, mod \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.9.3&new-version=0.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-29T18:05:02-04:00",
- "tree_id": "15d367907740e52ecdec13591f1472991cc10c5e",
- "url": "https://github.com/runfinch/finch/commit/e321f1dc607626a7f65b33e0a0f503d8c856b1f2"
- },
- "date": 1688076585893,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 67288065500,
- "unit": "ns/op\t 0.4231 %cpu_avg/op\t 75.00 %cpu_peak/op\t 67.29 cpu_seconds/op\t2008190976 disk_bytes/op\t 2993152 B/op\t 63555 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24093308042,
- "unit": "ns/op\t 0.3496 %cpu_avg/op\t 33.33 %cpu_peak/op\t 24.09 cpu_seconds/op\t -8192 disk_bytes/op\t 1071224 B/op\t 22772 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 375161180,
- "unit": "ns/op\t 1.500 %cpu_avg/op\t 27.79 %cpu_peak/op\t 0.3751 cpu_seconds/op\t 0 disk_bytes/op\t 26904 B/op\t 401 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1389256833,
- "unit": "ns/op\t 2.003 %cpu_avg/op\t 40.00 %cpu_peak/op\t 1.389 cpu_seconds/op\t 3637248 disk_bytes/op\t 71304 B/op\t 1348 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1688076585893,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 67288065500,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.4231",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "75.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "67.29",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "2008190976",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2993152",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "63555",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24093308042,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3496",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "33.33",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.09",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "-8192",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1071224",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22772",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 375161180,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.500",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "27.79",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3751",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26904",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "401",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1389256833,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "2.003",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.389",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3637248",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "71304",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1348",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "55906459+austinvazquez@users.noreply.github.com",
+ "name": "Austin Vazquez",
+ "username": "austinvazquez"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7",
+ "message": "chore: Update Go linter to v1.53.3 and resolve errors (#459)\n\nIssue #, if available:\r\nN/A\r\n\r\n*Description of changes:*\r\nUpdates golangci-lint in CI to v1.53.3 release and resolves linting\r\nerrors for unused arguments.\r\n\r\n*Testing done:*\r\n```make lint```\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Austin Vazquez ",
+ "timestamp": "2023-06-29T19:13:36-04:00",
+ "tree_id": "b8b267781610164eb5bd66888fce1a330bab334e",
+ "url": "https://github.com/runfinch/finch/commit/4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7"
},
- {
- "commit": {
- "author": {
- "email": "55906459+austinvazquez@users.noreply.github.com",
- "name": "Austin Vazquez",
- "username": "austinvazquez"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7",
- "message": "chore: Update Go linter to v1.53.3 and resolve errors (#459)\n\nIssue #, if available:\r\nN/A\r\n\r\n*Description of changes:*\r\nUpdates golangci-lint in CI to v1.53.3 release and resolves linting\r\nerrors for unused arguments.\r\n\r\n*Testing done:*\r\n```make lint```\r\n\r\n- [x] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Austin Vazquez ",
- "timestamp": "2023-06-29T19:13:36-04:00",
- "tree_id": "b8b267781610164eb5bd66888fce1a330bab334e",
- "url": "https://github.com/runfinch/finch/commit/4347ba7b6df08f4a7e6cb0ab5914753e81ea87f7"
- },
- "date": 1688081410260,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 62366678584,
- "unit": "ns/op\t 0.3892 %cpu_avg/op\t 57.14 %cpu_peak/op\t 62.37 cpu_seconds/op\t1974886400 disk_bytes/op\t 2798416 B/op\t 59134 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24172688666,
- "unit": "ns/op\t 0.3762 %cpu_avg/op\t 40.00 %cpu_peak/op\t 24.17 cpu_seconds/op\t 512000 disk_bytes/op\t 1076640 B/op\t 22907 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 369407708,
- "unit": "ns/op\t 0.6668 %cpu_avg/op\t 22.22 %cpu_peak/op\t 0.3694 cpu_seconds/op\t 0 disk_bytes/op\t 26402 B/op\t 393 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1376652916,
- "unit": "ns/op\t 1.316 %cpu_avg/op\t 44.44 %cpu_peak/op\t 1.377 cpu_seconds/op\t 3596288 disk_bytes/op\t 69264 B/op\t 1338 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
+ "date": 1688081410260,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 62366678584,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.3892",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "57.14",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "62.37",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1974886400",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "2798416",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "59134",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24172688666,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.3762",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.17",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "512000",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1076640",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22907",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 369407708,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "0.6668",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "22.22",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3694",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26402",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "393",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1376652916,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "1.316",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "44.44",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.377",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "3596288",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "69264",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1338",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ },
+ {
+ "commit": {
+ "author": {
+ "email": "49699333+dependabot[bot]@users.noreply.github.com",
+ "name": "dependabot[bot]",
+ "username": "dependabot[bot]"
+ },
+ "committer": {
+ "email": "noreply@github.com",
+ "name": "GitHub",
+ "username": "web-flow"
+ },
+ "distinct": true,
+ "id": "d6746a447e10bed6c13d197c8d693b27e02ac3aa",
+ "message": "build(deps): Bump k8s.io/apimachinery from 0.27.2 to 0.27.3 (#454)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.2 to 0.27.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.2&new-version=0.27.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
+ "timestamp": "2023-06-30T08:44:53-07:00",
+ "tree_id": "c4ed21f0d0322c401c302f18655c952447d551ad",
+ "url": "https://github.com/runfinch/finch/commit/d6746a447e10bed6c13d197c8d693b27e02ac3aa"
},
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "d6746a447e10bed6c13d197c8d693b27e02ac3aa",
- "message": "build(deps): Bump k8s.io/apimachinery from 0.27.2 to 0.27.3 (#454)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.2 to 0.27.3.\r\n\r\nCommits
\r\n\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.2&new-version=0.27.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-06-30T08:44:53-07:00",
- "tree_id": "c4ed21f0d0322c401c302f18655c952447d551ad",
- "url": "https://github.com/runfinch/finch/commit/d6746a447e10bed6c13d197c8d693b27e02ac3aa"
- },
- "date": 1688140210942,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 128172267666,
- "unit": "ns/op\t 0.2707 %cpu_avg/op\t 60.00 %cpu_peak/op\t 128.2 cpu_seconds/op\t1971294208 disk_bytes/op\t 5676488 B/op\t 120519 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 24261458458,
- "unit": "ns/op\t 0.4763 %cpu_avg/op\t 40.00 %cpu_peak/op\t 24.26 cpu_seconds/op\t 2650112 disk_bytes/op\t 1080144 B/op\t 22985 allocs/op",
- "extra": "1 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 372515167,
- "unit": "ns/op\t 1.586 %cpu_avg/op\t 24.07 %cpu_peak/op\t 0.3725 cpu_seconds/op\t 0 disk_bytes/op\t 26554 B/op\t 396 allocs/op",
- "extra": "3 times\n8 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1465650625,
- "unit": "ns/op\t 0.5514 %cpu_avg/op\t 20.00 %cpu_peak/op\t 1.466 cpu_seconds/op\t 20389888 disk_bytes/op\t 75336 B/op\t 1430 allocs/op",
- "extra": "1 times\n8 procs"
- }
- ]
- }
- ]
- }
+ "date": 1688140210942,
+ "tool": "go",
+ "benches": [
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - ns/op",
+ "value": 128172267666,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_avg/op",
+ "value": "0.2707",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - %cpu_peak/op",
+ "value": "60.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - cpu_seconds/op",
+ "value": "128.2",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - disk_bytes/op",
+ "value": "1971294208",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - B/op",
+ "value": "5676488",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMInit - allocs/op",
+ "value": "120519",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - ns/op",
+ "value": 24261458458,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_avg/op",
+ "value": "0.4763",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - %cpu_peak/op",
+ "value": "40.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - cpu_seconds/op",
+ "value": "24.26",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - disk_bytes/op",
+ "value": "2650112",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - B/op",
+ "value": "1080144",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkVMStart - allocs/op",
+ "value": "22985",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - ns/op",
+ "value": 372515167,
+ "unit": "ns/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_avg/op",
+ "value": "1.586",
+ "unit": "%cpu_avg/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - %cpu_peak/op",
+ "value": "24.07",
+ "unit": "%cpu_peak/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - cpu_seconds/op",
+ "value": "0.3725",
+ "unit": "cpu_seconds/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - disk_bytes/op",
+ "value": "0",
+ "unit": "disk_bytes/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - B/op",
+ "value": "26554",
+ "unit": "B/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkContainerRun - allocs/op",
+ "value": "396",
+ "unit": "allocs/op",
+ "extra": "3 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - ns/op",
+ "value": 1465650625,
+ "unit": "ns/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_avg/op",
+ "value": "0.5514",
+ "unit": "%cpu_avg/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - %cpu_peak/op",
+ "value": "20.00",
+ "unit": "%cpu_peak/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - cpu_seconds/op",
+ "value": "1.466",
+ "unit": "cpu_seconds/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - disk_bytes/op",
+ "value": "20389888",
+ "unit": "disk_bytes/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - B/op",
+ "value": "75336",
+ "unit": "B/op",
+ "extra": "1 times\n8 procs"
+ },
+ {
+ "name": "BenchmarkAll/BenchmarkImageBuild - allocs/op",
+ "value": "1430",
+ "unit": "allocs/op",
+ "extra": "1 times\n8 procs"
+ }
+ ]
+ }
+ ]
+}
}
\ No newline at end of file
diff --git a/dev/bench/macOS/13/x86_64/data.js b/dev/bench/macOS/13/x86_64/data.js
index d686bce33..3c19f3fc5 100644
--- a/dev/bench/macOS/13/x86_64/data.js
+++ b/dev/bench/macOS/13/x86_64/data.js
@@ -1,1928 +1,7688 @@
window.BENCHMARK_DATA = {
"lastUpdate": 1688140195209,
- "repoUrl": "https://github.com/runfinch/finch",
- "entries": {
- "Finch Benchmark": [
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "325a8510c75b0b030be5ec075327ac337b7c22e5",
- "message": "ci: add benchmarking workflow (#384)\n\nhttps://github.com/runfinch/finch/issues/345\r\n\r\n*Description of changes:*\r\n\r\n*Testing done:*\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/12/x86_64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/arm64/\r\nhttps://runfinch.github.io/finch/dev/bench/macOS/13/x86_64/\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-04-28T18:08:29Z",
- "tree_id": "36a278e67f9282187e295ad59e2bcea15679a739",
- "url": "https://github.com/runfinch/finch/commit/325a8510c75b0b030be5ec075327ac337b7c22e5"
- },
- "date": 1682705687492,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 145956039733,
- "unit": "ns/op\t 0.1693 %cpu_avg/op\t 31.25 %cpu_peak/op\t 146.0 cpu_seconds/op\t2689368064 disk_bytes/op\t 6512816 B/op\t 136505 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26075758351,
- "unit": "ns/op\t 0.3229 %cpu_avg/op\t 28.57 %cpu_peak/op\t 26.08 cpu_seconds/op\t -147456 disk_bytes/op\t 1159904 B/op\t 24824 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 451866602,
- "unit": "ns/op\t 0.2714 %cpu_avg/op\t 7.475 %cpu_peak/op\t 0.4518 cpu_seconds/op\t 0 disk_bytes/op\t 30024 B/op\t 480 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1640780970,
- "unit": "ns/op\t 0.3672 %cpu_avg/op\t 33.33 %cpu_peak/op\t 1.641 cpu_seconds/op\t 8646656 disk_bytes/op\t 83280 B/op\t 1619 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "76b31c0c453935f22588523f65888e103581cd89",
- "message": "build(deps): Bump github.com/shirou/gopsutil/v3 from 3.23.3 to 3.23.4 (#389)\n\nBumps\r\n[github.com/shirou/gopsutil/v3](https://github.com/shirou/gopsutil) from\r\n3.23.3 to 3.23.4.\r\n\r\nRelease notes
\r\nSourced from github.com/shirou/gopsutil/v3's\r\nreleases.
\r\n\r\nv3.23.4
\r\n\r\nWhat's Changed
\r\ncpu
\r\n\r\nprocess
\r\n\r\nOther Changes
\r\n\r\nNew Contributors
\r\n\r\nFull Changelog: https://github.com/shirou/gopsutil/compare/v3.23.3...v3.23.4
\r\n
\r\n \r\n\r\nCommits
\r\n\r\ndb89d12
\r\nMerge pull request #1453\r\nfrom Juneezee/refactor/errors.Is \r\n0439039
\r\nrefactor(process): compare error with errors.Is
\r\n17fac7c
\r\nMerge pull request #1450\r\nfrom gabibguti/master \r\n2d2db8f
\r\nCreate SECURITY.md \r\n10f213c
\r\nMerge pull request #1448\r\nfrom shirou/dependabot/github_actions/actions/upload... \r\nd6ee47e
\r\nchore(deps): bump actions/upload-artifact from 3.1.0 to 3.1.2 \r\ncf428f8
\r\nMerge pull request #1443\r\nfrom mmorel-35/linter \r\n755bcab
\r\nUpdate branch of sbom_generator.yml \r\n21a646b
\r\nMerge pull request #1447\r\nfrom shirou/feature/add_sbom_github_actions \r\nbcf3fe9
\r\nMerge pull request #1445\r\nfrom shirou/dependabot/go_modules/golang.org/x/sys-0... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/shirou/gopsutil/v3&package-manager=go_modules&previous-version=3.23.3&new-version=3.23.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T14:04:07-04:00",
- "tree_id": "f741032f7d876d262db9b5af37cdc5bbea24e279",
- "url": "https://github.com/runfinch/finch/commit/76b31c0c453935f22588523f65888e103581cd89"
- },
- "date": 1683137445236,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 90523762545,
- "unit": "ns/op\t 0.2652 %cpu_avg/op\t 30.77 %cpu_peak/op\t 90.52 cpu_seconds/op\t2686717952 disk_bytes/op\t 4029864 B/op\t 85361 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26185573417,
- "unit": "ns/op\t 0.3681 %cpu_avg/op\t 28.57 %cpu_peak/op\t 26.19 cpu_seconds/op\t 110592 disk_bytes/op\t 1167816 B/op\t 24989 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 471227440,
- "unit": "ns/op\t 0.6873 %cpu_avg/op\t 9.890 %cpu_peak/op\t 0.4712 cpu_seconds/op\t 4096 disk_bytes/op\t 31157 B/op\t 504 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1593999057,
- "unit": "ns/op\t 0.3004 %cpu_avg/op\t 20.00 %cpu_peak/op\t 1.594 cpu_seconds/op\t 3592192 disk_bytes/op\t 81104 B/op\t 1578 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "710299445ed287c67114b277be7bd2a29715956b",
- "message": "build(deps): Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.3 (#390)\n\nBumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from\r\n2.9.2 to 2.9.3.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nreleases.
\r\n\r\nv2.9.3
\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/ginkgo/v2's\r\nchangelog.
\r\n\r\n2.9.3
\r\nFeatures
\r\n\r\n- Add RenderTimeline to GinkgoT() [c0c77b6]
\r\n
\r\nFixes
\r\n\r\n- update Measure deprecation message. fixes #1176\r\n[227c662]
\r\n- add newlines to GinkgoLogr (#1170)\r\n(#1171)\r\n[0de0e7c]
\r\n
\r\nMaintenance
\r\n\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183)\r\n[8b925ab]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184)\r\n[e3795a4]
\r\n- Bump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182)\r\n[b453793]
\r\n- Bump actions/setup-go from 3 to 4 (#1164)\r\n[73ed75b]
\r\n- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173)\r\n[0a2bc64]
\r\n- Bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174)\r\n[f41c557]
\r\n- Bump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179)\r\n[8e423e5]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n7a8249e
\r\nv2.9.3 \r\nc0c77b6
\r\nAdd RenderTimeline to GinkgoT() \r\n8b925ab
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#1183) \r\ne3795a4
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#1184) \r\nb453793
\r\nBump golang.org/x/tools from 0.7.0 to 0.8.0 (#1182) \r\n73ed75b
\r\nBump actions/setup-go from 3 to 4 (#1164) \r\n0a2bc64
\r\nBump github.com/onsi/gomega from 1.27.4 to 1.27.6 (#1173) \r\nf41c557
\r\nBump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#1174) \r\n8e423e5
\r\nBump golang.org/x/sys from 0.6.0 to 0.7.0 (#1179) \r\n227c662
\r\nupdqte Measure deprecation message. fixes #1176 \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.9.2&new-version=2.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T14:13:23-04:00",
- "tree_id": "5e835791535734dd48321218c7346d8ad9ec9c0b",
- "url": "https://github.com/runfinch/finch/commit/710299445ed287c67114b277be7bd2a29715956b"
- },
- "date": 1683137962624,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 106564302394,
- "unit": "ns/op\t 0.2620 %cpu_avg/op\t 43.75 %cpu_peak/op\t 106.6 cpu_seconds/op\t2693222400 disk_bytes/op\t 4778976 B/op\t 100191 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26057563087,
- "unit": "ns/op\t 0.3935 %cpu_avg/op\t 33.33 %cpu_peak/op\t 26.06 cpu_seconds/op\t -143360 disk_bytes/op\t 1159560 B/op\t 24799 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 463548375,
- "unit": "ns/op\t 0.5119 %cpu_avg/op\t 11.62 %cpu_peak/op\t 0.4635 cpu_seconds/op\t 0 disk_bytes/op\t 30584 B/op\t 494 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1731889015,
- "unit": "ns/op\t 0.3453 %cpu_avg/op\t 23.08 %cpu_peak/op\t 1.732 cpu_seconds/op\t 3547136 disk_bytes/op\t 88096 B/op\t 1720 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785",
- "message": "build(deps): Bump github.com/docker/docker from 23.0.3+incompatible to 23.0.5+incompatible (#382)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.3+incompatible to 23.0.5+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv23.0.5
\r\n23.0.5
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Add the
--all
/ -a
option when pruning\r\nvolumes. docker/cli#4229 \r\n- Add
--format=json
for docker info
. docker/cli#4320 \r\n- Fix log loss with the AWSLogs log driver. moby/moby#45350
\r\n- Fix a regression introduced in v23.0.4 where dockerd would refuse to\r\nstart if the fixed-cidr config parameter is provided but not bip. moby/moby#45403
\r\n- Fix a panic in libnetwork during daemon start moby/moby#45376
\r\n- Fix "tag" event not being sent when an image is built with\r\n
buildx
. moby/moby#45410 \r\n
\r\nPackaging Updates
\r\n\r\nv23.0.4
\r\n23.0.4
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nBug fixes and enhancements
\r\n\r\n- Fix a performance regression in Docker CLI 23.0.0 docker/cli#4141.
\r\n- Fix progress indicator on
docker cp
not functioning as\r\nintended docker/cli#4157. \r\n- Fix shell completion for
docker compose --file
docker/cli#4177. \r\n- Fix an error caused by incorrect handling of\r\n"default-address-pools" in
daemon.json
moby/moby#45246. \r\n
\r\nPackaging Updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n94d3ad6
\r\nMerge pull request #45410\r\nfrom rumpl/23.0_backport-fix-buildx-tag-events \r\n933a9f8
\r\nMerge pull request #45407\r\nfrom thaJeztah/23.0_backport_vendor_runc_1.1.5 \r\nfe0a414
\r\nUse the image service instead of the reference store for tagging \r\n1b1230e
\r\nMerge pull request #45375\r\nfrom thaJeztah/23.0_backport_bump_swarmkit \r\n1b26303
\r\nMerge pull request #45374\r\nfrom thaJeztah/23.0_backport_stfu_grpc \r\n682542f
\r\nMerge pull request #45373\r\nfrom thaJeztah/23.0_backport_assorted_test_and_pack... \r\n40ec0eb
\r\nvendor: github.com/opencontainers/runc v1.1.5 \r\n9af6762
\r\nMerge pull request #45403\r\nfrom akerouanton/23.0-cherrypick-2d31697 \r\n0b6449a
\r\nMerge pull request #45376\r\nfrom thaJeztah/23.0_backport_delete_network_more_at... \r\n227d3f3
\r\ndaemon: set docker0 subpool as the IPAM pool \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.3+incompatible&new-version=23.0.5+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-03T15:41:11-04:00",
- "tree_id": "1c20d3fd2834f22310254aa23e661742782dcfd8",
- "url": "https://github.com/runfinch/finch/commit/3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785"
- },
- "date": 1683149941166,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 86742972313,
- "unit": "ns/op\t 0.4030 %cpu_avg/op\t 100.0 %cpu_peak/op\t 86.74 cpu_seconds/op\t2760146944 disk_bytes/op\t 3886792 B/op\t 82091 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26395345481,
- "unit": "ns/op\t 0.3120 %cpu_avg/op\t 33.33 %cpu_peak/op\t 26.40 cpu_seconds/op\t 974848 disk_bytes/op\t 1173256 B/op\t 25117 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 468576981,
- "unit": "ns/op\t 1.026 %cpu_avg/op\t 19.11 %cpu_peak/op\t 0.4685 cpu_seconds/op\t 1365 disk_bytes/op\t 30485 B/op\t 496 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1633432833,
- "unit": "ns/op\t 0.8592 %cpu_avg/op\t 25.00 %cpu_peak/op\t 1.633 cpu_seconds/op\t 3555328 disk_bytes/op\t 82864 B/op\t 1618 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "cc679ef266c7da49e9339d69130f242d8285bc96",
- "message": "ci: remove setup-go and explicitly set shell in benchmark (#401)\n\nIssue #, if available:\r\n\r\n*Description of changes:*\r\nFix the workflow failure happened recently.\r\nhttps://github.com/runfinch/finch/actions/runs/4920343212/jobs/8789029862\r\n\r\n*Testing done:*\r\nIn feature branch.\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-05-16T13:59:41-07:00",
- "tree_id": "ce9148fa0e13ad776e232868257642729f8bf853",
- "url": "https://github.com/runfinch/finch/commit/cc679ef266c7da49e9339d69130f242d8285bc96"
- },
- "date": 1684271120292,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 77511239745,
- "unit": "ns/op\t 0.2631 %cpu_avg/op\t 30.77 %cpu_peak/op\t 77.51 cpu_seconds/op\t2667061248 disk_bytes/op\t 3492360 B/op\t 73163 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26461073591,
- "unit": "ns/op\t 0.3338 %cpu_avg/op\t 35.71 %cpu_peak/op\t 26.46 cpu_seconds/op\t 16809984 disk_bytes/op\t 1177128 B/op\t 25214 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 462949485,
- "unit": "ns/op\t 0.6317 %cpu_avg/op\t 13.46 %cpu_peak/op\t 0.4629 cpu_seconds/op\t 43690 disk_bytes/op\t 30330 B/op\t 490 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1619110035,
- "unit": "ns/op\t 0.2828 %cpu_avg/op\t 26.67 %cpu_peak/op\t 1.619 cpu_seconds/op\t 3629056 disk_bytes/op\t 82408 B/op\t 1608 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "41898282+github-actions[bot]@users.noreply.github.com",
- "name": "github-actions[bot]",
- "username": "github-actions[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "06d86b2bc348db9f0d8d02678faee556719b883d",
- "message": "build(deps): Bump submodules (#402)\n\nAutomated changes by\r\n[create-pull-request](https://github.com/peter-evans/create-pull-request)\r\nGitHub action\r\n\r\nSigned-off-by: GitHub \r\nCo-authored-by: vsiravar ",
- "timestamp": "2023-05-17T16:24:01Z",
- "tree_id": "288eddf483f6ff89d0e83c6e089da366bce0295d",
- "url": "https://github.com/runfinch/finch/commit/06d86b2bc348db9f0d8d02678faee556719b883d"
- },
- "date": 1684340939563,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 76734595288,
- "unit": "ns/op\t 0.3309 %cpu_avg/op\t 88.89 %cpu_peak/op\t 76.73 cpu_seconds/op\t2664726528 disk_bytes/op\t 3457832 B/op\t 72417 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26843850385,
- "unit": "ns/op\t 0.3533 %cpu_avg/op\t 35.71 %cpu_peak/op\t 26.84 cpu_seconds/op\t -106496 disk_bytes/op\t 1191792 B/op\t 25521 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 478470499,
- "unit": "ns/op\t 0.6975 %cpu_avg/op\t 17.15 %cpu_peak/op\t 0.4784 cpu_seconds/op\t 0 disk_bytes/op\t 30976 B/op\t 503 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1807805626,
- "unit": "ns/op\t 0.5643 %cpu_avg/op\t 20.00 %cpu_peak/op\t 1.808 cpu_seconds/op\t 20406272 disk_bytes/op\t 91376 B/op\t 1793 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "05b6b2e7364036a3d30b67ad409f55526cc59ffe",
- "message": "build(deps): Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 (#405)\n\nBumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus)\r\nfrom 1.9.0 to 1.9.1.\r\n\r\nCommits
\r\n\r\nb30aa27
\r\nMerge pull request #1339\r\nfrom xieyuschen/patch-1 \r\n6acd903
\r\nMerge pull request #1376\r\nfrom ozfive/master \r\n105e63f
\r\nMerge pull request #1 from\r\nashmckenzie/ashmckenzie/fix-writer-scanner \r\nc052ba6
\r\nScan text in 64KB chunks \r\ne59b167
\r\nMerge pull request #1372\r\nfrom tommyblue/syslog_different_loglevels \r\n766cfec
\r\nThis commit fixes a potential denial of service vulnerability in\r\nlogrus.Write... \r\n70234da
\r\nAdd instructions to use different log levels for local and syslog \r\na448f82
\r\nMerge pull request #1362\r\nfrom FrancoisWagner/fix-data-race-in-hooks-test-pkg \r\nff07b25
\r\nFix data race in hooks.test package \r\nd8787af
\r\nUse text when shows the logrus output \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.0&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-17T16:59:12-07:00",
- "tree_id": "4200288d7d0b7a0007ed4d8c2a30b6f3c39a38dc",
- "url": "https://github.com/runfinch/finch/commit/05b6b2e7364036a3d30b67ad409f55526cc59ffe"
- },
- "date": 1684368476737,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 137888201091,
- "unit": "ns/op\t 0.1969 %cpu_avg/op\t 35.71 %cpu_peak/op\t 137.9 cpu_seconds/op\t2644529152 disk_bytes/op\t 6174024 B/op\t 128886 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26381647968,
- "unit": "ns/op\t 0.3176 %cpu_avg/op\t 25.00 %cpu_peak/op\t 26.38 cpu_seconds/op\t 102400 disk_bytes/op\t 1172376 B/op\t 25073 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 526424504,
- "unit": "ns/op\t 0.4227 %cpu_avg/op\t 13.87 %cpu_peak/op\t 0.5264 cpu_seconds/op\t 0 disk_bytes/op\t 33172 B/op\t 552 allocs/op",
- "extra": "2 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1787999513,
- "unit": "ns/op\t 0.3965 %cpu_avg/op\t 16.67 %cpu_peak/op\t 1.788 cpu_seconds/op\t 3629056 disk_bytes/op\t 90280 B/op\t 1773 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "25aa324ca324248cf2093af23f205af1b5ae276f",
- "message": "build(deps): Bump github.com/docker/docker from 23.0.6+incompatible to 24.0.0+incompatible (#406)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n23.0.6+incompatible to 24.0.0+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.0
\r\n24.0.0
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nNew
\r\n\r\n- Introduce experimental support for containerd as the content store\r\n(replacing the existing storage drivers). moby/moby#43735,\r\nother\r\nmoby/moby pull requests
\r\n- The
--host
CLI flag now supports a path component in a\r\nssh://
host address, allowing use of an alternate socket\r\npath without configuration on the remote host. docker/cli#4073 \r\n- The
docker info
CLI command now reports a version and\r\nplatform field. docker/cli#4180 \r\n- Introduce the daemon flag
--default-network-opt
to\r\nconfigure options for newly created networks. moby/moby#43197 \r\n- Restrict access to
AF_VSOCK
in the\r\nsocket(2)
family of syscalls in the default seccomp\r\nprofile. moby/moby#44562 \r\n- Introduce support for setting OCI runtime annotations on containers.\r\ndocker/cli#45025,\r\nmoby/moby#45025
\r\n- Alternative runtimes can now be configured in\r\n
daemon.json
, enabling runtime names to be aliased and\r\noptions to be passed. moby/moby#45032 \r\n- The
docker-init
binary will now be discovered in\r\nFHS-compliant libexec directories, in addition to the PATH
.\r\nmoby/moby#45198 \r\n- API: Surface the daemon-level
--no-new-privileges
in\r\nGET /info
. moby/moby#45320 \r\n
\r\nRemoved
\r\n\r\ndocker info
no longer reports\r\nIndexServiceAddress
. docker/cli#4204 \r\n- libnetwork: Remove fallback code for obsolete kernel versions. moby/moby#44684,\r\nmoby/moby#44802
\r\n- libnetwork: Remove unused code related to classic Swarm. moby/moby#44965
\r\n- libnetwork: Remove usage of the
xt_u32
kernel module\r\nfrom encrypted Swarm overlay networks. moby/moby#45281 \r\n- Remove support for buildkit's deprecated
buildinfo
in\r\nfavor of standard provenance attestations. moby/moby#45097 \r\n- Remove the deprecated AUFS and legacy
overlay
storage\r\ndrivers. moby/moby#45342,\r\nmoby/moby# \r\n- Remove the deprecated
overlay2.override_kernel_check
\r\nstorage driver option. moby/moby#45368 \r\n- Remove workarounds for obsolete versions of\r\n
apparmor_parser
from the AppArmor profiles. moby/moby#45500 \r\n- API:
GET /images/json
no longer represents empty\r\nRepoTags and RepoDigests\r\nas<none>:<none>
/<none>@<none>
.\r\nEmpty arrays are be returned instead on API >= 1.43. moby/moby#45068 \r\n
\r\nDeprecated
\r\n\r\n- Deprecate the
--oom-score-adjust
daemon option. moby/moby#45315 \r\n- API: Deprecate the
VirtualSize
field in GET\r\n/images/json
and GET /images/{id}/json
. moby/moby#45346 \r\n
\r\nBug fixes and enhancements
\r\n\r\n- The
docker stack
command no longer validates the\r\nbuild
section of Compose files. docker/cli#4214 \r\n- Fix lingering healthcheck processes after timeout is reached. moby/moby#43739
\r\n- Reduce the overhead of container startup when using the\r\n
overlay2
storage driver. moby/moby#44285 \r\n- API: Handle multiple
before=
and since=
\r\nfilters in GET /images
. moby/moby#44503 \r\n- Fix numerous bugs in the embedded DNS resolver implementation used\r\nby user-defined networks. moby/moby#44664
\r\n- Add
execDuration
field to the map of event attributes.\r\nmoby/moby#45494 \r\n- Swarm-level networks can now be created with the Windows\r\n
internal
, l2bridge
, and nat
\r\ndrivers. moby/swarmkit#3121,\r\nmoby/moby#45291 \r\n
\r\nPackaging updates
\r\n\r\n\r\n
\r\n... (truncated)
\r\n \r\n\r\nCommits
\r\n\r\n1331b8c
\r\nMerge pull request #45537\r\nfrom thaJeztah/24.0_backport_containerd_binary_1.7.1 \r\n907f037
\r\nupdate containerd binary to v1.7.1 \r\na5b597e
\r\nMerge pull request #45531\r\nfrom rumpl/24.0_backport_fix-empty-auth-pull \r\n8bbfa32
\r\nc8d: The authorizer needs to be set even if AuthConfig is empty \r\n807e415
\r\nMerge pull request #45526\r\nfrom laurazard/backport-classic-builder \r\n8587a1c
\r\nc8d/builder: implement cache \r\n9717369
\r\nc8d: implement classic builder \r\ned0c147
\r\nMerge pull request #45523\r\nfrom thaJeztah/24.0_backport_cleanup_reexec_inits \r\n90be9ab
\r\nMerge pull request #45525\r\nfrom thaJeztah/24.0_backport_c8d_authconfig_default \r\nd73f703
\r\nMerge pull request #45521\r\nfrom thaJeztah/24.0_backport_vendor_distribution_v2... \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=23.0.6+incompatible&new-version=24.0.0+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-18T00:52:53Z",
- "tree_id": "e165710972d7cc4dd1908083cdd88af9c0f12942",
- "url": "https://github.com/runfinch/finch/commit/25aa324ca324248cf2093af23f205af1b5ae276f"
- },
- "date": 1684371560792,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 104681339582,
- "unit": "ns/op\t 0.2113 %cpu_avg/op\t 33.33 %cpu_peak/op\t 104.7 cpu_seconds/op\t2655481856 disk_bytes/op\t 4695704 B/op\t 98253 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26345254477,
- "unit": "ns/op\t 0.3211 %cpu_avg/op\t 19.54 %cpu_peak/op\t 26.35 cpu_seconds/op\t 4202496 disk_bytes/op\t 1174544 B/op\t 25124 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 578748290,
- "unit": "ns/op\t 0.9325 %cpu_avg/op\t 18.41 %cpu_peak/op\t 0.5787 cpu_seconds/op\t 0 disk_bytes/op\t 35308 B/op\t 601 allocs/op",
- "extra": "2 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1933453752,
- "unit": "ns/op\t 0.09713 %cpu_avg/op\t 9.091 %cpu_peak/op\t 1.933 cpu_seconds/op\t 3567616 disk_bytes/op\t 95624 B/op\t 1909 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9",
- "message": "build(deps): Bump k8s.io/apimachinery from 0.27.1 to 0.27.2 (#407)\n\nBumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery)\r\nfrom 0.27.1 to 0.27.2.\r\n\r\nCommits
\r\n\r\n756e222
\r\nMerge pull request #117298pohly/automated-cherry-pick-of-#117238
\r\nb1123d2
\r\nMerge pull request #117708Jefftree/automated-cherry-pick-of-#117705
\r\n4074a29
\r\nUpdate kube-openapi to fix race \r\ncc852ec
\r\napi: encode NamespacedName with lower case in JSON \r\n- See full diff in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=k8s.io/apimachinery&package-manager=go_modules&previous-version=0.27.1&new-version=0.27.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:14-07:00",
- "tree_id": "4995bf341e0dfa88b02d82d9034a40802015304b",
- "url": "https://github.com/runfinch/finch/commit/e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9"
- },
- "date": 1684775578833,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 77263463421,
- "unit": "ns/op\t 0.2886 %cpu_avg/op\t 40.00 %cpu_peak/op\t 77.26 cpu_seconds/op\t2668273664 disk_bytes/op\t 3488240 B/op\t 73001 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 27841693717,
- "unit": "ns/op\t 0.3497 %cpu_avg/op\t 38.46 %cpu_peak/op\t 27.84 cpu_seconds/op\t 17739776 disk_bytes/op\t 1260448 B/op\t 26487 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 491168626,
- "unit": "ns/op\t 0.8486 %cpu_avg/op\t 21.97 %cpu_peak/op\t 0.4911 cpu_seconds/op\t 2730 disk_bytes/op\t 31661 B/op\t 519 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1701851158,
- "unit": "ns/op\t 1.105 %cpu_avg/op\t 38.46 %cpu_peak/op\t 1.702 cpu_seconds/op\t 3559424 disk_bytes/op\t 85928 B/op\t 1688 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "80513c7785a6da4ae09d9c871acaf180f5d68f2c",
- "message": "build(deps): Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 (#409)\n\nBumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from\r\n1.27.6 to 1.27.7.\r\n\r\nRelease notes
\r\nSourced from github.com/onsi/gomega's\r\nreleases.
\r\n\r\nv1.27.7
\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nChangelog
\r\nSourced from github.com/onsi/gomega's\r\nchangelog.
\r\n\r\n1.27.7
\r\nFixes
\r\n\r\n- fix: gcustom.MakeMatcher accepts nil as actual value (#666)\r\n[57054d5]
\r\n
\r\nMaintenance
\r\n\r\n- update gitignore [05c1bc6]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663)\r\n[7cadcf6]
\r\n- Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662)\r\n[b524839]
\r\n- Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661)\r\n[5f44694]
\r\n- Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657)\r\n[05dc99a]
\r\n- Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658)\r\n[3a033d1]
\r\n- Replace deprecated NewGomegaWithT with NewWithT (#659)\r\n[a19238f]
\r\n- Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656)\r\n[29ed041]
\r\n- Bump actions/setup-go from 3 to 4 (#651)\r\n[11b2080]
\r\n
\r\n
\r\n \r\n\r\nCommits
\r\n\r\n99a29d5
\r\nv1.27.7 \r\n05c1bc6
\r\nupdate gitignore \r\n57054d5
\r\nfix: gcustom.MakeMatcher accepts nil as actual value (#666) \r\n7cadcf6
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663) \r\nb524839
\r\nBump golang.org/x/net from 0.9.0 to 0.10.0 (#662) \r\n5f44694
\r\nBump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661) \r\n05dc99a
\r\nBump commonmarker from 0.23.8 to 0.23.9 in /docs (#657) \r\n3a033d1
\r\nBump nokogiri from 1.14.1 to 1.14.3 in /docs (#658) \r\na19238f
\r\nReplace deprecated NewGomegaWithT with NewWithT (#659) \r\n29ed041
\r\nBump golang.org/x/net from 0.8.0 to 0.9.0 (#656) \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.27.6&new-version=1.27.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T10:08:53-07:00",
- "tree_id": "e2fcfcda12bb1ccd87c7073b3933f3ac027af425",
- "url": "https://github.com/runfinch/finch/commit/80513c7785a6da4ae09d9c871acaf180f5d68f2c"
- },
- "date": 1684776486254,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 78228630888,
- "unit": "ns/op\t 0.2719 %cpu_avg/op\t 28.57 %cpu_peak/op\t 78.23 cpu_seconds/op\t2680717312 disk_bytes/op\t 3526936 B/op\t 73928 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26871386138,
- "unit": "ns/op\t 0.3345 %cpu_avg/op\t 21.43 %cpu_peak/op\t 26.87 cpu_seconds/op\t 40960 disk_bytes/op\t 1193568 B/op\t 25562 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 468242428,
- "unit": "ns/op\t 0.5090 %cpu_avg/op\t 10.68 %cpu_peak/op\t 0.4682 cpu_seconds/op\t 19114 disk_bytes/op\t 30682 B/op\t 497 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1695125276,
- "unit": "ns/op\t 0.1910 %cpu_avg/op\t 21.43 %cpu_peak/op\t 1.695 cpu_seconds/op\t 3620864 disk_bytes/op\t 85912 B/op\t 1688 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "bb1cab229c787752615eb00e74f240c4a4e0e23d",
- "message": "build(deps): Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.1+incompatible (#413)\n\nBumps [github.com/docker/docker](https://github.com/docker/docker) from\r\n24.0.0+incompatible to 24.0.1+incompatible.\r\n\r\nRelease notes
\r\nSourced from github.com/docker/docker's\r\nreleases.
\r\n\r\nv24.0.1
\r\n24.0.1
\r\nFor a full list of pull requests and changes in this release, refer\r\nto the relevant GitHub milestones:
\r\n\r\nRemoved
\r\n\r\n- Remove CLI completions for storage drivers removed in the 24.0 major\r\nrelease. docker/cli#4302
\r\n
\r\nBug fixes and enhancements
\r\n\r\n- Fix an issue where DNS query NXDOMAIN replies from external servers\r\nwere forwarded to the client as SERVFAIL. moby/moby#45573
\r\n- Fix an issue where
docker pull --platform
would report\r\nNo such image
regarding another tag pointing to the same\r\nimage. moby/moby#45562 \r\n- Fix an issue where insecure registry configuration would be\r\nforgotten during config reload. moby/moby#45571
\r\n- containerd-storage: Fix an issue where images which have no layers\r\nwould not be listed in
docker images -a
moby/moby#45588 \r\n- API: Fix an issue where
GET /images/{id}/json
would\r\nreturn null
instead of empty RepoTags
and\r\nRepoDigests
. moby/moby#45564 \r\n- API: Fix an issue where
POST /commit
did not accept an\r\nempty request body. moby/moby#45568 \r\n
\r\nPackaging updates
\r\n\r\n
\r\n \r\n\r\nCommits
\r\n\r\n463850e
\r\nMerge pull request #45588\r\nfrom vvoland/c8d-layerless-24 \r\n47a3dad
\r\nc8d/list: Show layerless images \r\na0bc3eb
\r\nMerge pull request #45571\r\nfrom thaJeztah/24.0_backport_fix_insecure_registrie... \r\n922b6aa
\r\nMerge pull request #45568\r\nfrom corhere/backport-24.0/fix-empty-container-decode \r\n0e605cf
\r\nMerge pull request #45573\r\nfrom thaJeztah/24.0_backport_fix_dns_servfail \r\n878c417
\r\nMerge pull request #45560\r\nfrom crazy-max/24.0_backport_fix-worker-id \r\n654e80a
\r\nMerge pull request #45570\r\nfrom crazy-max/24.0_backport_ci-bin-image-distribute \r\n0869b08
\r\nlibnetwork: just forward the external DNS response \r\n3467ba6
\r\nreorder load funcs to match newServiceConfig()'s order \r\nf9b886c
\r\nadd mirror to daemon reload test for insecure registries \r\n- Additional commits viewable in compare\r\nview
\r\n
\r\n \r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=24.0.0+incompatible&new-version=24.0.1+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n\r\nDependabot commands and options
\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
- "timestamp": "2023-05-22T17:48:50Z",
- "tree_id": "92f651eed9097478240daebf4cbf33ab7a695969",
- "url": "https://github.com/runfinch/finch/commit/bb1cab229c787752615eb00e74f240c4a4e0e23d"
- },
- "date": 1684778026372,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 76729243059,
- "unit": "ns/op\t 0.3143 %cpu_avg/op\t 46.15 %cpu_peak/op\t 76.73 cpu_seconds/op\t2675884032 disk_bytes/op\t 3464288 B/op\t 72516 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26330355245,
- "unit": "ns/op\t 0.3585 %cpu_avg/op\t 33.33 %cpu_peak/op\t 26.33 cpu_seconds/op\t 102400 disk_bytes/op\t 1171040 B/op\t 25054 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 473085259,
- "unit": "ns/op\t 1.250 %cpu_avg/op\t 20.48 %cpu_peak/op\t 0.4730 cpu_seconds/op\t 0 disk_bytes/op\t 30778 B/op\t 502 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1731201518,
- "unit": "ns/op\t 0.7438 %cpu_avg/op\t 30.77 %cpu_peak/op\t 1.731 cpu_seconds/op\t 3620864 disk_bytes/op\t 86824 B/op\t 1708 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "b83cc21e6082eeff076e035dfb4cad152fb5508c",
- "message": "ci: Finch .pkg installer builder (#416)\n\n**Description of changes:**\r\n\r\n- This PR contains the Finch .pkg builder tool.\r\n- The .pkg builder tool can be used by GitHub action to generate and\r\nnotarize macOS .pkg installer.\r\n- The old update to S3 workflow is extended with the functionality to\r\nbuild Finch, build .pkg and test .pkg. It can be used as a scheduled job\r\nfor nightly main branch build as well to detect release issue earlier\r\nbesides cut a new release.\r\n- The old release installer workflow(test installer) is removed because\r\nits scope is moved to the integrated workflow.\r\n\r\nThis is an initial tool check in, Readme and integrated workflow to\r\nchain existing workflows to upload installer to release and publish to\r\nHomebrew will come later.\r\n\r\n**Testing done:**\r\nHave tested the updated workflow and tool on this branch, and can\r\nsuccessfully generate final installer and test it.\r\nAction test ref:\r\nhttps://github.com/runfinch/finch/actions/runs/5077161329\r\n\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-26T10:40:35-07:00",
- "tree_id": "f4ee320ee326400884c15fa51a6485739e2ed39b",
- "url": "https://github.com/runfinch/finch/commit/b83cc21e6082eeff076e035dfb4cad152fb5508c"
- },
- "date": 1685123203259,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 80157484526,
- "unit": "ns/op\t 0.3338 %cpu_avg/op\t 38.46 %cpu_peak/op\t 80.16 cpu_seconds/op\t2268446720 disk_bytes/op\t 3608384 B/op\t 75799 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26614761896,
- "unit": "ns/op\t 0.3859 %cpu_avg/op\t 28.57 %cpu_peak/op\t 26.61 cpu_seconds/op\t 16805888 disk_bytes/op\t 1185024 B/op\t 25377 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 479760416,
- "unit": "ns/op\t 0.3827 %cpu_avg/op\t 13.20 %cpu_peak/op\t 0.4797 cpu_seconds/op\t 0 disk_bytes/op\t 31197 B/op\t 506 allocs/op",
- "extra": "3 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1744725310,
- "unit": "ns/op\t 0.4556 %cpu_avg/op\t 21.43 %cpu_peak/op\t 1.745 cpu_seconds/op\t 20402176 disk_bytes/op\t 88824 B/op\t 1734 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "ningziwe@amazon.com",
- "name": "Ziwen Ning",
- "username": "ningziwen"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "6a8ca1a559dada6ed320c9454fbc3229446a0a40",
- "message": "fix: sort volume args in DOCKER_COMPAT mode (#417)\n\nIssue #, if available:\r\nhttps://github.com/runfinch/finch/issues/418\r\n\r\n*Description of changes:*\r\nSort volume args in DOCKER_COMPAT mode\r\n\r\n*Testing done:*\r\nUnit tests and new e2e tests.\r\nhttps://github.com/runfinch/common-tests/pull/66\r\n\r\n\r\n- [ X ] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\nSigned-off-by: Ziwen Ning ",
- "timestamp": "2023-05-26T21:10:30Z",
- "tree_id": "7d92a6ddbd268a0ecf2c8acb172cadc75b283dc2",
- "url": "https://github.com/runfinch/finch/commit/6a8ca1a559dada6ed320c9454fbc3229446a0a40"
- },
- "date": 1685135791222,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 77201471699,
- "unit": "ns/op\t 0.3065 %cpu_avg/op\t 38.46 %cpu_peak/op\t 77.20 cpu_seconds/op\t2679218176 disk_bytes/op\t 3481416 B/op\t 72923 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26368098065,
- "unit": "ns/op\t 0.3973 %cpu_avg/op\t 35.71 %cpu_peak/op\t 26.37 cpu_seconds/op\t 36864 disk_bytes/op\t 1173992 B/op\t 25120 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 501939818,
- "unit": "ns/op\t 0.8292 %cpu_avg/op\t 20.19 %cpu_peak/op\t 0.5019 cpu_seconds/op\t 0 disk_bytes/op\t 32252 B/op\t 532 allocs/op",
- "extra": "2 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1724326521,
- "unit": "ns/op\t 0.2015 %cpu_avg/op\t 12.50 %cpu_peak/op\t 1.724 cpu_seconds/op\t 3629056 disk_bytes/op\t 87256 B/op\t 1709 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "cnkevin@amazon.com",
- "name": "Kevin Li",
- "username": "KevinLiAWS"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "0bcdd18b12b889931d3b7928eedf76c1ec9fac5a",
- "message": "ci: Rename action and set up nightly build (#421)\n\n*Description of changes:*\r\nRename the action.\r\nSet up the installer build and test every day at 9 am UTC (2 am PDT) to\r\nvalidate latest main branch.\r\n\r\n- [X] I've reviewed the guidance in CONTRIBUTING.md\r\n\r\n\r\n#### License Acceptance\r\n\r\nBy submitting this pull request, I confirm that my contribution is made\r\nunder the terms of the Apache 2.0 license.\r\n\r\n---------\r\n\r\nSigned-off-by: Kevin Li ",
- "timestamp": "2023-05-26T16:03:45-07:00",
- "tree_id": "ab82ce6b1d2aa83593bb648181463b6fe7840863",
- "url": "https://github.com/runfinch/finch/commit/0bcdd18b12b889931d3b7928eedf76c1ec9fac5a"
- },
- "date": 1685142590789,
- "tool": "go",
- "benches": [
- {
- "name": "BenchmarkAll/BenchmarkVMInit",
- "value": 80360429874,
- "unit": "ns/op\t 0.2816 %cpu_avg/op\t 30.77 %cpu_peak/op\t 80.36 cpu_seconds/op\t2650001408 disk_bytes/op\t 3612344 B/op\t 75887 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkVMStart",
- "value": 26855717512,
- "unit": "ns/op\t 0.3419 %cpu_avg/op\t 26.67 %cpu_peak/op\t 26.86 cpu_seconds/op\t 28672 disk_bytes/op\t 1192432 B/op\t 25554 allocs/op",
- "extra": "1 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkContainerRun",
- "value": 504544594,
- "unit": "ns/op\t 0.4616 %cpu_avg/op\t 16.03 %cpu_peak/op\t 0.5045 cpu_seconds/op\t 0 disk_bytes/op\t 32444 B/op\t 532 allocs/op",
- "extra": "2 times\n12 procs"
- },
- {
- "name": "BenchmarkAll/BenchmarkImageBuild",
- "value": 1806292441,
- "unit": "ns/op\t 0.5455 %cpu_avg/op\t 20.00 %cpu_peak/op\t 1.806 cpu_seconds/op\t 3624960 disk_bytes/op\t 90328 B/op\t 1788 allocs/op",
- "extra": "1 times\n12 procs"
- }
- ]
- },
- {
- "commit": {
- "author": {
- "email": "49699333+dependabot[bot]@users.noreply.github.com",
- "name": "dependabot[bot]",
- "username": "dependabot[bot]"
- },
- "committer": {
- "email": "noreply@github.com",
- "name": "GitHub",
- "username": "web-flow"
- },
- "distinct": true,
- "id": "ac18046e70efc0e1e9fe11a30457f6f945df2a23",
- "message": "build(deps): Bump github.com/runfinch/common-tests from 0.6.5 to 0.7.0 (#420)\n\nBumps\r\n[github.com/runfinch/common-tests](https://github.com/runfinch/common-tests)\r\nfrom 0.6.5 to 0.7.0.\r\n\r\n