@midwayjs/koa 3.16.0 → 3.16.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/dist/framework.js CHANGED
@@ -121,6 +121,10 @@ let MidwayKoaFramework = class MidwayKoaFramework extends core_1.BaseFramework {
121
121
  }
122
122
  return c[str];
123
123
  },
124
+ set(value) {
125
+ this._querycache = this._querycache || {};
126
+ this._querycache[this.querystring] = value;
127
+ },
124
128
  });
125
129
  const onerrorConfig = this.configService.getConfiguration('onerror');
126
130
  (0, onerror_1.setupOnError)(this.app, onerrorConfig, this.logger);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@midwayjs/koa",
3
- "version": "3.16.0",
3
+ "version": "3.16.1",
4
4
  "description": "Midway Web Framework for KOA",
5
5
  "main": "dist/index.js",
6
6
  "typings": "index.d.ts",
@@ -47,5 +47,5 @@
47
47
  "engines": {
48
48
  "node": ">=12"
49
49
  },
50
- "gitHead": "7e75fe1bdc9a6df2956f9c22e704063aaa022d76"
50
+ "gitHead": "14376294fb13a90c926f5fbd27b84150a47cf3f2"
51
51
  }