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

Gitea support #8131

Draft
wants to merge 23 commits into
base: main
Choose a base branch
from
Draft

Gitea support #8131

wants to merge 23 commits into from

Conversation

anbraten
Copy link

@anbraten anbraten commented Feb 10, 2022

Description

This PR implements basic Gitea support.

Related Issue(s)

Closes #80

How to test

Good question how to test this from start to end 🙈

Release Notes

Support Gitea

Documentation

TODO

TODO

  • add gitea next to other forges
    • allow to configure new gitea forge
  • support login via gitea
  • support gitea url context parsing
  • support prebuilds

const accountAvatarUrl = project.owner?.avatar_url as string;
const account = project.owner?.login as string;

(account === usersGitLabAccount ? ownersRepos : result).push({
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitLab?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just copied the gitlab code and added some placeholders for the ee code yet. I am still quite new to the codebase of Gitpod, but hopefully the ee part is not to critical to run the server for now.

@anbraten
Copy link
Author

@ghuntley as promised on the Gitea discord this is my first draft for the Gitea integration. I can already build the code, but starting a whole deployment of Gitpod on my local pc / a cluster of my own wasn't working for me yet. Could you give me some advise on this or are there any existing integration tests I could use to test it?

@anbraten
Copy link
Author

anbraten commented Feb 17, 2022

/werft run

👎 not authorized

@stale
Copy link

stale bot commented Mar 2, 2022

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the meta: stale This issue/PR is stale and will be closed soon label Mar 2, 2022
@stale stale bot removed the meta: stale This issue/PR is stale and will be closed soon label Mar 4, 2022
async getProviderRepositoriesForUser(params: { user: User, provider: AuthProviderInfo }): Promise<ProviderRepository[]> {
const token = await this.tokenProvider.getTokenForHost(params.user, params.provider.host);
const oauthToken = token.value;
const api = Gitea.create(`https://${params.provider.host}`, oauthToken);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two tiny nitpicks, 1. It is possible for gitea to exist on a subpath (eg. https://example.com/gitea/ etc..), and 2. some users may wish not to use https (not a great idea, but one that people make for a variety of reasons).

You may wish instead of host, to use something like baseURL where users can fill the url scheme and full url (incl. a sub-path if they so require).

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good points. I will have a look and do some tests later. Currently my main problem is still getting a Gitpod instance with those changes up and running. 🙈

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the issue a matter of compute resources available to you, or being able to apply your changes to a running deploy? If the former, the Gitea project likely can assist in providing compute resources, if the later I'm sure if you post the issue you are running into then someone can help.

Copy link
Author

@anbraten anbraten Mar 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I currently using a cluster on vultr with with some credit I had lying around, so should be fine for the beginning, but I will come back to your offer if needed. Main problem is building images of the needed components and deploying those atm. It requires some manual intervention which loads to a pretty slow dev cycle as I have to rebuild the server, deploy it and look for changes ... The gitpod team seems to use telepresence for that, but I am not quite sure how to integrate that with my own cluster.

@anbraten
Copy link
Author

anbraten commented Mar 7, 2022

Whoop! Whoop! Authentication is working now and I got my first Gitea workspace running 🎉

@ghuntley ghuntley added the meta: never-stale This issue can never become stale label Mar 10, 2022
@socket-security
Copy link

socket-security bot commented Mar 17, 2022

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

@ghuntley
Copy link
Contributor

ghuntley commented Mar 17, 2022

/werft run

👍 started the job as gitpod-build-gitea-fork.1

@ghuntley
Copy link
Contributor

ghuntley commented Mar 18, 2022

/werft run

👍 started the job as gitpod-build-gitea-fork.2

@ghuntley
Copy link
Contributor

ghuntley commented Mar 18, 2022

👋 Dropped on by to have a look at the work so far.

Good question how to test this from start to end 🙈

I ran kick-off builds from you as needed (let's coordinate via Discord?) and that will provision a deployment

2022-03-18_10-06-40

2022-03-18_10-06-14

observations

Screen Shot 2022-03-18 at 9 59 53 am

outstanding items

  • create https://www.gitpod.io/docs/gitea-integration/

    • document the create app steps
    • document the activate step (reminder: popup blocker might stop it) 2022-03-18_09-54-20
  • resolve that the redirect url in "New Git Integration" defaults to "gitlab" in https://gitea.staging.gitpod-dev.com/auth/***gitlab***.example.com/callback

  • resolve broken link "Go to developer settings and setup the OAuth application" in "New Git Integration"

  • resolve starting workspace from gitea.

  • confirm able to push from workspace to gitea.

gitea

@anbraten
Copy link
Author

Screenshot from 2022-03-18 11-02-16

@ghuntley Are none Gitpod internal-team accounts disabled on staging environments?


Instead of using https://try.gitea.io maybe https://gitea.com could be used? CC @lunny @techknowlogick

@lunny
Copy link

lunny commented Mar 18, 2022

Screenshot from 2022-03-18 11-02-16

@ghuntley Are none Gitpod internal-team accounts disabled on staging environments?

Instead of using https://try.gitea.io maybe https://gitea.com could be used? CC @lunny @techknowlogick

Yes, https://gitea.com is the formal site. https://try.gitea.io just for test and the repositories will be deleted when disk is full.

@IDerr
Copy link

IDerr commented May 17, 2022

Hello everyone :D
@anbraten is it usable currently with the code in this MR or does it need some more work ?

I would love to try it

Thanks a lot for your amazing work !

@anbraten
Copy link
Author

@IDerr I haven't worked on it for a while. My last problem was executing the tests for the components/server/src/gitea/gitea-context-parser.spec.ts. I was a bit lost on how I could start them. Those tests would help a lot with the context module. That context is needed as it returns the branch, commit etc Gitpod should check out for a provided url which seems to have some tiny issues. Apart from that the gitea implementation just needs some more testing and should be pretty done already.

@IDerr
Copy link

IDerr commented May 17, 2022

ok, i see, I'll try to see to modify some code, and see if I can make it work on my side.

Thanks a lot

Copy link

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@bufbuild/protobuf@1.7.0 None 0 1.45 MB bufbot, bufdev, cmahony, ...7 more
npm/@gitbeaker/rest@39.33.0 None +4 1.84 MB jdalrymple
npm/@probot/get-private-key@1.1.2 environment, filesystem 0 21.2 kB probotbot
npm/@stripe/react-stripe-js@1.16.5 Transitive: environment +8 4.34 MB pololi-stripe
npm/@tailwindcss/forms@0.5.7 Transitive: environment, filesystem, shell, unsafe +61 17 MB thecrypticace
npm/@tanstack/query-async-storage-persister@4.36.1 Transitive: environment +2 2.43 MB tannerlinsley
npm/@tanstack/react-query-devtools@4.36.1 environment +13 16 MB tannerlinsley
npm/@tanstack/react-query-persist-client@4.36.1 Transitive: environment +9 7.23 MB tannerlinsley
npm/@tanstack/react-query@4.36.1 environment +7 7.05 MB tannerlinsley
npm/@testing-library/jest-dom@5.17.0 Transitive: environment +27 5.42 MB testing-library-bot
npm/@types/analytics-node@3.1.14 None 0 6.9 kB types
npm/@types/assert@1.5.10 None 0 7.46 kB types
npm/@types/base-64@1.0.2 None 0 4.71 kB types
npm/@types/chai-subset@1.3.5 None 0 3.5 kB types
npm/@types/chai@4.3.11 None 0 76.8 kB types
npm/@types/cookie-parser@1.4.6 None +1 3.87 MB types
npm/@types/cors@2.8.17 None +1 3.87 MB types
npm/@types/deep-equal-in-any-order@1.0.3 None 0 3.07 kB types
npm/@types/deep-equal@1.0.4 None 0 3.1 kB types
npm/@types/file-saver@2.0.7 None 0 6.31 kB types
npm/@types/jaeger-client@3.18.7 None +2 7.73 MB types
npm/@types/js-yaml@4.0.9 None 0 9.12 kB types
npm/@types/mocha@10.0.6 None 0 95.6 kB types
npm/@types/mysql@2.15.25 None +1 3.89 MB types
npm/@types/node-fetch@2.6.11 None +1 3.87 MB types
npm/@types/node@18.19.10 None 0 3.86 MB types
npm/@types/passport-oauth2@1.4.15 None +3 3.92 MB types
npm/@types/passport@1.0.16 None +1 3.91 MB types
npm/@types/random-number-csprng@1.0.2 None 0 0 B
npm/@types/react-datepicker@4.19.5 Transitive: environment +16 13.4 MB types
npm/@types/react-dom@17.0.25 None +4 1.45 MB types
npm/@types/react-portal@4.0.7 None +4 1.43 MB types
npm/@types/react-router-dom@5.3.3 None +6 1.47 MB types
npm/@types/react-router@5.1.20 None +5 1.46 MB types
npm/@types/react@17.0.75 None +3 1.43 MB types
npm/@types/setimmediate@1.0.4 None 0 4.43 kB types
npm/@types/shelljs@0.8.15 None +3 3.93 MB types
npm/@types/supertest@2.0.16 None +3 3.89 MB types
npm/@types/uuid@8.3.4 None 0 6.67 kB types
npm/@types/validator@13.11.8 None 0 71.2 kB types
npm/abort-controller-x@0.4.3 None 0 191 kB aikoven
npm/analytics-node@6.2.0 Transitive: environment, network +11 804 kB segment-admin
npm/autoprefixer@10.4.17 environment Transitive: filesystem +5 541 kB ai
npm/bitbucket@2.11.0 None +3 573 kB muniftanjim
npm/body-parser@1.20.2 network Transitive: unsafe +1 86.5 kB dougwilson
npm/chai-http@4.4.0 network Transitive: environment, filesystem +14 4.99 MB keithamus
npm/chai@4.4.1 None +6 881 kB keithamus
npm/classnames@2.5.1 None 0 23.6 kB jedwatson
npm/concurrently@6.5.1 environment, filesystem Transitive: shell +3 5.27 MB gustavohenke
npm/configcat-js@6.0.1 None +1 569 kB laliconfigcat
npm/configcat-node@8.0.1 network Transitive: environment +1 88.5 kB laliconfigcat
npm/cross-fetch@3.1.8 network 0 75.1 kB lquixada
npm/dayjs@1.11.10 None 0 664 kB iamkun
npm/deep-equal-in-any-order@2.0.6 None +2 80.8 kB oprogramador
npm/deep-equal@2.2.3 None +4 185 kB ljharb
npm/deepmerge@4.3.1 None 0 31.2 kB tehshrike
npm/gitea-js@1.21.1 None 0 0 B
npm/grpc_tools_node_protoc_ts@5.3.3 filesystem Transitive: environment, eval +2 1.52 MB agreatfool
npm/idb-keyval@6.2.1 None 0 53.8 kB jaffathecake
npm/inversify@6.0.2 None 0 1.52 MB jameskmonger
npm/ioredis-mock@8.9.0 environment, eval Transitive: filesystem, network, shell +20 21.5 MB stipsan
npm/js-cookie@3.0.5 None 0 26.2 kB carhartl
npm/nice-grpc-client-middleware-retry@2.0.2 None 0 0 B
npm/nice-grpc-common@2.0.2 None +1 87.5 kB aikoven
npm/nice-grpc@2.1.7 Transitive: environment, filesystem, network +6 16.3 MB aikoven
npm/opentracing@0.14.7 None 0 195 kB yurishkuro
npm/prettier@3.2.4 environment, filesystem, unsafe 0 8.38 MB prettier-bot
npm/probot@12.3.3 environment, filesystem, shell Transitive: eval, network +109 26.2 MB probotbot
npm/query-string@7.1.3 None +4 61.6 kB sindresorhus
npm/rate-limiter-flexible@2.4.2 None 0 124 kB animir
npm/react-datepicker@4.25.0 Transitive: environment +16 12.7 MB mrusschen
npm/react-focus-on@3.9.1 Transitive: environment +24 2.77 MB kashey
npm/redlock@5.0.0-beta2 None +1 97.9 kB mike-marcacci
npm/reflect-metadata@0.1.14 None 0 295 kB rbuckton
npm/slugify@1.6.6 None 0 20.9 kB simov
npm/stripe@9.16.0 network, shell +1 6.94 MB stripe-bindings
npm/supertest@6.3.4 network Transitive: environment, filesystem +8 789 kB titanism
npm/tailwindcss@3.4.1 environment, filesystem Transitive: shell, unsafe +59 16.9 MB adamwathan
npm/ts-node@10.9.2 environment, filesystem, unsafe +14 5.27 MB blakeembrey
npm/ts-proto@1.167.1 Transitive: environment, filesystem, network, shell +9 39.8 MB shaberman
npm/twilio@4.21.0 Transitive: network +5 12.4 MB twilio-dx
npm/url@0.11.3 Transitive: eval +9 574 kB ljharb
npm/validator@13.11.0 None 0 751 kB profnandaa
npm/vscode-uri@3.0.8 None 0 204 kB vscode-bot
npm/ws@7.5.9 network 0 122 kB lpinca

🚮 Removed packages: npm/@babel/code-frame@7.22.10, npm/@babel/compat-data@7.22.9, npm/@babel/core@7.22.10, npm/@babel/eslint-parser@7.22.10, npm/@babel/generator@7.22.10, npm/@babel/helper-annotate-as-pure@7.16.0, npm/@babel/helper-builder-binary-assignment-operator-visitor@7.22.10, npm/@babel/helper-create-class-features-plugin@7.22.10, npm/@babel/helper-create-regexp-features-plugin@7.22.9, npm/@babel/helper-define-polyfill-provider@0.4.2, npm/@babel/helper-module-imports@7.22.5, npm/@babel/helper-module-transforms@7.22.9, npm/@babel/helper-remap-async-to-generator@7.22.9, npm/@babel/helper-replace-supers@7.22.9, npm/@babel/helper-validator-identifier@7.22.5, npm/@babel/helper-validator-option@7.22.5, npm/@babel/parser@7.22.10, npm/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5, npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5, npm/@babel/plugin-proposal-class-properties@7.16.0, npm/@babel/plugin-proposal-decorators@7.22.10, npm/@babel/plugin-proposal-nullish-coalescing-operator@7.16.0, npm/@babel/plugin-proposal-numeric-separator@7.16.0, npm/@babel/plugin-proposal-optional-chaining@7.16.0, npm/@babel/plugin-proposal-private-methods@7.16.0, npm/@babel/plugin-syntax-flow@7.22.5, npm/@babel/plugin-syntax-import-assertions@7.22.5, npm/@babel/plugin-syntax-import-attributes@7.22.5, npm/@babel/plugin-syntax-jsx@7.16.0, npm/@babel/plugin-syntax-typescript@7.22.5, npm/@babel/plugin-transform-arrow-functions@7.22.5, npm/@babel/plugin-transform-async-generator-functions@7.22.10, npm/@babel/plugin-transform-async-to-generator@7.22.5, npm/@babel/plugin-transform-block-scoped-functions@7.22.5, npm/@babel/plugin-transform-block-scoping@7.22.10, npm/@babel/plugin-transform-class-properties@7.22.5, npm/@babel/plugin-transform-class-static-block@7.22.5, npm/@babel/plugin-transform-classes@7.22.6, npm/@babel/plugin-transform-computed-properties@7.22.5, npm/@babel/plugin-transform-destructuring@7.22.10, npm/@babel/plugin-transform-dotall-regex@7.22.5, npm/@babel/plugin-transform-duplicate-keys@7.22.5, npm/@babel/plugin-transform-dynamic-import@7.22.5, npm/@babel/plugin-transform-exponentiation-operator@7.22.5, npm/@babel/plugin-transform-export-namespace-from@7.22.5, npm/@babel/plugin-transform-flow-strip-types@7.22.5, npm/@babel/plugin-transform-for-of@7.22.5, npm/@babel/plugin-transform-function-name@7.22.5, npm/@babel/plugin-transform-json-strings@7.22.5, npm/@babel/plugin-transform-literals@7.22.5, npm/@babel/plugin-transform-logical-assignment-operators@7.22.5, npm/@babel/plugin-transform-member-expression-literals@7.22.5, npm/@babel/plugin-transform-modules-amd@7.22.5, npm/@babel/plugin-transform-modules-commonjs@7.22.5, npm/@babel/plugin-transform-modules-systemjs@7.22.5, npm/@babel/plugin-transform-modules-umd@7.22.5, npm/@babel/plugin-transform-new-target@7.22.5, npm/@babel/plugin-transform-nullish-coalescing-operator@7.22.5, npm/@babel/plugin-transform-numeric-separator@7.22.5, npm/@babel/plugin-transform-object-rest-spread@7.22.5, npm/@babel/plugin-transform-object-super@7.22.5, npm/@babel/plugin-transform-optional-catch-binding@7.22.5, npm/@babel/plugin-transform-optional-chaining@7.22.10, npm/@babel/plugin-transform-private-methods@7.22.5, npm/@babel/plugin-transform-private-property-in-object@7.22.5, npm/@babel/plugin-transform-property-literals@7.22.5, npm/@babel/plugin-transform-react-constant-elements@7.16.0, npm/@babel/plugin-transform-react-display-name@7.16.0, npm/@babel/plugin-transform-react-jsx-development@7.16.0, npm/@babel/plugin-transform-react-jsx@7.16.0, npm/@babel/plugin-transform-react-pure-annotations@7.16.0, npm/@babel/plugin-transform-regenerator@7.22.10, npm/@babel/plugin-transform-reserved-words@7.22.5, npm/@babel/plugin-transform-runtime@7.22.10, npm/@babel/plugin-transform-shorthand-properties@7.22.5, npm/@babel/plugin-transform-spread@7.22.5, npm/@babel/plugin-transform-sticky-regex@7.22.5, npm/@babel/plugin-transform-template-literals@7.22.5, npm/@babel/plugin-transform-typeof-symbol@7.22.5, npm/@babel/plugin-transform-typescript@7.22.10, npm/@babel/plugin-transform-unicode-escapes@7.22.10, npm/@babel/plugin-transform-unicode-property-regex@7.22.5, npm/@babel/plugin-transform-unicode-regex@7.22.5, npm/@babel/plugin-transform-unicode-sets-regex@7.22.5, npm/@babel/preset-env@7.22.10, npm/@babel/preset-react@7.16.0, npm/@babel/preset-typescript@7.22.5, npm/@babel/runtime-corejs3@7.16.0, npm/@babel/runtime@7.16.0, npm/@babel/template@7.22.5, npm/@babel/traverse@7.22.10, npm/@babel/types@7.22.10, npm/@discoveryjs/json-ext@0.5.5, npm/@eslint-community/regexpp@4.6.2, npm/@floating-ui/core@1.5.0, npm/@floating-ui/dom@1.5.3, npm/@floating-ui/react-dom@2.0.2, npm/@gitbeaker/core@39.12.0, npm/@gitbeaker/rest@39.12.0, npm/@grpc/proto-loader@0.7.9, npm/@hapi/bourne@2.0.0, npm/@octokit/auth-app@3.6.1, npm/@octokit/auth-oauth-user@1.3.0, npm/@octokit/auth-unauthenticated@2.1.0, npm/@octokit/core@3.5.1, npm/@octokit/openapi-types@11.2.0, npm/@octokit/plugin-paginate-rest@2.17.0, npm/@octokit/plugin-throttling@3.5.2, npm/@octokit/request@5.6.2, npm/@octokit/types@6.34.0, npm/@octokit/webhooks-types@4.12.0, npm/@octokit/webhooks@9.17.0, npm/@popperjs/core@2.11.6, npm/@probot/get-private-key@1.1.1, npm/@probot/octokit-plugin-config@1.1.3, npm/@protobuf-ts/runtime@2.8.2, npm/@sqltools/formatter@1.2.3, npm/@stripe/react-stripe-js@1.7.2, npm/@tailwindcss/forms@0.5.5, npm/@tanstack/match-sorter-utils@8.7.6, npm/@tanstack/query-async-storage-persister@4.29.19, npm/@tanstack/react-query-devtools@4.29.19, npm/@tanstack/react-query-persist-client@4.29.19, npm/@tanstack/react-query@4.29.19, npm/@testing-library/jest-dom@5.14.1, npm/@types/analytics-node@3.1.9, npm/@types/assert@1.5.6, npm/@types/babel__core@7.20.1, npm/@types/babel__traverse@7.14.2, npm/@types/base-64@1.0.0, npm/@types/body-parser@1.19.1, npm/@types/chai-subset@1.3.3, npm/@types/chai@4.2.22, npm/@types/cookie-parser@1.4.2, npm/@types/cookiejar@2.1.2, npm/@types/cors@2.8.12, npm/@types/deep-equal-in-any-order@1.0.1, npm/@types/deep-equal@1.0.1, npm/@types/eslint@8.44.2, npm/@types/events@3.0.0, npm/@types/express-serve-static-core@4.17.33, npm/@types/express@4.17.18, npm/@types/file-saver@2.0.5, npm/@types/google-protobuf@3.15.5, npm/@types/history@4.7.9, npm/@types/http-errors@2.0.1, npm/@types/http-proxy@1.17.11, npm/@types/ioredis@4.27.8, npm/@types/istanbul-lib-coverage@2.0.3, npm/@types/jaeger-client@3.18.3, npm/@types/jest@27.0.2, npm/@types/js-yaml@4.0.4, npm/@types/json-schema@7.0.9, npm/@types/lodash.debounce@4.0.6, npm/@types/mime@1.3.2, npm/@types/minimatch@3.0.5, npm/@types/mocha@10.0.1, npm/@types/mysql@2.15.19, npm/@types/node-fetch@2.6.4, npm/@types/node@18.18.8, npm/@types/oauth@0.9.1, npm/@types/passport-oauth2@1.4.11, npm/@types/passport@1.0.7, npm/@types/pino-http@5.8.0, npm/@types/prop-types@15.7.4, npm/@types/random-number-csprng@1.0.0, npm/@types/react-datepicker@4.8.0, npm/@types/react-dom@17.0.10, npm/@types/react-portal@4.0.4, npm/@types/react-router-dom@5.3.2, npm/@types/react-router@5.1.17, npm/@types/react@17.0.33, npm/@types/semver@7.5.0, npm/@types/send@0.17.1, npm/@types/serve-static@1.13.10, npm/@types/setimmediate@1.0.2, npm/@types/shelljs@0.8.9, npm/@types/superagent@4.1.16, npm/@types/supertest@2.0.12, npm/@types/trusted-types@2.0.3, npm/@types/validator@13.7.12, npm/@types/ws@8.5.5, npm/@types/zen-observable@0.8.3, npm/abab@2.0.5, npm/abort-controller-x@0.4.0, npm/accepts@1.3.7, npm/acorn@8.9.0, npm/address@1.2.2, npm/analytics-node@6.0.0, npm/anymatch@3.1.2, npm/app-root-path@3.0.0, npm/array-includes@3.1.6, npm/autoprefixer@10.4.15, npm/axios@0.21.4, npm/before-after-hook@2.2.2, npm/bitbucket@2.7.0, npm/body-parser@1.19.2, npm/browserify-sign@4.2.1, npm/browserslist@4.21.10, npm/bufrw@1.3.0, npm/call-bind@1.0.2, npm/caniuse-lite@1.0.30001521, npm/chai-http@4.3.0, npm/chai@4.3.4, npm/classnames@2.3.1, npm/cluster-key-slot@1.1.0, npm/component-emitter@1.3.0, npm/concurrently@6.3.0, npm/configcat-common@6.0.0, npm/configcat-js@6.0.0, npm/configcat-node@8.0.0, npm/convert-source-map@1.8.0, npm/cookiejar@2.1.3, npm/cosmiconfig@7.0.1, npm/css-loader@6.8.1, npm/date-fns@2.25.0, npm/dayjs@1.11.5, npm/debug@4.3.2, npm/deep-equal-in-any-order@2.0.0, npm/deep-equal@2.0.5, npm/deepmerge@4.2.2, npm/define-properties@1.2.0, npm/domhandler@4.2.2, npm/dprint-node@1.0.7, npm/electron-to-chromium@1.4.495, npm/error@7.2.1, npm/es-abstract@1.22.1, npm/es-get-iterator@1.1.2, npm/eslint-plugin-import@2.28.0, npm/eslint-plugin-n@16.6.2, npm/express@4.17.3, npm/fast-glob@3.3.1, npm/fast-redact@3.0.2, npm/fastify-warning@0.2.0, npm/figlet@1.5.2, npm/focus-lock@0.11.6, npm/follow-redirects@1.14.5, npm/foreach@2.0.5, npm/form-data@3.0.1, npm/formidable@1.2.6, npm/fs-extra@10.0.0, npm/fsevents@2.3.2, npm/function.prototype.name@1.1.5, npm/get-intrinsic@1.2.1, npm/has@1.0.3, npm/history@4.10.1, npm/hoist-non-react-statics@3.3.2, npm/http-errors@1.8.1, npm/idb-keyval@6.2.0, npm/ignore@5.2.4, npm/internal-slot@1.0.5, npm/inversify@6.0.1, npm/ioredis-mock@8.7.0, npm/is-async-fn@1.1.0, npm/is-core-module@2.8.0, npm/is-equal@1.6.3, npm/is-number-object@1.0.6, npm/istanbul-lib-coverage@3.2.0, npm/istanbul-lib-instrument@5.1.0, npm/js-cookie@3.0.1, npm/jsonwebtoken@9.0.0, npm/magic-string@0.25.7, npm/micromatch@4.0.4, npm/mime-db@1.50.0, npm/mime-types@2.1.33, npm/mini-create-react-context@0.4.1, npm/minimatch@3.0.5, npm/nice-grpc-client-middleware-retry@2.0.1, npm/nice-grpc-common@2.0.0, npm/nice-grpc@2.0.0, npm/node-modules-regexp@1.0.0, npm/node-releases@2.0.13, npm/object-inspect@1.12.3, npm/object.assign@4.1.4, npm/object.entries@1.1.6, npm/object.values@1.1.6, npm/octokit-auth-probot@1.2.6, npm/on-finished@2.3.0, npm/opentracing@0.14.5, npm/passport@0.5.0, npm/pino@6.13.3, npm/postcss-selector-parser@6.0.13, npm/prettier@3.0.0, npm/probot@12.3.1, npm/prom-client@13.2.0, npm/protobufjs@7.2.5, npm/punycode@2.1.1, npm/qs@6.9.7, npm/query-string@7.1.1, npm/rate-limiter-flexible@2.3.6, npm/raw-body@2.4.3, npm/react-datepicker@4.8.0, npm/react-dom@18.2.0, npm/react-focus-lock@2.9.4, npm/react-focus-on@3.8.1, npm/react-is@18.2.0, npm/react-router-dom@5.3.0, npm/react@18.2.0, npm/redlock@5.0.0-beta.2, npm/reflect-metadata@0.1.13, npm/reflect.getprototypeof@1.0.3, npm/regenerator-runtime@0.13.9, npm/regexp.prototype.flags@1.5.0, npm/require-from-string@2.0.2, npm/resolve@1.20.0, npm/schema-utils@3.1.1, npm/send@0.17.2, npm/serve-static@1.14.2, npm/signal-exit@3.0.5, npm/slugify@1.6.5, npm/source-map-loader@3.0.0, npm/source-map-support@0.5.20, npm/string.prototype.matchall@4.0.8, npm/string.prototype.trimend@1.0.6, npm/string.prototype.trimstart@1.0.6, npm/stripe@9.0.0, npm/style-loader@3.3.3, npm/superagent@3.8.3, npm/supertest@6.3.3, npm/tailwindcss@3.3.3, npm/terser-webpack-plugin@5.3.9, npm/terser@5.19.2, npm/tiny-warning@1.0.3, npm/ts-loader@9.2.6, npm/ts-node@10.9.1, npm/ts-poet@6.5.0, npm/ts-proto@1.156.7, npm/tslib@2.3.1, npm/twilio@4.16.0, npm/url@0.11.1, npm/validator@13.9.0, npm/vscode-uri@3.0.3, npm/webpack-merge@5.9.0, npm/webpack@5.88.2, npm/whatwg-url@8.7.0, npm/which-typed-array@1.1.11, npm/ws@7.5.6, npm/yargs@17.2.1

View full report↗︎

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Gitea support
7 participants