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

feat(devtools-proxy-support): initial shared implementation COMPASS-8072 #418

Merged
merged 32 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
939f173
WIP
addaleax Jul 11, 2024
74404cd
WIP
addaleax Jul 11, 2024
a0a30c0
WIP
addaleax Jul 18, 2024
8f989f7
WIP
addaleax Jul 18, 2024
85ad716
WIP
addaleax Jul 18, 2024
01b018d
WIP
addaleax Jul 22, 2024
f50e351
WIP
addaleax Jul 22, 2024
4195519
WIP
addaleax Jul 22, 2024
8eadc41
WIP
addaleax Jul 23, 2024
8e29562
WIP
addaleax Jul 23, 2024
e8e6d5e
WIP
addaleax Jul 23, 2024
841776f
WIP
addaleax Jul 23, 2024
4fee5aa
Merge remote-tracking branch 'origin/main' into 8072-dev
addaleax Jul 23, 2024
3454f2f
WIP
addaleax Jul 23, 2024
a76bdc6
WIP
addaleax Jul 24, 2024
456a70c
WIP
addaleax Jul 24, 2024
36e66f5
WIP
addaleax Jul 24, 2024
11ff675
WIP
addaleax Jul 24, 2024
37092f4
WIP
addaleax Jul 25, 2024
ca4fb48
Merge remote-tracking branch 'origin/main' into 8072-dev
addaleax Jul 25, 2024
cb12312
fixup: ignore code-points-data changes for testing
addaleax Jul 25, 2024
6d48fbc
fixup: improve debug output for electron integration test
addaleax Jul 25, 2024
e7c01ef
fixup: explain github ci config change
addaleax Jul 25, 2024
d5bd5fc
fixup: improve test failure output
addaleax Jul 25, 2024
c7b8e4c
DEBUG
addaleax Jul 25, 2024
665927d
Revert "DEBUG"
addaleax Jul 25, 2024
8e5c142
fixup: what if this is just prefixed by a sanity check...?
addaleax Jul 25, 2024
399521b
fixup: drive-by: bump oidc-plugin to 1.1.0
addaleax Jul 25, 2024
c6d99f8
fixup: cr
addaleax Jul 31, 2024
191abb1
fixup: apply suggestions from code review
addaleax Jul 31, 2024
7b7c41b
fixup: reformat after cr suggestions
addaleax Jul 31, 2024
edc8694
fixup: add comment
addaleax Jul 31, 2024
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
8 changes: 8 additions & 0 deletions .depalignrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"ignore": {
"node-fetch": [
"^3.3.2",
"^2.6.11"
]
}
}
5 changes: 5 additions & 0 deletions .github/workflows/check-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ jobs:
npm ci
npm run bootstrap-ci -- --scope @mongodb-js/monorepo-tools --stream --include-dependencies
npm run bootstrap-ci -- --stream --since ${SINCE_REF} --include-dependencies

# saslprep source code may have been modified by bootstrapping,
# depending on the OS, so undo that change if it has happened
# (since it can influence subsequent lerna invocations)
git checkout -- packages/saslprep/src/code-points-data.ts
shell: bash

- name: Info
Expand Down
Loading
Loading