Skip to content

Commit

Permalink
bumps version
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar committed Jan 10, 2023
1 parent d4a5afe commit 7b0ce43
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [12.1.5] - 2022-12-10

- Fixes Content-type header in AWS lambda framework

## [12.1.4] - 2022-12-26

- Updates dashboard version
Expand Down
2 changes: 1 addition & 1 deletion lib/build/framework/awsLambda/framework.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class AWSResponse extends response_1.BaseResponse {
this.sendJSONResponse = (content) => {
if (!this.responseSet) {
this.content = JSON.stringify(content);
this.setHeader("Context-Type", "application/json", false);
this.setHeader("Content-Type", "application/json", false);
this.responseSet = true;
}
};
Expand Down
2 changes: 1 addition & 1 deletion lib/build/version.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/build/version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/ts/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
export const version = "12.1.4";
export const version = "12.1.5";

export const cdiSupported = ["2.8", "2.9", "2.10", "2.11", "2.12", "2.13", "2.14", "2.15"];

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "supertokens-node",
"version": "12.1.4",
"version": "12.1.5",
"description": "NodeJS driver for SuperTokens core",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 7b0ce43

Please sign in to comment.