Skip to content

meta(changelog): Update changelog for 7.84.0 #9705

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

Merged
merged 21 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
84937a6
Merge pull request #9685 from getsentry/master
github-actions[bot] Nov 28, 2023
c29caa8
fix(nextjs): Don't match files called `middleware` in node_modules (#…
Nov 28, 2023
3476772
fix(tracing): Don't attach resource size if null (#9669)
AbhiPrasad Nov 28, 2023
42e0910
fix(remix): Don't capture error responses that are not 5xx on Remix v…
onurtemizkan Nov 28, 2023
bbe8812
fix(astro): Avoid adding the Sentry Vite plugin in dev mode (#9688)
Lms24 Nov 28, 2023
dd34361
fix(utils): regex match port to stop accidental replace (#9676)
AbhiPrasad Nov 28, 2023
76cc1ec
feat: replace prettier with biome
anonrig Nov 27, 2023
109acf8
style: fix styling errors
anonrig Nov 27, 2023
5658aff
perf: remove lerna parallel execution on formatter
anonrig Nov 27, 2023
4ce0289
fix: remove unnecessary gitignores
anonrig Nov 27, 2023
332b231
build: remove verbose logging from biome
anonrig Nov 27, 2023
762a6ce
perf: improve organize imports performance
anonrig Nov 27, 2023
f97020f
chore: update node.js to v20 (#9672)
anonrig Nov 28, 2023
28450ad
fix(utils): Try catch new URL when extracting query params (#9675)
AbhiPrasad Nov 28, 2023
61e9056
feat(web-vitals): Vendor in INP from web-vitals library (#9690)
AbhiPrasad Nov 28, 2023
8c36659
build: add node.js v21 to test matrix (#9680)
anonrig Nov 28, 2023
f500ac7
chore(astro): Add 4.0.0 preview versions to `astro` peer dependency r…
Lms24 Nov 29, 2023
462ea44
ref(nextjs): Set `automaticVercelMonitors` to be `false` by default (…
Nov 29, 2023
27f6ae1
build: enable biome `organizeImports` feature (#9693)
anonrig Nov 29, 2023
59db749
feat(metrics): Add interfaces for metrics (#9698)
AbhiPrasad Nov 29, 2023
e9e03e1
meta(changelog): Update changelog for 7.84.0
Nov 30, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
parserOptions: {
ecmaVersion: 2018,
},
extends: ['@sentry-internal/sdk'],
extends: ['@sentry-internal/sdk/src/base'],
ignorePatterns: [
'coverage/**',
'build/**',
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [8, 10, 12, 14, 16, 18, 20]
node: [8, 10, 12, 14, 16, 18, 20, 21]
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
Expand Down Expand Up @@ -498,7 +498,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [10, 12, 14, 16, 18, 20]
node: [10, 12, 14, 16, 18, 20, 21]
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
Expand Down Expand Up @@ -733,7 +733,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [10, 12, 14, 16, 18, 20]
node: [10, 12, 14, 16, 18, 20, 21]
typescript:
- false
include:
Expand Down Expand Up @@ -774,7 +774,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [14, 16, 18, 20]
node: [14, 16, 18, 20, 21]
remix: [1, 2]
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
Expand Down
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,12 @@ tmp.js
# eslint
.eslintcache
**/eslintcache/*

# deno
packages/deno/build-types
packages/deno/build-test
packages/deno/lib.deno.d.ts

# gatsby
packages/gatsby/gatsby-browser.d.ts
packages/gatsby/gatsby-node.d.ts
3 changes: 0 additions & 3 deletions .prettierignore

This file was deleted.

7 changes: 0 additions & 7 deletions .prettierrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"esbenp.prettier-vscode",
"biomejs.biome",
"dbaeumer.vscode-eslint",
"augustocdias.tasks-shell-input",
"denoland.vscode-deno"
Expand Down
Loading