Skip to content

Commit

Permalink
Merge branch 'release/1.1.64'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Dec 10, 2024
2 parents 986910d + 6b9426a commit f4c9008
Show file tree
Hide file tree
Showing 7 changed files with 974 additions and 942 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
# The first step is to check out the repository code
- name: Checking out repository code
uses: actions/checkout@v4.1.7 # Action for checking out a repo.
uses: actions/checkout@v4.2.2 # Action for checking out a repo.
with:
fetch-depth: 0 # Fetches all history for all branches and tags

Expand Down Expand Up @@ -57,10 +57,10 @@ jobs:

steps: # The sequence of tasks that make up a job.
- name: Checking out repository code
uses: actions/checkout@v4.1.7 # Action for checking out a repo.
uses: actions/checkout@v4.2.2 # Action for checking out a repo.

- name: Setup Node.js ${{ matrix.node-version }} Environment
uses: actions/setup-node@v4.0.3 # Action for setting up Node environment.
uses: actions/setup-node@v4.1.0 # Action for setting up Node environment.
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -76,7 +76,7 @@ jobs:
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Cache pnpm Store
uses: actions/cache@v4.0.2 # Action provides caching dependencies and build outputs to improve workflow execution time.
uses: actions/cache@v4.2.0 # Action provides caching dependencies and build outputs to improve workflow execution time.
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} # The path of the directory to cache.
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} # An explicit key for restoring and saving the cache.
Expand Down Expand Up @@ -111,13 +111,13 @@ jobs:
steps:
# Checkout the repository code
- name: Checkout code
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0 # Fetches all history for all branches and tags

# Generate a changelog for the new release using Git
- name: Generate a changelog
uses: orhun/git-cliff-action@v4.0.2
uses: orhun/git-cliff-action@v4.4.2
id: git-cliff
with:
config: cliff.toml # The configuration file for git-cliff
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it
- name: Checkout Repository Code
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2

# This step uses the Git Flow Action to create PRs based on branch types
- name: Execute Git Flow Action
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
release_body: ${{ steps.release.outputs.RELEASE_BODY }}
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0

- name: Generate a changelog
uses: orhun/git-cliff-action@v4.0.2
uses: orhun/git-cliff-action@v4.4.2
id: git-cliff
with:
config: cliff.toml
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
contents: write
steps:
- name: Create the GitHub release
uses: softprops/action-gh-release@v2.0.8
uses: softprops/action-gh-release@v2.1.0
with:
body: ${{ needs.changelog.outputs.release_body }}
prerelease: ${{ contains(github.ref, '-rc') || contains(github.ref, '-beta') || contains(github.ref, '-alpha') }}
4 changes: 2 additions & 2 deletions .github/workflows/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
steps:
# Checkout the code.
- name: Checkout code
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2

# Set up Node.js environment.
- name: Set up Node.js environment
uses: actions/setup-node@v4.0.3
uses: actions/setup-node@v4.1.0

# Install pnpm package manager.
- name: Install pnpm package manager
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [1.1.64] - 2024-12-10

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.1.63] - 2024-09-13

### Miscellaneous Tasks
Expand Down
58 changes: 29 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lilnouns-template",
"version": "1.1.63",
"version": "1.1.64",
"private": true,
"scripts": {
"dev": "pnpm run --stream --parallel /^dev:/",
Expand All @@ -15,64 +15,64 @@
"prepare": "husky || true"
},
"dependencies": {
"@headlessui/react": "2.1.8",
"@heroicons/react": "2.1.5",
"@headlessui/react": "2.2.0",
"@heroicons/react": "2.2.0",
"@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.6.1",
"hono": "4.6.13",
"langs": "2.0.0",
"next": "14.1.4",
"next-seo": "6.6.0",
"next-sitemap": "4.2.3",
"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.11",
"postcss": "8.4.49",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-use": "17.6.0",
"tailwind-merge": "2.5.5",
"tailwindcss": "3.4.16",
"tilg": "0.1.1"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240909.0",
"@cloudflare/workers-types": "4.20241205.0",
"@lingui/cli": "4.8.0",
"@lingui/conf": "4.8.0",
"@lingui/format-po": "4.8.0",
"@lingui/loader": "4.8.0",
"@lingui/macro": "4.8.0",
"@lingui/swc-plugin": "4.0.6",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@types/langs": "2.0.5",
"@types/node": "22.5.4",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"@types/node": "22.10.1",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"cssnano": "7.0.6",
"eslint": "9.10.0",
"eslint": "9.16.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-lingui": "0.8.3",
"eslint-plugin-next-on-pages": "1.13.7",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-tailwindcss": "3.17.4",
"eslint-plugin-unicorn": "55.0.0",
"husky": "9.1.6",
"eslint-plugin-tailwindcss": "3.17.5",
"eslint-plugin-unicorn": "56.0.1",
"husky": "9.1.7",
"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.10.0",
"prettier": "3.3.3",
"pnpm": "9.15.0",
"prettier": "3.4.2",
"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.2",
"typescript": "5.6.2",
"wrangler": "3.77.0"
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-tailwindcss": "0.6.9",
"turbo": "2.3.3",
"typescript": "5.7.2",
"wrangler": "3.94.0"
},
"resolutions": {
"undici": "<=5.28.4",
Expand Down
Loading

0 comments on commit f4c9008

Please sign in to comment.