web_plsql 0.5.0 → 0.5.1

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.
package/CHANGELOG.md CHANGED
@@ -5,13 +5,19 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [?.?.?] - 2021-??-??
8
+ ## [?.?.?] - ????-??-??
9
9
 
10
10
  ### Added
11
11
  ### Changed
12
12
  ### Fixed
13
13
 
14
14
 
15
+ ## [0.5.1] - 2022-09-11
16
+
17
+ ### Fixed
18
+ - Updated all dependencies.
19
+
20
+
15
21
  ## [0.5.0] - 2022-05-09
16
22
 
17
23
  ### Changed
package/README.md CHANGED
@@ -119,11 +119,6 @@ app.listen(PORT);
119
119
 
120
120
  # Missing features
121
121
 
122
- ## Features in mod_plsql that are not (yet) available in web_plsql:
123
- - Support for APEX 5.
124
- - Default exclusion list.
125
- - Basic and custom authentication methods, based on the OWA_SEC package and custom packages.
126
-
127
122
  ## Supported mod_plsql configuration options:
128
123
  - PlsqlDatabaseConnectString -> specified when creating the oracledb connection pool
129
124
  - PlsqlDatabaseUserName -> specified when creating the oracledb connection pool
@@ -136,16 +131,21 @@ app.listen(PORT);
136
131
  - PlsqlPathAlias -> use the "pathAlias.alias" configuration option
137
132
  - PlsqlPathAliasProcedure -> use the "pathAlias.procedure" configuration option
138
133
 
139
- ## Configuration options that are not (yet) supported:
134
+ ## Features in mod_plsql that are planned t be available in web_plsql:
135
+ - PlsqlDocumentPath
136
+ - PlsqlDocumentProcedure
137
+ - PlsqlExclusionList
138
+ - PlsqlRequestValidationFunction
139
+ - Support for APEX 5.
140
+ - Default exclusion list.
141
+ - Basic and custom authentication methods, based on the OWA_SEC package and custom packages.
142
+
143
+ ## Configuration options that will not be supported:
140
144
  - PlsqlIdleSessionCleanupInterval
141
145
  - PlsqlAfterProcedure
142
146
  - PlsqlAlwaysDescribeProcedure
143
147
  - PlsqlBeforeProcedure
144
148
  - PlsqlCGIEnvironmentList
145
- - PlsqlDocumentPath
146
- - PlsqlDocumentProcedure
147
- - PlsqlExclusionList
148
- - PlsqlRequestValidationFunction
149
149
  - PlsqlSessionCookieName
150
150
  - PlsqlSessionStateManagement
151
151
  - PlsqlTransferMode
package/jest.config.js CHANGED
@@ -67,13 +67,6 @@ module.exports = {
67
67
 
68
68
  // A set of global variables that need to be available in all test environments
69
69
  // globals: {},
70
- globals: {
71
- 'ts-jest': {
72
- tsconfig: 'tsconfig.src.json',
73
- diagnostics: true,
74
- useESM: true,
75
- }
76
- },
77
70
 
78
71
  // The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
79
72
  // maxWorkers: "50%",
@@ -183,6 +176,16 @@ module.exports = {
183
176
 
184
177
  // A map from regular expressions to paths to transformers
185
178
  // transform: undefined,
179
+ transform: {
180
+ '\\.[jt]sx?$': [
181
+ 'ts-jest',
182
+ {
183
+ tsconfig: 'tsconfig.src.json',
184
+ diagnostics: true,
185
+ useESM: true,
186
+ },
187
+ ],
188
+ },
186
189
 
187
190
  // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
188
191
  // transformIgnorePatterns: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web_plsql",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "author": "Dieter Oberkofler <dieter.oberkofler@gmail.com>",
5
5
  "license": "MIT",
6
6
  "description": "The Express Middleware for Oracle PL/SQL",
@@ -56,10 +56,10 @@
56
56
  "escape-html": "1.0.3",
57
57
  "express": "4.18.1",
58
58
  "express-status-monitor": "1.3.4",
59
- "http-parser-js": "0.5.6",
59
+ "http-parser-js": "0.5.8",
60
60
  "mkdirp": "1.0.4",
61
61
  "morgan": "1.10.0",
62
- "oracledb": "5.3.0"
62
+ "oracledb": "5.5.0"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@types/body-parser": "1.19.2",
@@ -68,18 +68,18 @@
68
68
  "@types/escape-html": "1.0.2",
69
69
  "@types/mkdirp": "1.0.2",
70
70
  "@types/morgan": "1.9.3",
71
- "@types/node": "17.0.31",
71
+ "@types/node": "18.7.16",
72
72
  "@types/oracledb": "5.2.3",
73
73
  "@types/supertest": "2.0.12",
74
- "@typescript-eslint/eslint-plugin": "5.22.0",
75
- "@typescript-eslint/parser": "5.22.0",
76
- "eslint": "8.15.0",
77
- "jest": "28.1.0",
74
+ "@typescript-eslint/eslint-plugin": "5.36.2",
75
+ "@typescript-eslint/parser": "5.36.2",
76
+ "eslint": "8.23.0",
77
+ "jest": "29.0.3",
78
78
  "rimraf": "3.0.2",
79
79
  "shx": "0.3.4",
80
- "supertest": "6.2.3",
81
- "ts-jest": "28.0.2",
82
- "ts-node": "10.7.0",
83
- "typescript": "4.6.4"
80
+ "supertest": "6.2.4",
81
+ "ts-jest": "29.0.0",
82
+ "ts-node": "10.9.1",
83
+ "typescript": "4.8.3"
84
84
  }
85
85
  }