인형 배우를 2.1.1에서 5.2.0으로 업그레이드
묘사
2.1.1에서 5.2.0까지의 충돌puppeteer.릴리즈 노트
출처puppeteer's releases.
v5。2
기능 변경
The experimental API for registering custom query handlers is slightly changed such that one registers query handlers containing two strategies: one for querying a single element and one for querying all matching elements.
The API for custom query handlers is unchanged:
__experimental_registerCustomQueryHandler(name: string, queryHandler: QueryHandler): void; __experimental_unregisterCustomQueryHandler(name: string): void; __experimental_customQueryHandlers(): Map<string, QueryHandler>; __experimental_clearQueryHandlers(): void;
but QueryHandler is now defined as:
export interface QueryHandler { queryOne?: (element: Element | Document, selector: string) => Element | null; queryAll?: (element: Element | Document, selector: string) => Element[] | NodeListOf<Element>; }
결함 수리 및 개선
- The ESM build now includes file extensions in its import statements to match the ESM spec. Note that the ESM build is still considered experimental and should not be relied on.
- The docs on running Firefox Nightly are now much clearer.
- We now vendor in common dependencies such as Mitt so they can be used more easily outside of the Node module resolution ecosystem.
원시 어음
028f1442 - chore: mark v5.2.0 (#6238) 313774c5 - feat: change QueryHandler to contain QueryOne and QueryAll methods (#6218) 82645e85 - docs: better describe how to install Firefox Nightly with Puppeteer (#6226) f1a6b8d6 - chore: vendor Mitt & update project structure (#6209) fb806109 - docs(troubleshooting): drops obsolete dependencies (#5354) 3effcafc - chore: generate docs for the protocol (#6213) ffec2475 - chore: enforce file extensions on imports (#6202) 8d6e0d8a - chore: mark version to v5.1.0-post (#6208)
v5。1
주요 특징:
The new
Mouse#wheel
API has been merged in #6141. It behaves similar to other mouse commands like up or down and therefore requires amouse.move(x, y)
for targeting the element properly.원래 주석:
91c13d2 - chore: mark version v5.1.0 790c277 - feat(chromium): roll Chromium to r768783 (#6201) 9b3005c - feat(types): improve page.evaluate types (#6193)
언약
028f144
잡무:markv5.2.0 ( #6238 ) 313774c
특기:QueryHandler를QueryOne과QueryAll 방법#6218으로 변경82645e8
문서: Puppeter#6226를 어떻게 사용하는지 더 잘 설명f1a6b8d
잡무: 공급업체 Mitt 및 갱신 프로젝트 구조#6209fb80610
문서(문제 해결): 오래된 종속성 삭제#53543effcaf
자질구레한 일: 프로토콜을 위한 문서 생성#6213ffec247
사소한 일:가져오기#62028d6e0d8
자질구레한 일: 버전을 v5로 표시한다.1.0-post(#6208)8fa18ae
자질구레한 일: 표기 버전 v5.1.0 ( #6206 ) 790c277
특기(크롬): 크롬을 r768783(#6201에 던지기관리자 변경
이 버전은 jackfranklinnpm로 전송되었습니다. 이것은 새로운 인형 방출자입니다. 당신의 현재 버전부터입니다.
이 PR과의 충돌은 사용자가 직접 변경하지 않는 한 해결될 수 있습니다.주석
@dependabot rebase
을 사용하여 수동으로 재기준을 트리거할 수도 있습니다.신뢰성 명령 및 옵션
이 PR에 의견을 달면 Cortebot 작업을 트리거할 수 있습니다.
- "@relateot rebase"는 이 PR의 기초를 재설정합니다.
- "@relateot recreate"는 이 PR을 다시 만들고 편집한 내용을 덮어씁니다.
- "@cordenot merge"는 CI 전송 후 이 PR을 병합합니다.
- "@relateot squash and merge"는 CI 전송 후 이 PR을 누르고 병합합니다.
- "@Correlot cancel merge"는 이전에 요청한 병합을 취소하고 자동 병합을 차단합니다.
- 이 PR이 종료되면 @Correlot Recover에서 다시 열립니다.
- @CorrelotClose가 PR을 닫고 Correlott를 중지하고 다시 생성합니다.수동으로 닫아서 같은 결과를 얻을 수 있습니다
토론 #1
네, 이 버전은 다시 알려드리지 않겠습니다. 하지만 새로운 버전이 나올 때 연락 드리겠습니다.만약 네가 생각을 바꾸면, 이 공관을 다시 열기만 하면, 나는 어떠한 충돌도 해결할 것이다.
Reference
이 문제에 관하여(인형 배우를 2.1.1에서 5.2.0으로 업그레이드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://github.com/tdreyno/pretty-please/issues/324텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)