diff --git a/.github/labels.json b/.github/labels.json deleted file mode 100644 index ba001c60..00000000 --- a/.github/labels.json +++ /dev/null @@ -1,170 +0,0 @@ -[ - { - "name": "Priority: Critical", - "color": "ea0056", - "description": "The issue needs urgent attention", - "aliases": [] - }, - { - "name": "Priority: High", - "color": "5666ed", - "description": "Look into this issue before picking up any new work", - "aliases": [] - }, - { - "name": "Priority: Medium", - "color": "f4ff61", - "description": "Try to fix the issue for the next patch/minor release", - "aliases": [] - }, - { - "name": "Priority: Low", - "color": "87dfd6", - "description": "Something worth considering, but not a top priority for the team", - "aliases": [] - }, - { - "name": "Semver: Alpha", - "color": "008480", - "description": "Will make it's way to the next alpha version of the package", - "aliases": [] - }, - { - "name": "Semver: Major", - "color": "ea0056", - "description": "Has breaking changes", - "aliases": [] - }, - { - "name": "Semver: Minor", - "color": "fbe555", - "description": "Mainly new features and improvements", - "aliases": [] - }, - { - "name": "Semver: Next", - "color": "5666ed", - "description": "Will make it's way to the bleeding edge version of the package", - "aliases": [] - }, - { - "name": "Semver: Patch", - "color": "87dfd6", - "description": "A bug fix", - "aliases": [] - }, - { - "name": "Status: Abandoned", - "color": "ffffff", - "description": "Dropped and not into consideration", - "aliases": ["wontfix"] - }, - { - "name": "Status: Accepted", - "color": "e5fbf2", - "description": "The proposal or the feature has been accepted for the future versions", - "aliases": [] - }, - { - "name": "Status: Blocked", - "color": "ea0056", - "description": "The work on the issue or the PR is blocked. Check comments for reasoning", - "aliases": [] - }, - { - "name": "Status: Completed", - "color": "008672", - "description": "The work has been completed, but not released yet", - "aliases": [] - }, - { - "name": "Status: In Progress", - "color": "73dbc4", - "description": "Still banging the keyboard", - "aliases": ["in progress"] - }, - { - "name": "Status: On Hold", - "color": "f4ff61", - "description": "The work was started earlier, but is on hold now. Check comments for reasoning", - "aliases": ["On Hold"] - }, - { - "name": "Status: Review Needed", - "color": "fbe555", - "description": "Review from the core team is required before moving forward", - "aliases": [] - }, - { - "name": "Status: Awaiting More Information", - "color": "89f8ce", - "description": "Waiting on the issue reporter or PR author to provide more information", - "aliases": [] - }, - { - "name": "Status: Need Contributors", - "color": "7057ff", - "description": "Looking for contributors to help us move forward with this issue or PR", - "aliases": [] - }, - { - "name": "Type: Bug", - "color": "ea0056", - "description": "The issue has indentified a bug", - "aliases": ["bug"] - }, - { - "name": "Type: Security", - "color": "ea0056", - "description": "Spotted security vulnerability and is a top priority for the core team", - "aliases": [] - }, - { - "name": "Type: Duplicate", - "color": "00837e", - "description": "Already answered or fixed previously", - "aliases": ["duplicate"] - }, - { - "name": "Type: Enhancement", - "color": "89f8ce", - "description": "Improving an existing feature", - "aliases": ["enhancement"] - }, - { - "name": "Type: Feature Request", - "color": "483add", - "description": "Request to add a new feature to the package", - "aliases": [] - }, - { - "name": "Type: Invalid", - "color": "dbdbdb", - "description": "Doesn't really belong here. Maybe use discussion threads?", - "aliases": ["invalid"] - }, - { - "name": "Type: Question", - "color": "eceafc", - "description": "Needs clarification", - "aliases": ["help wanted", "question"] - }, - { - "name": "Type: Documentation Change", - "color": "7057ff", - "description": "Documentation needs some improvements", - "aliases": ["documentation"] - }, - { - "name": "Type: Dependencies Update", - "color": "00837e", - "description": "Bump dependencies", - "aliases": ["dependencies"] - }, - { - "name": "Good First Issue", - "color": "008480", - "description": "Want to contribute? Just filter by this label", - "aliases": ["good first issue"] - } -] diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml new file mode 100644 index 00000000..af9b6f06 --- /dev/null +++ b/.github/workflows/labels.yml @@ -0,0 +1,15 @@ +name: Sync labels +on: + workflow_dispatch: +permissions: + issues: write +jobs: + labels: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: EndBug/label-sync@v2 + with: + config-file: 'https://raw.githubusercontent.com/thetutlage/static/main/labels.yml' + delete-other-labels: true + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/package.json b/package.json index 8bf374ec..cbcfcf93 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@adonisjs/core", "description": "Core of AdonisJS", - "version": "6.14.0", + "version": "6.14.1", "engines": { "node": ">=20.6.0" }, @@ -77,7 +77,6 @@ "lint": "eslint .", "typecheck": "tsc --noEmit", "format": "prettier --write .", - "sync-labels": "github-label-sync --labels .github/labels.json adonisjs/core", "quick:test": "node --import=ts-node-maintained/register/esm --enable-source-maps --experimental-import-meta-resolve bin/test.ts --force-exit", "citgm": "cross-env FORCE_COLOR=0 node --import=ts-node-maintained/register/esm --experimental-import-meta-resolve bin/test.ts --force-exit", "index:commands": "node --import=ts-node-maintained/register/esm toolkit/main.js index build/commands" @@ -93,10 +92,10 @@ "@japa/expect-type": "^2.0.2", "@japa/file-system": "^2.3.0", "@japa/runner": "^3.1.4", - "@japa/snapshot": "^2.0.5", + "@japa/snapshot": "^2.0.6", "@release-it/conventional-changelog": "^8.0.2", "@swc/core": "^1.7.26", - "@types/node": "^22.5.5", + "@types/node": "^22.7.5", "@types/pretty-hrtime": "^1.0.3", "@types/sinon": "^17.0.3", "@types/supertest": "^6.0.2", @@ -107,23 +106,23 @@ "c8": "^10.1.2", "copyfiles": "^2.4.1", "cross-env": "^7.0.3", - "del-cli": "^5.1.0", + "del-cli": "^6.0.0", "edge.js": "^6.2.0", - "eslint": "^9.11.0", + "eslint": "^9.12.0", "execa": "^9.4.0", "get-port": "^7.1.0", "github-label-sync": "^2.3.1", "husky": "^9.1.6", "prettier": "^3.3.3", - "release-it": "^17.6.0", + "release-it": "^17.7.0", "sinon": "^19.0.2", "supertest": "^7.0.0", "test-console": "^2.0.0", "ts-node-maintained": "^10.9.4", - "typescript": "^5.6.2" + "typescript": "^5.6.3" }, "dependencies": { - "@adonisjs/ace": "^13.2.0", + "@adonisjs/ace": "^13.3.0", "@adonisjs/application": "^8.3.1", "@adonisjs/bodyparser": "^10.0.2", "@adonisjs/config": "^5.0.2", @@ -133,13 +132,13 @@ "@adonisjs/fold": "^10.1.2", "@adonisjs/hash": "^9.0.5", "@adonisjs/health": "^2.0.0", - "@adonisjs/http-server": "^7.2.3", + "@adonisjs/http-server": "^7.2.5", "@adonisjs/logger": "^6.0.3", "@adonisjs/repl": "^4.0.1", "@antfu/install-pkg": "^0.4.1", "@paralleldrive/cuid2": "^2.2.2", "@poppinss/colors": "^4.1.3", - "@poppinss/dumper": "^0.4.1", + "@poppinss/dumper": "^0.4.2", "@poppinss/macroable": "^1.0.3", "@poppinss/utils": "^6.8.3", "@sindresorhus/is": "^7.0.1", @@ -149,7 +148,7 @@ "parse-imports": "^2.2.1", "pretty-hrtime": "^1.0.3", "string-width": "^7.2.0", - "youch": "^3.3.3", + "youch": "^3.3.4", "youch-terminal": "^2.2.3" }, "peerDependencies": {