@natlibfi/fixugen-http-server 1.0.5 → 1.1.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.
@@ -10,6 +10,7 @@ updates:
10
10
  interval: "daily"
11
11
  time: "06:30"
12
12
  timezone: "Europe/Helsinki"
13
+ target-branch: "dependencies"
13
14
 
14
15
  # Minor updates to npm production dependencies daily
15
16
  - package-ecosystem: "npm"
@@ -19,10 +20,9 @@ updates:
19
20
  time: "06:45"
20
21
  timezone: "Europe/Helsinki"
21
22
  versioning-strategy: lockfile-only
22
- labels:
23
- - "npm minor dependencies"
24
23
  allow:
25
24
  - dependency-type: "production"
25
+ target-branch: "dependencies"
26
26
 
27
27
  # Major updates to npm dependencies weekly @tuesday
28
28
  # Not possible yet https://github.com/dependabot/dependabot-core/issues/1778
@@ -11,7 +11,7 @@ jobs:
11
11
 
12
12
  strategy:
13
13
  matrix:
14
- node-version: [12.x, 14.x, 16.x, 18.x]
14
+ node-version: [16.x, 18.x, 19.x]
15
15
  # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
16
16
 
17
17
  steps:
@@ -24,7 +24,6 @@ jobs:
24
24
  cache: 'npm'
25
25
  env:
26
26
  NPM_CONFIG_IGNORE_SCRIPTS: true
27
- - run: npm update
28
27
  - run: npm audit --package-lock-only --production --audit-level=high
29
28
  - run: npm ci
30
29
  - run: npm test
@@ -63,7 +62,7 @@ jobs:
63
62
  # Setup .npmrc file to publish to npm
64
63
  - uses: actions/setup-node@v3
65
64
  with:
66
- node-version: '14.x'
65
+ node-version: '18.x'
67
66
  registry-url: 'https://registry.npmjs.org'
68
67
  - run: npm ci
69
68
  - run: npm publish
package/package.json CHANGED
@@ -14,10 +14,10 @@
14
14
  "url": "git@github.com:natlibfi/fixugen-http-server-js.git"
15
15
  },
16
16
  "license": "LGPL-3.0+",
17
- "version": "1.0.5",
17
+ "version": "1.1.0",
18
18
  "main": "./dist/index.js",
19
19
  "engines": {
20
- "node": ">=12"
20
+ "node": ">=18"
21
21
  },
22
22
  "publishConfig": {
23
23
  "access": "public"
@@ -34,19 +34,19 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@natlibfi/fixugen": "^1.1.0",
37
- "@natlibfi/fixura": "^2.2.1",
37
+ "@natlibfi/fixura": "^2.2.5",
38
38
  "chai-http": "^4.3.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@babel/cli": "^7.18.10",
42
- "@babel/core": "^7.18.13",
43
- "@babel/eslint-parser": "^7.18.9",
44
- "@babel/node": "^7.18.10",
45
- "@babel/preset-env": "^7.18.10",
41
+ "@babel/cli": "^7.20.7",
42
+ "@babel/core": "^7.20.12",
43
+ "@babel/eslint-parser": "^7.19.1",
44
+ "@babel/node": "^7.20.7",
45
+ "@babel/preset-env": "^7.20.2",
46
46
  "@babel/register": "^7.18.9",
47
- "@natlibfi/eslint-config-melinda-backend": "^2.0.1",
47
+ "@natlibfi/eslint-config-melinda-backend": "^2.0.2",
48
48
  "babel-plugin-istanbul": "^6.1.1",
49
- "chai": "^4.3.6",
49
+ "chai": "^4.3.7",
50
50
  "cross-env": "^7.0.3",
51
51
  "eslint": "^8.23.0",
52
52
  "express": "^4.18.1",
@@ -63,9 +63,7 @@
63
63
  [
64
64
  "@babel/preset-env",
65
65
  {
66
- "targets": {
67
- "node": "12"
68
- }
66
+ "targets": "maintained node versions"
69
67
  }
70
68
  ]
71
69
  ],