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

Update all non-major dependencies #242

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@heroicons/react 2.1.5 -> 2.2.0 age adoption passing confidence
@types/node (source) 20.17.6 -> 20.17.9 age adoption passing confidence
@types/react (source) 18.3.12 -> 18.3.15 age adoption passing confidence
@types/react-dom (source) 18.3.1 -> 18.3.3 age adoption passing confidence
dotenv-cli 7.4.2 -> 7.4.4 age adoption passing confidence
dspy-ai 2.5.29 -> 2.5.42 age adoption passing confidence
eslint-config-next (source) 14.2.17 -> 14.2.20 age adoption passing confidence
flask (changelog) 3.0.3 -> 3.1.0 age adoption passing confidence
httpx (changelog) ^0.27.0 -> ^0.28.0 age adoption passing confidence
next (source) 14.2.17 -> 14.2.20 age adoption passing confidence
openai 1.54.3 -> 1.57.2 age adoption passing confidence
openai 4.71.1 -> 4.76.1 age adoption passing confidence
postcss (source) 8.4.48 -> 8.4.49 age adoption passing confidence
pydantic (changelog) 2.9.2 -> 2.10.3 age adoption passing confidence
tailwindcss (source) 3.4.14 -> 3.4.16 age adoption passing confidence
typescript (source) 5.6.3 -> 5.7.2 age adoption passing confidence
zod (source) 3.23.8 -> 3.24.0 age adoption passing confidence

Release Notes

tailwindlabs/heroicons (@​heroicons/react)

v2.2.0

Compare Source

Added
Fixed
  • Removed unnecessary clipping path from solid/arrow-left-circle (#​1211)
entropitor/dotenv-cli (dotenv-cli)

v7.4.4: Fix security issue

Compare Source

https://github.com/entropitor/dotenv-cli/pull/119

v7.4.3: Forward signals to child process

Compare Source

https://github.com/entropitor/dotenv-cli/pull/107

stanfordnlp/dsp (dspy-ai)

v2.5.42

Compare Source

What's Changed

New Contributors

Full Changelog: stanfordnlp/dspy@2.5.41...2.5.42

v2.5.41

Compare Source

What's Changed

New Contributors

Full Changelog: stanfordnlp/dspy@2.5.40...2.5.41

v2.5.40

Compare Source

What's Changed

Full Changelog: stanfordnlp/dspy@2.5.39...2.5.40

v2.5.39

Compare Source

fix settings contextmanager

Full Changelog: stanfordnlp/dspy@2.5.38...2.5.39

v2.5.38

Compare Source

Full Changelog: stanfordnlp/dspy@2.5.37...2.5.38

v2.5.37

Compare Source

Hotfix over 2.5.36

Full Changelog: stanfordnlp/dspy@2.5.36...2.5.37

v2.5.36

Compare Source

What's Changed

  • Convert dspy.settings to a ContextVar
  • Improve ParallelExecutor (isolate even if 1 thread)
  • Permit user-launched threads

by @​okhat in https://github.com/stanfordnlp/dspy/pull/1852

Full Changelog: stanfordnlp/dspy@2.5.35...2.5.36

v2.5.35

Compare Source

What's Changed

New Contributors

Full Changelog: stanfordnlp/dspy@2.5.34...2.5.35

v2.5.34

Compare Source

What's Changed

  • Introduce dspy.retrievers.Embeddings index (thread-safe, memory-friendly faiss kNN)
  • Introduce CompleteAndGrounded metric
  • Introduce Unbatchify utils

by @​okhat in https://github.com/stanfordnlp/dspy/pull/1843

Full Changelog: stanfordnlp/dspy@2.5.33...2.5.34

v2.5.33

Compare Source

What's Changed

Full Changelog: stanfordnlp/dspy@2.5.32...2.5.33

v2.5.32

Compare Source

What's Changed

Full Changelog: stanfordnlp/dspy@2.5.31...2.5.32

v2.5.31

Compare Source

What's Changed

Full Changelog: stanfordnlp/dspy@2.5.30...2.5.31

v2.5.30

Compare Source

What's Changed

New Contributors

Full Changelog: stanfordnlp/dspy@2.5.29...2.5.30

vercel/next.js (eslint-config-next)

v14.2.20

Compare Source

v14.2.19

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • ensure worker exits bubble to parent process (#​73433)
  • Increase max cache tags to 128 (#​73125)
Misc Changes
  • Update max tag items limit in docs (#​73445)
Credits

Huge thanks to @​ztanner and @​ijjk for helping!

v14.2.18

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
Credits

Huge thanks to @​huozhi and @​ijjk for helping!

pallets/flask (flask)

v3.1.0

Compare Source

Released 2024-11-13

  • Drop support for Python 3.8. :pr:5623
  • Update minimum dependency versions to latest feature releases.
    Werkzeug >= 3.1, ItsDangerous >= 2.2, Blinker >= 1.9. :pr:5624,5633
  • Provide a configuration option to control automatic option
    responses. :pr:5496
  • Flask.open_resource/open_instance_resource and
    Blueprint.open_resource take an encoding parameter to use when
    opening in text mode. It defaults to utf-8. :issue:5504
  • Request.max_content_length can be customized per-request instead of only
    through the MAX_CONTENT_LENGTH config. Added
    MAX_FORM_MEMORY_SIZE and MAX_FORM_PARTS config. Added documentation
    about resource limits to the security page. :issue:5625
  • Add support for the Partitioned cookie attribute (CHIPS), with the
    SESSION_COOKIE_PARTITIONED config. :issue:5472
  • -e path takes precedence over default .env and .flaskenv files.
    load_dotenv loads default files in addition to a path unless
    load_defaults=False is passed. :issue:5628
  • Support key rotation with the SECRET_KEY_FALLBACKS config, a list of old
    secret keys that can still be used for unsigning. Extensions will need to
    add support. :issue:5621
  • Fix how setting host_matching=True or subdomain_matching=False
    interacts with SERVER_NAME. Setting SERVER_NAME no longer restricts
    requests to only that domain. :issue:5553
  • Request.trusted_hosts is checked during routing, and can be set through
    the TRUSTED_HOSTS config. :issue:5636
encode/httpx (httpx)

v0.28.1

Compare Source

  • Fix SSL case where verify=False together with client side certificates.

v0.28.0

Compare Source

The 0.28 release includes a limited set of deprecations.

Deprecations:

We are working towards a simplified SSL configuration API.

For users of the standard verify=True or verify=False cases, or verify=<ssl_context> case this should require no changes. The following cases have been deprecated...

  • The verify argument as a string argument is now deprecated and will raise warnings.
  • The cert argument is now deprecated and will raise warnings.

Our revised SSL documentation covers how to implement the same behaviour with a more constrained API.

The following changes are also included:

  • The deprecated proxies argument has now been removed.
  • The deprecated app argument has now been removed.
  • JSON request bodies use a compact representation. (#​3363)
  • Review URL percent escape sets, based on WHATWG spec. (#​3371, #​3373)
  • Ensure certifi and httpcore are only imported if required. (#​3377)
  • Treat socks5h as a valid proxy scheme. (#​3178)
  • Cleanup Request() method signature in line with client.request() and httpx.request(). (#​3378)
vercel/next.js (next)

v14.2.20

Compare Source

v14.2.19

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • ensure worker exits bubble to parent process (#​73433)
  • Increase max cache tags to 128 (#​73125)
Misc Changes
  • Update max tag items limit in docs (#​73445)
Credits

Huge thanks to @​ztanner and @​ijjk for helping!

v14.2.18

Compare Source

openai/openai-python (openai)

v1.57.2

Compare Source

Full Changelog: v1.57.1...v1.57.2

Bug Fixes
Documentation

v1.57.1

Compare Source

Full Changelog: v1.57.0...v1.57.1

Chores

v1.57.0

Compare Source

Full Changelog: v1.56.2...v1.57.0

Features
Chores

v1.56.2

Compare Source

Full Changelog: v1.56.1...v1.56.2

Chores

v1.56.1

Compare Source

Full Changelog: v1.56.0...v1.56.1

Bug Fixes
  • cli: remove usage of httpx proxies (0e9fc3d)
Chores

v1.56.0

Compare Source

Full Changelog: v1.55.3...v1.56.0

Features

v1.55.3

Compare Source

Full Changelog: v1.55.2...v1.55.3

Bug Fixes

v1.55.2

Compare Source

Full Changelog: v1.55.1...v1.55.2

Chores
Documentation

v1.55.1

Compare Source

Full Changelog: v1.55.0...v1.55.1

Bug Fixes
  • pydantic-v1: avoid runtime error for assistants streaming (#​1885) (197c94b)
Chores
Documentation

v1.55.0

Compare Source

Full Changelog: v1.54.5...v1.55.0

Features

v1.54.5

Compare Source

Full Changelog: v1.54.4...v1.54.5

Bug Fixes
  • asyncify: avoid hanging process under certain conditions (#​1853) (3d23437)
Chores

v1.54.4

Compare Source

Full Changelog: v1.54.3...v1.54.4

Bug Fixes
Documentation
openai/openai-node (openai)

v4.76.1

Compare Source

Full Changelog: v4.76.0...v4.76.1

Chores

v4.76.0

Compare Source

Full Changelog: v4.75.0...v4.76.0

Features
Chores

v4.75.0

Compare Source

Full Changelog: v4.74.0...v4.75.0

Features

v4.74.0

Compare Source

Full Changelog: v4.73.1...v4.74.0

Features

v4.73.1

Compare Source

Full Changelog: v4.73.0...v4.73.1

Documentation
  • readme: mention .withResponse() for streaming request ID (#​1202) (b6800d4)

v4.73.0

Compare Source

Full Changelog: v4.72.0...v4.73.0

Features
  • api: add gpt-4o-2024-11-20 model (#​1201) (0feeafd)
  • bump model in all example snippets to gpt-4o (6961c37)
Bug Fixes
Chores
Documentation

v4.72.0

Compare Source

Full Changelog: v4.71.1...v4.72.0

Features
  • add back deno runtime testing without type checks (1626cf5)
Chores
postcss/postcss (postcss)

v8.4.49

Compare Source

pydantic/pydantic (pydantic)

v2.10.3

Compare Source

GitHub release

What's Changed
Fixes

v2.10.2

Compare Source

GitHub release

What's Changed
Fixes

v2.10.1

Compare Source

GitHub release

What's Changed
Packaging
Fixes
New Contributors

v2.10.0

Compare Source

The code released in v2.10.0 is practically identical to that of v2.10.0b2.

GitHub release

See the v2.10 release blog post for the highlights!

What's Changed
Packaging

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" in timezone America/Chicago, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team November 18, 2024 06:23
Copy link

vercel bot commented Nov 18, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
autoblocks-examples ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 10, 2024 10:31pm

Copy link

coderabbitai bot commented Nov 18, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Experiment)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

github-actions bot commented Nov 18, 2024

🏗️ Autoblocks Testing / js-autoblocks-tests (#1137)  •  ➡️ View in Autoblocks


🟢  flashcard-generator

Overall
Pass Rate 0.00%
Passed 0
Failed 0
Evaluator ID Min Score Avg Score Max Score Passed Failed Skipped
is-professional-tone 0.40 0.53 0.69 3 0 0
is-supported-by-notes 1.00 1.00 1.00 3 0 0
Test Case Duration
Min 2,958.14ms
Avg 3,163.96ms
Max 3,466.57ms

 
 
🔴  study-guide-outline

Overall
Pass Rate 80.00%
Passed 4
Failed 1
Evaluator ID Min Score Avg Score Max Score Passed Failed Skipped
formatting 1.00 1.00 1.00 5 0 0
has-substrings 0.00 0.80 1.00 4 1 0
num-categories 1.00 1.00 1.00 5 0 0
Test Case Duration
Min 1,481.8ms
Avg 1,982.35ms
Max 2,682.34ms

 
 

Generated by Autoblocks against 9bfe448

Copy link

github-actions bot commented Nov 18, 2024

🏗️ Autoblocks Testing / py-autoblocks-tests (#1137)  •  ➡️ View in Autoblocks


🟢  flashcard-generator

Overall
Pass Rate 0.00%
Passed 0
Failed 0
Evaluator ID Min Score Avg Score Max Score Passed Failed Skipped
is-professional-tone 0.81 0.85 0.92 3 0 0
is-supported-by-notes 1.00 1.00 1.00 3 0 0
Test Case Duration
Min 2,038.98ms
Avg 3,665.53ms
Max 5,404.14ms

 
 
🔴  study-guide-outline

Overall
Pass Rate 80.00%
Passed 4
Failed 1
Evaluator ID Min Score Avg Score Max Score Passed Failed Skipped
formatting 1.00 1.00 1.00 5 0 0
has-substrings 0.00 0.80 1.00 4 1 0
num-categories 1.00 1.00 1.00 5 0 0
Test Case Duration
Min 1,177.1ms
Avg 1,997.72ms
Max 2,473.98ms

 
 

Generated by Autoblocks against 9bfe448

@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 0de71d5 to 2454659 Compare November 18, 2024 17:37
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 2454659 to 155eab3 Compare November 19, 2024 13:23
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 155eab3 to f7a2c51 Compare November 19, 2024 22:45
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from f7a2c51 to 23b0a73 Compare November 20, 2024 18:52
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 23b0a73 to 09d12a7 Compare November 20, 2024 23:39
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 09d12a7 to 70195d4 Compare November 21, 2024 19:46
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 70195d4 to 87c915c Compare November 22, 2024 04:06
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 87c915c to 67828f9 Compare November 22, 2024 19:15
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 67828f9 to b4ece9c Compare November 22, 2024 21:23
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from b4ece9c to 65370e2 Compare November 23, 2024 06:27
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 65370e2 to d688fdb Compare November 24, 2024 06:47
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from d688fdb to c93daaf Compare November 24, 2024 16:57
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 3b49b45 to 17950ee Compare November 28, 2024 19:13
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 17950ee to beae338 Compare November 29, 2024 08:03
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from beae338 to c8c3c81 Compare December 2, 2024 23:34
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from c8c3c81 to 718d2bc Compare December 3, 2024 20:01
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 718d2bc to 87c50f3 Compare December 4, 2024 15:52
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 87c50f3 to 3038970 Compare December 4, 2024 19:23
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 3038970 to 3526d24 Compare December 4, 2024 23:04
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 3526d24 to 41bbd3b Compare December 5, 2024 19:19
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 41bbd3b to 3384fd2 Compare December 7, 2024 02:46
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 3384fd2 to 0bb205a Compare December 9, 2024 16:16
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 0bb205a to a0b9f89 Compare December 9, 2024 20:38
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from a0b9f89 to aa44169 Compare December 10, 2024 07:11
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from aa44169 to eba28be Compare December 10, 2024 15:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants