Skip to content

Commit

Permalink
Merge branch 'release/1.1.63'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Sep 13, 2024
2 parents 96262bc + a88422a commit 986910d
Show file tree
Hide file tree
Showing 6 changed files with 489 additions and 465 deletions.
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,12 @@ updates:
- 'react-dom'
- '@types/react'
- '@types/react-dom'
# List of packages to ignore for specific update types
ignore:
- dependency-name: '@lingui/*'
update-types:
- version-update:semver-major
- version-update:semver-minor
- dependency-name: 'eslint'
update-types:
- version-update:semver-major
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

strategy: # Allows you to create a matrix for job configuration.
matrix:
node-version: [18.x, 19.x, 20.x] # Running tests across different environments.
node-version: [18.x, 19.x, 20.x, 21.x, 22.x] # Running tests across different environments.
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps: # The sequence of tasks that make up a job.
Expand All @@ -68,7 +68,6 @@ jobs:
uses: pnpm/action-setup@v4.0.0 # Action for setting up pnpm.
id: pnpm-install
with:
version: ^8
run_install: false

- name: Capture pnpm store directory
Expand Down Expand Up @@ -118,7 +117,7 @@ jobs:

# Generate a changelog for the new release using Git
- name: Generate a changelog
uses: orhun/git-cliff-action@v4.0.0
uses: orhun/git-cliff-action@v4.0.2
id: git-cliff
with:
config: cliff.toml # The configuration file for git-cliff
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: 0

- name: Generate a changelog
uses: orhun/git-cliff-action@v4.0.0
uses: orhun/git-cliff-action@v4.0.2
id: git-cliff
with:
config: cliff.toml
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [1.1.63] - 2024-09-13

### Miscellaneous Tasks

- Add ignore rules for specific updates
- Update Node.js versions in build matrix

## [1.1.62] - 2024-09-02

### Bug Fixes
Expand Down
31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lilnouns-template",
"version": "1.1.62",
"version": "1.1.63",
"private": true,
"scripts": {
"dev": "pnpm run --stream --parallel /^dev:/",
Expand All @@ -15,28 +15,28 @@
"prepare": "husky || true"
},
"dependencies": {
"@headlessui/react": "2.1.3",
"@headlessui/react": "2.1.8",
"@heroicons/react": "2.1.5",
"@lingui/core": "4.8.0",
"@lingui/detect-locale": "4.8.0",
"@lingui/react": "4.8.0",
"autoprefixer": "10.4.20",
"clsx": "2.1.1",
"hono": "4.5.10",
"hono": "4.6.1",
"langs": "2.0.0",
"next": "14.1.4",
"next-seo": "6.6.0",
"next-sitemap": "4.2.3",
"postcss": "8.4.43",
"postcss": "8.4.45",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-use": "17.5.1",
"tailwind-merge": "2.5.2",
"tailwindcss": "3.4.10",
"tailwindcss": "3.4.11",
"tilg": "0.1.1"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240821.1",
"@cloudflare/workers-types": "4.20240909.0",
"@lingui/cli": "4.8.0",
"@lingui/conf": "4.8.0",
"@lingui/format-po": "4.8.0",
Expand All @@ -46,42 +46,43 @@
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@types/langs": "2.0.5",
"@types/node": "22.5.2",
"@types/node": "22.5.4",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"cssnano": "7.0.5",
"eslint": "9.9.1",
"cssnano": "7.0.6",
"eslint": "9.10.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-lingui": "0.3.0",
"eslint-plugin-next-on-pages": "1.13.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-tailwindcss": "3.17.4",
"eslint-plugin-unicorn": "55.0.0",
"husky": "9.1.5",
"husky": "9.1.6",
"incstr": "1.2.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.10",
"mangle-css-class-webpack-plugin": "5.1.0",
"pnpm": "9.9.0",
"pnpm": "9.10.0",
"prettier": "3.3.3",
"prettier-plugin-jsdoc": "1.3.0",
"prettier-plugin-organize-attributes": "1.0.0",
"prettier-plugin-organize-imports": "4.0.0",
"prettier-plugin-tailwindcss": "0.6.6",
"turbo": "2.1.1",
"typescript": "5.5.4",
"wrangler": "3.73.0"
"turbo": "2.1.2",
"typescript": "5.6.2",
"wrangler": "3.77.0"
},
"resolutions": {
"undici": "<=5.28.4",
"hono": "<=4.2.7"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.9.0",
"funding": [
{
"type": "custom",
Expand Down
Loading

0 comments on commit 986910d

Please sign in to comment.