-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
Update 25 dependencies from npm #3003
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
The following dependencies have been updated:
lint-staged
in/
from "6.1.0" to "6.1.1"nodemon
in/
from "1.14.12" to "1.15.0"puppeteer
in/
from "1.0.0" to "1.1.0"typescript
in/
from "2.7.1" to "2.7.2"graphql
inaddons/graphql
from "0.13.0" to "0.13.1"style-loader
inaddons/knobs
from "0.20.1" to "0.20.2"glamorous
inlib/components
from "4.11.4" to "4.11.5"glamorous
inaddons/a11y
from "4.11.4" to "4.11.5"glamorous
inaddons/info
from "4.11.4" to "4.11.5"glamorous
inaddons/jest
from "4.11.4" to "4.11.5"style-loader
inlib/core
from "0.20.1" to "0.20.2"style-loader
inapp/angular
from "0.20.1" to "0.20.2"nodemon
inapp/angular
from "1.14.12" to "1.15.0"typescript
inapp/angular
from "2.7.1" to "2.7.2"style-loader
inapp/polymer
from "0.20.1" to "0.20.2"nodemon
inapp/polymer
from "1.14.12" to "1.15.0"style-loader
inapp/react-native
from "0.20.1" to "0.20.2"glamorous
inapp/react
from "4.11.4" to "4.11.5"style-loader
inapp/react
from "0.20.1" to "0.20.2"nodemon
inapp/react
from "1.14.12" to "1.15.0"style-loader
inapp/vue
from "0.20.1" to "0.20.2"nodemon
inapp/vue
from "1.14.12" to "1.15.0"@angular/cli
inexamples/angular-cli
from "1.6.8" to "1.7.0"typescript
inexamples/angular-cli
from "2.7.1" to "2.7.2"glamorous
inexamples/cra-kitchen-sink
from "4.11.4" to "4.11.5"Details
Dependencies.io has updated
lint-staged
(a npm dependency in/
) from "6.1.0" to "6.1.1".6.1.1
6.1.1 (2018-02-16)
Bug Fixes
Dependencies.io has updated
nodemon
(a npm dependency in/
) from "1.14.12" to "1.15.0".1.15.0
1.15.0 (2018-02-15)
Features
--spawn
(#1249) (5e88b04), closes #1245Dependencies.io has updated
puppeteer
(a npm dependency in/
) from "1.0.0" to "1.1.0".1.1.0
Big Changes
BrowserFetcher
API to download chromium instancesresponse.fromCache()
andresponse.fromServiceWorker()
for caching insightspage.waitForXPath()
to wait for XPath selectorsAPI Changes
Changed:
page.waitFor()
now treats strings that start with//
as xpath selectors and falls back topage.waitForXPath()
(cb684ebb).browser.targets()
now reports browser target (fc94f982).Added:
event: 'domcontentloaded'
(59f6d426)class: BrowserFetcher
(a363a733)class: SecurityDetails
(856c4319)puppeteer.createBrowserFetcher()
(a363a733)page.setCacheEnabled()
(ac1b9a0e)page.waitForXPath()
(cb684ebb)frame.click()
(660b6578)frame.evaluateHandle()
(189deb84)frame.focus()
(660b6578)frame.hover()
(660b6578)frame.tap()
(660b6578)frame.type()
(660b6578)frame.waitForXPath()
(cb684ebb)executionContext.frame()
(ae22ef30)response.fromCache()
(ecc3adc2)response.fromServiceWorker()
(ecc3adc2)response.securityDetails()
(856c4319)Bug Fixes
setCacheEnabled(enabled)
to Page object (Add multiple project roots to react-native CLI #1609)Raw Notes
fc94f98 - feat(Targets): expose browser target (#2036)
e8a085c - feat(appMode): support pipes for appMode (#2032)
3656cc2 - docs(api.md): fix nits in securityDetails description (#2023)
43c0feb - fix(Network): fulfill security details for response redirects (#2025)
4a53bca - feat(Chromium): roll Chromium to r536395 (#2024)
ee5ec3e - test: await browser closing in tests (#2022)
ae22ef3 - feat(ExecutionContext): introduce ExecutionContext.frame() (#1972)
885c93a - docs(troubleshooting): Add AWS Lambda solution (#2003)
856c431 - feat(Network): introduce response.securityDetails() method (#1880)
700244a - test: dont race against the mutation observer (#2016)
1b6ee37 - fix(test): merge _pressedKeys test into the .repeat test (#2017)
f3ba436 - Fix: Remove key codes from _pressedKeys Set after keyboard.up() is called (#1928)
b275e66 - chore: Spelling and Markdown Consistency (#1998)
070243e - docs(CONTRIBUTING): update contributing.md (#1973)
ac1b9a0 - feat(Page): add
setCacheEnabled(enabled)
to Page object (#1609)18a1fb9 - docs(README): Correcting Chrome dependency size (#1946)
cde6d6c - docs: add the word
the
everywhere (#1988)a363a73 - feat: Introduce BrowserFetcher class (#1983)
18c9755 - test: create tmp folder in os.tmp() folder (#1982)
4046415 - docs(README): mention troubleshooting.md in FAQ (#1911)
ecc3adc - feat(Response): add Response.fromCache / Response.fromServiceWorker (#1971)
660b657 - feat(Frame): add click(), focus(), hover(), tap() and type() (#1970)
48218fa - docs(api.md):
page.error
event dispatchers error2f1157b - fix(Docs): fix Console example (#1961)
bc69026 - fix: allow timeouts of be 0 (#1964)
37a1e17 - chore: remove unused parameter in EmulationManager (#1968)
e998ac9 - docs(README): Adding in browserless to README (#1962)
cfb728b - feat(Chromium): roll to r533271 (#1938)
1716a74 - docs(troubleshooting): add aws lambda resources (#1926)
bae44a8 - test: teach test reporter to highlight test stackframe on failures. (#1930)
4886d03 - docs: fix typo in troubleshooting.md (#1909)
ddc59b2 - docs(api.md): fix exposeFunction example (#1900)
189deb8 - feat(Frame): add Frame.evaluateHandle (#1885)
5175d8e - fix(Page): fix Page.select() behavior to be on par with docs (#1886)
a39d96e - docs(api.md): fix sample code in API doc,
request.url
->request.url()
(#1889)f2b6016 - chore: switch to npm from yarn (#1878)
b61e67d - feat: add slowMo option to puppeteer.connect (#1864)
797b561 - docs(README): Update debugging tips (#1868)
cb684eb - feat(Page): introduce Page.waitForXPath (#1767)
62597bf - docs(troubleshooting): Add fonts to docker example to support major charsets (#1842)
102f10c - docs(api.md): Fix sample code in API doc (#1821)
2bf42fd - docs(troubleshooting): fix a link (#1845)
d2715d1 - docs(api.md): fix typo on api docs (#1849)
e031264 - docs(api): fix coverage example and typo (#1854)
49d3799 - docs(troubleshooting): add docker alpine example (#1836)
59f6d42 - feat: add Page.Events.DOMContentLoaded (#1730)
25b35c5 - docs(api.md): fix missing await in examples (#1801)
8c93084 - docs(examples/readme.md): Add one more link to the examples repository (#1807)
31a1f9a - docs(api.md): added page.click + waitForNavigation example (#1792)
c866c17 - fix: page.goto should support pages with self requests (#1391) (#1781)
aed7019 - chore: bump version to 1.0.0-post (#1789)
Dependencies.io has updated
typescript
(a npm dependency in/
) from "2.7.1" to "2.7.2".2.7.2
This release include a set of bug fixes reported against TypeScript 2.7.1. For the complete list of fixed issues, check out the fixed issues query for TypeScript 2.7.2.
Download:
Dependencies.io has updated
graphql
(a npm dependency inaddons/graphql
) from "0.13.0" to "0.13.1".0.13.1
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
Dependencies.io has updated
style-loader
(a npm dependency inaddons/knobs
) from "0.20.1" to "0.20.2".0.20.2
2018-02-15
Bug Fixes
url()
handling (#304) (64f12dc)Dependencies.io has updated
glamorous
(a npm dependency inlib/components
) from "4.11.4" to "4.11.5".4.11.5
4.11.5 (2018-02-16)
Bug Fixes
Dependencies.io has updated
glamorous
(a npm dependency inaddons/a11y
) from "4.11.4" to "4.11.5".4.11.5
4.11.5 (2018-02-16)
Bug Fixes
Dependencies.io has updated
glamorous
(a npm dependency inaddons/info
) from "4.11.4" to "4.11.5".4.11.5
4.11.5 (2018-02-16)
Bug Fixes
Dependencies.io has updated
glamorous
(a npm dependency inaddons/jest
) from "4.11.4" to "4.11.5".4.11.5
4.11.5 (2018-02-16)
Bug Fixes
Dependencies.io has updated
style-loader
(a npm dependency inlib/core
) from "0.20.1" to "0.20.2".0.20.2
2018-02-15
Bug Fixes
url()
handling (#304) (64f12dc)Dependencies.io has updated
style-loader
(a npm dependency inapp/angular
) from "0.20.1" to "0.20.2".0.20.2
2018-02-15
Bug Fixes
url()
handling (#304) (64f12dc)Dependencies.io has updated
nodemon
(a npm dependency inapp/angular
) from "1.14.12" to "1.15.0".1.15.0
1.15.0 (2018-02-15)
Features
--spawn
(#1249) (5e88b04), closes #1245Dependencies.io has updated
typescript
(a npm dependency inapp/angular
) from "2.7.1" to "2.7.2".2.7.2
This release include a set of bug fixes reported against TypeScript 2.7.1. For the complete list of fixed issues, check out the fixed issues query for TypeScript 2.7.2.
Download:
Dependencies.io has updated
style-loader
(a npm dependency inapp/polymer
) from "0.20.1" to "0.20.2".0.20.2
2018-02-15
Bug Fixes
url()
handling (#304) (64f12dc)Dependencies.io has updated
nodemon
(a npm dependency inapp/polymer
) from "1.14.12" to "1.15.0".1.15.0
1.15.0 (2018-02-15)
Features
--spawn
(#1249) (5e88b04), closes #1245Dependencies.io has updated
style-loader
(a npm dependency inapp/react-native
) from "0.20.1" to "0.20.2".0.20.2
2018-02-15
Bug Fixes
url()
handling (#304) (64f12dc)Dependencies.io has updated
glamorous
(a npm dependency inapp/react
) from "4.11.4" to "4.11.5".4.11.5
4.11.5 (2018-02-16)
Bug Fixes
Dependencies.io has updated
style-loader
(a npm dependency inapp/react
) from "0.20.1" to "0.20.2".0.20.2
2018-02-15
Bug Fixes
url()
handling (#304) (64f12dc)Dependencies.io has updated
nodemon
(a npm dependency inapp/react
) from "1.14.12" to "1.15.0".1.15.0
1.15.0 (2018-02-15)
Features
--spawn
(#1249) (5e88b04), closes #1245Dependencies.io has updated
style-loader
(a npm dependency inapp/vue
) from "0.20.1" to "0.20.2".0.20.2
2018-02-15
Bug Fixes
url()
handling (#304) (64f12dc)Dependencies.io has updated
nodemon
(a npm dependency inapp/vue
) from "1.14.12" to "1.15.0".1.15.0
1.15.0 (2018-02-15)
Features
--spawn
(#1249) (5e88b04), closes #1245Dependencies.io has updated
@angular/cli
(a npm dependency inexamples/angular-cli
) from "1.6.8" to "1.7.0".1.7.0
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
Dependencies.io has updated
typescript
(a npm dependency inexamples/angular-cli
) from "2.7.1" to "2.7.2".2.7.2
This release include a set of bug fixes reported against TypeScript 2.7.1. For the complete list of fixed issues, check out the fixed issues query for TypeScript 2.7.2.
Download:
Dependencies.io has updated
glamorous
(a npm dependency inexamples/cra-kitchen-sink
) from "4.11.4" to "4.11.5".4.11.5
4.11.5 (2018-02-16)
Bug Fixes