Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #402

Merged
merged 1 commit into from
Jul 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/bundler-shutdown.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/cli-exit-code.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/manifest-builder-warnings.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/manifest-watcher.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/remove-agent-interactor-dep.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @bigtest/agent

## 0.7.2

### Patch Changes

- 942ff150: make @bigtest/interactor a devDependency only since it is only used in
tests

## 0.7.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bigtest/agent",
"version": "0.7.1",
"version": "0.7.2",
"description": "Agent for connecting test environments (browsers) to BigTest",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# @bigtest/bundler

## 0.6.1

### Patch Changes

- 7063bce3: The `try`/`finally` in `Bundler` was not wrapping the code that it should have; fix this by wrapping more.
- 7063bce3: Properly ignore `node_modules` from `Bundler` file watcher.

## 0.6.0

### Minor Changes

- 6bd0e8a5: Refactor the manifest builder to use Rollup instead of Parcel.
2 changes: 1 addition & 1 deletion packages/bundler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bigtest/bundler",
"version": "0.6.0",
"version": "0.6.1",
"description": "Effection wrappers for working with a bundler",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @bigtest/cli

## 0.7.0

### Minor Changes

- c07415a4: Set exit code based on result of running test suite

### Patch Changes

- Updated dependencies [7063bce3]
- @bigtest/[email protected]

## 0.6.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bigtest/cli",
"version": "0.6.3",
"version": "0.7.0",
"description": "Use BigTest",
"repository": "https://github.com/thefrontside/bigtest.git",
"author": "Frontside Engineering <[email protected]>",
Expand Down Expand Up @@ -45,7 +45,7 @@
"@bigtest/effection": "^0.5.1",
"@bigtest/performance": "^0.5.0",
"@bigtest/project": "^0.5.1",
"@bigtest/server": "^0.8.0",
"@bigtest/server": "^0.8.1",
"@effection/node": "^0.8.0",
"capture-console": "^1.0.1",
"deepmerge": "^4.2.2",
Expand Down
11 changes: 11 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.8.1

### Patch Changes

- 7063bce3: Work around bug in node.js that throws warnings when using `fs.promises.truncate()`: https://github.com/nodejs/node/issues/34189
- Updated dependencies [7063bce3]
- Updated dependencies [7063bce3]
- Updated dependencies [942ff150]
- @bigtest/[email protected]
- @bigtest/[email protected]

## 0.8.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bigtest/server",
"version": "0.8.0",
"version": "0.8.1",
"description": "BigTest Server",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
Expand Down Expand Up @@ -44,9 +44,9 @@
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@bigtest/agent": "^0.7.1",
"@bigtest/agent": "^0.7.2",
"@bigtest/atom": "^0.7.0",
"@bigtest/bundler": "^0.6.0",
"@bigtest/bundler": "^0.6.1",
"@bigtest/driver": "^0.5.1",
"@bigtest/effection": "^0.5.1",
"@bigtest/effection-express": "^0.6.0",
Expand Down