Skip to content

Commit d231c96

Browse files
authored
Merge branch 'main' into main
Signed-off-by: MattQ <115874885+mattqdev@users.noreply.github.com>
2 parents 1c847a2 + 68959cd commit d231c96

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+479
-101
lines changed

.bun-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.3
1+
1.3.6

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939

4040
steps:
4141
- name: 📥 Checkout
42-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
42+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4343

4444
- name: 🔧 Setup Bun
45-
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2
45+
uses: oven-sh/setup-bun@3d267786b128fe76c2f16a390aa2448b815359f3 # v2
4646
with:
4747
bun-version-file: ".bun-version"
4848

.github/workflows/close-stale-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
20+
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
2121
with:
2222
any-of-labels: "info needed,invalid"
2323
days-before-issue-stale: 30

.github/workflows/color-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: 📥 Checkout
23-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
23+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2424
with:
2525
sparse-checkout-cone-mode: false
2626
sparse-checkout: |

.github/workflows/icon-review.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: 📥 Checkout Fork
23-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
23+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2424
with:
2525
ref: ${{ github.event.pull_request.head.ref }}
2626
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -31,7 +31,7 @@ jobs:
3131
icons/
3232
3333
- name: 📥 Checkout Original
34-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
34+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3535
with:
3636
fetch-depth: 0
3737
path: main
@@ -41,7 +41,7 @@ jobs:
4141
icons/
4242
4343
- name: 🔧 Setup Bun
44-
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2
44+
uses: oven-sh/setup-bun@3d267786b128fe76c2f16a390aa2448b815359f3 # v2
4545
with:
4646
bun-version-file: "main/.bun-version"
4747

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: 📥 Checkout
17-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
17+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1818
with:
1919
# Only fetch the config file from the repository
2020
sparse-checkout-cone-mode: false

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ jobs:
1313

1414
steps:
1515
- name: ✅ Use App Token for the Bot which is allowed to create releases
16-
uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2.2.0
16+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
1717
id: app-token
1818
with:
1919
app-id: ${{ vars.BOT_APP_ID }}
2020
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
2121

2222
- name: 📥 Checkout
23-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
23+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2424
with:
2525
# Required for fetching tags and generating release notes
2626
fetch-depth: 0
2727
token: ${{ steps.app-token.outputs.token }}
2828

2929
- name: 🔧 Setup Bun
30-
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2
30+
uses: oven-sh/setup-bun@3d267786b128fe76c2f16a390aa2448b815359f3 # v2
3131
with:
3232
bun-version-file: ".bun-version"
3333

@@ -66,7 +66,7 @@ jobs:
6666
run: bunx @vscode/vsce package
6767

6868
- name: 🔒 Attest artifacts
69-
uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0
69+
uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1.0
7070
# Read: https://docs.github.com/en/actions/security-guides/using-artifact-attestations-to-establish-provenance-for-builds
7171
with:
7272
subject-path: ${{ env.EXTENSION_FILE }}

.vscode/tasks.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"version": "2.0.0",
33
"tasks": [
44
{
5-
"type": "bun",
6-
"script": "bun run build",
5+
"type": "shell",
6+
"command": "bun run build",
77
"problemMatcher": [],
88
"label": "bun: build",
99
"detail": "bun run build",
@@ -13,8 +13,8 @@
1313
}
1414
},
1515
{
16-
"type": "bun",
17-
"script": "bun run test",
16+
"type": "shell",
17+
"command": "bun run test",
1818
"problemMatcher": [],
1919
"label": "bun: test",
2020
"detail": "bun run test",

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,55 @@
22

33
# Changelog
44

5+
## v5.31.0
6+
7+
[compare changes](https://github.com/material-extensions/vscode-material-icon-theme/compare/v5.30.0...v5.31.0)
8+
9+
### 🚀 Enhancements
10+
11+
- Add 'terraformignore' file extension to terraform icon configuration ([#3305](https://github.com/material-extensions/vscode-material-icon-theme/pull/3305))
12+
- Add folder icon for gemini ai ([#3313](https://github.com/material-extensions/vscode-material-icon-theme/pull/3313))
13+
14+
### 🩹 Fixes
15+
16+
- Bring claude icons into 16x16 grid ([2821c2ac](https://github.com/material-extensions/vscode-material-icon-theme/commit/2821c2ac))
17+
- Update Blender logo ([#3285](https://github.com/material-extensions/vscode-material-icon-theme/pull/3285))
18+
- Add 'uv.lock' to uv file icon recognition (Fixes #3316) ([#3317](https://github.com/material-extensions/vscode-material-icon-theme/pull/3317), [#3316](https://github.com/material-extensions/vscode-material-icon-theme/issues/3316))
19+
20+
### ❤️ Contributors
21+
22+
- Philipp Kief ([@PKief](https://github.com/PKief))
23+
- Danny McGrath ([@mcgrathd](https://github.com/mcgrathd))
24+
- Yen Cheng Lin ([@ridemountainpig](https://github.com/ridemountainpig))
25+
- Anselm Hahn ([@Anselmoo](https://github.com/Anselmoo))
26+
27+
## v5.30.0
28+
29+
[compare changes](https://github.com/material-extensions/vscode-material-icon-theme/compare/v5.29.0...v5.30.0)
30+
31+
### 🚀 Enhancements
32+
33+
- Give Visual Studio icon to Solution Filter files ([#3272](https://github.com/material-extensions/vscode-material-icon-theme/pull/3272))
34+
- Migrations folder ([#3187](https://github.com/material-extensions/vscode-material-icon-theme/pull/3187))
35+
- Add salt file and folder icons ([#3275](https://github.com/material-extensions/vscode-material-icon-theme/pull/3275))
36+
- Add additional esbuild file patterns ([5801a121](https://github.com/material-extensions/vscode-material-icon-theme/commit/5801a121))
37+
- Apply folder-docs to diary and notes ([#3292](https://github.com/material-extensions/vscode-material-icon-theme/pull/3292))
38+
- Added some folder names ([#3293](https://github.com/material-extensions/vscode-material-icon-theme/pull/3293))
39+
- Extended folder-functions to include composables folders ([#3301](https://github.com/material-extensions/vscode-material-icon-theme/pull/3301))
40+
41+
### 🩹 Fixes
42+
43+
- Update Deno logo to new version ([#3278](https://github.com/material-extensions/vscode-material-icon-theme/pull/3278))
44+
45+
### ❤️ Contributors
46+
47+
- Goncalo Espinha ([@gespinha](https://github.com/gespinha))
48+
- Motte ([@dmotte](https://github.com/dmotte))
49+
- Roman ([@GameRoMan](https://github.com/GameRoMan))
50+
- Philipp Kief ([@PKief](https://github.com/PKief))
51+
- Lindsey ([@lindseystead](https://github.com/lindseystead))
52+
- Firecrafter28 ([@Firecrafter28](https://github.com/Firecrafter28))
53+
554
## v5.29.0
655

756
[compare changes](https://github.com/material-extensions/vscode-material-icon-theme/compare/v5.28.0...v5.29.0)

icons/blender.svg

Lines changed: 1 addition & 1 deletion
Loading

0 commit comments

Comments
 (0)