Commit Graph

467 Commits

Author SHA1 Message Date
R. Ryantm
d3fb90b7ef weaviate: 1.24.7 -> 1.24.8 2024-04-11 06:10:00 +00:00
Nick Cao
6b0a22f82e
Merge pull request #301998 from r-ryantm/auto-update/weaviate
weaviate: 1.24.6 -> 1.24.7
2024-04-06 11:11:29 -04:00
Nick Cao
c49646e491
Merge pull request #302009 from r-ryantm/auto-update/typesense
typesense: 0.25.2 -> 26.0
2024-04-06 11:10:38 -04:00
rewine
370076514b
Merge pull request #301905 from wegank/khoj-broken
khoj: mark as broken
2024-04-06 17:35:00 +08:00
R. Ryantm
12fddfdb3d typesense: 0.25.2 -> 26.0 2024-04-06 04:44:14 +00:00
R. Ryantm
d7884c9d9d weaviate: 1.24.6 -> 1.24.7 2024-04-06 02:59:31 +00:00
Weijia Wang
e9d2f719af khoj: mark as broken 2024-04-05 20:54:31 +02:00
Weijia Wang
0fbced986e
Merge pull request #300136 from r-ryantm/auto-update/groonga
groonga: 14.0.1 -> 14.0.2
2024-04-05 05:09:21 +02:00
Weijia Wang
10af46065e
Merge pull request #301122 from r-ryantm/auto-update/opensearch
opensearch: 2.12.0 -> 2.13.0
2024-04-03 10:44:22 +02:00
R. Ryantm
bb2278e4a0 opensearch: 2.12.0 -> 2.13.0 2024-04-03 02:21:55 +00:00
Yt
3d784fc78a
Merge pull request #300659 from nh2/quickwit-fix-wrong-cargo-lock
quickwit: Fix outdated Cargo.lock file
2024-04-03 00:51:59 +00:00
Niklas Hambüchen
86e9e2e9ed quickwit: Fix outdated Cargo.lock file. See #298589
It was forgotten to be updated with the last update from #298589.
Fixes eval.
2024-04-01 11:14:35 +00:00
Weijia Wang
451e64cd52
Merge pull request #297864 from r-ryantm/auto-update/weaviate
weaviate: 1.24.4 -> 1.24.6
2024-03-30 18:13:06 +01:00
R. Ryantm
5a27015f92 groonga: 14.0.1 -> 14.0.2 2024-03-30 01:29:50 +00:00
R. Ryantm
92591a1431 weaviate: 1.24.4 -> 1.24.6 2024-03-27 21:54:52 +00:00
happysalada
3ed4208327 quickwit: 0.6.4 -> 0.8.0 2024-03-24 06:27:38 -04:00
R. Ryantm
95a296014d meilisearch: 1.6.2 -> 1.7.3 2024-03-23 08:15:38 +00:00
github-actions[bot]
a474411771
Merge master into staging-next 2024-03-20 00:02:08 +00:00
Weijia Wang
16dbd24b8b
Merge pull request #295567 from r-ryantm/auto-update/weaviate
weaviate: 1.24.1 -> 1.24.4
2024-03-19 21:22:48 +01:00
Martin Weinelt
7762462405
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/development/python-modules/flask-security-too/default.nix
2024-03-19 17:30:16 +01:00
Paul Meyer
88ff6b5587 zincsearch: 0.4.9 -> 0.4.10; unpin Go version
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-03-19 11:10:25 +01:00
Martin Weinelt
3321e63b12
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/development/python-modules/sphinx-autobuild/default.nix
2024-03-19 04:00:32 +01:00
Martin Weinelt
afa65506cb
Merge pull request #297084 from stuebinm/trivial-meta-mainprograms
treewide: add meta.mainProgram to (almost) all packages with a single binary
2024-03-19 03:57:54 +01:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
R. Ryantm
61b26fea0a groonga: 13.1.1 -> 14.0.1 2024-03-19 00:06:34 +00:00
R. Ryantm
f76a8c3cfb weaviate: 1.24.1 -> 1.24.4 2024-03-17 02:23:22 +00:00
a-n-n-a-l-e-e
ce789e7e35
llvmPackages_{12,13,14,15,16,17,git}.{libcxx,libcxxabi}: merge libcxxabi into libcxx (#292043)
- merge libcxxabi into libcxx for LLVM 12, 13, 14, 15, 16, 17, and git.
- remove the link time workaround `-lc++ -lc++abi` from 58 packages as it is no longer required.
- fixes https://github.com/NixOS/nixpkgs/issues/166205
- provides alternative fixes for. https://github.com/NixOS/nixpkgs/issues/269548 https://github.com/NixOS/nix/issues/9640
- pkgsCross.x86_64-freebsd builds work again

This change can be represented in 3 stages
1. merge libcxxabi into libcxx -- files: pkgs/development/compilers/llvm/[12, git]/{libcxx, libcxxabi}
2. update stdenv to account for merge -- files: stdenv.{adapters, cc.wrapper, darwin}
3. remove all references to libcxxabi outside of llvm (about 58 packages modified)

### merging libcxxabi into libcxx
- take the union of the libcxxabi and libcxx cmake flags
- eliminate the libcxx-headers-only package - it was only needed to break libcxx <-> libcxxabi circular dependency
- libcxx.cxxabi is removed. external cxxabi (freebsd) will symlink headers / libs into libcxx.
- darwin will re-export the libcxxabi symbols into libcxx so linking `-lc++` is sufficient.
- linux/freebsd `libc++.so` is a linker script `LINK(libc++.so.1, -lc++abi)` making `-lc++` sufficient.
- libcxx/default.nix [12, 17] are identical except for patches and `LIBCXX_ADDITIONAL_LIBRARIES` (only used in 16+)
- git/libcxx/defaul.nix  does not link with -nostdlib when useLLVM is true so flag is removed. this is not much different than before as libcxxabi used -nostdlib where libcxx did not, so libc was linked in anyway.

### stdenv changes
- darwin bootstrap, remove references to libcxxabi and cxxabi
- cc-wrapper: remove c++ link workaround when libcxx.cxxabi doesn't exist (still exists for LLVM pre 12)
- adapter: update overrideLibcxx to account for a pkgs.stdenv that only has libcxx

### 58 package updates
- remove `NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}` as no longer needed
- swift, nodejs_v8 remove libcxxabi references in the clang override

https://github.com/NixOS/nixpkgs/pull/292043
2024-03-11 03:53:37 -07:00
R. Ryantm
3c1eeca6e6 weaviate: 1.23.10 -> 1.24.1 2024-03-02 17:58:23 +00:00
R. Ryantm
94ba4ba019 opensearch: 2.11.1 -> 2.12.0 2024-02-21 07:17:14 +00:00
R. Ryantm
d3537a0016 weaviate: 1.23.9 -> 1.23.10 2024-02-20 12:44:22 +00:00
Yt
b9b2eb52d6
Merge pull request #288831 from r-ryantm/auto-update/meilisearch
meilisearch: 1.6.1 -> 1.6.2
2024-02-14 21:46:37 +00:00
R. Ryantm
16cd4f0b38 meilisearch: 1.6.1 -> 1.6.2 2024-02-14 17:32:17 +00:00
R. Ryantm
877cd07311 weaviate: 1.23.8 -> 1.23.9 2024-02-14 05:33:52 +00:00
Mario Rodas
4da3fd2820 sonic-server: 1.4.3 -> 1.4.8
Diff: https://github.com/valeriansaliou/sonic/compare/refs/tags/v1.4.3...v1.4.8

Changelog: https://github.com/valeriansaliou/sonic/releases/tag/v1.4.8
2024-02-11 04:20:00 +00:00
R. Ryantm
1d7342cab9 weaviate: 1.23.7 -> 1.23.8 2024-02-09 09:50:14 +00:00
Weijia Wang
0893ea4ef9
Merge pull request #282932 from r-ryantm/auto-update/weaviate
weaviate: 1.23.1 -> 1.23.7
2024-02-04 23:32:39 +01:00
Yt
3ac7c37095
Merge pull request #285352 from r-ryantm/auto-update/meilisearch
meilisearch: 1.6.0 -> 1.6.1
2024-02-01 01:03:47 +00:00
R. Ryantm
155285016c meilisearch: 1.6.0 -> 1.6.1 2024-01-31 20:14:30 +00:00
R. Ryantm
06c21ac0b0 weaviate: 1.23.1 -> 1.23.7 2024-01-31 15:46:18 +00:00
R. Ryantm
9669a8b553 qdrant: 1.7.3 -> 1.7.4 2024-01-30 00:23:00 +00:00
Robert Scott
43e4d9e2eb
Merge pull request #280915 from LeSuisse/es-7.17.16
elasticsearch: 7.17.10 -> 7.17.16
2024-01-21 13:09:23 +00:00
Manuel de Ruiter
506ce5b145 meilisearch: fixes build on darwin 2024-01-20 14:17:08 +01:00
Jonas Heinrich
8ef7c0b86a manticoresearch: 6.2.0 -> 6.2.12 2024-01-19 10:52:06 +01:00
happysalada
e31d14b5e5 meilisearch: 1.5.0 -> 1.6.0 2024-01-16 06:54:35 -05:00
Thomas Gerbet
afb57ff041 elasticsearch: 7.17.10 -> 7.17.16
Fixes CVE-2023-31417, CVE-2023-31418, CVE-2023-31419, CVE-2023-46673 and CVE-2023-46674.

Security announces:
https://www.elastic.co/guide/en/security/7.17/release-notes-header-7.17.0.html#release-notes-7.17.16

Release notes:
https://www.elastic.co/guide/en/elasticsearch/reference/7.17/release-notes-7.17.16.html
https://www.elastic.co/guide/en/elasticsearch/reference/7.17/release-notes-7.17.15.html
https://www.elastic.co/guide/en/elasticsearch/reference/7.17/release-notes-7.17.14.html
https://www.elastic.co/guide/en/elasticsearch/reference/7.17/release-notes-7.17.13.html
https://www.elastic.co/guide/en/elasticsearch/reference/7.17/release-notes-7.17.12.html
https://www.elastic.co/guide/en/elasticsearch/reference/7.17/release-notes-7.17.11.html
2024-01-14 12:21:45 +01:00
K900
e7b611e59d Merge remote-tracking branch 'origin/master' into staging-next 2024-01-12 13:59:54 +03:00
R. Ryantm
25e0d2a0e5 groonga: 13.1.0 -> 13.1.1 2024-01-11 11:52:55 +00:00
github-actions[bot]
a86f721682
Merge master into staging-next 2024-01-08 06:00:59 +00:00
R. Ryantm
945a2d6dc7 weaviate: 1.23.0 -> 1.23.1 2024-01-06 09:12:48 +00:00
Martin Weinelt
eba4d277a0 Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
-	pkgs/development/python-modules/sabctools/default.nix
2024-01-06 04:51:01 +01:00