riperiperi / FreeSO

Re-implementation of The Sims Online.
http://freeso.org
Mozilla Public License 2.0
823 stars 95 forks source link

Bump minimatch, browser-sync, del, gulp, gulp-jshint, gulp-load-plugins, gulp-protractor, gulp-useref, main-bower-files, protractor and wiredep in /TSOClient/FSO.Server/Admin #264

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps minimatch to 3.1.2 and updates ancestor dependencies minimatch, browser-sync, del, gulp, gulp-jshint, gulp-load-plugins, gulp-protractor, gulp-useref, main-bower-files, protractor and wiredep. These dependencies need to be updated together.

Updates minimatch from 3.0.4 to 3.1.2

Commits


Updates browser-sync from 2.1.6 to 2.27.10

Release notes

Sourced from browser-sync's releases.

2.27.9

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: https://github.com/BrowserSync/browser-sync/compare/v2.27.8...v2.27.9

2.27.8

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

added snippet: boolean option

This release adds a feature to address BrowserSync/browser-sync#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,
});

... (truncated)

Changelog

Sourced from browser-sync's changelog.

2.23.1 (2018-01-01)

2.8.2 (2015-07-31)

Bug Fixes

  • https: add newly generated ssl self-signed certs that will expire for 10 years - fixes (45104a7), closes #750

2.8.1 (2015-07-28)

Bug Fixes

  • web-sockets: Use separate server for web sockets in proxy mode - fixes #625 (40017b4), closes #625

Features

  • serve-static: Added option serveStatic to allow proxy/snippet mode to easily serve local fil (384ef67)

2.7.13 (2015-06-28)

Bug Fixes

  • snippet: Allow async attribute to be removed from snippet with snippetOptions.async = fal (c32bec6), closes #670
  • socket-options: allow socket.domain string|fn for setting domain only on socket path - fixes #69 (5157432), closes #690

Features

  • api: expose sockets to public api (985682c)

2.7.12 (2015-06-17)

Bug Fixes

  • client-script: allow proxy to also use client script middleware (c5fdbbf)
  • client-script: serve cached/gzipped client JS file - fixes #657 (dbe9ffe), closes #657

... (truncated)

Commits


Updates del from 1.1.1 to 1.2.1

Commits


Updates gulp from 3.8.11 to 4.0.2

Release notes

Sourced from gulp's releases.

v4.0.2

Fix

Docs

  • Add notes about esm support (4091bd3) - Closes #2278
  • Fix the Negative Globs section & examples (3c66d95) - Closes #2297
  • Remove next tag from recipes (1693a11) - Closes #2277
  • Add default task wrappers to Watching Files examples to make runnable (d916276) - Closes #2322
  • Fix syntax error in lastRun API docs (ea52a92) - Closes #2315
  • Fix typo in Explaining Globs (5d81f42) - Closes #2326

Build

  • Add node 12 to Travis & Azure (b4b5a68)

v4.0.1

Fix

Docs

  • Fix error in ES2015 usage example (a4e8d48) - Closes #2099 #2100
  • Add temporary notice for 4.0.0 vs 3.9.1 documentation (126423a) - Closes #2121
  • Improve recipe for empty glob array (45830cf) - Closes #2122
  • Reword standard to default (b065a13)
  • Fix recipe typo (86acdea) - Closes #2156
  • Add front-matter to each file (d693e49) - Closes #2109
  • Rename "Getting Started" to "Quick Start" & update it (6a0fa00)
  • Add "Creating Tasks" documentation (21b6962)
  • Add "JavaScript and Gulpfiles" documentation (31adf07)
  • Add "Working with Files" documentation (50fafc6)
  • Add "Async Completion" documentation (ad8b568)
  • Add "Explaining Globs" documentation (f8cafa0)
  • Add "Using Plugins" documentation (233c3f9)
  • Add "Watching Files" documentation (f3f2d9f)
  • Add Table of Contents to "Getting Started" directory (a43caf2)
  • Improve & fix parts of Getting Started (84b0234)
  • Create and link-to a "docs missing" page for LINK_NEEDED references (2bd75d0)
  • Redirect users to new Getting Started guides (53e9727)
  • Temporarily reference gulp@next in Quick Start (2cecf1e)
  • Fixed a capitalization typo in a heading (3d051d8) - Closes #2242
  • Use h2 headers within Quick Start documentation (921312c) - Closes #2241
  • Fix for nested directories references (4c2b9a7)
  • Add some more cleanup for Docusaurus (6a8fd8f)
  • Temporarily point LINK_NEEDED references to documentation-missing.md (df7cdcb)
  • API documentation improvements based on feedback (0a68710)

... (truncated)

Changelog

Sourced from gulp's changelog.

gulp changelog

4.0.0

Task system changes

  • replaced 3.x task system (orchestrator) with new task system (bach)
    • removed gulp.reset
    • removed 3 argument syntax for gulp.task
    • gulp.task should only be used when you will call the task with the CLI
    • added gulp.series and gulp.parallel methods for composing tasks. Everything must use these now.
    • added single argument syntax for gulp.task which allows a named function to be used as the name of the task and task function.
    • added gulp.tree method for retrieving the task tree. Pass { deep: true } for an archy compatible node list.
    • added gulp.registry for setting custom registries.

CLI changes

  • split CLI out into a module if you want to save bandwidth/disk space. you can install the gulp CLI using either npm install gulp -g or npm install gulp-cli -g, where gulp-cli is the smaller one (no module code included)
  • add --tasks-json flag to CLI to dump the whole tree out for other tools to consume
  • added --verify flag to check the dependencies in package.json against the plugin blacklist.

vinyl/vinyl-fs changes

  • added gulp.symlink which functions exactly like gulp.dest, but symlinks instead.
  • added dirMode param to gulp.dest and gulp.symlink which allows better control over the mode of the destination folder that is created.
  • globs passed to gulp.src will be evaluated in order, which means this is possible gulp.src(['*.js', '!b*.js', 'bad.js']) (exclude every JS file that starts with a b except bad.js)
  • performance for gulp.src has improved massively
    • gulp.src(['**/*', '!b.js']) will no longer eat CPU since negations happen during walking now
  • added since option to gulp.src which lets you only match files that have been modified since a certain date (for incremental builds)
  • fixed gulp.src not following symlinks
  • added overwrite option to gulp.dest which allows you to enable or disable overwriting of existing files

3.9.1

  • update interpret to 1.0.0 (support for babel-register)
  • fix to include manpages in published tarball
  • documentation/recipe updates

3.9.0

  • add babel support
  • add transpiler fallback support
  • add support for some renamed transpilers: livescript, etc
  • add JSCS
  • update dependencies (liftoff, interpret)
  • documentation tweaks
Commits
  • 069350a Release: 4.0.2
  • b4b5a68 Build: Add node 12 to Travis & Azure
  • 5667666 Fix: Bind src/dest/symlink to the gulp instance to support esm exports (ref s...
  • 4091bd3 Docs: Add notes about esm support (closes #2278)
  • 3c66d95 Docs: Fix the Negative Globs section & examples (closes #2297)
  • 1693a11 Docs: Remove next tag from recipes (closes #2277)
  • d916276 Docs: Add default task wrappers to Watching Files examples to make runnable (...
  • ea52a92 Docs: Fix syntax error in lastRun API docs (closes #2315)
  • 5d81f42 Docs: Fix typo in Explaining Globs (#2326)
  • ea3bba4 Release: 4.0.1
  • Additional commits viewable in compare view


Updates gulp-jshint from 1.9.4 to 2.1.0

Changelog

Sourced from gulp-jshint's changelog.

2.0

  • jshint is now a peerDependency, meaning you must install it seperately

    npm install jshint gulp-jshint --save-dev

Commits
Maintainer changes

This version was pushed to npm by spalger, a new releaser for gulp-jshint since your current version.


Updates gulp-load-plugins from 0.8.1 to 2.0.8

Release notes

Sourced from gulp-load-plugins's releases.

v2.0.8

  • Fixes #141 - module.parent deprecated in Node 14+. Thanks @​DaveyJake
  • Update dependencies

If you get the error Cannot read properties of undefined (reading 'filename'), this is because you're using a version of node where module.parent is undefined. To resolve, you need to add config to the plugin when instantiated with the path to your package.json file to read its dependencies. For example:

import gulpLoadPlugins from 'gulp-load-plugins';

const $ = gulpLoadPlugins({ config: process.env.npm_package_json });

v2.0.7

Update dependencies

v2.0.6

Update dependencies and add power support for Travis on ppc64le - thanks @​dineshks1 - PR

v2.0.5

Updating dependencies

v2.0.4

Updating dependencies

v2.0.3

Updating dependencies

v2.0.2

No release notes provided.

Commits
Maintainer changes

This version was pushed to npm by jameelmoses, a new releaser for gulp-load-plugins since your current version.


Updates gulp-protractor from 0.0.12 to 4.1.1

Release notes

Sourced from gulp-protractor's releases.

v4.1.0

Changed

  • Version upgraded to 4.1.0
  • Spawn changed to fork
  • Formatting improved

v4.0.0

Changed

  • Upgraded protractor to ^5
  • Updated npm dependencies

Fixed

  • README
  • Example protractor conf file

v2.0.0

Added

  • Changelog for tracking deprications etc.
  • Allow piping of tasks after protractor #85

Changed

  • Upgrade protractor to v3.x

Fixed

  • Readme installation instructions
Commits
  • 64aefe4 Release 4.1.1
  • c082531 Merge pull request #140 from PWKad/master
  • c454f45 Peg event-stream at 3.3.4
  • 3e8810f Merge pull request #136 from TheDancingCode/issue-135
  • dbaeeef Drop dependency on deprecated gulp-util
  • 9254186 README updated
  • 714f642 Merge pull request #127 from mllrsohn/spawn_to_fork
  • 8fe9ebd bump to 4.1.0
  • 8e773b1 Resolve build issue windows path with spaces
  • 0f4055e Merge remote-tracking branch 'remotes/origin/master' into spawn_to_fork
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by steffen, a new releaser for gulp-protractor since your current version.


Updates gulp-useref from 1.1.2 to 5.0.0

Commits


Updates main-bower-files from 2.5.0 to 2.13.3

Release notes

Sourced from main-bower-files's releases.

2.12.0

No release notes provided.

2.11.2

No release notes provided.

2.11.1

No release notes provided.

2.11.0

new group option feature

2.7.0

No release notes provided.

Commits


Updates protractor from 1.7.0 to 7.0.0

Release notes

Sourced from protractor's releases.

5.4.3

typescript 3.7 compatibility

Resolves #5348 which was causing incompatibility with TypeScript 3.7

Changelog

Sourced from protractor's changelog.

7.0.0

  • (9d2e18e) refactor: use console.log instead of util.puts

    utils.puts is no longer available in Node.JS 12

  • (c281157) refactor: remove debugger and explore methods

    BREAKING CHANGE: Debugger and explore methods are not compatable with Node 8+. Use debugger keyword instead. See: https://goo.gl/MvWqFh

  • (7cdb978) build: update several dev packages that have security issues

  • (8e82835) build: update webdriver-manager

  • (a1fe5f2) ci: update tests to run on Node 10 and 12

  • (3fc9220) fix: prototype Pollution vulnerability through outdated yargs package

    BREAKING CHANGE:

    Node.Js version 6 and 8 are no longer supported. Please update to Node.Js 10+

    Closes #5431

5.4.4

Fixes

  • fix: security prototype pollution

5.4.3

Fixes

fix(index.ts): Fix exports to unbreak TypeScript 3.7 build

5.4.2

Features

  • (db1b638) feat(saucelabs): add sauceRegion support for eu datacenters (#5083)

... (truncated)

Commits
  • 71771de release: 7.0.0
  • 9d2e18e refactor: use console.log instead of util.puts
  • c281157 refactor: remove debugger and explore methods
  • 7cdb978 build: update several dev packages that have security issues
  • 8e82835 build: update webdriver-manager
  • a1fe5f2 ci: update tests to run on Node 10 and 12
  • 3fc9220 fix: prototype Pollution vulnerability through outdated yargs package
  • a0ffa9b release: 5.4.4
  • 8b3ebf8 fix: security prototype pollution
  • 162f9e5 ci: Log sauce connect proxy to stdout, remove travis_wait, upgrade proxy to 4...
  • Additional commits viewable in compare view


Updates wiredep from 2.2.2 to 4.0.0

Release notes

Sourced from wiredep's releases.

v4.0.0

This is a major release due to the BC listed below.

Updated lodash to 4x. Hopefully there are no breaking changes from that. Tests say there aren't.

BREAKING CHANGE: ok not really, not yet but its the start of one. wiredep-cli will no longer be included as part of this npm package in the next major version. It is still being included in this version as a dependency just in case.

v3.0.1

Patch release to update dependencies to get rid of npm warnings. Functionality should not have changed

v3.0.0

Alert: Breaking changes!

3.0.0 will make some changes which may affect your app. Please read before upgrading.

Testing it out

$ npm install --save-dev wiredep@3.0.0-beta

Breaking changes

REMOVED: Auto-detecting paths outside of a <!-- bower --> block.

Previously, if your source file included a reference to one of your Bower dependencies outside of your <!-- bower --> block, wiredep wouldn't inject it inside of the block. This was originally done to support using Modernizr.js in the <head> section of your HTML file without it being re-injected in the <body>. Not only is this no longer Modernizr's recommended practice, but we have since added the exclude option in wiredep's configuration that would allow you to duplicate this behavior without any magic.

REMOVED: Elite dependencies.

Previously, wiredep kept a list of packages that were known to be required before any other scripts. This included jQuery, es5-shim, etc. This was originally done in the very early days of Bower, as packages weren't properly listing their dependencies (if they even had a bower.json at all!). Things have come a long way since then, and this should no longer be required. If you are using packages that don't list their dependencies properly, offer them a PR with the correction.

ADDED: Support for packages that don't have a main.

Previously, if one of your dependencies didn't have a main file, wiredep wouldn't go through its dependencies to inject their mains. We've since found out this is a common practice for some Polymer packages, and also just makes more sense, so now it doesn't matter if the root component doesn't have a main. wiredep will continue going through its dependencies.

Problems?

If this causes any breakages in your app unrelated to the explanations above, please open an issue.

v3.0.0-beta

Alert: Breaking changes!

3.0.0 will make some changes which may affect your app. Please read before upgrading.

Testing it out

$ npm install --save-dev wiredep@3.0.0-beta

... (truncated)

Commits
  • 3416e1e 4.0.0
  • d4d23b9 tests: fix cached config from multiple runs
  • 58b9441 update lodash and fix breaking changes from it
  • 4d98906 split wiredep-cli into its own module
  • e4cb7a6 update devDeps
  • 9b72b7a update safe main deps
  • dc88ab0 warn on invalid or missing bowerJson file
  • b649193 use appropriate log methods for cli
  • b5f6644 only use the fixtures for real cli tests
  • 851483f refactor wiredep-cli to reduce loops and double checks
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by eddiemonge, a new releaser for wiredep since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/riperiperi/FreeSO/network/alerts).
dependabot[bot] commented 1 year ago

OK, I won't notify you again about this release, but will get in touch when a new version is available.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.