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 @babel/plugin-transform-react-inline-elements from 7.18.6 to 7.21.0 #645

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

Commits on Apr 2, 2021

  1. Configuration menu
    Copy the full SHA
    1dbfc1a View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2021

  1. Configuration menu
    Copy the full SHA
    d35c597 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2021

  1. Fix newlines in accout notes added by the Move handler (mastodon#16415)

    * Fix newlines in account notes added by the move handler
    
    * Make MoveWorker more robust
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    e62f488 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    987f945 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c02d6c4 View commit details
    Browse the repository at this point in the history
  4. Fix crash when encountering invalid account fields (mastodon#16598)

    * Add test
    
    * Fix crash when encountering invalid account fields
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    4f85244 View commit details
    Browse the repository at this point in the history
  5. Fix remotely-suspended accounts' toots being merged back into timelin…

    …es (mastodon#16628)
    
    * Fix remotely-suspended accounts' toots being merged back into timelines
    
    * Mark remotely-deleted accounts as remotely suspended
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    f51c6cb View commit details
    Browse the repository at this point in the history
  6. Fix authentication failures after going halfway through a sign-in att…

    …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
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    2688f18 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5899fe7 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    75441ac View commit details
    Browse the repository at this point in the history
  9. use relative path for scope (mastodon#16714)

    Use relative path for `scope` in web manifest to allow users use PWA correctly via alternate domains.
    HolgerHuo authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    663b58a View commit details
    Browse the repository at this point in the history
  10. Fix webauthn secure key authentication (mastodon#16792)

    * Add tests
    
    * Fix webauthn secure key authentication
    
    Fixes mastodon#16769
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    2396c90 View commit details
    Browse the repository at this point in the history
  11. Fix scheduled statuses decreasing statuses counts (mastodon#16791)

    * Add tests
    
    * Fix scheduled statuses decreasing statuses counts
    
    Fixes mastodon#16774
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    e63370d View commit details
    Browse the repository at this point in the history
  12. Fix some link previews being incorrectly generated from other prior l…

    …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.
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    123a88b View commit details
    Browse the repository at this point in the history
  13. Fix mastodon:setup to take dotenv/docker-compose differences into acc…

    …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
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    aa828ae View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    f366a23 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    e1cf8d4 View commit details
    Browse the repository at this point in the history
  16. Add configuration attribute to GET /api/v1/instance (mastodon#16485)

    List various values like file size limits and supported mime types
    Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    d5a50e9 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    c7f534a View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    6b98fd0 View commit details
    Browse the repository at this point in the history
  19. Fix followers synchronization mechanism not working when URI has empt…

    …y path (mastodon#16744)
    
    Follow-up to mastodon#16510, forgot the controller exposing the actual followers…
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    9b34647 View commit details
    Browse the repository at this point in the history
  20. Fix some Rails frameworks being unnecessarily loaded (mastodon#16725)

    Saves about 10MiB of memory usage at boot
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    4cc7efc View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    40eaa87 View commit details
    Browse the repository at this point in the history
  22. Fix crashes with Microsoft Translate on Microsoft Edge (mastodon#16525)

    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.
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    e40d541 View commit details
    Browse the repository at this point in the history
  23. Fix tootctl self-destruct not sending Delete activities for recently-…

    …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
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    a1e5ff0 View commit details
    Browse the repository at this point in the history
  24. Fix inefficiencies in auto-linking code (mastodon#16506)

    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.
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    9a468c8 View commit details
    Browse the repository at this point in the history
  25. Fix serialization of followers/following counts when user hides their…

    … 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]>
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    aebcb72 View commit details
    Browse the repository at this point in the history
  26. Fix WebUI crash when a toot with a playing video gets deleted (mastod…

    …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
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    34ab411 View commit details
    Browse the repository at this point in the history
  27. Fix anonymous access to outbox not being cached by the reverse proxy (m…

    …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
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    4bc1fde View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    8815e98 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    be56033 View commit details
    Browse the repository at this point in the history
  30. Change references to tootsuite/mastodon to mastodon/mastodon (mastodo…

    …n#16491)
    
    * Change references to tootsuite/mastodon to mastodon/mastodon
    
    * Remove obsolete test fixture
    
    * Replace occurrences of tootsuite/mastodon with mastodon/mastodon in CHANGELOG
    
    And a few other places
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    c79d471 View commit details
    Browse the repository at this point in the history
  31. Improve modal flow and back button handling (mastodon#16499)

    * Refactor shouldUpdateScroll passing
    
    So far, shouldUpdateScroll has been manually passed down from the very top of
    the React component hierarchy even though it is a static function common to
    all ScrollContainer instances, so replaced that with a custom class extending
    ScrollContainer.
    
    * Generalize “press back to close modal” to any modal and to public pages
    
    * Fix boost confirmation modal closing media modal
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    986397b View commit details
    Browse the repository at this point in the history
  32. Fix user email address being banned on self-deletion (mastodon#16503)

    * Add tests
    
    * Fix user email address being banned on self-deletion
    
    Fixes mastodon#16498
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    c3a6f7b View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    f60bb07 View commit details
    Browse the repository at this point in the history
  34. Fix reviving revoked sessions and invalidating login (mastodon#16943)

    Up until now, we have used Devise's Rememberable mechanism to re-log users
    after the end of their browser sessions. This mechanism relies on a signed
    cookie containing a token. That token was stored on the user's record,
    meaning it was shared across all logged in browsers, meaning truly revoking
    a browser's ability to auto-log-in involves revoking the token itself, and
    revoking access from *all* logged-in browsers.
    
    We had a session mechanism that dynamically checks whether a user's session
    has been disabled, and would log out the user if so. However, this would only
    clear a session being actively used, and a new one could be respawned with
    the `remember_user_token` cookie.
    
    In practice, this caused two issues:
    - sessions could be revived after being closed from /auth/edit (security issue)
    - auto-log-in would be disabled for *all* browsers after logging out from one
      of them
    
    This PR removes the `remember_token` mechanism and treats the `_session_id`
    cookie/token as a browser-specific `remember_token`, fixing both issues.
    ClearlyClaire authored and Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    3251b8e View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    76c2028 View commit details
    Browse the repository at this point in the history
  36. Bump version to 3.4.2

    Gargron committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    8a74d85 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2021

  1. Configuration menu
    Copy the full SHA
    5c47a18 View commit details
    Browse the repository at this point in the history
  2. Bump version to 3.4.3

    Gargron committed Nov 6, 2021
    Configuration menu
    Copy the full SHA
    4b66688 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2021

  1. Fix replying from modal (mastodon#16516)

    Fixes mastodon#16515
    
    Not using a router object somehow made `this.history` lag behind the real
    browser history whenever pushing a new history item in `replyCompose`.
    
    Not using the context-provided router in this case was an oversight made
    when porting glitch-soc changes in mastodon#16499.
    ClearlyClaire authored and Gargron committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    77d0297 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9c610ca View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1bcb3da View commit details
    Browse the repository at this point in the history
  4. Fix upload of remote media with OpenStack Swift sometimes failing (ma…

    …stodon#16998)
    
    Under certain conditions, files fetched from remotes trigger an error when
    being uploaded using OpenStack Swift. This is because in some cases, the
    remote server will not return a content-length, so our ResponseWithLimitAdapter
    will hold a `nil` value for `#size`, which will lead to an invalid value
    for the Content-Length header of the Swift API call.
    
    This commit fixes that by taking the size from the actually-downloaded file
    size rather than the upstream-provided Content-Length header value.
    ClearlyClaire authored and Gargron committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    e65ede1 View commit details
    Browse the repository at this point in the history
  5. Fix confusing error when webfinger request returns empty document (ma…

    …stodon#16986)
    
    For some reason, some misconfigured servers return an empty document when
    queried over webfinger. Since an empty document does not lead to a parse
    error, the error is not caught properly and triggers uncaught exceptions
    later on.
    
    This PR fixes that by immediately erroring out with `Webfinger::Error` on
    getting an empty response.
    ClearlyClaire authored and Gargron committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    22cd1e6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e5113a8 View commit details
    Browse the repository at this point in the history
  7. Fix error when suspending user with an already-existing canonical ema…

    …il block (mastodon#17036)
    
    * Fix error when suspending user with an already-existing canonical email block
    
    Fixes mastodon#17033
    
    While attempting to create a `CanonicalEmailBlock` with an existing hash would
    raise an `ActiveRecord::RecordNotUnique` error, this being done within a
    transaction would cancel the whole transaction. For this reason, checking for
    uniqueness in Rails would query the database within the transaction and avoid
    invalidating the whole transaction for this reason.
    
    A race condition is still possible, where multiple accounts sharing a canonical
    email would be blocked in concurrent transactions, in which only one would
    succeed, but that is way less likely to happen that the current issue, and can
    always be retried after the first failure, unlike the current situation.
    
    * Add tests
    ClearlyClaire authored and Gargron committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    3c18311 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5e4b04d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f264cca View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4cd33a2 View commit details
    Browse the repository at this point in the history
  11. Bump version to 3.4.4

    Gargron committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    fd868f8 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2021

  1. Configuration menu
    Copy the full SHA
    2de976a View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2022

  1. Fix some old migration scripts (mastodon#17394)

    * Fix some old migration scripts
    
    * Fix edge case in two-step migration from older releases
    ClearlyClaire committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    b782f86 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0dc103e View commit details
    Browse the repository at this point in the history
  3. Save bundle config as local (mastodon#17188)

    Some bundle options are saved as global user config and not project local.
    Specially, `deployment` must be saved as local config to be run on copied environment
    tribela authored and ClearlyClaire committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    959234c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2363b02 View commit details
    Browse the repository at this point in the history
  5. Build container image by GitHub Actions (mastodon#16973)

    * Build container image by GitHub Actions
    
    * Trigger docker build only pushed to main branch
    
    * Tweak tagging imgae
    
    - "edge" is the main branch
    - "latest" is the tagged latest release
    unasuke authored and ClearlyClaire committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    0ae91e4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c8301bc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2c83b90 View commit details
    Browse the repository at this point in the history
  8. Fix followers synchronization mechanism not working when URI has empt…

    …y path (mastodon#16510)
    
    * Fix followers synchronization mechanism not working when URI has empty path
    
    To my knowledge, there is no current implementation on the fediverse
    that can use bare domains (e.g., actor is at https://example.org instead of
    something like https://example.org/actor) that also plans to support the
    followers synchronization mechanism. However, Mastodon's current implementation
    would exclude such accounts from followers list.
    
    Also adds tests and rename them to reflect the proper method names.
    
    * Move url prefix regexp to its own constant
    ClearlyClaire committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    03f0e98 View commit details
    Browse the repository at this point in the history
  9. Add more advanced migration tests (mastodon#17393)

    - populate the database with some data when testing migrations
    - try both one-step and two-step migrations (`SKIP_POST_DEPLOYMENT_MIGRATIONS`)
    ClearlyClaire committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    d722222 View commit details
    Browse the repository at this point in the history
  10. Bump version to 3.4.5

    ClearlyClaire committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    1c8c318 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2022

  1. Configuration menu
    Copy the full SHA
    6d831fe View commit details
    Browse the repository at this point in the history
  2. Fix error-prone SQL queries (mastodon#15828)

    * Fix error-prone SQL queries in Account search
    
    While this code seems to not present an actual vulnerability, one could
    easily be introduced by mistake due to how the query is built.
    
    This PR parameterises the `to_tsquery` input to make the query more robust.
    
    * Harden code for Status#tagged_with_all and Status#tagged_with_none
    
    Those two scopes aren't used in a way that could be vulnerable to an SQL
    injection, but keeping them unchanged might be a hazard.
    
    * Remove unneeded spaces surrounding tsquery term
    
    * Please CodeClimate
    
    * Move advanced_search_for SQL template to its own function
    
    This avoids one level of indentation while making clearer that the SQL template
    isn't build from all the dynamic parameters of advanced_search_for.
    
    * Add tests covering tagged_with, tagged_with_all and tagged_with_none
    
    * Rewrite tagged_with_none to avoid multiple joins and make it more robust
    
    * Remove obsolete brakeman warnings
    
    * Revert "Remove unneeded spaces surrounding tsquery term"
    
    The two queries are not strictly equivalent.
    
    This reverts commit 86f16c5.
    ClearlyClaire committed Feb 2, 2022
    Configuration menu
    Copy the full SHA
    c8dbbd6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fe02100 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e2009ce View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b27f50d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    df68d2e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    bf005ed View commit details
    Browse the repository at this point in the history
  8. disable legacy XSS filtering (mastodon#17289)

    Browsers are phasing out X-XSS-Protection, but Safari and IE still support it.
    Wonderfall authored and ClearlyClaire committed Feb 2, 2022
    Configuration menu
    Copy the full SHA
    a06dda4 View commit details
    Browse the repository at this point in the history
  9. Bump version to 3.4.6

    ClearlyClaire committed Feb 2, 2022
    Configuration menu
    Copy the full SHA
    bb7b286 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2022

  1. Configuration menu
    Copy the full SHA
    93a6c14 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2022

  1. Configuration menu
    Copy the full SHA
    752c6fc View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2022

  1. Configuration menu
    Copy the full SHA
    ec1bb2a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cc706b1 View commit details
    Browse the repository at this point in the history
  3. Bump version to 3.4.7

    Gargron committed Mar 30, 2022
    Configuration menu
    Copy the full SHA
    2a28247 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2022

  1. Configuration menu
    Copy the full SHA
    d1895ed View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6cd2045 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2022

  1. Configuration menu
    Copy the full SHA
    d68b654 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aca2d87 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2022

  1. Configuration menu
    Copy the full SHA
    7c82d58 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2022

  1. Configuration menu
    Copy the full SHA
    fb87741 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e4d6163 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2022

  1. Configuration menu
    Copy the full SHA
    fe5b700 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2022

  1. Configuration menu
    Copy the full SHA
    2f9da1a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8770cbe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d59f7d1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8df0996 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2b6b25a View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2022

  1. add bigemoji style

    sftblw committed Nov 30, 2022
    Configuration menu
    Copy the full SHA
    940d43a View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2022

  1. Merge pull request #487 from sftblw/twingyeo-kr

    add bigemoji style
    unstabler authored Dec 7, 2022
    Configuration menu
    Copy the full SHA
    08f091d View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2023

  1. Configuration menu
    Copy the full SHA
    98f4d61 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d6f2a53 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2023

  1. Bump @babel/plugin-transform-react-inline-elements from 7.18.6 to 7.21.0

    Bumps [@babel/plugin-transform-react-inline-elements](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-react-inline-elements) from 7.18.6 to 7.21.0.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.21.0/packages/babel-plugin-transform-react-inline-elements)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/plugin-transform-react-inline-elements"
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Feb 27, 2023
    Configuration menu
    Copy the full SHA
    41e1fce View commit details
    Browse the repository at this point in the history