Skip to content

Bump colyseus.js from 0.16.11 to 0.16.15#64

Merged
Croc-Prog-github merged 1 commit intomainfrom
dependabot/npm_and_yarn/colyseus.js-0.16.15
Mar 31, 2025
Merged

Bump colyseus.js from 0.16.11 to 0.16.15#64
Croc-Prog-github merged 1 commit intomainfrom
dependabot/npm_and_yarn/colyseus.js-0.16.15

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 31, 2025

Bumps colyseus.js from 0.16.11 to 0.16.15.

Release notes

Sourced from colyseus.js's releases.

0.16.15

No release notes provided.

0.16.14

No release notes provided.

0.16.13

No release notes provided.

0.16.12

Allow to customize request headers of client.http requests and WebSocket requests (using Node.js or Bun client)

You can now do the following:

const client = new Client("http://localhost:2567", {
  // optional headers
  headers: {
    ['User-Agent']: "My User Agent"
  },
// optional urlBuilder
urlBuilder: (url: URL) => {
return url.toString();
}
});

Alternatively, you may customize client.http.headers instead of using the Client's constructor:

client.http.headers = {/* custom headers */};

All the client.http.* calls are going to use the custom headers set.

Web Browsers do not allow to customize WebSocket request headers. You may need to use the urlBuilder option to include additional query params into the WebSocket requests instead of using headers. Node.js and other runtimes allow it, though.

Commits
  • fd3e7b8 do not force latest version of @​colyseus/schema on package.json
  • ea6769c use node v22 on CI test
  • a9d6ec1 upgrade rollup packages. fix bad embed of 'ws' module on dist file.
  • 9f93094 force CI to install latest version of @​colyseus/schema so dist colyseus.js fi...
  • f759a87 bump version
  • 802f303 web browsers do not allow custom headers signature. #156
  • 410faa8 allow to specify custom headers on Client constructor. #156
  • See full diff in compare view

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [colyseus.js](https://github.com/colyseus/colyseus.js) from 0.16.11 to 0.16.15.
- [Release notes](https://github.com/colyseus/colyseus.js/releases)
- [Commits](colyseus/colyseus.js@0.16.11...0.16.15)

---
updated-dependencies:
- dependency-name: colyseus.js
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added Dependencies Pull Request che aggiornano file di dipendenze javascript Pull requests that update javascript code labels Mar 31, 2025
@bolt-new-by-stackblitz
Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@github-actions
Copy link
Contributor

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails
npm/colyseus.js 0.16.15 🟢 4
Details
CheckScoreReason
Maintained🟢 1027 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Code-Review⚠️ 1Found 3/22 approved changesets -- score normalized to 1
Binary-Artifacts🟢 10no binaries found in the repo
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Pinned-Dependencies⚠️ 1dependency not pinned by hash detected -- score normalized to 1
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ 0Project has not signed or included provenance with any releases.
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Packaging🟢 10packaging workflow detected
SAST⚠️ 0SAST tool is not run on all commits -- score normalized to 0
Security-Policy⚠️ 0security policy file not detected
Vulnerabilities⚠️ 096 existing vulnerabilities detected
npm/colyseus.js ^0.16.15 🟢 4
Details
CheckScoreReason
Maintained🟢 1027 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Code-Review⚠️ 1Found 3/22 approved changesets -- score normalized to 1
Binary-Artifacts🟢 10no binaries found in the repo
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Pinned-Dependencies⚠️ 1dependency not pinned by hash detected -- score normalized to 1
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ 0Project has not signed or included provenance with any releases.
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Packaging🟢 10packaging workflow detected
SAST⚠️ 0SAST tool is not run on all commits -- score normalized to 0
Security-Policy⚠️ 0security policy file not detected
Vulnerabilities⚠️ 096 existing vulnerabilities detected

Scanned Files

  • package-lock.json
  • package.json

@Croc-Prog-github Croc-Prog-github merged commit a93b683 into main Mar 31, 2025
6 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/colyseus.js-0.16.15 branch March 31, 2025 08:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Dependencies Pull Request che aggiornano file di dipendenze javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant