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

Bump follow-redirects from 1.14.4 to 1.14.7 in /website #3

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 15, 2022

Bumps follow-redirects from 1.14.4 to 1.14.7.

Commits
  • 2ede36d Release version 1.14.7 of the npm package.
  • 8b347cb Drop Cookie header across domains.
  • 6f5029a Release version 1.14.6 of the npm package.
  • af706be Ignore null headers.
  • d01ab7a Release version 1.14.5 of the npm package.
  • 40052ea Make compatible with Node 17.
  • 86f7572 Fix: clear internal timer on request abort to avoid leakage
  • 2e1eaf0 Keep Authorization header on subdomain redirects.
  • 2ad9e82 Carry over Host header on relative redirects (#172)
  • 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 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.

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.4 to 1.14.7.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](follow-redirects/follow-redirects@v1.14.4...v1.14.7)

---
updated-dependencies:
- dependency-name: follow-redirects
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 15, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 14, 2022

Superseded by #4.

@dependabot dependabot bot closed this Feb 14, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/website/follow-redirects-1.14.7 branch February 14, 2022 20:30
vegerot pushed a commit that referenced this pull request Jan 8, 2024
Currently, the CMake build system supports three modes for
quick-lint-js-generate-lex-keyword:

1. quick-lint-js-generate-lex-keyword is built as part of the current build
   (QUICK_LINT_JS_ENABLE_BUILD_TOOLS is set)
2. quick-lint-js-generate-lex-keyword is imported from a previous build
   (QUICK_LINT_JS_USE_BUILD_TOOLS is set)
3. quick-lint-js-generate-lex-keyword is not used at all
   (neither QUICK_LINT_JS_ENABLE_BUILD_TOOLS nor QUICK_LINT_JS_USE_BUILD_TOOLS
   is set)

Supporting option #3 has a few minor pitfalls. Generated code can get out of
sync when cross-compiling.

Drop support for option #3. In other words, require either
QUICK_LINT_JS_ENABLE_BUILD_TOOLS or QUICK_LINT_JS_USE_BUILD_TOOLS.
QUICK_LINT_JS_ENABLE_BUILD_TOOLS is what most people will use, and
QUICK_LINT_JS_USE_BUILD_TOOLS is what cross-compilers will use.

BREAKING CHANGE: Cross compilers should follow
https://quick-lint-js.com/contribute/build-from-source/cross-compiling/
vegerot pushed a commit that referenced this pull request Jan 8, 2024
Linked_Bump_Allocator is coded to align all allocations to 'alignment'
(typically 8). This is problematic for a few reasons:

1. 'alignment' is specified as a compile-time template parameter,
   forcing Linked_Bump_Allocator to be a template. This probably slows
   down compilation and clutters the header file. (This is the main
   problem motivating this patch.)
2. Allocations perform run-time alignment anyways, but on the size
   rather than on the pointer.
3. The forced alignment wastes some space.
4. Linked_Bump_Allocator cannot support overaligned data. (This isn't a
   problem yet, and I don't forsee this being a real problem. I mention
   this for completeness.)

Teach Linked_Bump_Allocator to align everything according to a run-time
alignment. This will let us fix issue #1 later, directly fixes issue #3,
and (with some work included in this patch) fixes #4.

This patch might have negative performance costs. I did not measure.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants