Skip to content

Commit 9388789

Browse files
publish new versions (#158)
Co-authored-by: dagda1 <dagda1@users.noreply.github.com>
1 parent 5473a01 commit 9388789

22 files changed

+90
-58
lines changed

.changes/cypress-logger.md

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

.changes/cypress-update.md

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

.changes/debug.md

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

.changes/eslint-update.md

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

.changes/rerun-cypress-tests.md

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

examples/nextjs/auth0-react/CHANGELOG.md

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

3+
## \[0.1.6]
4+
5+
- Enable @simulacrum/auth0-cypress to run against nextjs-auth0.
6+
- Bumped due to a bump in @simulacrum/auth0-simulator.
7+
- [79a6f11](https://github.com/thefrontside/simulacrum/commit/79a6f11e6a5d516314182d5466f0d9657465c92e) Get user tokens ([#162](https://github.com/thefrontside/simulacrum/pull/162)) on 2022-01-04
8+
- Update eslint-config and typescript versions
9+
- Bumped due to a bump in @simulacrum/auth0-simulator.
10+
- [f852573](https://github.com/thefrontside/simulacrum/commit/f852573daefaf3da2675b1233c3c2db38a2b43ba) update eslint-config and typescript on 2021-10-26
11+
312
## \[0.1.5]
413

514
- Add @simulacrum/auth0-cypress package

examples/nextjs/auth0-react/package.json

Lines changed: 4 additions & 4 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.5",
3+
"version": "0.1.6",
44
"private": true,
55
"scripts": {
66
"standup": "npm run sim & npm run dev",
@@ -21,9 +21,9 @@
2121
"react-dom": "17.0.2"
2222
},
2323
"devDependencies": {
24-
"@simulacrum/auth0-simulator": "0.3.0",
25-
"@simulacrum/client": "0.5.2",
26-
"@simulacrum/server": "0.4.0",
24+
"@simulacrum/auth0-simulator": "0.4.0",
25+
"@simulacrum/client": "0.5.3",
26+
"@simulacrum/server": "0.4.1",
2727
"@types/react": "17.0.37",
2828
"eslint": "7.30.0",
2929
"eslint-config-next": "11.0.1",

examples/nextjs/nextjs-auth0/CHANGELOG.md

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

3+
## \[0.0.7]
4+
5+
- Enable @simulacrum/auth0-cypress to run against nextjs-auth0.
6+
- Bumped due to a bump in @simulacrum/auth0-simulator.
7+
- [79a6f11](https://github.com/thefrontside/simulacrum/commit/79a6f11e6a5d516314182d5466f0d9657465c92e) Get user tokens ([#162](https://github.com/thefrontside/simulacrum/pull/162)) on 2022-01-04
8+
- Update eslint-config and typescript versions
9+
- Bumped due to a bump in @simulacrum/auth0-simulator.
10+
- [f852573](https://github.com/thefrontside/simulacrum/commit/f852573daefaf3da2675b1233c3c2db38a2b43ba) update eslint-config and typescript on 2021-10-26
11+
312
## \[0.0.6]
413

514
- Add @simulacrum/auth0-cypress package

examples/nextjs/nextjs-auth0/package.json

Lines changed: 4 additions & 4 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.6",
3+
"version": "0.0.7",
44
"private": true,
55
"scripts": {
66
"sim": "node ./simulator-server.mjs",
@@ -21,9 +21,9 @@
2121
"react-dom": "17.0.2"
2222
},
2323
"devDependencies": {
24-
"@simulacrum/auth0-simulator": "0.3.0",
25-
"@simulacrum/client": "0.5.2",
26-
"@simulacrum/server": "0.4.0",
24+
"@simulacrum/auth0-simulator": "0.4.0",
25+
"@simulacrum/client": "0.5.3",
26+
"@simulacrum/server": "0.4.1",
2727
"@types/react": "17.0.37",
2828
"eslint": "7.30.0",
2929
"eslint-config-next": "11.0.1",

integrations/cypress/CHANGELOG.md

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

3+
## \[0.3.0]
4+
5+
- Simplify cypress logging
6+
- [9b9d82f](https://github.com/thefrontside/simulacrum/commit/9b9d82f27795f745cd9d23b7d16f42ed0c204b3d) simplify cypress logging ([#163](https://github.com/thefrontside/simulacrum/pull/163)) on 2022-01-06
7+
- Enable @simulacrum/auth0-cypress to run against nextjs-auth0.
8+
- [79a6f11](https://github.com/thefrontside/simulacrum/commit/79a6f11e6a5d516314182d5466f0d9657465c92e) Get user tokens ([#162](https://github.com/thefrontside/simulacrum/pull/162)) on 2022-01-04
9+
- Add debug option to createSimulation to add express middleware logging
10+
- [9df79b5](https://github.com/thefrontside/simulacrum/commit/9df79b53e0891d0d3c7946abd450240d4c6cd032) Add debug option to createSimulation to add express middleware logging on 2021-11-25
11+
- Update eslint-config and typescript versions
12+
- [f852573](https://github.com/thefrontside/simulacrum/commit/f852573daefaf3da2675b1233c3c2db38a2b43ba) update eslint-config and typescript on 2021-10-26
13+
- Destroy simulation before creating a new one
14+
- [5473a01](https://github.com/thefrontside/simulacrum/commit/5473a01f22a3ccae8186ab8b1c7e785a1be9bdfb) Rerun cypress tests ([#164](https://github.com/thefrontside/simulacrum/pull/164)) on 2022-01-06
15+
316
## \[0.2.2]
417

518
- specify typeRoots for @simulacrum/auth0-cypress cypress package

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.2.2",
3+
"version": "0.3.0",
44
"description": "Cypress simulacrum commands",
55
"main": "dist/support/index.js",
66
"types": "dist/support/index.d.ts",

package-lock.json

Lines changed: 13 additions & 13 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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[0.4.0]
4+
5+
- Enable @simulacrum/auth0-cypress to run against nextjs-auth0.
6+
- [79a6f11](https://github.com/thefrontside/simulacrum/commit/79a6f11e6a5d516314182d5466f0d9657465c92e) Get user tokens ([#162](https://github.com/thefrontside/simulacrum/pull/162)) on 2022-01-04
7+
- Update eslint-config and typescript versions
8+
- [f852573](https://github.com/thefrontside/simulacrum/commit/f852573daefaf3da2675b1233c3c2db38a2b43ba) update eslint-config and typescript on 2021-10-26
9+
310
## \[0.3.0]
411

512
- Add @simulacrum/auth0-cypress package

packages/auth0/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simulacrum/auth0-simulator",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "Simulate Auth0",
55
"main": "dist/index.js",
66
"bin": "bin/index.js",
@@ -35,7 +35,7 @@
3535
"homepage": "https://github.com/thefrontside/simulacrum#readme",
3636
"dependencies": {
3737
"@effection/process": "^2.0.1",
38-
"@simulacrum/server": "0.4.0",
38+
"@simulacrum/server": "0.4.1",
3939
"@types/faker": "^5.1.7",
4040
"assert-ts": "^0.3.2",
4141
"base64-url": "^2.3.3",
@@ -52,7 +52,7 @@
5252
"@frontside/eslint-config": "^3.0.0",
5353
"@frontside/tsconfig": "^3.0.0",
5454
"@frontside/typescript": "^3.0.0",
55-
"@simulacrum/client": "0.5.2",
55+
"@simulacrum/client": "0.5.3",
5656
"@types/base64-url": "^2.2.0",
5757
"@types/cookie-session": "^2.0.42",
5858
"@types/dedent": "^0.7.0",

packages/client/CHANGELOG.md

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

3+
## \[0.5.3]
4+
5+
- Update eslint-config and typescript versions
6+
- [f852573](https://github.com/thefrontside/simulacrum/commit/f852573daefaf3da2675b1233c3c2db38a2b43ba) update eslint-config and typescript on 2021-10-26
7+
38
## \[0.5.2]
49

510
- Upgrade to effection 2.0

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simulacrum/client",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"description": "connect to simulacrum servers and manipulate them via the control API",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/ldap/CHANGELOG.md

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

3+
## \[0.2.1]
4+
5+
- Update eslint-config and typescript versions
6+
- Bumped due to a bump in @simulacrum/client.
7+
- [f852573](https://github.com/thefrontside/simulacrum/commit/f852573daefaf3da2675b1233c3c2db38a2b43ba) update eslint-config and typescript on 2021-10-26
8+
39
## \[0.2.0]
410

511
- Add an ldap processor implementation.

packages/ldap/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simulacrum/ldap-simulator",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Simulate an LDAP server",
55
"main": "dist/index.js",
66
"bin": "bin/index.js",

packages/server/CHANGELOG.md

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

3+
## \[0.4.1]
4+
5+
- Update eslint-config and typescript versions
6+
- [f852573](https://github.com/thefrontside/simulacrum/commit/f852573daefaf3da2675b1233c3c2db38a2b43ba) update eslint-config and typescript on 2021-10-26
7+
38
## \[0.4.0]
49

510
- Upgrade to effection 2.0

packages/server/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simulacrum/server",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "A server containing simulation state, and the control API to manipulate it",
55
"main": "dist/index.js",
66
"scripts": {
@@ -29,7 +29,7 @@
2929
"dependencies": {
3030
"@effection/atom": "^2.0.1",
3131
"@effection/process": "^2.0.1",
32-
"@simulacrum/ui": "0.3.0",
32+
"@simulacrum/ui": "0.3.1",
3333
"@types/faker": "^5.1.7",
3434
"assert-ts": "^0.3.2",
3535
"cors": "^2.8.5",
@@ -49,7 +49,7 @@
4949
"@frontside/eslint-config": "^3.0.0",
5050
"@frontside/tsconfig": "^3.0.0",
5151
"@frontside/typescript": "^3.0.0",
52-
"@simulacrum/client": "0.5.2",
52+
"@simulacrum/client": "0.5.3",
5353
"@types/cors": "^2.8.10",
5454
"@types/express": "^4.17.11",
5555
"@types/mocha": "^8.2.1",

packages/ui/CHANGELOG.md

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

3+
## \[0.3.1]
4+
5+
- Update eslint-config and typescript versions
6+
- [f852573](https://github.com/thefrontside/simulacrum/commit/f852573daefaf3da2675b1233c3c2db38a2b43ba) update eslint-config and typescript on 2021-10-26
7+
38
## \[0.3.0]
49

510
- update parcel

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simulacrum/ui",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "A web UI to work with a Simulacrum Server",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)