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

🤖 User test baselines have changed for refs/heads/master #41496

Merged
merged 1 commit into from
Jan 15, 2021

Conversation

typescript-bot
Copy link
Collaborator

This test run was triggerd by a request on #33716
Please review the diff and merge if no changes are unexpected.
You can view the build log here.

cc @microsoft/typescript

@typescript-bot
Copy link
Collaborator Author

This PR doesn't have any linked issues. Please open an issue that references this PR. From there we can discuss and prioritise.

@typescript-bot typescript-bot added the For Uncommitted Bug PR for untriaged, rejected, closed or missing bug label Nov 11, 2020
@typescript-bot typescript-bot force-pushed the user-baseline-updates branch 4 times, most recently from 00d458c to 57d2d95 Compare November 12, 2020 00:24
@typescript-bot typescript-bot force-pushed the user-baseline-updates branch 21 times, most recently from d021d71 to 06efed7 Compare December 11, 2020 07:25
@typescript-bot typescript-bot force-pushed the user-baseline-updates branch 26 times, most recently from 8f31582 to e986fcf Compare January 15, 2021 07:27
src/app.ts(116,30): error TS2339: Property 'returnTo' does not exist on type 'Session & Partial<SessionData>'.
src/config/passport.ts(14,5): error TS2349: This expression is not callable.
Type 'User' has no call signatures.
src/config/passport.ts(18,24): error TS7006: Parameter 'err' implicitly has an 'any' type.
Copy link
Member

Choose a reason for hiding this comment

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

passport usage is oodate now -- this repo is bitrotting quickly now

src/controllers/user.ts(101,46): error TS7006: Parameter 'err' implicitly has an 'any' type.
src/controllers/user.ts(101,51): error TS7006: Parameter 'existingUser' implicitly has an 'any' type.
src/controllers/user.ts(146,29): error TS7006: Parameter 'err' implicitly has an 'any' type.
src/controllers/user.ts(153,19): error TS2769: No overload matches this call.
Copy link
Member

Choose a reason for hiding this comment

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

same, but for mongodb

@@ -1,17 +1,20 @@
Exit Code: 2
Standard output:
lib/adapters/http.js(13,19): error TS2732: Cannot find module './../../package.json'. Consider using '--resolveJsonModule' to import module with '.json' extension.
lib/adapters/http.js(84,22): error TS2345: Argument of type 'string | null' is not assignable to parameter of type 'string'.
lib/adapters/http.js(22,12): error TS2304: Cannot find name 'AxiosProxyConfig'.
Copy link
Member

Choose a reason for hiding this comment

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

new since last baseline update, it's in index.d.ts but not imported here

@@ -1,48 +1,5 @@
Exit Code: 2
Standard output:
node_modules/debug/dist/debug.js(3,100): error TS2539: Cannot assign to '_typeof' because it is not a variable.
Copy link
Member

Choose a reason for hiding this comment

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

debug doesn't ship a dist/ directory anymore...?

@@ -0,0 +1,10 @@
Exit Code: 2
Standard output:
test/Either.ts(244,33): error TS2345: Argument of type 'Either<string, never>' is not assignable to parameter of type 'Either<`invalid color ${string}`, string>'.
Copy link
Member

Choose a reason for hiding this comment

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

const errorHandler = (s: string) => `invalid color ${s}`

now creates a unwanted template literal type 🙄

created packages/vue/dist/vue.esm-browser.prod.js in ?s
/vue-next/packages/vue/src/runtime.ts → packages/vue/dist/vue.runtime.esm-browser.prod.js...
created packages/vue/dist/vue.runtime.esm-browser.prod.js in ?s
[!] (plugin rpt2) Error: /vue-next/packages/reactivity/src/baseHandlers.ts(192,3): semantic error TS2322: Type '(target: object) => (string | number | symbol)[]' is not assignable to type '(target: object) => ArrayLike<string | symbol>'.
Copy link
Member

Choose a reason for hiding this comment

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

error is correct; vue's function ownKeys should return (string | symbol)[] not (string | number | symbol)[]. This is a breaking change for 4.2 from #41987.

@DanielRosenwasser do we normally document lib or DOM breaks in the release notes? I don't think we do.

22 declare const getPropertyName: (node: TSESTree.MemberExpression | TSESTree.Property | TSESTree.MethodDefinition, initialScope?: import("@typescript-eslint/scope-manager/dist/scope/BlockScope").BlockScope | import("@typescript-eslint/scope-manager/dist/scope/CatchScope").CatchScope | import("@typescript-eslint/scope-manager/dist/scope/ClassScope").ClassScope | import("@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope").ConditionalTypeScope | import("@typescript-eslint/scope-manager/dist/scope/ForScope").ForScope | import("@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope").FunctionExpressionNameScope | import("@typescript-eslint/scope-manager/dist/scope/FunctionScope").FunctionScope | import("@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope").FunctionTypeScope | import("@typescript-eslint/scope-manager/dist/scope/GlobalScope").GlobalScope | import("@typescript-eslint/scope-manager/dist/scope/MappedTypeScope").MappedTypeScope | import("@typescript-eslint/scope-manager/dist/scope/ModuleScope").ModuleScope | import("@typescript-eslint/scope-manager/dist/scope/SwitchScope").SwitchScope | import("@typescript-eslint/scope-manager/dist/scope/TSEnumScope").TSEnumScope | import("@typescript-eslint/scope-manager/dist/scope/TSModuleScope").TSModuleScope | import("@typescript-eslint/scope-manager/dist/scope/TypeScope").TypeScope | import("@typescript-eslint/scope-manager/dist/scope/WithScope").WithScope | undefined) => string | null;
...260 lines omitted...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/rules/ts-use-interface-parameters.ts:13:8 - error TS2307: Cannot find module '@typescript-eslint/typescript-estree/dist/parser-options'.
Copy link
Member

Choose a reason for hiding this comment

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

@weswigham this works fine from the editor. Can you investigate why our build of azure-sdk is failing?

@sandersn sandersn merged commit 0aa77fc into microsoft:master Jan 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
For Uncommitted Bug PR for untriaged, rejected, closed or missing bug
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants