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

chore(deps): update dependency browser-sync to v2.29.3 (develop) #18

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 1, 2018

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
browser-sync (source) 2.23.6 -> 2.29.3 age adoption passing confidence

Release Notes

BrowserSync/browser-sync (browser-sync)

v2.29.3: The one that fixes snippetOptions

Compare Source

What's Changed

Full Changelog: BrowserSync/browser-sync@v2.29.2...v2.29.3

v2.29.2

Compare Source

v2.29.1

Compare Source

What's Changed

Full Changelog: BrowserSync/browser-sync@v2.29.0...v2.29.1

v2.29.0: The one that restores IE11 support 💪

Compare Source

What's Changed

esbuild does not support down-level transpiling as far as IE11 - so when I switched to it, it accidentally broke IE11 support 😢

This is an important issue for me - many devs that support old browsers like IE11 are doing so because their projects are used in public services, or internal applications. Not every developer out there has the luxury of supporting evergreen-only browsers.

So, IE11 will work once again 🎉. Please use the issues thread to make me aware of any problem that's preventing you from using Browsersync in your day job 💪 (and be sure to thumbs-up the issues you want to see resolved)

### IE11 works, again
npm install browser-sync@latest

Full Changelog: BrowserSync/browser-sync@v2.28.3...v2.29.0

v2.28.3

Compare Source

v2.28.2

Compare Source

v2.28.1

Compare Source

v2.28.0: the one that finally removes document.write

Compare Source

What's Changed

Full Changelog: BrowserSync/browser-sync@v2.27.12...v2.28.0

v2.27.12

Compare Source

v2.27.11

Compare Source

v2.27.10

Compare Source

v2.27.9: 2.27.9

Compare Source

What's Changed

A bug prevented the help output from displaying - it was introduced when the CLI parser yargs was updated, and is now fixed :)

Full Changelog: BrowserSync/browser-sync@v2.27.8...v2.27.9

v2.27.8: 2.27.8

Compare Source

This release upgrades Socket.io (client+server) to the latest versions - solving the following issues, and silencing security warning :)

PR:

Resolved Issues:

Thanks to @​lachieh for the original PR, which helped me land this fix

v2.27.7

Compare Source

v2.27.6

Compare Source

v2.27.5

Compare Source

v2.27.4

Compare Source

v2.27.3

Compare Source

v2.27.1: added snippet: boolean option

Compare Source

This release adds a feature to address https://github.com/BrowserSync/browser-sync/issues/1882

Sometimes you don't want Browsersync to auto-inject it's connection snippet into your HTML - now you can disable it globally via either a CLI param or the new snippet option :)

browser-sync . --no-snippet

or in any Browsersync configuration

const config = {
  snippet: false,
};

the original request was related to Eleventy usage, so here's how that would look

eleventyConfig.setBrowserSyncConfig({
  snippet: false,
});

v2.26.14: upgraded dependencies

Compare Source

This is a maintenance release to address 2 security related issues (socket.io & axios)

Happy Browsersync'in :)

v2.26.13

Compare Source

v2.26.12

Compare Source

v2.26.10

Compare Source

v2.26.9

Compare Source

v2.26.7

Compare Source

v2.26.6

Compare Source

v2.26.5

Compare Source

v2.26.4

Compare Source

v2.26.3: 2.26.0 -> 2.26.3

Compare Source

fixes

v2.26.2

Compare Source

v2.26.1

Compare Source

v2.26.0

Compare Source

these notes describe the change from 2.24.6 -> 2.26.0

fixes

chore

  • move cypress to top-level dep 0d4ab81
  • package-lock files 900e23e
  • change API of option transforms ef12e9a

lerna

feature

  • adding 'listen' option to restrict binding of interfaces d641916

docs

deps

  • npm audit for localtunnel - fixes #​1587 27f2173
  • easy-extender@2.3.4 cypress@3.1.0 supertest@3.1.0 a6578a3

v2.25.0: the listen option release

Compare Source

Browsersync can now be used in more restrictive areas, ones where you cannot simply bind to all addresses on the host (such as schools or universities) - this is enabled via the listen option.

For backwards compatibility reasons, we actually cannot use the host option to acheive this (even though that would make the most sense), as it would break some people's existing setups.

This is mainly because in the past, host was not used to determine an address to bind to, but rather just as a way of changing the urls Browsersync displays to the user. :( :( :(

It was a big mistake, but now with the sheer size of the user base we have, every tiny change to any existing option causes some kind of breakage. I'm not prepared to do that again with host.

So, instead we're back to the old method of instead adding a new option, that I've called listen. It's the only way we can acheive the goal without breaking existing users who are using host for other reasons.

The idea is that you'd only ever use the listen option if you want to restrict the address being bound to. For example, the following will serve files from the current directory, but behind the scenes Browsersync will only bind to localhost (this does mean that other features such as external urls will not work any more, but if you need this listen option in the first place, that will not be a concern for you)

npm i -g browser-sync@2.25.0
browser-sync . --listen localhost

v2.24.7: Bug fixes

Compare Source

fix

deps

  • easy-extender@2.3.4 cypress@3.1.0 supertest@3.1.0 a6578a3

v2.24.6

Compare Source

v2.24.5

Compare Source

fix

v2.24.4: Bug fix

Compare Source

fix

v2.24.3: bug fixes

Compare Source

2.24.0 was a very large release - and with that, a handful of patch releases inevitably follow. Please move straight to 2.24.3 :)

fixes

v2.24.2

Compare Source

v2.24.1

Compare Source

v2.24.0: 2.24.0

Compare Source

Features

  • (client) rewrite to Typescript + RxJS 99a69ce
  • (client) make initial options available in initial payload 9d9dfb1
  • (client) added injectNotification option & defaulted to false 06608fb
  • (client-js) allow functions in client:js hook 4803786
  • (http-protocol) support POST requests over HTTP Protocol e4754c9

Fixes

  • (client, rxjs) fix imports to avoid the entire library being bundled b8685bc
  • (cli) remove watch boolean when false b41f602

Dependencies

Tests

  • add cypress for integration tests 31bace2

misc

  • Resolved warning in tsconfig. 1c9ae43
  • Merge pull request #​1547 from jgravois/patchbump localtunnel to resolve security vuln nag 8a957e9
  • bump localtunnel to resolve security vuln nag 31956ab
  • Merge pull request #​1544 from SergiuNegara/fix/steam-docs-spellingFix stream docs spelling 78c3854
  • Fix stream docs spellingChange teh to the 4ce533c

v2.23.7: Bug fix

Compare Source

  • fix(client): CSS injection broken in older browsers due to use of Array.from - fixes #​1539 66dd19c

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.24.1 (develop) chore(deps): update dependency browser-sync to v2.24.5 (develop) Jun 24, 2018
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 8216692 to 7218a43 Compare June 24, 2018 22:24
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.24.5 (develop) chore(deps): update dependency browser-sync to v2.24.6 (develop) Jul 21, 2018
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 7218a43 to af43d46 Compare July 21, 2018 10:28
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.24.6 (develop) chore(deps): update dependency browser-sync to v2.24.7 (develop) Aug 26, 2018
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from af43d46 to 29d4357 Compare August 26, 2018 19:38
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.24.7 (develop) chore(deps): update dependency browser-sync to v2.25.0 (develop) Oct 6, 2018
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch 2 times, most recently from 941e8ba to b82d8d0 Compare October 6, 2018 11:49
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.25.0 (develop) chore(deps): update dependency browser-sync to v2.26.0 (develop) Oct 6, 2018
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.26.0 (develop) chore(deps): update dependency browser-sync to v2.26.1 (develop) Oct 13, 2018
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from b82d8d0 to 5f9d1c5 Compare October 13, 2018 10:33
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.26.1 (develop) chore(deps): update dependency browser-sync to v2.26.2 (develop) Oct 13, 2018
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 5f9d1c5 to 3692c88 Compare October 13, 2018 11:53
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.26.2 (develop) chore(deps): update dependency browser-sync to v2.26.3 (develop) Oct 13, 2018
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 3692c88 to fac2c07 Compare October 13, 2018 12:50
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.26.3 (develop) chore(deps): update dependency browser-sync to v2.26.4 (develop) Apr 23, 2019
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from fac2c07 to fe2102a Compare April 23, 2019 16:59
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.26.4 (develop) chore(deps): update dependency browser-sync to v2.26.5 (develop) May 4, 2019
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from fe2102a to a8a303f Compare May 4, 2019 13:52
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from a8a303f to 8e6c2a8 Compare June 19, 2019 11:39
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.26.5 (develop) chore(deps): update dependency browser-sync to v2.26.7 (develop) Jun 19, 2019
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 8e6c2a8 to 12b33e6 Compare August 26, 2020 02:13
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 12b33e6 to 18cf17f Compare October 28, 2020 05:57
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.26.7 (develop) chore(deps): update dependency browser-sync to v2.26.13 (develop) Nov 25, 2020
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 18cf17f to 90d0205 Compare January 30, 2021 11:46
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.26.13 (develop) chore(deps): update dependency browser-sync to v2.26.14 (develop) Feb 10, 2021
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 90d0205 to f3cafcd Compare October 18, 2021 16:14
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from f3cafcd to daacf40 Compare March 7, 2022 08:11
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from daacf40 to 94ab687 Compare March 26, 2022 15:16
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.26.14 (develop) chore(deps): update dependency browser-sync to v2.27.9 (develop) Apr 24, 2022
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 94ab687 to 82f6ae1 Compare June 18, 2022 22:31
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.27.9 (develop) chore(deps): update dependency browser-sync to v2.27.10 (develop) Jun 23, 2022
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.27.10 (develop) chore(deps): update dependency browser-sync to v2.29.0 (develop) Mar 17, 2023
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 82f6ae1 to 408c932 Compare March 17, 2023 22:07
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.29.0 (develop) chore(deps): update dependency browser-sync to v2.29.1 (develop) Mar 25, 2023
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 408c932 to 9595eec Compare March 25, 2023 00:25
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.29.1 (develop) chore(deps): update dependency browser-sync to v2.29.3 (develop) May 28, 2023
@renovate renovate bot force-pushed the renovate/develop-browser-sync-2.x branch from 9595eec to 114d22c Compare May 28, 2023 18:00
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.

None yet

0 participants