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 #12

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 10, 2018

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
browser-sync (source) 2.21.0 -> 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

v2.23.6: Bug fixes

Compare Source

v2.23.5

Compare Source

v2.23.4

Compare Source

v2.23.3

Compare Source

misc

  • Revert "Fix the missing type: array in server field of startOpts" - fixes #​1483 (This reverts commit b24514b) 31150d6
  • fix(server-middleware): allow res.end -> next() in middeware flow when no serveStatic exists - fixes #​1481 620e9ae

v2.23.2

Compare Source

CLI

  • Fix the missing type: array in server field of startOpts b24514b

v2.23.1

Compare Source

2.23.1 (2018-01-01)

v2.23.0: - DX release

Compare Source

  • Fixed: removed weinre from the UI - it was using deprecated packages, and is un-maintained. e6be4e9
  • Fixed: Updated socket.io to the latest version (security advisory)
  • Fixed: Allow notify command over HTTP protocol ac86665 (closes #​1467)
  • New: CI: build on node 8 (latest lts) 3b7e8cb
  • New: Easier CLI commands for common flows. (see below) 91b7e89
  • New: watch option - (see below)
  • New: Supports CSS @imports - thanks to Live Reload fb26e82 (closes #​10)
  • New: Fall back to a directory listing if a request gives a 404 b5cc56e
  • New: single option - adds a middleware to help with SPAs (serves index.html for all non-matching routes) 91480aa
  • New: ignore option - shortcut for adding to watchOptions.ignored - added because of the new watch option
  • Improved: Perf: Always group file-changes into flexible 500ms buffers - this will help things such as git checkout without any configuration fd3d074
  • Improved: Perf: Adding adding cwd + ignore defaults to all watcher options dbb1267
  • Changed: Log CSS file injections into the console (rather than the overlay, which always gets in the way) cb5b44c

Highlights

Easier CLI commands

In an attempt to streamline the common use-cases, Browsersync will now attempt to 'do the right thing' when no command is provided, for example:

To run a static server, serving from the current directory

### before
browser-sync start --server

### after
browser-sync .

To run a static server, serving from 2 directories:

### before
browser-sync start --server app/src app/tmp

### after
browser-sync app/src app/tmp

If the directory contains a 'index.html' file, you can omit any input and just run:

### after
browser-sync

You can run the proxy in this manner too

### after
browser-sync https://example.com

To run a proxy, whilst also serving static files

### after
browser-sync https://example.com htdocs/themes/example
New watch option

Because we now have the shorthand ways of launching servers/proxies, eg: browser-sync . - it also made sense to automatically watch files too. So, if watch: true - then Browsersync will make a best-guess at which files to automatically watch.

Here's a comparison to the old way (which will still work, of course)

### before
browser-sync start --server ./app --files ./app

### after
browser-sync ./app -w

Behind the scenes, Browsersync is just looking at served directories (in this case, app) and
adding it to the regular files option as normal.

It means the following the 2 configurations are identical, but the latter is better since there's no
repetition.

{
  "server": {"baseDir": ["app"]},
  "files": ["app"]
}
{
  "server": {"baseDir": ["app"]},
  "watch": "true"
}
New ignore option

Added as a convenience since we have simpler watching via the watch flag. Use it to ignore any patterns that should not cause Browsersync reloads/injections

Example:
- Serve files from the 'app' directory
- Watch all files
- But, exclude **/*.js (if using Webpack, etc)

CLI:

browser-sync app -w --ignore '**/*.js'

Config:

{
    "server": "app",
    "watch": true,
    "ignore": "**/*.js"
}
New single option, easy SPA development

This option will add the connect-history-api-fallback middleware automatically for you, meaning that developing with client-side routers can be done without configuring this middleware manually

Example:
- Serve files from the app directory
- Watch all files
- Serve index.html for all none matching routes

browser-sync app -w --single

Fall back to a directory listing if a request gives a 404

No more Cannot Get /' messages. If you run Browsersync in a directory where there's no index.html, a directory listing will be shown instead.

v2.22.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 force-pushed the renovate/browser-sync-2.x branch from 1eb488d to b42de83 Compare October 13, 2018 11:00
@renovate renovate bot changed the title Update dependency browser-sync to v2.26.0 Update dependency browser-sync to v2.26.1 Oct 13, 2018
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from b42de83 to 7eb29c2 Compare October 13, 2018 11:59
@renovate renovate bot changed the title Update dependency browser-sync to v2.26.1 Update dependency browser-sync to v2.26.2 Oct 13, 2018
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 7eb29c2 to 74e8bad Compare October 13, 2018 13:45
@renovate renovate bot changed the title Update dependency browser-sync to v2.26.2 Update dependency browser-sync to v2.26.3 Oct 13, 2018
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 74e8bad to 058e497 Compare April 23, 2019 10:51
@renovate renovate bot changed the title Update dependency browser-sync to v2.26.3 Update dependency browser-sync to v2.26.4 Apr 23, 2019
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 058e497 to ea5b990 Compare May 4, 2019 13:01
@renovate renovate bot changed the title Update dependency browser-sync to v2.26.4 Update dependency browser-sync to v2.26.5 May 4, 2019
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from ea5b990 to 9346b78 Compare June 19, 2019 11:39
@renovate renovate bot changed the title Update dependency browser-sync to v2.26.5 Update dependency browser-sync to v2.26.7 Jun 19, 2019
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 9346b78 to 8f3c5d7 Compare August 21, 2020 15:02
@renovate renovate bot changed the title Update dependency browser-sync to v2.26.7 Update dependency browser-sync to v2.26.12 Aug 21, 2020
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 8f3c5d7 to 90e8581 Compare October 29, 2020 16:05
@renovate renovate bot changed the title Update dependency browser-sync to v2.26.12 Update dependency browser-sync to v2.26.13 Oct 29, 2020
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 90e8581 to fb419cd Compare January 31, 2021 18:01
@renovate renovate bot changed the title Update dependency browser-sync to v2.26.13 Update dependency browser-sync to v2.26.14 Jan 31, 2021
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from fb419cd to cacfc46 Compare October 18, 2021 18:53
@renovate renovate bot changed the title Update dependency browser-sync to v2.26.14 Update dependency browser-sync to v2.27.5 Oct 18, 2021
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from cacfc46 to 884d76b Compare March 7, 2022 18:12
@renovate renovate bot changed the title Update dependency browser-sync to v2.27.5 Update dependency browser-sync to v2.27.7 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 884d76b to d4f00d8 Compare March 26, 2022 13:01
@renovate renovate bot changed the title Update dependency browser-sync to v2.27.7 Update dependency browser-sync to v2.27.9 Mar 26, 2022
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from d4f00d8 to 93a75cc Compare June 18, 2022 16:42
@renovate renovate bot changed the title Update dependency browser-sync to v2.27.9 Update dependency browser-sync to v2.27.10 Jun 18, 2022
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 5d5c2e1 to 3371b6f Compare November 20, 2022 08:43
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 3371b6f to 25b4c63 Compare March 18, 2023 08:11
@renovate renovate bot changed the title Update dependency browser-sync to v2.27.10 chore(deps): update dependency browser-sync to v2.29.0 Mar 18, 2023
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.29.0 chore(deps): update dependency browser-sync to v2.29.1 Mar 24, 2023
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 25b4c63 to 1e9af9e Compare March 24, 2023 23:10
@renovate renovate bot force-pushed the renovate/browser-sync-2.x branch from 1e9af9e to 13361f6 Compare May 28, 2023 11:53
@renovate renovate bot changed the title chore(deps): update dependency browser-sync to v2.29.1 chore(deps): update dependency browser-sync to v2.29.3 May 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants