@evenicanpm/admin-db-migrations 2.4.2 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,10 +12,10 @@ jobs:
12
12
 
13
13
  steps:
14
14
  - name: Checkout
15
- uses: actions/checkout@v5
15
+ uses: actions/checkout@v7
16
16
 
17
17
  - name: Set up Python
18
- uses: actions/setup-python@v5
18
+ uses: actions/setup-python@v6
19
19
  with:
20
20
  python-version: "3.12"
21
21
 
@@ -30,7 +30,7 @@ jobs:
30
30
 
31
31
  - name: Use Node.js
32
32
  if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}
33
- uses: actions/setup-node@v4
33
+ uses: actions/setup-node@v6
34
34
  with:
35
35
  node-version: 22
36
36
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @evenicanpm/admin-db-migrations
2
2
 
3
+ ## 2.5.0
4
+
3
5
  ## 2.4.2
4
6
 
5
7
  ### Patch Changes
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@evenicanpm/admin-db-migrations",
3
- "version": "2.4.2",
3
+ "version": "2.5.0",
4
4
  "description": "This repository contains the database schema and PostgreSQL migration scripts for the admin panel. All database migrations are managed using [Dbmate](https://github.com/amacneil/dbmate), a lightweight, language-agnostic migration tool.",
5
5
  "license": "ISC",
6
6
  "author": "",
7
7
  "type": "commonjs",
8
8
  "main": "index.js",
9
- "devDependencies": {
10
- "dbmate": "^2.33.0"
11
- },
12
9
  "scripts": {
13
10
  "migrate:up": "dbmate -e DATABASE_URL up"
11
+ },
12
+ "devDependencies": {
13
+ "dbmate": "^2.33.0"
14
14
  }
15
- }
15
+ }