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

Version Packages #5919

Merged
merged 1 commit into from
Oct 22, 2024
Merged

Version Packages #5919

merged 1 commit into from
Oct 22, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Oct 17, 2024

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@aws-amplify/ui-react-ai@0.4.0

Minor Changes

  • #5924 d65cea0d0 Thanks @dbanksdesign! - The AIConversation component is now composable if you are using the default component or the headless component using createAIConversation(). There are 4 parts:

    • Provider: provides all the necessary data/handlers for the composable components
    • Messages: the message history for the conversation
    • DefaultMessage: contains an optional welcome message and prompt suggestions, only shown if no messages present
    • Form: the form for sending messages, includes the text input, submit button, and attachments
    function Chat() {
      const [
        {
          data: { messages },
          isLoading,
        },
        sendMessage,
      ] = useAIConversation('pirateChat');
    
      return (
        <AIConversation.Provider
          messages={messages}
          handleSendMessage={sendMessage}
          isLoading={isLoading}
        >
          <Flex direction="row">
            <Card variation="outlined" width="50%" flex="1">
              <AIConversation.DefaultMessage />
              <AIConversation.Messages />
            </Card>
            <Card variation="outlined" width="50%" flex="1">
              <AIConversation.Form />
            </Card>
          </Flex>
        </AIConversation.Provider>
      );
    }
  • #5873 3a697ea5c Thanks @dbanksdesign! - feat(ai): add message renderer

    <AIConversation
      messages={messages}
      handleSendMessage={sendMessage}
      isLoading={isLoading}
      messageRenderer={{
        text: ({ text }) => <ReactMarkdown>{text}</ReactMarkdown>,
      }}
    />

Patch Changes

@aws-amplify/ui-angular@5.0.30

Patch Changes

@aws-amplify/ui-react@6.5.5

Patch Changes

  • #5912 6fea94b89 Thanks @hbuchel! - fix(React/Authenticator): clicking on currently active tab no longer switches to the wrong tab

  • #5917 3655af2be Thanks @dbanksdesign! - chore(ai): adding UA string for AIConversation

  • Updated dependencies [3655af2be]:

    • @aws-amplify/ui-react-core@3.0.29
    • @aws-amplify/ui@6.6.5

@aws-amplify/ui-react-core@3.0.29

Patch Changes

@aws-amplify/ui-react-core-notifications@2.0.29

Patch Changes

@aws-amplify/ui-react-geo@2.0.30

Patch Changes

@aws-amplify/ui-react-liveness@3.1.15

Patch Changes

@aws-amplify/ui-react-native@2.2.16

Patch Changes

  • #5917 3655af2be Thanks @dbanksdesign! - chore(ai): adding UA string for AIConversation

  • Updated dependencies [3655af2be]:

    • @aws-amplify/ui-react-core-notifications@2.0.29
    • @aws-amplify/ui-react-core@3.0.29
    • @aws-amplify/ui@6.6.5

@aws-amplify/ui-react-notifications@2.0.34

Patch Changes

  • #5917 3655af2be Thanks @dbanksdesign! - chore(ai): adding UA string for AIConversation

  • Updated dependencies [6fea94b89, 3655af2be]:

    • @aws-amplify/ui-react@6.5.5
    • @aws-amplify/ui-react-core-notifications@2.0.29
    • @aws-amplify/ui-react-core@3.0.29
    • @aws-amplify/ui@6.6.5

@aws-amplify/ui-react-storage@3.3.9

Patch Changes

@aws-amplify/ui@6.6.5

Patch Changes

@aws-amplify/ui-vue@4.2.22

Patch Changes

@aws-amplify/ui-react-auth@0.0.36

Patch Changes

  • #5917 3655af2be Thanks @dbanksdesign! - chore(ai): adding UA string for AIConversation

  • Updated dependencies [6fea94b89, 3655af2be]:

    • @aws-amplify/ui-react@6.5.5
    • @aws-amplify/ui-react-core-auth@0.0.31
    • @aws-amplify/ui-react-core@3.0.29
    • @aws-amplify/ui@6.6.5

@aws-amplify/ui-react-core-auth@0.0.31

Patch Changes

@aws-amplify/ui-react-native-auth@0.0.34

Patch Changes

  • #5917 3655af2be Thanks @dbanksdesign! - chore(ai): adding UA string for AIConversation

  • Updated dependencies [3655af2be]:

    • @aws-amplify/ui-react-core-auth@0.0.31
    • @aws-amplify/ui-react-native@2.2.16
    • @aws-amplify/ui@6.6.5

@github-actions github-actions bot requested a review from a team as a code owner October 17, 2024 20:48
@github-actions github-actions bot force-pushed the changeset-release/main branch 3 times, most recently from 174c1a7 to 902a53f Compare October 18, 2024 22:03
@jacoblogan jacoblogan added the run-tests Adding this label will trigger tests to run label Oct 22, 2024
@github-actions github-actions bot removed the run-tests Adding this label will trigger tests to run label Oct 22, 2024
jordanvn
jordanvn previously approved these changes Oct 22, 2024
hbuchel
hbuchel previously approved these changes Oct 22, 2024
@github-actions github-actions bot dismissed stale reviews from hbuchel and jordanvn via 672b533 October 22, 2024 20:01
@github-actions github-actions bot force-pushed the changeset-release/main branch from 5989029 to 672b533 Compare October 22, 2024 20:01
@jacoblogan jacoblogan added the run-tests Adding this label will trigger tests to run label Oct 22, 2024
@github-actions github-actions bot removed the run-tests Adding this label will trigger tests to run label Oct 22, 2024
@jacoblogan jacoblogan merged commit cc12b43 into main Oct 22, 2024
32 checks passed
@jacoblogan jacoblogan deleted the changeset-release/main branch October 22, 2024 20:29
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.

4 participants