Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
sachinsenal0x64 authored Jun 17, 2024
2 parents 05565fe + 285cd3e commit c47b4e8
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ If eza does something unexpected, or its output looks wrong, or it displays an e

- The version of eza being used (`eza --version`)
- The command-line arguments you are using
- Your shell and terminal
- Your operating system and hardware platform

If it’s a crash, please include the full text of the crash that gets printed to the screen. If you’re seeing unexpected behaviour, a screenshot of the issue will help a lot.
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ on:
- cron: '0 0 * * *'
push:
paths:
- '.github/workflows/audit.yml'
- '**/Cargo.toml'
- '**/Cargo.lock'
- 'deny.toml'
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@cargo-deny
- name: Scan for vulnerabilities
run: cargo deny check advisories
run: cargo deny check
6 changes: 3 additions & 3 deletions .github/workflows/flake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check Nix flake inputs
uses: DeterminateSystems/flake-checker-action@v7
uses: DeterminateSystems/flake-checker-action@v8

check:
name: Check Nix Flake
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v11
uses: DeterminateSystems/nix-installer-action@v12
- name: Setup Nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Nix Flake Check
Expand All @@ -57,7 +57,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v11
uses: DeterminateSystems/nix-installer-action@v12
- name: Setup Nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Nix Build
Expand Down
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## [0.18.18] - 2024-06-13

### Features

- Extend deny check in audit workflow to all
- Add deny.toml and workflow file to audit workflow paths
- Run on all features by default
- Ask for shell and terminal in bug report template

### Build

- Bump unicode-width from 0.1.12 to 0.1.13
- Bump DeterminateSystems/flake-checker-action from 7 to 8
- Bump DeterminateSystems/nix-installer-action from 11 to 12

## [0.18.17] - 2024-06-05

### Features

- Add icon for Nushell extension

### Miscellaneous Tasks

- Release eza v0.18.17

### Build

- Bump trycmd from 0.15.1 to 0.15.2
- Bump libc from 0.2.154 to 0.2.155

## [0.18.16] - 2024-05-16

### Bug Fixes
Expand All @@ -13,6 +43,10 @@
- Fix typo in `INSTALL.md`
- Use 3 columns for packaging status badge

### Miscellaneous Tasks

- Release eza v0.18.16

### Build

- Bump DeterminateSystems/flake-checker-action from 5 to 7
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ readme = "README.md"
homepage = "https://github.com/eza-community/eza"
license = "MIT"
repository = "https://github.com/eza-community/eza"
version = "0.18.16"
version = "0.18.18"


[package.metadata.deb]
Expand Down
2 changes: 1 addition & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ targets = [
# If true, metadata will be collected with `--all-features`. Note that this can't
# be toggled off if true, if you want to conditionally enable `--all-features` it
# is recommended to pass `--all-features` on the cmd line instead
all-features = false
all-features = true
# If true, metadata will be collected with `--no-default-features`. The same
# caveat with `all-features` applies
no-default-features = false
Expand Down
1 change: 1 addition & 0 deletions src/output/icons.rs
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,7 @@ const EXTENSION_ICONS: Map<&'static str, char> = phf_map! {
"ninja" => '\u{f0774}', // 󰝴
"nix" => '\u{f313}', // 
"node" => Icons::NODEJS, // 
"nu" => Icons::SHELL_CMD, // 
"o" => Icons::BINARY, // 
"obj" => Icons::FILE_3D, // 󰆧
"odf" => '\u{f0784}', // 󰞄
Expand Down

0 comments on commit c47b4e8

Please sign in to comment.