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

fix(deps): update npm non-major dependencies #93

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 12, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@crawlee/core (source) 3.12.0 -> 3.12.1 age adoption passing confidence
@fortawesome/fontawesome-svg-core (source) 6.6.0 -> 6.7.2 age adoption passing confidence
@fortawesome/free-solid-svg-icons (source) 6.6.0 -> 6.7.2 age adoption passing confidence
@mui/icons-material (source) 5.16.7 -> 5.16.14 age adoption passing confidence
@mui/material (source) 5.16.7 -> 5.16.14 age adoption passing confidence
@mui/system (source) 5.16.7 -> 5.16.14 age adoption passing confidence
@slack/bolt (source) 3.21.1 -> 3.22.0 age adoption passing confidence
@slack/oauth (source) 3.0.1 -> 3.0.2 age adoption passing confidence
@slack/web-api (source) 6.12.1 -> 6.13.0 age adoption passing confidence
@supabase/supabase-js 2.46.1 -> 2.47.16 age adoption passing confidence
@tanstack/react-query (source) 5.59.20 -> 5.64.1 age adoption passing confidence
@types/node (source) 22.5.1 -> 22.10.7 age adoption passing confidence
@types/node (source) 22.9.0 -> 22.10.7 age adoption passing confidence
@types/react (source) 18.3.12 -> 18.3.18 age adoption passing confidence
@types/react-dom (source) 18.3.1 -> 18.3.5 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.13.0 -> 8.20.0 age adoption passing confidence
@typescript-eslint/parser (source) 8.13.0 -> 8.20.0 age adoption passing confidence
@vitejs/plugin-react (source) 4.3.3 -> 4.3.4 age adoption passing confidence
axios (source) 1.7.7 -> 1.7.9 age adoption passing confidence
crawlee (source) 3.11.2 -> 3.12.1 age adoption passing confidence
es-abstract 1.23.3 -> 1.23.9 age adoption passing confidence
eslint-plugin-react 7.37.2 -> 7.37.4 age adoption passing confidence
eslint-plugin-react-hooks (source) 5.0.0 -> 5.1.0 age adoption passing confidence
mysql2 (source) 3.11.4 -> 3.12.0 age adoption passing confidence
nodemon (source) 3.1.7 -> 3.1.9 age adoption passing confidence
openai 4.79.0 -> 4.79.1 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence
react-markdown 9.0.1 -> 9.0.3 age adoption passing confidence
react-router-dom (source) 6.28.0 -> 6.28.2 age adoption passing confidence
remeda (source) 2.16.0 -> 2.19.2 age adoption passing confidence
remeda (source) 2.17.0 -> 2.19.2 age adoption passing confidence
tiktoken 1.0.16 -> 1.0.18 age adoption passing confidence
tiktoken 1.0.17 -> 1.0.18 age adoption passing confidence
tsx (source) 4.19.0 -> 4.19.2 age adoption passing confidence
typescript (source) 5.5.4 -> 5.7.3 age adoption passing confidence
vite (source) 5.4.10 -> 5.4.11 age adoption passing confidence
zod-to-json-schema 3.23.5 -> 3.24.1 age adoption passing confidence

Release Notes

apify/crawlee (@​crawlee/core)

v3.12.1

Compare Source

Bug Fixes
  • log status message timeouts to debug level (55ee44a)
  • social: support new URL formats for Facebook, YouTube and X (#​2758) (4c95847), closes #​525
Features
FortAwesome/Font-Awesome (@​fortawesome/fontawesome-svg-core)

v6.7.2

Compare Source

Change log available at https://fontawesome.com/docs/changelog/

v6.7.1

Compare Source

Change log available at https://fontawesome.com/docs/changelog/

v6.7.0

Compare Source

Change log available at https://fontawesome.com/docs/changelog/

mui/material-ui (@​mui/icons-material)

v5.16.14

Compare Source

A big thanks to the 1 contributor who made this release possible.

@mui/[email protected]

All contributors of this release in alphabetical order: @​ZeeshanTamboli

v5.16.13

Compare Source

v5.16.12

Compare Source

Dec 16, 2024

Material UI v5 is now compatible with React 19 (#​44720) @​DiegoAndai

Core

All contributors of this release in alphabetical order: @​DiegoAndai

v5.16.11

A big thanks to the contributor who made this release possible.

Core

All contributors of this release in alphabetical order: @​DiegoAndai

v5.16.9

Compare Source

A big thanks to the 2 contributors who made this release possible.

@mui/[email protected]
Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​siriwatknp

v5.16.8

Compare Source

A big thanks to the 8 contributors who made this release possible.

@mui/[email protected]
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​cherniavskii, @​DiegoAndai, @​jukkatupamaki, @​michelengelen, @​oliviertassinari, @​rluzists1, @​siriwatknp

slackapi/bolt-js (@​slack/bolt)

v3.22.0

Compare Source

What's new

This release adds support for the assistant.threads.* API methods introduced in @slack/[email protected] 🤖 as well as improvements to documentation at the new https://tools.slack.dev/bolt-js site and patches to dependencies 🔒

Example usage

More details about these endpoints can be discovered in the documentation, and listeners can be added to code to respond to incoming events like so:

app.event('assistant_thread_started', async ({ client, event, logger }) => {
  logger.info('A new thread started');
  logger.debug(event);
  const now = new Date();
  const title = await client.assistant.threads.setTitle({
    title: `Chats from ${now.toISOString()}`,
    channel_id: event.assistant_thread.channel_id,
    thread_ts: event.assistant_thread.thread_ts,
  });
  logger.debug(title);
  const suggestions = await client.assistant.threads.setSuggestedPrompts({
    channel_id: event.assistant_thread.channel_id,
    thread_ts: event.assistant_thread.thread_ts,
    title: 'Ask the computer for answers',
    prompts: [
      {
        title: 'Find the time',
        message: `What happens at ${Math.floor(now.getTime() / 1000)}`,
      },
    ],
  });
  logger.debug(suggestions);
});

app.event('assistant_thread_context_changed', async ({ client, event, logger }) => {
  logger.info('The channel of focus changed');
  logger.debug(event);
  const response = client.chat.postMessage({
    thread_ts: event.assistant_thread.thread_ts,
    channel: event.assistant_thread.channel_id,
    text: `Now visiting <#${event.assistant_thread.context.channel_id}>`,
  });
  logger.debug(response);
});

app.message(async ({ client, message, logger }) => {
  logger.info('A new message was received');
  logger.debug(message);
  if (message.subtype === 'message_changed' || message.subtype === 'message_deleted') {
    return;
  }
  const status = await client.assistant.threads.setStatus({
    channel_id: message.channel,
    thread_ts: message.thread_ts,
    status: 'is thinking...',
  });
  logger.debug(status);
  /**
    * Actual response generation could happen here!
    */
  setTimeout(async () => {
    const response = await client.chat.postMessage({
      channel: message.channel,
      thread_ts: message.thread_ts,
      text: 'How insightful!',
    });
    logger.debug(response);
  }, 3000);
});
Changes
📚 Documentation
📦 Dependencies

🎉 New contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.4...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).22.0

v3.21.4

Compare Source

What's Changed

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.3...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.4

v3.21.3

Compare Source

What's Changed

Woops! We (coughfilmajcough) removed the EnvelopedEvent export in a recent change. We are adding it back in in this patch release. Please accept our sincere apologies for this temporary breaking change in bolt 3.21.2.

Changelog

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.2...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.3

v3.21.2

Compare Source

What's Changed

The main change in this patch release is creating an npm release for the change in #​2223, where exported event payload types were moved from bolt-js to @slack/types. If you see errors compiling your TypeScript-based application that look like:

Module './types' has already exported a member

.. then upgrading to this release should address the issue (see #​2233 and #​2234 for issue details).

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.1...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.2

slackapi/node-slack-sdk (@​slack/oauth)

v3.0.2

Compare Source

What's Changed

Full Changelog: https://github.com/slackapi/node-slack-sdk/compare/[@&#8203;slack/oauth](https://redirect.github.com/slack/oauth)[@&#8203;3](https://redirect.github.com/3).0.1...[@&#8203;slack/oauth](https://redirect.github.com/slack/oauth)[@&#8203;3](https://redirect.github.com/3).0.2

supabase/supabase-js (@​supabase/supabase-js)

v2.47.16

Compare Source

Bug Fixes
  • 🐛 Fix nullish coalescing operator issue in hasCustomAuthorizationHeader (e8cffda), closes #​1338

v2.47.15

Compare Source

Bug Fixes
  • Make the return value of accessToken nullable (f8e48ff)

v2.47.14

Compare Source

Bug Fixes
  • bump postgrest-js to 1.17.11 (6822cdc)

v2.47.13

Compare Source

Bug Fixes
  • export PostgrestError as a class (7ba8408)

v2.47.12

Compare Source

Bug Fixes
  • Bump postgrest-js to 1.17.10 (80d3c76)

v2.47.11

Compare Source

NOTE: This release makes typings stricter which may break existing code.

Example code which was previously working:

await supabase
  .from('mytable')
  .select()
  .eq('myenumcolumn', 'not_a_valid_enum_variant')
Bug Fixes
  • stricter typings when filtering with .eq(), .neq(), and .in() (e50a86e)

v2.47.10

Compare Source

Bug Fixes
  • bump functions-js to 2.4.4 (0f7434a)

v2.47.9

Compare Source

Bug Fixes

v2.47.8

Compare Source

Bug Fixes

Fixes a number of typing issues. More details at https://github.com/orgs/supabase/discussions/30324

v2.47.7

[Compare Source](https://redirect.github.com/s


Configuration

📅 Schedule: Branch creation - "before 07:00 on Thursday" in timezone Europe/Oslo, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 force-pushed the renovate/npm-minor-patch branch 2 times, most recently from d1d5d7f to 9bc90f3 Compare September 17, 2024 13:15
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch from 9bc90f3 to 01e6c2a Compare September 23, 2024 20:07
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch from 01e6c2a to 61b25ed Compare October 11, 2024 13:09
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch 9 times, most recently from b4bf0b5 to fea0857 Compare October 26, 2024 06:50
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch 10 times, most recently from 5ad940f to d877cd8 Compare November 2, 2024 10:38
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch 7 times, most recently from cc3c7b0 to e8f7bf3 Compare November 7, 2024 07:59
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch 6 times, most recently from cf8b842 to 6a53e5e Compare January 2, 2025 19:59
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch 6 times, most recently from a3738f9 to 77aca83 Compare January 10, 2025 00:27
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch 12 times, most recently from cec2db1 to 1516951 Compare January 17, 2025 19:19
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch 3 times, most recently from b8eded3 to e61b88b Compare January 20, 2025 19:09
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch from e61b88b to 1aa04aa Compare January 20, 2025 20:24
@bdb-dd bdb-dd closed this Jan 20, 2025
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.

1 participant