Commit Graph

348 Commits

Author SHA1 Message Date
Orhun Parmaksız
830216b346
chore(release): prepare for v0.1.1 2022-04-19 13:16:36 +03:00
Oraoto
d07bdb4f07 fix(tui): replace tab with whitespace in value (#16)
## Description

Replace `\t` with whitespace in values, to separated vector values.

## Motivation and Context

Vector values (eg, net.ipv4_mem) are separated by `\t`, but tui could not display `\t` correctly.

Fix https://github.com/orhun/systeroid/issues/14.


## How Has This Been Tested?

Visually checked

## Screenshots / Logs (if applicable)

Before:

![sc-20220419-122855](https://user-images.githubusercontent.com/24709398/163920309-756a9334-252f-4901-9231-a6183f91061d.png)

After:

![sc-20220419-122941](https://user-images.githubusercontent.com/24709398/163920378-611f6597-0ae8-40e1-95c8-1c8039473254.png)


## Types of Changes
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [X] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
- [ ] Documentation (no code change)
- [ ] Refactor (refactoring production code)
- [ ] Other <!--- (provide information) -->

## Checklist:
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
- [X] My code follows the code style of this project.
- [ ] I have updated the documentation accordingly.
- [X] I have formatted the code with [rustfmt](https://github.com/rust-lang/rustfmt).
- [X] I checked the lints with [clippy](https://github.com/rust-lang/rust-clippy).
- [ ] I have added tests to cover my changes.
- [ ] All new and existing tests passed.
2022-04-19 10:00:26 +00:00
dependabot[bot]
cffc0046da chore(deps): bump rayon from 1.5.1 to 1.5.2 (#15)
Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.5.1 to 1.5.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rayon-rs/rayon/blob/master/RELEASES.md">rayon's changelog</a>.</em></p>
<blockquote>
<h1>Release rayon 1.5.2 / rayon-core 1.9.2 (2022-04-13)</h1>
<ul>
<li>The new <code>ParallelSlice::par_rchunks()</code> and <code>par_rchunks_exact()</code> iterate
slice chunks in reverse, aligned the against the end of the slice if the
length is not a perfect multiple of the chunk size. The new
<code>ParallelSliceMut::par_rchunks_mut()</code> and <code>par_rchunks_exact_mut()</code> are the
same for mutable slices.</li>
<li>The <code>ParallelIterator::try_*</code> methods now support <code>std::ops::ControlFlow</code> and
<code>std::task::Poll</code> items, mirroring the unstable <code>Try</code> implementations in the
standard library.</li>
<li>The <code>ParallelString</code> pattern-based methods now support <code>&amp;[char]</code> patterns,
which match when any character in that slice is found in the string.</li>
<li>A soft limit is now enforced on the number of threads allowed in a single
thread pool, respecting internal bit limits that already existed. The current
maximum is publicly available from the new function <code>max_num_threads()</code>.</li>
<li>Fixed several Stacked Borrow and provenance issues found by <code>cargo miri</code>.</li>
</ul>
<h2>Contributors</h2>
<p>Thanks to all of the contributors for this release!</p>
<ul>
<li><a href="https://github.com/atouchet"><code>@​atouchet</code></a></li>
<li><a href="https://github.com/bluss"><code>@​bluss</code></a></li>
<li><a href="https://github.com/cuviper"><code>@​cuviper</code></a></li>
<li><a href="https://github.com/fzyzcjy"><code>@​fzyzcjy</code></a></li>
<li><a href="https://github.com/nyanzebra"><code>@​nyanzebra</code></a></li>
<li><a href="https://github.com/paolobarbolini"><code>@​paolobarbolini</code></a></li>
<li><a href="https://github.com/RReverser"><code>@​RReverser</code></a></li>
<li><a href="https://github.com/saethlin"><code>@​saethlin</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/rayon-rs/rayon/commits">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rayon&package-manager=cargo&previous-version=1.5.1&new-version=1.5.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
2022-04-18 17:52:21 +00:00
Orhun Parmaksız
8bd45ee41b
feat(cli): support explaining multiple parameters 2022-04-17 17:47:55 +03:00
Orhun Parmaksız
ace15e10e8
perf(cli): parse the documentation only once for multiple parameters 2022-04-17 17:36:05 +03:00
Orhun Parmaksız
d65f8f63e7
docs(readme): add instructions for installing kernel docs on Fedora 2022-04-17 02:27:38 +03:00
Orhun Parmaksız
4b8c997b03
Set theme jekyll-theme-tactile 2022-04-16 21:25:03 +03:00
Orhun Parmaksız
0573092cc2
Merge branch 'main' of ssh://github.com/orhun/systeroid 2022-04-16 21:17:49 +03:00
Orhun Parmaksız
82c936321a
chore(docker): update .dockerignore about GitHub related files 2022-04-16 21:17:39 +03:00
Orhun Parmaksız
4a5671a4ba
Set theme jekyll-theme-slate 2022-04-16 21:15:58 +03:00
Orhun Parmaksız
ef98e5200b
chore(project): add CNAME record for GitHub pages
https://systeroid.cli.rs
2022-04-16 21:15:01 +03:00
Orhun Parmaksız
ea11160c90
chore(project): add GitHub pages configuration
https://systeroid.cli.rs
2022-04-16 21:12:29 +03:00
Orhun Parmaksız
65eee8785c
docs(readme): add installation instructions for Arch Linux 2022-04-16 12:39:19 +03:00
Orhun Parmaksız
c10b504ec3
chore(release): update Cargo.lock for v0.1.0 2022-04-16 11:17:54 +03:00
Orhun Parmaksız
202c87cc38
chore(release): prepare for v0.1.0 2022-04-16 11:14:30 +03:00
Orhun Parmaksız
32299d602d
style(readme): change the logo for Docker badge 2022-04-16 04:46:50 +03:00
Orhun Parmaksız
8ea14fe6b2
docs(readme): rename the label for Docker badge 2022-04-16 04:46:10 +03:00
Orhun Parmaksız
136bd8fff5
style(readme): add a separator after sections table 2022-04-16 04:42:01 +03:00
Orhun Parmaksız
de0165ce9f
chore(cd): update files to include in the release assets 2022-04-16 04:38:47 +03:00
Orhun Parmaksız
45584f2875
docs(readme): mention the section order 2022-04-16 04:37:02 +03:00
Orhun Parmaksız
7bb0490325
docs(readme): update project description 2022-04-16 04:33:43 +03:00
Orhun Parmaksız
d375c1eaf8
chore(ci): update lychee arguments 2022-04-16 04:30:48 +03:00
Orhun Parmaksız
d883b0fbd1
docs(project): add documentation
commit 72e58dd9bf74d484c0d725d4a7e4544faa99aa2d
Merge: 539527e b3ad25f
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Apr 16 03:49:33 2022 +0300

    Merge branch 'main' into add_readme

commit 539527e046
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Apr 16 03:45:31 2022 +0300

    chore(bors): remove use_codeowners key

commit 31a69fb835
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Apr 16 03:43:37 2022 +0300

    chore(project): update bors config

commit 626b3535f8
Merge: e3d7025 84a3206
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Apr 15 17:48:39 2022 +0300

    Merge branch 'main' into add_readme

commit e3d70254f4
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Apr 15 17:04:14 2022 +0300

    docs(readme): update the image source for Docker build badge

commit 6e320258d1
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Apr 15 16:45:56 2022 +0300

    docs(readme): update badge links

commit cfac24f6ca
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Apr 15 16:44:08 2022 +0300

    docs(readme): update crates.io instructions

commit 8ffc15997c
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Apr 15 11:19:34 2022 +0300

    chore(project): add readme key to manifests

commit dc91b03d30
Merge: ba83dd9 12233f0
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Apr 15 11:19:05 2022 +0300

    Merge branch 'main' into add_readme

commit ba83dd9188
Merge: 02a03f9 1005f65
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Apr 15 00:14:52 2022 +0300

    Merge branch 'main' into add_readme

commit 02a03f93ee
Merge: 8c79346 fb3295b
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Apr 10 15:18:07 2022 +0300

    Merge branch 'main' into add_readme

commit 8c79346195
Merge: 29383ad c529bc6
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Apr 10 14:53:11 2022 +0300

    Merge branch 'main' into add_readme

commit 29383ad882
Merge: 7394eee eb0d492
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Apr 9 12:24:50 2022 +0300

    Merge branch 'main' into add_readme

commit 7394eeec3b
Merge: 0e8e7e1 7d25e92
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Thu Apr 7 23:47:33 2022 +0300

    Merge branch 'main' into add_readme

commit 0e8e7e1328
Merge: 201af2f 7d9584d
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Thu Mar 24 23:42:10 2022 +0300

    Merge branch 'main' into add_readme

commit 201af2fb2c
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Thu Mar 24 23:42:04 2022 +0300

    docs(readme): update preload examples

commit fb9cd98d24
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Mar 20 01:08:02 2022 +0300

    docs(readme): update binary releases section

commit 1482b98c9c
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Mar 20 01:04:32 2022 +0300

    docs(readme): add packaging status badge

commit 0d65a11c80
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Mar 20 01:02:29 2022 +0300

    docs(readme): add building from source instructions

commit b14bbec506
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Mar 19 19:23:54 2022 +0300

    docs(readme): add details to docker section

commit 9049b639f8
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Mar 19 18:13:19 2022 +0300

    docs(readme): add docker section

commit 7c3c08ed9c
Merge: f29075d 7c94144
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Mar 19 17:11:24 2022 +0300

    Merge branch 'main' into add_readme

commit f29075d56b
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Mar 19 00:55:59 2022 +0300

    docs(readme): update docs path

commit d83e8236c5
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Mar 19 00:54:49 2022 +0300

    docs(readme): rename env

commit 240efaa724
Merge: 7c890d0 36e9a76
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Mar 19 00:54:20 2022 +0300

    Merge branch 'main' into add_readme

commit 7c890d099a
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Mar 19 00:40:13 2022 +0300

    feat(docs): support glob patterns for documentation path

commit 98d32ca488
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Mar 18 23:19:10 2022 +0300

    fix(cache): enable cache for custom kernel documentation path

commit 00026bb569
Merge: 7c48bc8 e356664
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Mar 18 15:55:29 2022 +0300

    Merge branch 'main' into add_readme

commit 7c48bc8a29
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Mar 18 15:55:21 2022 +0300

    docs(readme): mention the environment variable for disabling the cache

commit ef0edda75d
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Mar 18 02:22:16 2022 +0300

    docs(readme): mention the environment variable for setting the documentation

commit 00ba1d1ab7
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Mar 18 00:46:11 2022 +0300

    style(readme): update link style for requirements

commit 4a576074a9
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Mar 18 00:45:18 2022 +0300

    docs(readme): link the appropriate sections

commit 9b24ca4eac
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Fri Mar 18 00:43:05 2022 +0300

    docs(readme): add requirements

commit b8c097607c
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Thu Mar 17 23:41:21 2022 +0300

    chore(docker): add assets directory to .dockerignore

commit 1a90ca57c2
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Thu Mar 17 00:59:23 2022 +0300

    chore(project): rename img folder to assets

commit 6090698771
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Tue Mar 15 01:22:44 2022 +0300

    docs(readme): update key bindings about exit

commit 89b630b701
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Tue Mar 15 00:58:54 2022 +0300

    docs(readme): add examples for tui

commit 3bb969a602
Merge: 53c6a17 590ca58
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Mar 12 22:31:10 2022 +0300

    Merge branch 'main' into add_readme

commit 53c6a17e47
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Wed Mar 9 01:01:38 2022 +0300

    docs(readme): update wording

commit 10374a6326
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Wed Mar 9 00:39:57 2022 +0300

    docs(readme): add CLI usage

commit 66cd215e74
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Tue Mar 8 01:13:44 2022 +0300

    style(readme): resize demo gif

commit 6e2e477c61
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Tue Mar 8 01:05:33 2022 +0300

    docs(readme): add demo gif

commit c0ed57576d
Merge: 178d511 932ad2a
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Tue Mar 8 00:28:30 2022 +0300

    Merge branch 'main' into add_readme

commit 178d5110c7
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Mon Mar 7 23:47:51 2022 +0300

    docs(readme): add reference links

commit c09358780d
Merge: 45380cb 90e5771
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Mon Mar 7 23:45:19 2022 +0300

    Merge branch 'main' into add_readme

commit 45380cbf03
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Mon Mar 7 05:41:09 2022 +0300

    docs(readme): add example commands for CLI usage

commit 87bc981c38
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Mar 6 19:48:01 2022 +0300

    style(readme): apply formatting

commit 95a92a1a69
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Mar 6 19:47:16 2022 +0300

    docs(readme): add command-line options

commit 3b0bb761c7
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Mar 6 02:47:34 2022 +0300

    docs(readme): update description

commit edde0fc2e8
Merge: f2e4866 a440342
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Mar 6 02:39:51 2022 +0300

    Merge branch 'main' into add_readme

commit f2e48660de
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Mar 6 01:54:47 2022 +0300

    docs(readme): update logo section

commit 777fdc4395
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sun Mar 6 01:50:43 2022 +0300

    docs(readme): add description and arrange sections

commit 0830acf475
Author: Orhun Parmaksız <orhunparmaksiz@gmail.com>
Date:   Sat Mar 5 22:17:32 2022 +0300

    docs(readme): add basic information to README.md
2022-04-16 03:53:56 +03:00
Orhun Parmaksız
b3ad25faf9
chore(bors): require review for pull requests 2022-04-16 03:49:17 +03:00
Orhun Parmaksız
a24c0af157
chore(bors): remove use_codeowners key 2022-04-16 03:45:49 +03:00
Orhun Parmaksız
8910b72f72
chore(project): update bors config 2022-04-16 03:44:14 +03:00
Orhun Parmaksız
84a3206e00
chore(project): add clippy config 2022-04-15 17:48:05 +03:00
Orhun Parmaksız
37989c72d0
feat(cd): set the changelog link as release body 2022-04-15 11:53:33 +03:00
Orhun Parmaksız
0fe31e47eb
style(cd): update syntax for receiving GitHub secrets 2022-04-15 11:52:30 +03:00
Orhun Parmaksız
c8adcc895c
chore(release): prepare for v0.1.0-rc.1 2022-04-15 11:28:03 +03:00
Orhun Parmaksız
12233f0e80
chore(project): remove readme key from manifests 2022-04-15 11:18:55 +03:00
Orhun Parmaksız
0dcfeba90d
feat(release): allow empty changelog while releasing 2022-04-15 11:16:33 +03:00
Orhun Parmaksız
a3d51f0ce5
chore(ci): enable cross builds 2022-04-15 00:17:01 +03:00
Orhun Parmaksız
1005f65777
chore(workflow): switch to nightly builds 2022-04-15 00:14:39 +03:00
Orhun Parmaksız
41d767b1c9
chore(ci): switch to stable builds
This reverts commit fb3295bf69.
2022-04-15 00:10:17 +03:00
Orhun Parmaksız
bcc22f03cb
chore(release): mark version as release candidate 2022-04-15 00:07:49 +03:00
dependabot[bot]
aeca20fa91 chore(deps): bump codecov/codecov-action from 2 to 3 (#8)
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2 to 3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/codecov/codecov-action/releases">codecov/codecov-action's releases</a>.</em></p>
<blockquote>
<h2>v3.0.0</h2>
<h3>Breaking Changes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/689">#689</a> Bump to node16 and small fixes</li>
</ul>
<h3>Features</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/688">#688</a> Incorporate <code>gcov</code> arguments for the Codecov uploader</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/548">#548</a> build(deps-dev): bump jest-junit from 12.2.0 to 13.0.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/603">#603</a> [Snyk] Upgrade <code>@​actions/core</code> from 1.5.0 to 1.6.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/628">#628</a> build(deps): bump node-fetch from 2.6.1 to 3.1.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/634">#634</a> build(deps): bump node-fetch from 3.1.1 to 3.2.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/636">#636</a> build(deps): bump openpgp from 5.0.1 to 5.1.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/652">#652</a> build(deps-dev): bump <code>@​vercel/ncc</code> from 0.30.0 to 0.33.3</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/653">#653</a> build(deps-dev): bump <code>@​types/node</code> from 16.11.21 to 17.0.18</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/659">#659</a> build(deps-dev): bump <code>@​types/jest</code> from 27.4.0 to 27.4.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/667">#667</a> build(deps): bump actions/checkout from 2 to 3</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/673">#673</a> build(deps): bump node-fetch from 3.2.0 to 3.2.3</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/683">#683</a> build(deps): bump minimist from 1.2.5 to 1.2.6</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/685">#685</a> build(deps): bump <code>@​actions/github</code> from 5.0.0 to 5.0.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/681">#681</a> build(deps-dev): bump <code>@​types/node</code> from 17.0.18 to 17.0.23</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/682">#682</a> build(deps-dev): bump typescript from 4.5.5 to 4.6.3</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/676">#676</a> build(deps): bump <code>@​actions/exec</code> from 1.1.0 to 1.1.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/675">#675</a> build(deps): bump openpgp from 5.1.0 to 5.2.1</li>
</ul>
<h2>v2.1.0</h2>
<h2>2.1.0</h2>
<h3>Features</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/515">#515</a> Allow specifying version of Codecov uploader</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/499">#499</a> build(deps-dev): bump <code>@​vercel/ncc</code> from 0.29.0 to 0.30.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/508">#508</a> build(deps): bump openpgp from 5.0.0-5 to 5.0.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/514">#514</a> build(deps-dev): bump <code>@​types/node</code> from 16.6.0 to 16.9.0</li>
</ul>
<h2>v2.0.3</h2>
<h2>2.0.3</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/464">#464</a> Fix wrong link in the readme</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/485">#485</a> fix: Add override OS and linux default to platform</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/447">#447</a> build(deps): bump openpgp from 5.0.0-4 to 5.0.0-5</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/458">#458</a> build(deps-dev): bump eslint from 7.31.0 to 7.32.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/465">#465</a> build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code> from 4.28.4 to 4.29.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/466">#466</a> build(deps-dev): bump <code>@​typescript-eslint/parser</code> from 4.28.4 to 4.29.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/468">#468</a> build(deps-dev): bump <code>@​types/jest</code> from 26.0.24 to 27.0.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/470">#470</a> build(deps-dev): bump <code>@​types/node</code> from 16.4.0 to 16.6.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/472">#472</a> build(deps): bump path-parse from 1.0.6 to 1.0.7</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/473">#473</a> build(deps-dev): bump <code>@​types/jest</code> from 27.0.0 to 27.0.1</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md">codecov/codecov-action's changelog</a>.</em></p>
<blockquote>
<h2>3.0.0</h2>
<h3>Breaking Changes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/689">#689</a> Bump to node16 and small fixes</li>
</ul>
<h3>Features</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/688">#688</a> Incorporate <code>gcov</code> arguments for the Codecov uploader</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/548">#548</a> build(deps-dev): bump jest-junit from 12.2.0 to 13.0.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/603">#603</a> [Snyk] Upgrade <code>@​actions/core</code> from 1.5.0 to 1.6.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/628">#628</a> build(deps): bump node-fetch from 2.6.1 to 3.1.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/634">#634</a> build(deps): bump node-fetch from 3.1.1 to 3.2.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/636">#636</a> build(deps): bump openpgp from 5.0.1 to 5.1.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/652">#652</a> build(deps-dev): bump <code>@​vercel/ncc</code> from 0.30.0 to 0.33.3</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/653">#653</a> build(deps-dev): bump <code>@​types/node</code> from 16.11.21 to 17.0.18</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/659">#659</a> build(deps-dev): bump <code>@​types/jest</code> from 27.4.0 to 27.4.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/667">#667</a> build(deps): bump actions/checkout from 2 to 3</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/673">#673</a> build(deps): bump node-fetch from 3.2.0 to 3.2.3</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/683">#683</a> build(deps): bump minimist from 1.2.5 to 1.2.6</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/685">#685</a> build(deps): bump <code>@​actions/github</code> from 5.0.0 to 5.0.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/681">#681</a> build(deps-dev): bump <code>@​types/node</code> from 17.0.18 to 17.0.23</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/682">#682</a> build(deps-dev): bump typescript from 4.5.5 to 4.6.3</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/676">#676</a> build(deps): bump <code>@​actions/exec</code> from 1.1.0 to 1.1.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/675">#675</a> build(deps): bump openpgp from 5.1.0 to 5.2.1</li>
</ul>
<h2>2.1.0</h2>
<h3>Features</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/515">#515</a> Allow specifying version of Codecov uploader</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/499">#499</a> build(deps-dev): bump <code>@​vercel/ncc</code> from 0.29.0 to 0.30.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/508">#508</a> build(deps): bump openpgp from 5.0.0-5 to 5.0.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/514">#514</a> build(deps-dev): bump <code>@​types/node</code> from 16.6.0 to 16.9.0</li>
</ul>
<h2>2.0.3</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/464">#464</a> Fix wrong link in the readme</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/485">#485</a> fix: Add override OS and linux default to platform</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/447">#447</a> build(deps): bump openpgp from 5.0.0-4 to 5.0.0-5</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/458">#458</a> build(deps-dev): bump eslint from 7.31.0 to 7.32.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/465">#465</a> build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code> from 4.28.4 to 4.29.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/466">#466</a> build(deps-dev): bump <code>@​typescript-eslint/parser</code> from 4.28.4 to 4.29.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/468">#468</a> build(deps-dev): bump <code>@​types/jest</code> from 26.0.24 to 27.0.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/470">#470</a> build(deps-dev): bump <code>@​types/node</code> from 16.4.0 to 16.6.0</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/472">#472</a> build(deps): bump path-parse from 1.0.6 to 1.0.7</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/473">#473</a> build(deps-dev): bump <code>@​types/jest</code> from 27.0.0 to 27.0.1</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/478">#478</a> build(deps-dev): bump <code>@​typescript-eslint/parser</code> from 4.29.1 to 4.29.2</li>
<li><a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/479">#479</a> build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code> from 4.29.1 to 4.29.2</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="e3c560433a"><code>e3c5604</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/689">#689</a> from codecov/feat/gcov</li>
<li><a href="174efc5984"><code>174efc5</code></a> Update package-lock.json</li>
<li><a href="6243a75ef3"><code>6243a75</code></a> bump to 3.0.0</li>
<li><a href="0d6466ff9c"><code>0d6466f</code></a> Bump to node16</li>
<li><a href="d4729eeb39"><code>d4729ee</code></a> fetch.default</li>
<li><a href="351baf62fa"><code>351baf6</code></a> fix: bash</li>
<li><a href="d8cf6802a8"><code>d8cf680</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/675">#675</a> from codecov/dependabot/npm_and_yarn/openpgp-5.2.1</li>
<li><a href="b775e9013c"><code>b775e90</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/676">#676</a> from codecov/dependabot/npm_and_yarn/actions/exec-1.1.1</li>
<li><a href="2ebc2f0f6f"><code>2ebc2f0</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/682">#682</a> from codecov/dependabot/npm_and_yarn/typescript-4.6.3</li>
<li><a href="8e2ef2bfcc"><code>8e2ef2b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/codecov/codecov-action/issues/681">#681</a> from codecov/dependabot/npm_and_yarn/types/node-17.0.23</li>
<li>Additional commits viewable in <a href="https://github.com/codecov/codecov-action/compare/v2...v3">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=codecov/codecov-action&package-manager=github_actions&previous-version=2&new-version=3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
2022-04-11 18:14:38 +00:00
Orhun Parmaksız
7adf081e16
chore(docker): build Docker images for arm64 2022-04-11 21:07:59 +03:00
Orhun Parmaksız
b8a2c96775
chore(cd): wait for core library to be discoverable on crates.io 2022-04-10 22:20:41 +03:00
Orhun Parmaksız
c089d99689
chore(cd): update dependency installation for crates.io release 2022-04-10 22:05:46 +03:00
Orhun Parmaksız
fb3295bf69
chore(ci): switch to nightly builds 2022-04-10 15:09:45 +03:00
Orhun Parmaksız
51657f8204
chore(ci): disable cross builds 2022-04-10 15:07:26 +03:00
Orhun Parmaksız
c529bc6d11
chore(deps): remove parseit crate from the workspace
Moved to https://github.com/orhun/parseit
2022-04-10 00:29:53 +03:00
Orhun Parmaksız
eb0d4922f0
chore(ci): run shellcheck in lint step 2022-04-09 12:23:55 +03:00
Orhun Parmaksız
7474c89cec
style(script): update indentation in the release script 2022-04-09 12:20:31 +03:00
Orhun Parmaksız
7ef13a10e8
chore(release): add release script and instructions 2022-04-09 12:17:05 +03:00
Orhun Parmaksız
2a16fc077a
chore(release): remove cargo-release config 2022-04-09 12:15:21 +03:00
Orhun Parmaksız
27f8ec47bd
chore(ci): run lychee for checking links 2022-04-09 00:07:46 +03:00
Orhun Parmaksız
285b1db812
chore(release): add release.toml 2022-04-08 23:53:53 +03:00
Orhun Parmaksız
17c1ea61f9
fix(cache): enable cache for custom kernel documentation path 2022-04-07 23:50:52 +03:00