Skip to content

Commit 4e65b10

Browse files
committed
(#525) Bump version to 2.7.0
This bumps the version of all packages to their latest minor or patch versions. In addition, this upgrades Astro to version 6.x, which then resolves it's dependencies to the needed versions.
1 parent 01037d0 commit 4e65b10

Some content is hidden

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

50 files changed

+4200
-4266
lines changed

.github/workflows/audit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: actions/setup-node@v4
8+
- uses: actions/setup-node@v6
99
with:
10-
node-version: 20
10+
node-version-file: 'package.json'
1111
- run: yarn install --immutable
1212
- name: Run yarn npm audit
1313
run: yarn audit

.github/workflows/eslint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: actions/setup-node@v4
8+
- uses: actions/setup-node@v6
99
with:
10-
node-version: 20
10+
node-version-file: 'package.json'
1111
- run: yarn
1212
- run: yarn eslint

.github/workflows/publish-dry-run.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
- uses: actions/checkout@v4
88
with:
99
fetch-depth: 0
10-
- uses: actions/setup-node@v4
10+
- uses: actions/setup-node@v6
1111
with:
12-
node-version: 24
12+
node-version-file: 'package.json'
1313
- run: yarn
1414
- run: yarn publish-dry-run

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
18-
- uses: actions/setup-node@v4
18+
- uses: actions/setup-node@v6
1919
with:
20-
node-version: 24
20+
node-version-file: 'package.json'
2121
registry-url: 'https://registry.npmjs.org'
2222
- run: yarn
2323
- run: yarn workspaces foreach --all --no-private npm publish --tolerate-republish --access public

.github/workflows/stylelint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: actions/setup-node@v4
8+
- uses: actions/setup-node@v6
99
with:
10-
node-version: 20
10+
node-version-file: 'package.json'
1111
- run: yarn
1212
- run: yarn run stylelint "src/scss/**/*.scss"

.yarn/releases/yarn-4.10.3.cjs

Lines changed: 0 additions & 942 deletions
This file was deleted.

.yarn/releases/yarn-4.13.0.cjs

Lines changed: 940 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ checksumBehavior: update
22

33
nodeLinker: node-modules
44

5-
yarnPath: .yarn/releases/yarn-4.10.3.cjs
6-
75
npmRegistryServer: "https://registry.npmjs.org"
86

97
npmScopes:
108
chocolatey-software:
119
npmRegistryServer: "https://registry.npmjs.org"
10+
11+
yarnPath: .yarn/releases/yarn-4.13.0.cjs

package.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
{
22
"name": "choco-theme",
3-
"version": "2.6.0",
4-
"packageManager": "yarn@4.10.3",
3+
"version": "2.7.0",
4+
"packageManager": "yarn@4.13.0",
55
"private": true,
66
"license": "Apache-2.0",
77
"repository": {
88
"type": "git",
99
"url": "git+https://github.com/chocolatey/choco-theme.git"
1010
},
11+
"engines": {
12+
"node": ">=22.12.0"
13+
},
1114
"workspaces": [
1215
"packages/*"
1316
],
1417
"devDependencies": {
15-
"cssnano": "^7.1.1",
16-
"postcss": "^8.5.6",
17-
"sass": "^1.90.0",
18-
"stylelint": "^16.24.0",
18+
"cssnano": "^7.1.4",
19+
"postcss": "^8.5.9",
20+
"sass": "^1.99.0",
21+
"stylelint": "^16.26.1",
1922
"stylelint-config-twbs-bootstrap": "^16.1.0"
2023
},
2124
"scripts": {

packages/astro/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@chocolatey-software/astro",
3-
"version": "2.6.0",
3+
"version": "2.7.0",
44
"description": "Chocolatey Software theme assets for Astro.",
55
"author": "Chocolatey Software (https://chocolatey.org/)",
66
"homepage": "https://github.com/chocolatey/choco-theme/blob/main/packages/astro#readme",
77
"license": "Apache-2.0",
88
"dependencies": {
9-
"@astrojs/mdx": "4.3.13",
10-
"@astrojs/node": "9.5.4",
11-
"@astrojs/rss": "4.0.15",
12-
"@astrojs/sitemap": "3.7.0",
13-
"astro": "5.18.0",
9+
"@astrojs/mdx": "5.0.3",
10+
"@astrojs/node": "10.0.4",
11+
"@astrojs/rss": "4.0.18",
12+
"@astrojs/sitemap": "3.7.2",
13+
"astro": "6.1.5",
1414
"rehype-mermaid": "^3.0.0",
1515
"remark-custom-header-id": "^1.0.0"
1616
},

0 commit comments

Comments
 (0)