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 dependency react-router-dom-v5-compat to v6.21.2 #5483

Merged
merged 1 commit into from
Jan 16, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 15, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-router-dom-v5-compat (source) 6.20.1 -> 6.21.2 age adoption passing confidence

Release Notes

remix-run/react-router (react-router-dom-v5-compat)

v6.21.2

Compare Source

Patch Changes
  • Updated dependencies:
    • react-router-dom@6.21.2
    • react-router@6.21.2

v6.21.1

Compare Source

Patch Changes
  • Updated dependencies:
    • react-router@6.21.1
    • react-router-dom@6.21.1

v6.21.0

Compare Source

Minor Changes
  • Add a new future.v7_relativeSplatPath flag to implement a breaking bug fix to relative routing when inside a splat route. (#​11087)

    This fix was originally added in #​10983 and was later reverted in #​11078 because it was determined that a large number of existing applications were relying on the buggy behavior (see #​11052)

    The Bug
    The buggy behavior is that without this flag, the default behavior when resolving relative paths is to ignore any splat (*) portion of the current route path.

    The Background
    This decision was originally made thinking that it would make the concept of nested different sections of your apps in <Routes> easier if relative routing would replace the current splat:

    <BrowserRouter>
      <Routes>
        <Route path="/" element={<Home />} />
        <Route path="dashboard/*" element={<Dashboard />} />
      </Routes>
    </BrowserRouter>

    Any paths like /dashboard, /dashboard/team, /dashboard/projects will match the Dashboard route. The dashboard component itself can then render nested <Routes>:

    function Dashboard() {
      return (
        <div>
          <h2>Dashboard</h2>
          <nav>
            <Link to="/">Dashboard Home</Link>
            <Link to="team">Team</Link>
            <Link to="projects">Projects</Link>
          </nav>
    
          <Routes>
            <Route path="/" element={<DashboardHome />} />
            <Route path="team" element={<DashboardTeam />} />
            <Route path="projects" element={<DashboardProjects />} />
          </Routes>
        </div>
      );
    }

    Now, all links and route paths are relative to the router above them. This makes code splitting and compartmentalizing your app really easy. You could render the Dashboard as its own independent app, or embed it into your large app without making any changes to it.

    The Problem

    The problem is that this concept of ignoring part of a path breaks a lot of other assumptions in React Router - namely that "." always means the current location pathname for that route. When we ignore the splat portion, we start getting invalid paths when using ".":

    // If we are on URL /dashboard/team, and we want to link to /dashboard/team:
    function DashboardTeam() {
      // ❌ This is broken and results in <a href="/dashboard">
      return <Link to=".">A broken link to the Current URL</Link>;
    
      // ✅ This is fixed but super unintuitive since we're already at /dashboard/team!
      return <Link to="./team">A broken link to the Current URL</Link>;
    }

    We've also introduced an issue that we can no longer move our DashboardTeam component around our route hierarchy easily - since it behaves differently if we're underneath a non-splat route, such as /dashboard/:widget. Now, our "." links will, properly point to ourself inclusive of the dynamic param value so behavior will break from it's corresponding usage in a /dashboard/* route.

    Even worse, consider a nested splat route configuration:

    <BrowserRouter>
      <Routes>
        <Route path="dashboard">
          <Route path="*" element={<Dashboard />} />
        </Route>
      </Routes>
    </BrowserRouter>

    Now, a <Link to="."> and a <Link to=".."> inside the Dashboard component go to the same place! That is definitely not correct!

    Another common issue arose in Data Routers (and Remix) where any <Form> should post to it's own route action if you the user doesn't specify a form action:

    let router = createBrowserRouter({
      path: "/dashboard",
      children: [
        {
          path: "*",
          action: dashboardAction,
          Component() {
            // ❌ This form is broken!  It throws a 405 error when it submits because
            // it tries to submit to /dashboard (without the splat value) and the parent
            // `/dashboard` route doesn't have an action
            return <Form method="post">...</Form>;
          },
        },
      ],
    });

    This is just a compounded issue from the above because the default location for a Form to submit to is itself (".") - and if we ignore the splat portion, that now resolves to the parent route.

    The Solution
    If you are leveraging this behavior, it's recommended to enable the future flag, move your splat to it's own route, and leverage ../ for any links to "sibling" pages:

    <BrowserRouter>
      <Routes>
        <Route path="dashboard">
          <Route index path="*" element={<Dashboard />} />
        </Route>
      </Routes>
    </BrowserRouter>
    
    function Dashboard() {
      return (
        <div>
          <h2>Dashboard</h2>
          <nav>
            <Link to="..">Dashboard Home</Link>
            <Link to="../team">Team</Link>
            <Link to="../projects">Projects</Link>
          </nav>
    
          <Routes>
            <Route path="/" element={<DashboardHome />} />
            <Route path="team" element={<DashboardTeam />} />
            <Route path="projects" element={<DashboardProjects />} />
          </Router>
        </div>
      );
    }

    This way, . means "the full current pathname for my route" in all cases (including static, dynamic, and splat routes) and .. always means "my parents pathname".

Patch Changes
  • Updated dependencies:
    • react-router-dom@6.21.0
    • react-router@6.21.0

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added dependencies use for pull requests that update a dependency file filigran team use to identify PR from the Filigran team labels Jan 15, 2024
Copy link

codecov bot commented Jan 15, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (386c7af) 0.00% compared to head (325d58b) 66.27%.

Additional details and impacted files
@@             Coverage Diff             @@
##           master    #5483       +/-   ##
===========================================
+ Coverage        0   66.27%   +66.27%     
===========================================
  Files           0      508      +508     
  Lines           0    59787    +59787     
  Branches        0     4366     +4366     
===========================================
+ Hits            0    39624    +39624     
- Misses          0    20163    +20163     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@SamuelHassine SamuelHassine merged commit 2fbc05c into master Jan 16, 2024
8 checks passed
@SamuelHassine SamuelHassine deleted the renovate/react-router-monorepo branch January 16, 2024 00:06
one-L-of-a-girl pushed a commit to fbicyber/opencti__opencti that referenced this pull request Jan 18, 2024
…penCTI-Platform#5483)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Bonsai8863 pushed a commit to fbicyber/opencti__opencti that referenced this pull request Jan 19, 2024
applying use schema attributes to reqd files

location and vocabulary complete

reqd fields fix

able to query for all mandatory internal attributes

added threats addlocation fixme

rolling back external reference changes

rollback changes

[backend/frontend] Settings platform announcements with recipients are not visible to all admins (OpenCTI-Platform#5396)

[frontend] Remove edit button in an Analyse screen (OpenCTI-Platform#5385)

[backend/frontend] Improve search to include a default score criteria (OpenCTI-Platform#5397)

[frontend] sort exports by export date in lists (OpenCTI-Platform#5316)

Co-authored-by: Julien Richard <julien.richard@filigran.io>

[backend] Update dependency prom-client to v15.1.0 (OpenCTI-Platform#5416)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-relay to v16.1.0 (OpenCTI-Platform#5417)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Logs improvement for python execution and worker (OpenCTI-Platform#5427)

Co-authored-by: Helene Nguyen <helene.nguyen@filigran.io>

[frontend] Update dependency babel-plugin-relay to v16.1.0 (OpenCTI-Platform#5424)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency relay-runtime to v16.1.0 (OpenCTI-Platform#5425)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontent/backend] Enforcing schema to generate mappings and prevent any type confusion (OpenCTI-Platform#5392)

Co-authored-by: Julien Richard <julien.richard@filigran.io>
Co-authored-by: Laurent Bonnet <laurent.bonnet@filigran.io>

[frontend] Take dynamic filters into account in treemap (OpenCTI-Platform#5338)

[frontend] Update dependency relay-test-utils to v16.1.0 (OpenCTI-Platform#5426)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Bump follow-redirects from 1.15.3 to 1.15.4 in /opencti-platform/opencti-graphql (OpenCTI-Platform#5428)

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

[backend] Update opentelemetry-js monorepo (OpenCTI-Platform#5429)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency axios to v1.6.5 (OpenCTI-Platform#5430)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency openid-client to v5.6.4 (OpenCTI-Platform#5431)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-cookie to v7.0.1 (OpenCTI-Platform#5432)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Bump follow-redirects from 1.15.3 to 1.15.4 in /opencti-platform/opencti-front (OpenCTI-Platform#5433)

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

[backend] Put rename platform messages migration to latest (OpenCTI-Platform#5392)

[backend] Change file index manager cron interval to standard interval

[backend] fix elementId in widget dynamic filters (OpenCTI-Platform#5339)

[frontend] Fix  bad design in Knowledge + overview of Narrative (OpenCTI-Platform#5419)

Co-authored-by: Adrien Servel <adrien.servel@filigran.io>

[backend] Adapt migrations and initialization of partial empty platforms (OpenCTI-Platform#5340)

[backend] Adapt index settings update to keep rollover alias (OpenCTI-Platform#5340)

[backend] Fix widget dashboard if DynamicFrom/To result is empty (OpenCTI-Platform#5339)

Co-authored-by: Cathia Archidoit <cathia.archidoit@filigran.io>

[frontend] filters reset in trigger creation form (OpenCTI-Platform#5449)

[frontend] i18n, extract keyword and solution to auto-translate (OpenCTI-Platform#5326)

[frontend] Fix filter in report knowledge timeline view (OpenCTI-Platform#5461)

[backend] fix granted organizations not taking in account during add observables (OpenCTI-Platform#5451) (OpenCTI-Platform#5465)

[frontend/backend] fix ordering in Activity (OpenCTI-Platform#5464)

[frontend] relationship type filter value display (OpenCTI-Platform#5468)

[frontend] remove timeline button in Grouping Knowledge (OpenCTI-Platform#5458)

[backend/frontend] Global refactor of filters management/usage (OpenCTI-Platform#5370)

Co-authored-by: Cathia Archidoit <cathia.archidoit@filigran.io>
Co-authored-by: Laurent Bonnet <laurent.bonnet@filigran.io>
Co-authored-by: Jean-Philippe Kha <jean-philippe.kha@filigran.io>

[backend/frontend] Improve dynamic filtering (OpenCTI-Platform#5370)
- Remove quick filters for old filtering view

[backend/frontend] Improve investigation loading for relationships (OpenCTI-Platform#5370)

[backend/frontend] Improve CSV mapper definition and testing

[backend] Improve fields search generation to include sub model levels (OpenCTI-Platform#5392)

[worker] Adapt error handling to be aligned with the API (OpenCTI-Platform#5257)

[frontend] Improve analyst workbench detection of location and identity

[backend] Add more restriction on CSV mapper model attributes (OpenCTI-Platform#5392)

[frontend] Remove all entities option as now covered by default filters (OpenCTI-Platform#5370)

[frontend] Fix infinite loading on add objects in containers / investigations (OpenCTI-Platform#5456)

[integration] Update redis Docker tag to v7.2.4 (OpenCTI-Platform#5476)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/kibana/kibana Docker tag to v8.11.4 (OpenCTI-Platform#5475)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v8.11.4 (OpenCTI-Platform#5474)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Implement contains_refs on email messages (OpenCTI-Platform#5443)

[backend] Change version files type and adapt default value for dashboard widgets (OpenCTI-Platform#5392)

[frontend] Fix of rectangle selection (OpenCTI-Platform#5460)

[frontend] Update dependency recharts to v2.10.4 (OpenCTI-Platform#5484)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency apexcharts to v3.45.1 (OpenCTI-Platform#5485)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[dev] Update dependency @opensearch-project/opensearch to v2.5.0 (OpenCTI-Platform#5491)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.16

[frontend] Fix reset dynamic from / to when changing perspective

[frontend] fix widget clear filters (OpenCTI-Platform#5497)

[backend/frontend] Update dependency @types/node to v20.11.2 (OpenCTI-Platform#5492)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update aws-sdk-js-v3 monorepo to v3.490.0 (OpenCTI-Platform#5490)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency axios-cookiejar-support to v5 (OpenCTI-Platform#5494)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Improve model enforcing upgrade for old platforms (OpenCTI-Platform#5500)

[backend/worker] Release 5.12.17

[backend] Update dependency file-type to v19 (OpenCTI-Platform#5495)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] fix default value displayed in case of windows registry key (OpenCTI-Platform#5387)

[backend] fix interval hour in timeseries graphql queries (OpenCTI-Platform#5488)

Co-authored-by: Alejandro <alejandro@tulotero.com>

[frontend] Update dependency react-router-dom-v5-compat to v6.21.2 (OpenCTI-Platform#5483)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] i18n improvement (OpenCTI-Platform#5487)

[frontend] fix link resolution for file export (OpenCTI-Platform#5466)

[frontend] Update dependency convert to v4.14.1 (OpenCTI-Platform#5501)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency i18n-auto-translation to v1.3.7 (OpenCTI-Platform#5502)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency style-loader to v3.3.4 (OpenCTI-Platform#5504)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency postcss to v8.4.33 (OpenCTI-Platform#5503)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency vite to v5.0.11 (OpenCTI-Platform#5505)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] adjust  observable name lenght in merge panel (OpenCTI-Platform#5440)

[frontend] Update dependency @types/react-test-renderer to v18.0.7 (OpenCTI-Platform#5506)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update vitest monorepo to v1.2.0 (OpenCTI-Platform#5508)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @graphql-tools/utils to v10.0.12 (OpenCTI-Platform#5510)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @emotion/react to v11.11.3 (OpenCTI-Platform#5509)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @types/bcryptjs to v2.4.6 (OpenCTI-Platform#5511)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update material-ui monorepo (OpenCTI-Platform#5513)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @types/bluebird to v3.5.42 (OpenCTI-Platform#5512)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[Frontend] Type icon displayed in list distribution widgets (OpenCTI-Platform#5477)

[backend] Fix model enforcing OpenSearch upgrade for old platforms (OpenCTI-Platform#5500)

[frontend] fix filters reset in widgets (OpenCTI-Platform#5507)

[frontend] Relationship creation graph (OpenCTI-Platform#1417)

[frontend] Linked entities view is broken (OpenCTI-Platform#5515)(OpenCTI-Platform#5518) (OpenCTI-Platform#5516)

[backend/worker] Release 5.12.18

[frontend] Update dependency @testing-library/react to v14.1.2 (OpenCTI-Platform#5523)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @escape.tech/graphql-armor to v2.4.0 (OpenCTI-Platform#5522)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react-csv to v1.1.10 (OpenCTI-Platform#5519)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react-syntax-highlighter to v15.5.11 (OpenCTI-Platform#5521)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] BatchLoading failure when target is not accessible or deleted (OpenCTI-Platform#5525)

[frontend] fix output ports handling in Playbooks (OpenCTI-Platform#5437)

[backend] Update dependency @types/dot-object to v2.1.6 (OpenCTI-Platform#5542)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency postcss-loader to v8 (OpenCTI-Platform#5543)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update typescript-eslint monorepo to v6.19.0 (OpenCTI-Platform#5541)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-intl to v6.6.1 (OpenCTI-Platform#5537)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency passport to v0.7.0 (OpenCTI-Platform#5536)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.19

Update dependency @vitejs/plugin-react to v4.2.1 (OpenCTI-Platform#5528)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update rjsf monorepo to v5.16.1 (OpenCTI-Platform#5540)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update opentelemetry-js monorepo (OpenCTI-Platform#5539)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency jsdom to v23.2.0 (OpenCTI-Platform#5533)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency jose to v5.2.0 (OpenCTI-Platform#5532)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update dependency eslint to v8.56.0 (OpenCTI-Platform#5531)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency classnames to v2.5.1 (OpenCTI-Platform#5529)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency css-loader to v6.9.0 (OpenCTI-Platform#5530)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Fix widget not clickable in custom dashboards (OpenCTI-Platform#5545)

Update dependency react-pdf to v7.7.0 (OpenCTI-Platform#5538)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Update dependency @types/react-relay to v16.0.6 (OpenCTI-Platform#5520)

[frontend] Impossible to use some fields when in a graph (OpenCTI-Platform#5563)

[backend] Get only platform metadata to prevent mm-source-mtime ingestion failure (OpenCTI-Platform#5561)

[backend] Migration rename-workflow-filter-key fail when widgets have empty dataSelection (OpenCTI-Platform#5560)

[backend] Deduplication relationship is broken since introduction of new filtering system (OpenCTI-Platform#5547)

[frontend] Rollback on MUI to fix toggle buttons (OpenCTI-Platform#5556)

[frontend] Update dependency reactflow to v11.10.2 (OpenCTI-Platform#5571)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency relay-compiler to v16 (OpenCTI-Platform#5120)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jean-Philippe Kha <jean-philippe.kha@filigran.io>

[backend] Update dependency @types/qrcode to v1.5.5 (OpenCTI-Platform#5568)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react to v18.2.48 (OpenCTI-Platform#5570)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v8.12.0 (OpenCTI-Platform#5573)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/kibana/kibana Docker tag to v8.12.0 (OpenCTI-Platform#5576)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update vitest monorepo to v1.2.1 (OpenCTI-Platform#5577)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update dependency @types/ramda to v0.29.9 (OpenCTI-Platform#5569)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.20

[frontend] Limit favorite entities to 8 to avoid cards problems (OpenCTI-Platform#4132)

[frontend] Fix tsconfig issue with eslint on extract-i18n-keyword.js

Completed both create and edit for mandatory fields

applying use schema attributes to reqd files

location and vocabulary complete

reqd fields fix

able to query for all mandatory internal attributes

added threats addlocation fixme

rolling back external reference changes

rollback changes

fixing mandatory fields
one-L-of-a-girl added a commit to fbicyber/opencti__opencti that referenced this pull request Jan 19, 2024
applying use schema attributes to reqd files

location and vocabulary complete

reqd fields fix

able to query for all mandatory internal attributes

added threats addlocation fixme

rolling back external reference changes

rollback changes

[backend/frontend] Settings platform announcements with recipients are not visible to all admins (OpenCTI-Platform#5396)

[frontend] Remove edit button in an Analyse screen (OpenCTI-Platform#5385)

[backend/frontend] Improve search to include a default score criteria (OpenCTI-Platform#5397)

[frontend] sort exports by export date in lists (OpenCTI-Platform#5316)

Co-authored-by: Julien Richard <julien.richard@filigran.io>

[backend] Update dependency prom-client to v15.1.0 (OpenCTI-Platform#5416)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-relay to v16.1.0 (OpenCTI-Platform#5417)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Logs improvement for python execution and worker (OpenCTI-Platform#5427)

Co-authored-by: Helene Nguyen <helene.nguyen@filigran.io>

[frontend] Update dependency babel-plugin-relay to v16.1.0 (OpenCTI-Platform#5424)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency relay-runtime to v16.1.0 (OpenCTI-Platform#5425)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontent/backend] Enforcing schema to generate mappings and prevent any type confusion (OpenCTI-Platform#5392)

Co-authored-by: Julien Richard <julien.richard@filigran.io>
Co-authored-by: Laurent Bonnet <laurent.bonnet@filigran.io>

[frontend] Take dynamic filters into account in treemap (OpenCTI-Platform#5338)

[frontend] Update dependency relay-test-utils to v16.1.0 (OpenCTI-Platform#5426)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Bump follow-redirects from 1.15.3 to 1.15.4 in /opencti-platform/opencti-graphql (OpenCTI-Platform#5428)

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

[backend] Update opentelemetry-js monorepo (OpenCTI-Platform#5429)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency axios to v1.6.5 (OpenCTI-Platform#5430)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency openid-client to v5.6.4 (OpenCTI-Platform#5431)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-cookie to v7.0.1 (OpenCTI-Platform#5432)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Bump follow-redirects from 1.15.3 to 1.15.4 in /opencti-platform/opencti-front (OpenCTI-Platform#5433)

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

[backend] Put rename platform messages migration to latest (OpenCTI-Platform#5392)

[backend] Change file index manager cron interval to standard interval

[backend] fix elementId in widget dynamic filters (OpenCTI-Platform#5339)

[frontend] Fix  bad design in Knowledge + overview of Narrative (OpenCTI-Platform#5419)

Co-authored-by: Adrien Servel <adrien.servel@filigran.io>

[backend] Adapt migrations and initialization of partial empty platforms (OpenCTI-Platform#5340)

[backend] Adapt index settings update to keep rollover alias (OpenCTI-Platform#5340)

[backend] Fix widget dashboard if DynamicFrom/To result is empty (OpenCTI-Platform#5339)

Co-authored-by: Cathia Archidoit <cathia.archidoit@filigran.io>

[frontend] filters reset in trigger creation form (OpenCTI-Platform#5449)

[frontend] i18n, extract keyword and solution to auto-translate (OpenCTI-Platform#5326)

[frontend] Fix filter in report knowledge timeline view (OpenCTI-Platform#5461)

[backend] fix granted organizations not taking in account during add observables (OpenCTI-Platform#5451) (OpenCTI-Platform#5465)

[frontend/backend] fix ordering in Activity (OpenCTI-Platform#5464)

[frontend] relationship type filter value display (OpenCTI-Platform#5468)

[frontend] remove timeline button in Grouping Knowledge (OpenCTI-Platform#5458)

[backend/frontend] Global refactor of filters management/usage (OpenCTI-Platform#5370)

Co-authored-by: Cathia Archidoit <cathia.archidoit@filigran.io>
Co-authored-by: Laurent Bonnet <laurent.bonnet@filigran.io>
Co-authored-by: Jean-Philippe Kha <jean-philippe.kha@filigran.io>

[backend/frontend] Improve dynamic filtering (OpenCTI-Platform#5370)
- Remove quick filters for old filtering view

[backend/frontend] Improve investigation loading for relationships (OpenCTI-Platform#5370)

[backend/frontend] Improve CSV mapper definition and testing

[backend] Improve fields search generation to include sub model levels (OpenCTI-Platform#5392)

[worker] Adapt error handling to be aligned with the API (OpenCTI-Platform#5257)

[frontend] Improve analyst workbench detection of location and identity

[backend] Add more restriction on CSV mapper model attributes (OpenCTI-Platform#5392)

[frontend] Remove all entities option as now covered by default filters (OpenCTI-Platform#5370)

[frontend] Fix infinite loading on add objects in containers / investigations (OpenCTI-Platform#5456)

[integration] Update redis Docker tag to v7.2.4 (OpenCTI-Platform#5476)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/kibana/kibana Docker tag to v8.11.4 (OpenCTI-Platform#5475)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v8.11.4 (OpenCTI-Platform#5474)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Implement contains_refs on email messages (OpenCTI-Platform#5443)

[backend] Change version files type and adapt default value for dashboard widgets (OpenCTI-Platform#5392)

[frontend] Fix of rectangle selection (OpenCTI-Platform#5460)

[frontend] Update dependency recharts to v2.10.4 (OpenCTI-Platform#5484)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency apexcharts to v3.45.1 (OpenCTI-Platform#5485)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[dev] Update dependency @opensearch-project/opensearch to v2.5.0 (OpenCTI-Platform#5491)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.16

[frontend] Fix reset dynamic from / to when changing perspective

[frontend] fix widget clear filters (OpenCTI-Platform#5497)

[backend/frontend] Update dependency @types/node to v20.11.2 (OpenCTI-Platform#5492)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update aws-sdk-js-v3 monorepo to v3.490.0 (OpenCTI-Platform#5490)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency axios-cookiejar-support to v5 (OpenCTI-Platform#5494)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Improve model enforcing upgrade for old platforms (OpenCTI-Platform#5500)

[backend/worker] Release 5.12.17

[backend] Update dependency file-type to v19 (OpenCTI-Platform#5495)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] fix default value displayed in case of windows registry key (OpenCTI-Platform#5387)

[backend] fix interval hour in timeseries graphql queries (OpenCTI-Platform#5488)

Co-authored-by: Alejandro <alejandro@tulotero.com>

[frontend] Update dependency react-router-dom-v5-compat to v6.21.2 (OpenCTI-Platform#5483)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] i18n improvement (OpenCTI-Platform#5487)

[frontend] fix link resolution for file export (OpenCTI-Platform#5466)

[frontend] Update dependency convert to v4.14.1 (OpenCTI-Platform#5501)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency i18n-auto-translation to v1.3.7 (OpenCTI-Platform#5502)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency style-loader to v3.3.4 (OpenCTI-Platform#5504)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency postcss to v8.4.33 (OpenCTI-Platform#5503)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency vite to v5.0.11 (OpenCTI-Platform#5505)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] adjust  observable name lenght in merge panel (OpenCTI-Platform#5440)

[frontend] Update dependency @types/react-test-renderer to v18.0.7 (OpenCTI-Platform#5506)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update vitest monorepo to v1.2.0 (OpenCTI-Platform#5508)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @graphql-tools/utils to v10.0.12 (OpenCTI-Platform#5510)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @emotion/react to v11.11.3 (OpenCTI-Platform#5509)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @types/bcryptjs to v2.4.6 (OpenCTI-Platform#5511)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update material-ui monorepo (OpenCTI-Platform#5513)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @types/bluebird to v3.5.42 (OpenCTI-Platform#5512)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[Frontend] Type icon displayed in list distribution widgets (OpenCTI-Platform#5477)

[backend] Fix model enforcing OpenSearch upgrade for old platforms (OpenCTI-Platform#5500)

[frontend] fix filters reset in widgets (OpenCTI-Platform#5507)

[frontend] Relationship creation graph (OpenCTI-Platform#1417)

[frontend] Linked entities view is broken (OpenCTI-Platform#5515)(OpenCTI-Platform#5518) (OpenCTI-Platform#5516)

[backend/worker] Release 5.12.18

[frontend] Update dependency @testing-library/react to v14.1.2 (OpenCTI-Platform#5523)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @escape.tech/graphql-armor to v2.4.0 (OpenCTI-Platform#5522)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react-csv to v1.1.10 (OpenCTI-Platform#5519)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react-syntax-highlighter to v15.5.11 (OpenCTI-Platform#5521)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] BatchLoading failure when target is not accessible or deleted (OpenCTI-Platform#5525)

[frontend] fix output ports handling in Playbooks (OpenCTI-Platform#5437)

[backend] Update dependency @types/dot-object to v2.1.6 (OpenCTI-Platform#5542)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency postcss-loader to v8 (OpenCTI-Platform#5543)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update typescript-eslint monorepo to v6.19.0 (OpenCTI-Platform#5541)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-intl to v6.6.1 (OpenCTI-Platform#5537)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency passport to v0.7.0 (OpenCTI-Platform#5536)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.19

Update dependency @vitejs/plugin-react to v4.2.1 (OpenCTI-Platform#5528)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update rjsf monorepo to v5.16.1 (OpenCTI-Platform#5540)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update opentelemetry-js monorepo (OpenCTI-Platform#5539)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency jsdom to v23.2.0 (OpenCTI-Platform#5533)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency jose to v5.2.0 (OpenCTI-Platform#5532)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update dependency eslint to v8.56.0 (OpenCTI-Platform#5531)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency classnames to v2.5.1 (OpenCTI-Platform#5529)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency css-loader to v6.9.0 (OpenCTI-Platform#5530)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Fix widget not clickable in custom dashboards (OpenCTI-Platform#5545)

Update dependency react-pdf to v7.7.0 (OpenCTI-Platform#5538)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Update dependency @types/react-relay to v16.0.6 (OpenCTI-Platform#5520)

[frontend] Impossible to use some fields when in a graph (OpenCTI-Platform#5563)

[backend] Get only platform metadata to prevent mm-source-mtime ingestion failure (OpenCTI-Platform#5561)

[backend] Migration rename-workflow-filter-key fail when widgets have empty dataSelection (OpenCTI-Platform#5560)

[backend] Deduplication relationship is broken since introduction of new filtering system (OpenCTI-Platform#5547)

[frontend] Rollback on MUI to fix toggle buttons (OpenCTI-Platform#5556)

[frontend] Update dependency reactflow to v11.10.2 (OpenCTI-Platform#5571)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency relay-compiler to v16 (OpenCTI-Platform#5120)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jean-Philippe Kha <jean-philippe.kha@filigran.io>

[backend] Update dependency @types/qrcode to v1.5.5 (OpenCTI-Platform#5568)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react to v18.2.48 (OpenCTI-Platform#5570)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v8.12.0 (OpenCTI-Platform#5573)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/kibana/kibana Docker tag to v8.12.0 (OpenCTI-Platform#5576)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update vitest monorepo to v1.2.1 (OpenCTI-Platform#5577)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update dependency @types/ramda to v0.29.9 (OpenCTI-Platform#5569)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.20

[frontend] Limit favorite entities to 8 to avoid cards problems (OpenCTI-Platform#4132)

[frontend] Fix tsconfig issue with eslint on extract-i18n-keyword.js

Completed both create and edit for mandatory fields

applying use schema attributes to reqd files

location and vocabulary complete

reqd fields fix

able to query for all mandatory internal attributes

added threats addlocation fixme

rolling back external reference changes

rollback changes

fixing mandatory fields
one-L-of-a-girl added a commit to fbicyber/opencti__opencti that referenced this pull request Jan 22, 2024
applying use schema attributes to reqd files

location and vocabulary complete

reqd fields fix

able to query for all mandatory internal attributes

added threats addlocation fixme

rolling back external reference changes

rollback changes

[backend/frontend] Settings platform announcements with recipients are not visible to all admins (OpenCTI-Platform#5396)

[frontend] Remove edit button in an Analyse screen (OpenCTI-Platform#5385)

[backend/frontend] Improve search to include a default score criteria (OpenCTI-Platform#5397)

[frontend] sort exports by export date in lists (OpenCTI-Platform#5316)

Co-authored-by: Julien Richard <julien.richard@filigran.io>

[backend] Update dependency prom-client to v15.1.0 (OpenCTI-Platform#5416)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-relay to v16.1.0 (OpenCTI-Platform#5417)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Logs improvement for python execution and worker (OpenCTI-Platform#5427)

Co-authored-by: Helene Nguyen <helene.nguyen@filigran.io>

[frontend] Update dependency babel-plugin-relay to v16.1.0 (OpenCTI-Platform#5424)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency relay-runtime to v16.1.0 (OpenCTI-Platform#5425)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontent/backend] Enforcing schema to generate mappings and prevent any type confusion (OpenCTI-Platform#5392)

Co-authored-by: Julien Richard <julien.richard@filigran.io>
Co-authored-by: Laurent Bonnet <laurent.bonnet@filigran.io>

[frontend] Take dynamic filters into account in treemap (OpenCTI-Platform#5338)

[frontend] Update dependency relay-test-utils to v16.1.0 (OpenCTI-Platform#5426)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Bump follow-redirects from 1.15.3 to 1.15.4 in /opencti-platform/opencti-graphql (OpenCTI-Platform#5428)

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

[backend] Update opentelemetry-js monorepo (OpenCTI-Platform#5429)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency axios to v1.6.5 (OpenCTI-Platform#5430)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency openid-client to v5.6.4 (OpenCTI-Platform#5431)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-cookie to v7.0.1 (OpenCTI-Platform#5432)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Bump follow-redirects from 1.15.3 to 1.15.4 in /opencti-platform/opencti-front (OpenCTI-Platform#5433)

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

[backend] Put rename platform messages migration to latest (OpenCTI-Platform#5392)

[backend] Change file index manager cron interval to standard interval

[backend] fix elementId in widget dynamic filters (OpenCTI-Platform#5339)

[frontend] Fix  bad design in Knowledge + overview of Narrative (OpenCTI-Platform#5419)

Co-authored-by: Adrien Servel <adrien.servel@filigran.io>

[backend] Adapt migrations and initialization of partial empty platforms (OpenCTI-Platform#5340)

[backend] Adapt index settings update to keep rollover alias (OpenCTI-Platform#5340)

[backend] Fix widget dashboard if DynamicFrom/To result is empty (OpenCTI-Platform#5339)

Co-authored-by: Cathia Archidoit <cathia.archidoit@filigran.io>

[frontend] filters reset in trigger creation form (OpenCTI-Platform#5449)

[frontend] i18n, extract keyword and solution to auto-translate (OpenCTI-Platform#5326)

[frontend] Fix filter in report knowledge timeline view (OpenCTI-Platform#5461)

[backend] fix granted organizations not taking in account during add observables (OpenCTI-Platform#5451) (OpenCTI-Platform#5465)

[frontend/backend] fix ordering in Activity (OpenCTI-Platform#5464)

[frontend] relationship type filter value display (OpenCTI-Platform#5468)

[frontend] remove timeline button in Grouping Knowledge (OpenCTI-Platform#5458)

[backend/frontend] Global refactor of filters management/usage (OpenCTI-Platform#5370)

Co-authored-by: Cathia Archidoit <cathia.archidoit@filigran.io>
Co-authored-by: Laurent Bonnet <laurent.bonnet@filigran.io>
Co-authored-by: Jean-Philippe Kha <jean-philippe.kha@filigran.io>

[backend/frontend] Improve dynamic filtering (OpenCTI-Platform#5370)
- Remove quick filters for old filtering view

[backend/frontend] Improve investigation loading for relationships (OpenCTI-Platform#5370)

[backend/frontend] Improve CSV mapper definition and testing

[backend] Improve fields search generation to include sub model levels (OpenCTI-Platform#5392)

[worker] Adapt error handling to be aligned with the API (OpenCTI-Platform#5257)

[frontend] Improve analyst workbench detection of location and identity

[backend] Add more restriction on CSV mapper model attributes (OpenCTI-Platform#5392)

[frontend] Remove all entities option as now covered by default filters (OpenCTI-Platform#5370)

[frontend] Fix infinite loading on add objects in containers / investigations (OpenCTI-Platform#5456)

[integration] Update redis Docker tag to v7.2.4 (OpenCTI-Platform#5476)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/kibana/kibana Docker tag to v8.11.4 (OpenCTI-Platform#5475)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v8.11.4 (OpenCTI-Platform#5474)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Implement contains_refs on email messages (OpenCTI-Platform#5443)

[backend] Change version files type and adapt default value for dashboard widgets (OpenCTI-Platform#5392)

[frontend] Fix of rectangle selection (OpenCTI-Platform#5460)

[frontend] Update dependency recharts to v2.10.4 (OpenCTI-Platform#5484)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency apexcharts to v3.45.1 (OpenCTI-Platform#5485)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[dev] Update dependency @opensearch-project/opensearch to v2.5.0 (OpenCTI-Platform#5491)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.16

[frontend] Fix reset dynamic from / to when changing perspective

[frontend] fix widget clear filters (OpenCTI-Platform#5497)

[backend/frontend] Update dependency @types/node to v20.11.2 (OpenCTI-Platform#5492)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update aws-sdk-js-v3 monorepo to v3.490.0 (OpenCTI-Platform#5490)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency axios-cookiejar-support to v5 (OpenCTI-Platform#5494)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Improve model enforcing upgrade for old platforms (OpenCTI-Platform#5500)

[backend/worker] Release 5.12.17

[backend] Update dependency file-type to v19 (OpenCTI-Platform#5495)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] fix default value displayed in case of windows registry key (OpenCTI-Platform#5387)

[backend] fix interval hour in timeseries graphql queries (OpenCTI-Platform#5488)

Co-authored-by: Alejandro <alejandro@tulotero.com>

[frontend] Update dependency react-router-dom-v5-compat to v6.21.2 (OpenCTI-Platform#5483)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] i18n improvement (OpenCTI-Platform#5487)

[frontend] fix link resolution for file export (OpenCTI-Platform#5466)

[frontend] Update dependency convert to v4.14.1 (OpenCTI-Platform#5501)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency i18n-auto-translation to v1.3.7 (OpenCTI-Platform#5502)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency style-loader to v3.3.4 (OpenCTI-Platform#5504)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency postcss to v8.4.33 (OpenCTI-Platform#5503)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency vite to v5.0.11 (OpenCTI-Platform#5505)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] adjust  observable name lenght in merge panel (OpenCTI-Platform#5440)

[frontend] Update dependency @types/react-test-renderer to v18.0.7 (OpenCTI-Platform#5506)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update vitest monorepo to v1.2.0 (OpenCTI-Platform#5508)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @graphql-tools/utils to v10.0.12 (OpenCTI-Platform#5510)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @emotion/react to v11.11.3 (OpenCTI-Platform#5509)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @types/bcryptjs to v2.4.6 (OpenCTI-Platform#5511)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update material-ui monorepo (OpenCTI-Platform#5513)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @types/bluebird to v3.5.42 (OpenCTI-Platform#5512)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[Frontend] Type icon displayed in list distribution widgets (OpenCTI-Platform#5477)

[backend] Fix model enforcing OpenSearch upgrade for old platforms (OpenCTI-Platform#5500)

[frontend] fix filters reset in widgets (OpenCTI-Platform#5507)

[frontend] Relationship creation graph (OpenCTI-Platform#1417)

[frontend] Linked entities view is broken (OpenCTI-Platform#5515)(OpenCTI-Platform#5518) (OpenCTI-Platform#5516)

[backend/worker] Release 5.12.18

[frontend] Update dependency @testing-library/react to v14.1.2 (OpenCTI-Platform#5523)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @escape.tech/graphql-armor to v2.4.0 (OpenCTI-Platform#5522)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react-csv to v1.1.10 (OpenCTI-Platform#5519)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react-syntax-highlighter to v15.5.11 (OpenCTI-Platform#5521)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] BatchLoading failure when target is not accessible or deleted (OpenCTI-Platform#5525)

[frontend] fix output ports handling in Playbooks (OpenCTI-Platform#5437)

[backend] Update dependency @types/dot-object to v2.1.6 (OpenCTI-Platform#5542)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency postcss-loader to v8 (OpenCTI-Platform#5543)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update typescript-eslint monorepo to v6.19.0 (OpenCTI-Platform#5541)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-intl to v6.6.1 (OpenCTI-Platform#5537)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency passport to v0.7.0 (OpenCTI-Platform#5536)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.19

Update dependency @vitejs/plugin-react to v4.2.1 (OpenCTI-Platform#5528)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update rjsf monorepo to v5.16.1 (OpenCTI-Platform#5540)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update opentelemetry-js monorepo (OpenCTI-Platform#5539)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency jsdom to v23.2.0 (OpenCTI-Platform#5533)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency jose to v5.2.0 (OpenCTI-Platform#5532)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update dependency eslint to v8.56.0 (OpenCTI-Platform#5531)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency classnames to v2.5.1 (OpenCTI-Platform#5529)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency css-loader to v6.9.0 (OpenCTI-Platform#5530)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Fix widget not clickable in custom dashboards (OpenCTI-Platform#5545)

Update dependency react-pdf to v7.7.0 (OpenCTI-Platform#5538)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Update dependency @types/react-relay to v16.0.6 (OpenCTI-Platform#5520)

[frontend] Impossible to use some fields when in a graph (OpenCTI-Platform#5563)

[backend] Get only platform metadata to prevent mm-source-mtime ingestion failure (OpenCTI-Platform#5561)

[backend] Migration rename-workflow-filter-key fail when widgets have empty dataSelection (OpenCTI-Platform#5560)

[backend] Deduplication relationship is broken since introduction of new filtering system (OpenCTI-Platform#5547)

[frontend] Rollback on MUI to fix toggle buttons (OpenCTI-Platform#5556)

[frontend] Update dependency reactflow to v11.10.2 (OpenCTI-Platform#5571)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency relay-compiler to v16 (OpenCTI-Platform#5120)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jean-Philippe Kha <jean-philippe.kha@filigran.io>

[backend] Update dependency @types/qrcode to v1.5.5 (OpenCTI-Platform#5568)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react to v18.2.48 (OpenCTI-Platform#5570)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v8.12.0 (OpenCTI-Platform#5573)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/kibana/kibana Docker tag to v8.12.0 (OpenCTI-Platform#5576)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update vitest monorepo to v1.2.1 (OpenCTI-Platform#5577)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update dependency @types/ramda to v0.29.9 (OpenCTI-Platform#5569)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.20

[frontend] Limit favorite entities to 8 to avoid cards problems (OpenCTI-Platform#4132)

[frontend] Fix tsconfig issue with eslint on extract-i18n-keyword.js

Completed both create and edit for mandatory fields

applying use schema attributes to reqd files

location and vocabulary complete

reqd fields fix

able to query for all mandatory internal attributes

added threats addlocation fixme

rolling back external reference changes

rollback changes

fixing mandatory fields

cleanup from rebase
one-L-of-a-girl added a commit to fbicyber/opencti__opencti that referenced this pull request Jan 29, 2024
applying use schema attributes to reqd files

location and vocabulary complete

reqd fields fix

able to query for all mandatory internal attributes

added threats addlocation fixme

rolling back external reference changes

rollback changes

[backend/frontend] Settings platform announcements with recipients are not visible to all admins (OpenCTI-Platform#5396)

[frontend] Remove edit button in an Analyse screen (OpenCTI-Platform#5385)

[backend/frontend] Improve search to include a default score criteria (OpenCTI-Platform#5397)

[frontend] sort exports by export date in lists (OpenCTI-Platform#5316)

Co-authored-by: Julien Richard <julien.richard@filigran.io>

[backend] Update dependency prom-client to v15.1.0 (OpenCTI-Platform#5416)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-relay to v16.1.0 (OpenCTI-Platform#5417)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Logs improvement for python execution and worker (OpenCTI-Platform#5427)

Co-authored-by: Helene Nguyen <helene.nguyen@filigran.io>

[frontend] Update dependency babel-plugin-relay to v16.1.0 (OpenCTI-Platform#5424)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency relay-runtime to v16.1.0 (OpenCTI-Platform#5425)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontent/backend] Enforcing schema to generate mappings and prevent any type confusion (OpenCTI-Platform#5392)

Co-authored-by: Julien Richard <julien.richard@filigran.io>
Co-authored-by: Laurent Bonnet <laurent.bonnet@filigran.io>

[frontend] Take dynamic filters into account in treemap (OpenCTI-Platform#5338)

[frontend] Update dependency relay-test-utils to v16.1.0 (OpenCTI-Platform#5426)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Bump follow-redirects from 1.15.3 to 1.15.4 in /opencti-platform/opencti-graphql (OpenCTI-Platform#5428)

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

[backend] Update opentelemetry-js monorepo (OpenCTI-Platform#5429)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency axios to v1.6.5 (OpenCTI-Platform#5430)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency openid-client to v5.6.4 (OpenCTI-Platform#5431)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-cookie to v7.0.1 (OpenCTI-Platform#5432)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Bump follow-redirects from 1.15.3 to 1.15.4 in /opencti-platform/opencti-front (OpenCTI-Platform#5433)

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

[backend] Put rename platform messages migration to latest (OpenCTI-Platform#5392)

[backend] Change file index manager cron interval to standard interval

[backend] fix elementId in widget dynamic filters (OpenCTI-Platform#5339)

[frontend] Fix  bad design in Knowledge + overview of Narrative (OpenCTI-Platform#5419)

Co-authored-by: Adrien Servel <adrien.servel@filigran.io>

[backend] Adapt migrations and initialization of partial empty platforms (OpenCTI-Platform#5340)

[backend] Adapt index settings update to keep rollover alias (OpenCTI-Platform#5340)

[backend] Fix widget dashboard if DynamicFrom/To result is empty (OpenCTI-Platform#5339)

Co-authored-by: Cathia Archidoit <cathia.archidoit@filigran.io>

[frontend] filters reset in trigger creation form (OpenCTI-Platform#5449)

[frontend] i18n, extract keyword and solution to auto-translate (OpenCTI-Platform#5326)

[frontend] Fix filter in report knowledge timeline view (OpenCTI-Platform#5461)

[backend] fix granted organizations not taking in account during add observables (OpenCTI-Platform#5451) (OpenCTI-Platform#5465)

[frontend/backend] fix ordering in Activity (OpenCTI-Platform#5464)

[frontend] relationship type filter value display (OpenCTI-Platform#5468)

[frontend] remove timeline button in Grouping Knowledge (OpenCTI-Platform#5458)

[backend/frontend] Global refactor of filters management/usage (OpenCTI-Platform#5370)

Co-authored-by: Cathia Archidoit <cathia.archidoit@filigran.io>
Co-authored-by: Laurent Bonnet <laurent.bonnet@filigran.io>
Co-authored-by: Jean-Philippe Kha <jean-philippe.kha@filigran.io>

[backend/frontend] Improve dynamic filtering (OpenCTI-Platform#5370)
- Remove quick filters for old filtering view

[backend/frontend] Improve investigation loading for relationships (OpenCTI-Platform#5370)

[backend/frontend] Improve CSV mapper definition and testing

[backend] Improve fields search generation to include sub model levels (OpenCTI-Platform#5392)

[worker] Adapt error handling to be aligned with the API (OpenCTI-Platform#5257)

[frontend] Improve analyst workbench detection of location and identity

[backend] Add more restriction on CSV mapper model attributes (OpenCTI-Platform#5392)

[frontend] Remove all entities option as now covered by default filters (OpenCTI-Platform#5370)

[frontend] Fix infinite loading on add objects in containers / investigations (OpenCTI-Platform#5456)

[integration] Update redis Docker tag to v7.2.4 (OpenCTI-Platform#5476)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/kibana/kibana Docker tag to v8.11.4 (OpenCTI-Platform#5475)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v8.11.4 (OpenCTI-Platform#5474)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Implement contains_refs on email messages (OpenCTI-Platform#5443)

[backend] Change version files type and adapt default value for dashboard widgets (OpenCTI-Platform#5392)

[frontend] Fix of rectangle selection (OpenCTI-Platform#5460)

[frontend] Update dependency recharts to v2.10.4 (OpenCTI-Platform#5484)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency apexcharts to v3.45.1 (OpenCTI-Platform#5485)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[dev] Update dependency @opensearch-project/opensearch to v2.5.0 (OpenCTI-Platform#5491)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.16

[frontend] Fix reset dynamic from / to when changing perspective

[frontend] fix widget clear filters (OpenCTI-Platform#5497)

[backend/frontend] Update dependency @types/node to v20.11.2 (OpenCTI-Platform#5492)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update aws-sdk-js-v3 monorepo to v3.490.0 (OpenCTI-Platform#5490)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency axios-cookiejar-support to v5 (OpenCTI-Platform#5494)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Improve model enforcing upgrade for old platforms (OpenCTI-Platform#5500)

[backend/worker] Release 5.12.17

[backend] Update dependency file-type to v19 (OpenCTI-Platform#5495)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] fix default value displayed in case of windows registry key (OpenCTI-Platform#5387)

[backend] fix interval hour in timeseries graphql queries (OpenCTI-Platform#5488)

Co-authored-by: Alejandro <alejandro@tulotero.com>

[frontend] Update dependency react-router-dom-v5-compat to v6.21.2 (OpenCTI-Platform#5483)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] i18n improvement (OpenCTI-Platform#5487)

[frontend] fix link resolution for file export (OpenCTI-Platform#5466)

[frontend] Update dependency convert to v4.14.1 (OpenCTI-Platform#5501)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency i18n-auto-translation to v1.3.7 (OpenCTI-Platform#5502)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency style-loader to v3.3.4 (OpenCTI-Platform#5504)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency postcss to v8.4.33 (OpenCTI-Platform#5503)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency vite to v5.0.11 (OpenCTI-Platform#5505)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] adjust  observable name lenght in merge panel (OpenCTI-Platform#5440)

[frontend] Update dependency @types/react-test-renderer to v18.0.7 (OpenCTI-Platform#5506)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update vitest monorepo to v1.2.0 (OpenCTI-Platform#5508)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @graphql-tools/utils to v10.0.12 (OpenCTI-Platform#5510)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @emotion/react to v11.11.3 (OpenCTI-Platform#5509)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @types/bcryptjs to v2.4.6 (OpenCTI-Platform#5511)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update material-ui monorepo (OpenCTI-Platform#5513)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @types/bluebird to v3.5.42 (OpenCTI-Platform#5512)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[Frontend] Type icon displayed in list distribution widgets (OpenCTI-Platform#5477)

[backend] Fix model enforcing OpenSearch upgrade for old platforms (OpenCTI-Platform#5500)

[frontend] fix filters reset in widgets (OpenCTI-Platform#5507)

[frontend] Relationship creation graph (OpenCTI-Platform#1417)

[frontend] Linked entities view is broken (OpenCTI-Platform#5515)(OpenCTI-Platform#5518) (OpenCTI-Platform#5516)

[backend/worker] Release 5.12.18

[frontend] Update dependency @testing-library/react to v14.1.2 (OpenCTI-Platform#5523)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency @escape.tech/graphql-armor to v2.4.0 (OpenCTI-Platform#5522)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react-csv to v1.1.10 (OpenCTI-Platform#5519)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react-syntax-highlighter to v15.5.11 (OpenCTI-Platform#5521)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] BatchLoading failure when target is not accessible or deleted (OpenCTI-Platform#5525)

[frontend] fix output ports handling in Playbooks (OpenCTI-Platform#5437)

[backend] Update dependency @types/dot-object to v2.1.6 (OpenCTI-Platform#5542)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency postcss-loader to v8 (OpenCTI-Platform#5543)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update typescript-eslint monorepo to v6.19.0 (OpenCTI-Platform#5541)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency react-intl to v6.6.1 (OpenCTI-Platform#5537)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update dependency passport to v0.7.0 (OpenCTI-Platform#5536)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.19

Update dependency @vitejs/plugin-react to v4.2.1 (OpenCTI-Platform#5528)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update rjsf monorepo to v5.16.1 (OpenCTI-Platform#5540)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend] Update opentelemetry-js monorepo (OpenCTI-Platform#5539)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency jsdom to v23.2.0 (OpenCTI-Platform#5533)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency jose to v5.2.0 (OpenCTI-Platform#5532)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update dependency eslint to v8.56.0 (OpenCTI-Platform#5531)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency classnames to v2.5.1 (OpenCTI-Platform#5529)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency css-loader to v6.9.0 (OpenCTI-Platform#5530)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Fix widget not clickable in custom dashboards (OpenCTI-Platform#5545)

Update dependency react-pdf to v7.7.0 (OpenCTI-Platform#5538)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Update dependency @types/react-relay to v16.0.6 (OpenCTI-Platform#5520)

[frontend] Impossible to use some fields when in a graph (OpenCTI-Platform#5563)

[backend] Get only platform metadata to prevent mm-source-mtime ingestion failure (OpenCTI-Platform#5561)

[backend] Migration rename-workflow-filter-key fail when widgets have empty dataSelection (OpenCTI-Platform#5560)

[backend] Deduplication relationship is broken since introduction of new filtering system (OpenCTI-Platform#5547)

[frontend] Rollback on MUI to fix toggle buttons (OpenCTI-Platform#5556)

[frontend] Update dependency reactflow to v11.10.2 (OpenCTI-Platform#5571)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency relay-compiler to v16 (OpenCTI-Platform#5120)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jean-Philippe Kha <jean-philippe.kha@filigran.io>

[backend] Update dependency @types/qrcode to v1.5.5 (OpenCTI-Platform#5568)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[frontend] Update dependency @types/react to v18.2.48 (OpenCTI-Platform#5570)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v8.12.0 (OpenCTI-Platform#5573)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[integration] Update docker.elastic.co/kibana/kibana Docker tag to v8.12.0 (OpenCTI-Platform#5576)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update vitest monorepo to v1.2.1 (OpenCTI-Platform#5577)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/frontend] Update dependency @types/ramda to v0.29.9 (OpenCTI-Platform#5569)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

[backend/worker] Release 5.12.20

[frontend] Limit favorite entities to 8 to avoid cards problems (OpenCTI-Platform#4132)

[frontend] Fix tsconfig issue with eslint on extract-i18n-keyword.js

Completed both create and edit for mandatory fields

applying use schema attributes to reqd files

location and vocabulary complete

reqd fields fix

able to query for all mandatory internal attributes

added threats addlocation fixme

rolling back external reference changes

rollback changes

fixing mandatory fields

cleanup from rebase
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies use for pull requests that update a dependency file filigran team use to identify PR from the Filigran team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant