Skip to content

build(deps): bump tornado from 6.5.1 to 6.5.5 in /data/scrape-share-food-program#721

Merged
gcardonag merged 1 commit into
developfrom
dependabot/pip/data/scrape-share-food-program/tornado-6.5.5
Mar 17, 2026
Merged

build(deps): bump tornado from 6.5.1 to 6.5.5 in /data/scrape-share-food-program#721
gcardonag merged 1 commit into
developfrom
dependabot/pip/data/scrape-share-food-program/tornado-6.5.5

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 12, 2026

Bumps tornado from 6.5.1 to 6.5.5.

Changelog

Sourced from tornado's changelog.

Release notes

.. toctree:: :maxdepth: 2

releases/v6.5.5 releases/v6.5.4 releases/v6.5.3 releases/v6.5.2 releases/v6.5.1 releases/v6.5.0 releases/v6.4.2 releases/v6.4.1 releases/v6.4.0 releases/v6.3.3 releases/v6.3.2 releases/v6.3.1 releases/v6.3.0 releases/v6.2.0 releases/v6.1.0 releases/v6.0.4 releases/v6.0.3 releases/v6.0.2 releases/v6.0.1 releases/v6.0.0 releases/v5.1.1 releases/v5.1.0 releases/v5.0.2 releases/v5.0.1 releases/v5.0.0 releases/v4.5.3 releases/v4.5.2 releases/v4.5.1 releases/v4.5.0 releases/v4.4.3 releases/v4.4.2 releases/v4.4.1 releases/v4.4.0 releases/v4.3.0 releases/v4.2.1 releases/v4.2.0 releases/v4.1.0 releases/v4.0.2 releases/v4.0.1 releases/v4.0.0 releases/v3.2.2 releases/v3.2.1 releases/v3.2.0 releases/v3.1.1

... (truncated)

Commits
  • 7d64650 Merge pull request #3586 from bdarnell/update-cibw
  • d05d59b build: Bump cibuildwheel to 3.4.0
  • c2f4673 Merge pull request #3585 from bdarnell/release-655
  • e5f1aa4 Release notes and version bump for v6.5.5
  • 78a046f httputil: Add CRLF to _FORBIDDEN_HEADER_CHARS_RE
  • 24a2d96 web: Validate characters in all cookie attributes.
  • 119a195 httputil: Add limits on multipart form data parsing
  • 63d4df4 Merge pull request #3564 from bdarnell/release-654
  • eadbf9a Release notes and version bump for 6.5.4
  • bbc2b14 Make sure that the in-operator on HTTPHeaders is case insensitive
  • 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 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [tornado](https://github.com/tornadoweb/tornado) from 6.5.1 to 6.5.5.
- [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst)
- [Commits](tornadoweb/tornado@v6.5.1...v6.5.5)

---
updated-dependencies:
- dependency-name: tornado
  dependency-version: 6.5.5
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added Dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 12, 2026
@gcardonag gcardonag merged commit e366565 into develop Mar 17, 2026
4 checks passed
@dependabot dependabot Bot deleted the dependabot/pip/data/scrape-share-food-program/tornado-6.5.5 branch March 17, 2026 22:38
gcardonag added a commit that referenced this pull request Apr 7, 2026
* add Claude Code tooling and Supabase helpers

Adds CLAUDE.md for project context, a CLI script to query Supabase
tables, and a centralized db module for database access.

Co-Authored-By: Claude Opus 4.6 <[email protected]>

* Dedupe Supabase client: reuse src/db.js in fetch script

Use optional chaining on import.meta.env so src/db.js works in both
Vite and Node contexts, then import the shared client in the CLI
script instead of duplicating the connection setup. Also fix typo
in CLAUDE.md.

Co-Authored-By: Claude Opus 4.6 <[email protected]>

* Delete duplicate src/db.js, reuse src/services/db.ts in fetch script

src/db.js was dead code — nothing imported it. The fetch script now
imports the supabase client from src/services/db.ts directly, run
via node --experimental-strip-types. Added optional chaining on
import.meta.env for Node compatibility.

Co-Authored-By: Claude Opus 4.6 <[email protected]>

* Fixes cypress testing action

* feat: add ProvidedBy component for resource attribution (#692)

* feat: add ProvidedBy component for resource attribution

Add Provider type to ResourceEntry and create ProvidedBy component
that displays organization attribution with logo/name support.
Supports multiple providers with "+X more" overflow handling.

* feat: add logo support and image fallback for ProvidedBy

- Add Share Food Program logo as local asset for testing
- Implement image fallback to Avatar when logo fails to load
- Increase logo size to 40x40 for better visibility
- Position ProvidedBy below Last Modified section

* feat: add provider logo mapping utility

Logo resolution now checks both provider.logo_url and a local mapping
by provider name. This allows storing logos as local assets while
keeping provider data simple (just name and url).

* refactor: remove hardcoded mock provider data

Component now only displays when resource.providers has actual data.

* refactor: address PR feedback for ProvidedBy component

Reviewers flagged that provider logos should come from the database, not
static assets. This removes the hardcoded logo file and providerLogos
utility. Also extracts ProviderItem and ProviderLogo as separate
components, uses optional Provider[] prop with default, and replaces
deprecated primaryTypographyProps with slotProps.primary.

* refactor: migrate deprecated inputProps to slotProps.htmlInput

MUI codemod flagged TextField's inputProps as deprecated. Migrating to
slotProps.htmlInput aligns with the current MUI API.

* Adds Supabase querying for resource providers

* Adds providers database name variable

* Fixes cypress testing action

---------

Co-authored-by: Gabriel Cardona <[email protected]>

* build(deps): bump tornado in /data/scrape-share-food-program (#721)

Bumps [tornado](https://github.com/tornadoweb/tornado) from 6.5.1 to 6.5.5.
- [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst)
- [Commits](tornadoweb/tornado@v6.5.1...v6.5.5)

---
updated-dependencies:
- dependency-name: tornado
  dependency-version: 6.5.5
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump pyasn1 in /data/scrape-share-food-program (#723)

Bumps [pyasn1](https://github.com/pyasn1/pyasn1) from 0.6.2 to 0.6.3.
- [Release notes](https://github.com/pyasn1/pyasn1/releases)
- [Changelog](https://github.com/pyasn1/pyasn1/blob/main/CHANGES.rst)
- [Commits](pyasn1/pyasn1@v0.6.2...v0.6.3)

---
updated-dependencies:
- dependency-name: pyasn1
  dependency-version: 0.6.3
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump pyjwt in /data/scrape-share-food-program (#722)

Bumps [pyjwt](https://github.com/jpadilla/pyjwt) from 2.10.1 to 2.12.0.
- [Release notes](https://github.com/jpadilla/pyjwt/releases)
- [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst)
- [Commits](jpadilla/pyjwt@2.10.1...2.12.0)

---
updated-dependencies:
- dependency-name: pyjwt
  dependency-version: 2.12.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update env (#715)

* mv found API keys to .env

* all hardcoded ones are verfided and moved

* final mv

* mv verification pwd

* mv verification pwd

* add missing msg

* moe yelling

* added yelling in dev env for all keys and imports if missing

* add: secerts workflow to test injections

* add: secerts workflow to test injections

* should work -- clean up after

* another try to make it work -- clean up after

* another try to make it work -- clean up after

* try 4 to make it work -- clean up after

* try 5 to make it work -- clean up after

* try 6 to make it work -- clean up after

* try 7 debug missing key ugg

* try 7 debug missing key ugg

* try 8 should work

* working cleaup done

* testing something -- need to add more secret keys

* just need to add one more key to GH secrets and should work

* zod env config

* zod env config

* Update config.ts

* simplfy

* Adds vite preflight check to ensure environment variables are set and fixes workflow references to GMaps API key secret

---------

Co-authored-by: Gabriel Cardona <[email protected]>

* re-add posthog provider (#741)

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: vontell <[email protected]>
Co-authored-by: Claude Opus 4.6 <[email protected]>
Co-authored-by: Aaron Vontell <[email protected]>
Co-authored-by: Kevin Wijaya <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Anil Kumar Karapa <[email protected]>
Co-authored-by: Ron Braha <[email protected]>
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 python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant