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

Deploy v9.3.9 to production #4007

Merged
merged 22 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
4d1b7ae
Bump version to 9.3.9
github-actions[bot] Jun 11, 2024
1f74158
Read preservation check schedule from secrets manager
mbklein Jun 11, 2024
44fdd2d
Merge pull request #4008 from nulib/4249-preservation-check-schedule
mbklein Jun 11, 2024
371c5b3
Bump @babel/preset-react from 7.24.1 to 7.24.7 in /app/assets
dependabot[bot] Jun 12, 2024
78376f9
Bump sass from 1.77.4 to 1.77.5 in /app/assets
dependabot[bot] Jun 12, 2024
cb28c1e
Bump @graphql-codegen/client-preset from 4.2.6 to 4.3.0 in /app/assets
dependabot[bot] Jun 13, 2024
641c8d8
Bump graphql from 16.8.1 to 16.8.2 in /app/assets
dependabot[bot] Jun 13, 2024
56fa03d
Bump @apollo/client from 3.10.4 to 3.10.5 in /app/assets
dependabot[bot] Jun 13, 2024
f309430
Bump credo from 1.7.6 to 1.7.7 in /app
dependabot[bot] Jun 13, 2024
2232f65
Bump phoenix_view from 2.0.3 to 2.0.4 in /app
dependabot[bot] Jun 14, 2024
1fbefab
Bump ecto_sql from 3.11.2 to 3.11.3 in /app
dependabot[bot] Jun 14, 2024
a62f37c
Remove everything up to and including `huggingface/` from indexed mod…
mbklein Jun 14, 2024
1f3b7d8
Merge pull request #4019 from nulib/4581-update-model-name
mbklein Jun 14, 2024
ca71ca1
Merge dependabot/hex/app/deploy/staging/ecto_sql-3.11.3 into combined…
github-actions[bot] Jun 14, 2024
4545fed
Merge dependabot/hex/app/deploy/staging/phoenix_view-2.0.4 into combi…
github-actions[bot] Jun 14, 2024
e040c28
Merge dependabot/hex/app/deploy/staging/credo-1.7.7 into combined-dep…
github-actions[bot] Jun 14, 2024
ee85081
Merge dependabot/npm_and_yarn/app/assets/deploy/staging/apollo/client…
github-actions[bot] Jun 14, 2024
19ef777
Merge dependabot/npm_and_yarn/app/assets/deploy/staging/graphql-16.8.…
github-actions[bot] Jun 14, 2024
ac2cdaa
Merge dependabot/npm_and_yarn/app/assets/deploy/staging/graphql-codeg…
github-actions[bot] Jun 14, 2024
afac22c
Merge dependabot/npm_and_yarn/app/assets/deploy/staging/sass-1.77.5 i…
github-actions[bot] Jun 14, 2024
fdd17f6
Merge dependabot/npm_and_yarn/app/assets/deploy/staging/babel/preset-…
github-actions[bot] Jun 14, 2024
185941e
Merge pull request #4020 from nulib/combined-dependencies
mbklein Jun 14, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 51 additions & 51 deletions app/assets/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions app/assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"esbuild-plugin-svgr": "^2.1.0",
"faker": "^5.5.3",
"file-saver": "^2.0.5",
"graphql": "^16.8.1",
"graphql": "^16.8.2",
"graphql-tag": "^2.12.6",
"hls.js": "^1.5.11",
"inflection": "^3.0.0",
Expand Down Expand Up @@ -73,14 +73,14 @@
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-async-to-generator": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.23.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.24.7",
"@creativebulma/bulma-divider": "^1.1.0",
"@creativebulma/bulma-tooltip": "^1.2.0",
"@elastic/elasticsearch-mock": "^2.0.0",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/client-preset": "^4.3.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@nulib/dcapi-types": "^2.3.1",
"@nulib/prettier-config": "^1.2.0",
Expand Down Expand Up @@ -109,7 +109,7 @@
"react-dom": "^18.3.1",
"react-router-dom": "^5.3.0",
"react-router-prop-types": "^1.0.5",
"sass": "^1.77.4",
"sass": "^1.77.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"use-phoenix-channel": "^1.1.1"
Expand Down
7 changes: 5 additions & 2 deletions app/config/releases.exs
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,11 @@ config :meadow, Meadow.Scheduler,
overlap: false,
timezone: "America/Chicago",
jobs: [
# Runs daily at 2AM Central Time
{"0 2 * * *", {Meadow.Data.PreservationChecks, :start_job, []}}
# Runs daily at the configured time (default: 2AM Central)
{
aws_secret("meadow", dig: ["scheduler", "preservation_check"], default: "0 2 * * *"),
{Meadow.Data.PreservationChecks, :start_job, []}
}
]

config :ueberauth, Ueberauth,
Expand Down
7 changes: 5 additions & 2 deletions app/lib/meadow/search/index.ex
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,11 @@ defmodule Meadow.Search.Index do

defp embedding_model_name(model_id) do
case HTTP.get(["_plugins", "_ml", "models", model_id]) do
{:ok, %{status_code: 200, body: %{"name" => name}}} -> name
_ -> nil
{:ok, %{status_code: 200, body: %{"name" => name}}} ->
Regex.replace(~r[^.+/huggingface/], name, "")

_ ->
nil
end
end

Expand Down
2 changes: 1 addition & 1 deletion app/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Code.require_file("lib/env.ex")
defmodule Meadow.MixProject do
use Mix.Project

@app_version "9.3.8"
@app_version "9.3.9"

def project do
[
Expand Down
Loading
Loading