Skip to content

Commit a398035

Browse files
frontsidejacktaras
andauthored
publish new versions (#240)
Co-authored-by: taras <taras@users.noreply.github.com>
1 parent 67e2f7f commit a398035

File tree

16 files changed

+72
-34
lines changed

16 files changed

+72
-34
lines changed

.changes/auth0-callback-pass-all.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/auth0-email_verified.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/auth0-login-form-preventDefault.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/auth0-stopgap-debug.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/github-api-simulator.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

examples/nextjs/auth0-react/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## \[0.1.19]
4+
5+
- The auth0-simulator `/login/callback` is difficult to inspect. We need the `client_id` passed, but it seems safe to pass the whole `wctx` object as query strings.
6+
- Bumped due to a bump in @simulacrum/auth0-simulator.
7+
- [6b18117](https://github.com/thefrontside/simulacrum/commit/6b18117093e650713fe00d5b0614ba085186db9f) /login/callback should pass all wctx ([#241](https://github.com/thefrontside/simulacrum/pull/241)) on 2022-11-30
8+
- The auth0-simulator userData does not consider the Auth0 email verification functionality. Set it to `true` as a default to enable minimal functionality.
9+
- Bumped due to a bump in @simulacrum/auth0-simulator.
10+
- [547ef7f](https://github.com/thefrontside/simulacrum/commit/547ef7f3a9f7d99023078ff18307bed2b30223af) default auth0 simulator userData email_verified to true on 2022-11-29
11+
- The login form needs `event.preventDefault()` to allow the Auth0 library functions to run instead of default form functionality.
12+
- Bumped due to a bump in @simulacrum/auth0-simulator.
13+
- [046f49f](https://github.com/thefrontside/simulacrum/commit/046f49f3603a7865f3e62c84d81851637971f97f) add event.preventDefault() to login form for submit event on 2022-11-29
14+
- The auth0-simulator uses a logger that was refactored and broke the middleware logging. As a stopgap to the required, involved refactor, log out based on the debug flag.
15+
- Bumped due to a bump in @simulacrum/auth0-simulator.
16+
- [67e2f7f](https://github.com/thefrontside/simulacrum/commit/67e2f7f18d90a2fa53f2f216291ee770aab60440) add stopgap debug in auth0-simulator ([#237](https://github.com/thefrontside/simulacrum/pull/237)) on 2022-11-30
17+
318
## \[0.1.18]
419

520
- Added specific support for the `grant_type` `client_credentials` which is required for machine-to-machine tokens. This grant_type specifically does not run the rules. The `scope` option now accepts an array of objects to specify specific scopes for specific clients.

examples/nextjs/auth0-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simulacrum-examples/nextjs-with-auth0-react",
3-
"version": "0.1.18",
3+
"version": "0.1.19",
44
"private": true,
55
"scripts": {
66
"standup": "npm run sim & npm run dev",
@@ -21,7 +21,7 @@
2121
"react-dom": "17.0.2"
2222
},
2323
"devDependencies": {
24-
"@simulacrum/auth0-simulator": "0.8.2",
24+
"@simulacrum/auth0-simulator": "0.8.3",
2525
"@simulacrum/client": "0.5.4",
2626
"@simulacrum/server": "0.6.3",
2727
"@types/react": "17.0.37",

examples/nextjs/nextjs-auth0/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## \[0.0.20]
4+
5+
- The auth0-simulator `/login/callback` is difficult to inspect. We need the `client_id` passed, but it seems safe to pass the whole `wctx` object as query strings.
6+
- Bumped due to a bump in @simulacrum/auth0-simulator.
7+
- [6b18117](https://github.com/thefrontside/simulacrum/commit/6b18117093e650713fe00d5b0614ba085186db9f) /login/callback should pass all wctx ([#241](https://github.com/thefrontside/simulacrum/pull/241)) on 2022-11-30
8+
- The auth0-simulator userData does not consider the Auth0 email verification functionality. Set it to `true` as a default to enable minimal functionality.
9+
- Bumped due to a bump in @simulacrum/auth0-simulator.
10+
- [547ef7f](https://github.com/thefrontside/simulacrum/commit/547ef7f3a9f7d99023078ff18307bed2b30223af) default auth0 simulator userData email_verified to true on 2022-11-29
11+
- The login form needs `event.preventDefault()` to allow the Auth0 library functions to run instead of default form functionality.
12+
- Bumped due to a bump in @simulacrum/auth0-simulator.
13+
- [046f49f](https://github.com/thefrontside/simulacrum/commit/046f49f3603a7865f3e62c84d81851637971f97f) add event.preventDefault() to login form for submit event on 2022-11-29
14+
- The auth0-simulator uses a logger that was refactored and broke the middleware logging. As a stopgap to the required, involved refactor, log out based on the debug flag.
15+
- Bumped due to a bump in @simulacrum/auth0-simulator.
16+
- [67e2f7f](https://github.com/thefrontside/simulacrum/commit/67e2f7f18d90a2fa53f2f216291ee770aab60440) add stopgap debug in auth0-simulator ([#237](https://github.com/thefrontside/simulacrum/pull/237)) on 2022-11-30
17+
318
## \[0.0.19]
419

520
- Added specific support for the `grant_type` `client_credentials` which is required for machine-to-machine tokens. This grant_type specifically does not run the rules. The `scope` option now accepts an array of objects to specify specific scopes for specific clients.

examples/nextjs/nextjs-auth0/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simulacrum-examples/nextjs-with-nextjs-auth0",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"private": true,
55
"scripts": {
66
"standup": "npm run sim & npm run dev",
@@ -22,7 +22,7 @@
2222
"react-dom": "17.0.2"
2323
},
2424
"devDependencies": {
25-
"@simulacrum/auth0-simulator": "0.8.2",
25+
"@simulacrum/auth0-simulator": "0.8.3",
2626
"@simulacrum/client": "0.5.4",
2727
"@simulacrum/server": "0.6.3",
2828
"@types/react": "17.0.37",

integrations/cypress/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## \[0.6.9]
4+
5+
- The auth0-simulator `/login/callback` is difficult to inspect. We need the `client_id` passed, but it seems safe to pass the whole `wctx` object as query strings.
6+
- Bumped due to a bump in @simulacrum/auth0-simulator.
7+
- [6b18117](https://github.com/thefrontside/simulacrum/commit/6b18117093e650713fe00d5b0614ba085186db9f) /login/callback should pass all wctx ([#241](https://github.com/thefrontside/simulacrum/pull/241)) on 2022-11-30
8+
- The auth0-simulator userData does not consider the Auth0 email verification functionality. Set it to `true` as a default to enable minimal functionality.
9+
- Bumped due to a bump in @simulacrum/auth0-simulator.
10+
- [547ef7f](https://github.com/thefrontside/simulacrum/commit/547ef7f3a9f7d99023078ff18307bed2b30223af) default auth0 simulator userData email_verified to true on 2022-11-29
11+
- The login form needs `event.preventDefault()` to allow the Auth0 library functions to run instead of default form functionality.
12+
- Bumped due to a bump in @simulacrum/auth0-simulator.
13+
- [046f49f](https://github.com/thefrontside/simulacrum/commit/046f49f3603a7865f3e62c84d81851637971f97f) add event.preventDefault() to login form for submit event on 2022-11-29
14+
- The auth0-simulator uses a logger that was refactored and broke the middleware logging. As a stopgap to the required, involved refactor, log out based on the debug flag.
15+
- Bumped due to a bump in @simulacrum/auth0-simulator.
16+
- [67e2f7f](https://github.com/thefrontside/simulacrum/commit/67e2f7f18d90a2fa53f2f216291ee770aab60440) add stopgap debug in auth0-simulator ([#237](https://github.com/thefrontside/simulacrum/pull/237)) on 2022-11-30
17+
318
## \[0.6.8]
419

520
- Added specific support for the `grant_type` `client_credentials` which is required for machine-to-machine tokens. This grant_type specifically does not run the rules. The `scope` option now accepts an array of objects to specify specific scopes for specific clients.

integrations/cypress/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simulacrum/auth0-cypress",
3-
"version": "0.6.8",
3+
"version": "0.6.9",
44
"description": "Cypress simulacrum commands",
55
"main": "dist/support/index.js",
66
"types": "dist/support/index.d.ts",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/auth0/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## \[0.8.3]
4+
5+
- The auth0-simulator `/login/callback` is difficult to inspect. We need the `client_id` passed, but it seems safe to pass the whole `wctx` object as query strings.
6+
- [6b18117](https://github.com/thefrontside/simulacrum/commit/6b18117093e650713fe00d5b0614ba085186db9f) /login/callback should pass all wctx ([#241](https://github.com/thefrontside/simulacrum/pull/241)) on 2022-11-30
7+
- The auth0-simulator userData does not consider the Auth0 email verification functionality. Set it to `true` as a default to enable minimal functionality.
8+
- [547ef7f](https://github.com/thefrontside/simulacrum/commit/547ef7f3a9f7d99023078ff18307bed2b30223af) default auth0 simulator userData email_verified to true on 2022-11-29
9+
- The login form needs `event.preventDefault()` to allow the Auth0 library functions to run instead of default form functionality.
10+
- [046f49f](https://github.com/thefrontside/simulacrum/commit/046f49f3603a7865f3e62c84d81851637971f97f) add event.preventDefault() to login form for submit event on 2022-11-29
11+
- The auth0-simulator uses a logger that was refactored and broke the middleware logging. As a stopgap to the required, involved refactor, log out based on the debug flag.
12+
- [67e2f7f](https://github.com/thefrontside/simulacrum/commit/67e2f7f18d90a2fa53f2f216291ee770aab60440) add stopgap debug in auth0-simulator ([#237](https://github.com/thefrontside/simulacrum/pull/237)) on 2022-11-30
13+
314
## \[0.8.2]
415

516
- Added specific support for the `grant_type` `client_credentials` which is required for machine-to-machine tokens. This grant_type specifically does not run the rules. The `scope` option now accepts an array of objects to specify specific scopes for specific clients.

packages/auth0/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simulacrum/auth0-simulator",
3-
"version": "0.8.2",
3+
"version": "0.8.3",
44
"description": "Run local instance of Auth0 API for local development and integration testing",
55
"main": "dist/index.js",
66
"bin": "bin/index.js",

packages/github-api/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
## \[0.2.0]
4+
5+
- create the @simulacrum/github-api-simulator package
6+
- [0eb4ebf](https://github.com/thefrontside/simulacrum/commit/0eb4ebf7d24b1e06cbba2ccc9f9e247f55b52e60) add changeset on 2022-11-30

packages/github-api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simulacrum/github-api-simulator",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"private": false,
55
"description": "Provides common functionality to frontend app and plugins.",
66
"main": "dist/cjs/index.js",
@@ -19,7 +19,7 @@
1919
"lint": "eslint src",
2020
"prepack": "npm run build",
2121
"build:cjs": "tsc -b tsconfig.dist.json",
22-
"build:esm": "tsc -b tsconfig.esm.json",
22+
"build:esm": "tsc -b tsconfig.esm.json",
2323
"build": "npm run generate && npm run build:cjs && npm run build:esm && copyfiles -f src/schema/schema.docs*.graphql dist/schema",
2424
"start": "PORT=3300 nodemon",
2525
"watch": "NODE_ENV=development npm run concurrently \"tsc -b --watch\" \"npm run generate:watch\"",

0 commit comments

Comments
 (0)