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 pg from 1.4.5 to 1.4.6 #644

Open
wants to merge 94 commits into
base: twingyeo-kr
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Feb 27, 2023

Bumps pg from 1.4.5 to 1.4.6.

Changelog

Sourced from pg's changelog.

v1.4.6 [2023-02-26] Lars Kanis [email protected]

  • Add japanese README file. #502
  • Improve discard_results to not block under memory pressure. #500
  • Use a dedicated error class PG::LostCopyState for errors due to another query within copy_data and mention that it's probably due to another query. Previously the "no COPY in progress" PG::Error was less specific. #499
  • Make sure an error in put_copy_end of copy_data doesn't lose the original exception.
  • Disable nonblocking mode while large object calls. #498 Since pg-1.3.0 libpq's "lo_*" calls failed when a bigger amount of data was transferred. This specifically forced the active_storage-postgresql gem to use pg-1.2.3.
  • Add rdoc options to gemspec, so that "gem install" generates complete offline documentation.
  • Add binary Windows gems for Ruby 3.2.
  • Update Windows fat binary gem to PostgreSQL-15.2 and OpenSSL-3.0.8.
Commits
  • cae53b2 Bump VERSION to 1.4.6
  • 6b26383 Add release notes for pg-1.4.6
  • cd249b8 Update postgresql and openssl versions for binary gems
  • febe565 Use an item list for basic links in the README
  • 4c010e0 Fix link to rdoc page in japanese README
  • 0c8cc16 Use LANG=C for po4a so that the version text is language independent
  • 73733ac Merge pull request #499 from larskanis/improve_copy_data
  • 8c91814 Merge pull request #502 from gemmaro/add/ja
  • 290ed40 Merge pull request #501 from larskanis/racy-tcp-gate
  • 10e5b12 Merge branch 'master' into racy-tcp-gate
  • Additional commits viewable 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)

unstabler and others added 30 commits April 2, 2021 13:46
* Fix newlines in account notes added by the move handler

* Make MoveWorker more robust
* Add test

* Fix crash when encountering invalid account fields
…es (mastodon#16628)

* Fix remotely-suspended accounts' toots being merged back into timelines

* Mark remotely-deleted accounts as remotely suspended
…empt (mastodon#16607)

* Add tests

* Add security-related tests

My first (unpublished) attempt at fixing the issues introduced (extremely
hard-to-exploit) security vulnerabilities, addressing them in a test.

* Fix authentication failures after going halfway through a sign-in attempt

* Refactor `authenticate_with_sign_in_token` and `authenticate_with_two_factor` to make the two authentication steps more obvious
Use relative path for `scope` in web manifest to allow users use PWA correctly via alternate domains.
* Add tests

* Fix webauthn secure key authentication

Fixes mastodon#16769
* Add tests

* Fix scheduled statuses decreasing statuses counts

Fixes mastodon#16774
…inks (mastodon#16885)

* Add tests

* Fix some link previews being incorrectly generated from different prior links

PR mastodon#12403 added a cache to avoid redundant queries when the OEmbed endpoint can
be guessed from the URL. This caching mechanism is not perfectly correct as
there is no guarantee that all pages from a given domain share the same
OEmbed provider endpoint.

This PR prevents the FetchOEmbedService from caching OEmbed endpoint that
cannot be generalized by replacing a fully-qualified URL from the endpoint's
parameters, greatly reducing the number of incorrect cached generalizations.
…ount (mastodon#16896)

In order to work around mastodon#16895,
add a warning to .env.production.sample, and change the mastodon:setup rake
task to:
- output a warning if a variable will be interpreted differently by dotenv
  and docker-compose
- ensure the printed config is compatible with docker-compose
List various values like file size limits and supported mime types
…y path (mastodon#16744)

Follow-up to mastodon#16510, forgot the controller exposing the actual followers…
Fixes mastodon#16509

Microsoft Edge with translation enabled rewrites the DOM in ways that confuse
react and prevent it from working properly. Wrapping the offending parts in
a span avoids this issue.
…suspended accounts (mastodon#16688)

* Do not block existing users' emails on self-destruct

That is wasteful and unintuitive

* Do not close registrations when running tootctl self-destruct with --dry-run

* Close registrations on self-destruct regardless of known remote accounts

* Fix tootctl self-destruct not sending Deletes for recently-suspended accounts

* Suspend local users even if no remote account is known

* Do not show scary confirmation text if ran with --dry-run
The auto-linking code basically rewrote the whole string escaping non-ascii
characters in an inefficient way, and building a full character offset map
between the unescaped and escaped texts before sending the contents to
TwitterText's extractor.

Instead of doing that, this commit changes the TwitterText regexps to include
valid IRI characters in addition to valid URI characters.
… network (mastodon#16418)

* Add tests

* Fix serialization of followers/following counts when user hides their network

Fixes mastodon#16382

Signed-off-by: Claire <[email protected]>
…on#16384)

* Fix WebUI crash when a toot with a playing video gets deleted

* Fix pop-up player not closing the moment a status is deleted
…astodon#16458)

* Fix anonymous access to outbox not being cached by the reverse proxy

Up until now, anonymous access to outbox was marked as public, but with a
0 duration for caching, which means remote proxies would only serve from cache
when the server was completely overwhelmed.

Changed that cache duration to one minute, so that repeated anonymous access
to one account's outbox can be appropriately cached.

Also added `Signature` to the `Vary` header in case a page is requested, so
that authenticated fetches are never served from cache (which only contains
public toots).

* Remove Vary: Accept header from webfinger controller

Indeed, we have stopped returning xrd, and only ever return jrd, so the
Accept request header does not matter anymore.

* Cache negative webfinger hits for 3 minutes
Wonderfall and others added 25 commits February 2, 2022 23:30
Browsers are phasing out X-XSS-Protection, but Safari and IE still support it.
Bumps [pg](https://github.com/ged/ruby-pg) from 1.4.5 to 1.4.6.
- [Release notes](https://github.com/ged/ruby-pg/releases)
- [Changelog](https://github.com/ged/ruby-pg/blob/master/History.md)
- [Commits](ged/ruby-pg@v1.4.5...v1.4.6)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Feb 27, 2023
@github-actions
Copy link

This pull request has merge conflicts that must be resolved before it can be merged.

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 rebase needed 🚧 ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants