Skip to content

Commit

Permalink
bump version to 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Chakravarthy7102 committed Sep 11, 2023
1 parent 053c81a commit d1e14c3
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 80 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]

## [0.7.2] - 2023-09-11

- Enforces read, write permissions for allowed user on the user management dashboard.

## [0.7.1] - 2023-08-03

- Fixed issues where DELETE request had header `"Content-Type": "application/json"`
Expand Down
10 changes: 7 additions & 3 deletions api_spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ info:
version: 0.0.0
title: Dashboard Interface
description: Interface for dashboard and backend SDK to communicate with each other. All APIs must be prefixed by `{apiDomain}/{apiBasePath}`
note: "All the POST api's would give 403 status code back when user permissions are enabled."

tags:
- name: "User Authentication"
Expand Down Expand Up @@ -1203,15 +1204,18 @@ paths:
emailPassword:
type: object
properties:
enabled: boolean
enabled:
type: boolean
passwordless:
type: object
properties:
enabled: boolean
enabled:
type: boolean
thirdParty:
type: object
properties:
enabled: boolean
enabled:
type: boolean

servers:
# Added by API Auto Mocking Plugin
Expand Down
101 changes: 27 additions & 74 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dashboard",
"version": "0.7.1",
"version": "0.7.2",
"private": true,
"dependencies": {
"@babel/core": "^7.16.0",
Expand Down Expand Up @@ -43,7 +43,7 @@
"semver": "^7.3.5",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"supertokens-node": "^15.0.2",
"supertokens-node": "^15.1.1",
"tailwindcss": "^3.0.2",
"terser-webpack-plugin": "^5.2.5",
"web-vitals": "^2.1.4",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
* under the License.
*/

export const package_version = "0.7.1";
export const package_version = "0.7.2";

0 comments on commit d1e14c3

Please sign in to comment.