Skip to content

Commit 568707d

Browse files
committed
Merge remote-tracking branch 'upstream/master' into feat/move-hub
2 parents 899d4f3 + 29f4af1 commit 568707d

File tree

40 files changed

+9330
-173
lines changed

40 files changed

+9330
-173
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
66

7+
## 7.14.1
8+
9+
- fix(nextjs): Handle CJS API route exports (#5865)
10+
- fix(node): Only set `DeviceContext.boot_time` if `os.uptime()` is valid (#5859)
11+
- fix(tracing): Warn if `resolvers` is not defined in `ApolloServer` config (#5850)
12+
- fix(utils): Normalize when serializing envelope (#5851)
13+
- ref(react): Improve React Router v6 error message (#5853)
14+
715
## 7.14.0
816

917
- feat(nextjs): Add status to data-fetcher spans (#5777)

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"lerna": "3.4.0",
3-
"version": "7.14.0",
3+
"version": "7.14.1",
44
"packages": "packages/*",
55
"npmClient": "yarn",
66
"useWorkspaces": true

packages/angular/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/angular",
3-
"version": "7.14.0",
3+
"version": "7.14.1",
44
"description": "Official Sentry SDK for Angular",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/angular",
@@ -21,9 +21,9 @@
2121
"rxjs": "^6.5.5 || ^7.x"
2222
},
2323
"dependencies": {
24-
"@sentry/browser": "7.14.0",
25-
"@sentry/types": "7.14.0",
26-
"@sentry/utils": "7.14.0",
24+
"@sentry/browser": "7.14.1",
25+
"@sentry/types": "7.14.1",
26+
"@sentry/utils": "7.14.1",
2727
"tslib": "^2.0.0"
2828
},
2929
"devDependencies": {

packages/browser/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/browser",
3-
"version": "7.14.0",
3+
"version": "7.14.1",
44
"description": "Official Sentry SDK for browsers",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/browser",
@@ -16,9 +16,9 @@
1616
"access": "public"
1717
},
1818
"dependencies": {
19-
"@sentry/core": "7.14.0",
20-
"@sentry/types": "7.14.0",
21-
"@sentry/utils": "7.14.0",
19+
"@sentry/core": "7.14.1",
20+
"@sentry/types": "7.14.1",
21+
"@sentry/utils": "7.14.1",
2222
"tslib": "^1.9.3"
2323
},
2424
"devDependencies": {

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/core",
3-
"version": "7.14.0",
3+
"version": "7.14.1",
44
"description": "Base implementation for all Sentry JavaScript SDKs",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/core",
@@ -16,8 +16,8 @@
1616
"access": "public"
1717
},
1818
"dependencies": {
19-
"@sentry/types": "7.14.0",
20-
"@sentry/utils": "7.14.0",
19+
"@sentry/types": "7.14.1",
20+
"@sentry/utils": "7.14.1",
2121
"tslib": "^1.9.3"
2222
},
2323
"scripts": {

packages/core/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const SDK_VERSION = '7.14.0';
1+
export const SDK_VERSION = '7.14.1';

packages/e2e-tests/README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,6 @@ cat > test-applications/my-new-test-application/.npmrc << EOF
4040
@sentry-internal:registry=http://localhost:4873
4141
EOF
4242

43-
# Add a gitignore that ignores lockfiles
44-
cat > test-applications/my-new-test-application/.gitignore << EOF
45-
yarn.lock
46-
package-lock.json
47-
EOF
48-
4943
# Add a test recipe file to the test application
5044
touch test-applications/my-new-test-application/test-recipe.json
5145
```
@@ -56,7 +50,7 @@ To get you started with the recipe, you can copy the following into `test-recipe
5650
{
5751
"$schema": "../../test-recipe-schema.json",
5852
"testApplicationName": "My New Test Application",
59-
"buildCommand": "yarn install --no-lockfile",
53+
"buildCommand": "yarn install --pure-lockfile",
6054
"tests": [
6155
{
6256
"testName": "My new test",
@@ -71,7 +65,9 @@ The `test-recipe.json` files follow a schema (`e2e-tests/test-recipe-schema.json
7165
fields:
7266

7367
- The `buildCommand` command runs only once before any of the tests and is supposed to build the test application. If
74-
this command returns a non-zero exit code, it counts as a failed test and the test application's tests are not run.
68+
this command returns a non-zero exit code, it counts as a failed test and the test application's tests are not run. In
69+
the example above, we use the `--pure-lockfile` flag to install depencies without modifiying the lockfile so that
70+
there aren't any changes in the git worktree after running the tests.
7571
- The `testCommand` command is supposed to run tests on the test application. If the configured command returns a
7672
non-zero exit code, it counts as a failed test.
7773
- A test timeout can be configured via `timeoutSeconds`, it defaults to `60`.

packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/e2e-tests",
3-
"version": "7.14.0",
3+
"version": "7.14.1",
44
"license": "MIT",
55
"engines": {
66
"node": ">=10"

packages/e2e-tests/test-applications/create-react-app/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ yarn-debug.log*
2323
yarn-error.log*
2424

2525
!*.d.ts
26-
yarn.lock
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "../../test-recipe-schema.json",
33
"testApplicationName": "create-react-app",
4-
"buildCommand": "yarn install && yarn build",
4+
"buildCommand": "yarn install --pure-lockfile && yarn build",
55
"tests": []
66
}

0 commit comments

Comments
 (0)