about summary refs log tree commit diff
path: root/pkgs/development/web
Commit message (Collapse)AuthorAge
* Merge pull request #298416 from r-ryantm/auto-update/bunWeijia Wang2024-03-25
|\ | | | | bun: 1.0.33 -> 1.0.35
| * bun: 1.0.33 -> 1.0.35R. Ryantm2024-03-23
| |
* | Merge pull request #296027 from r-ryantm/auto-update/newmanWeijia Wang2024-03-24
|\ \ | | | | | | newman: 6.1.1 -> 6.1.2
| * | newman: 6.1.1 -> 6.1.2R. Ryantm2024-03-15
| | |
* | | bun: add meta.mainProgramAustin Horstman2024-03-24
| |/ |/|
* | shopify-themekit: 1.3.1 -> 1.3.2R. Ryantm2024-03-22
| |
* | Merge remote-tracking branch 'origin/master' into staging-nextMartin Weinelt2024-03-19
|\ \ | | | | | | | | | | | | Conflicts: - pkgs/development/python-modules/sphinx-autobuild/default.nix
| * | treewide: add meta.mainProgram to packages with a single binarystuebinm2024-03-19
| | | | | | | | | | | | | | | | | | 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.
* | | Merge master into staging-nextgithub-actions[bot]2024-03-19
|\| |
| * | bun: 1.0.32 -> 1.0.33Gary506132024-03-18
| | |
| * | bun: 1.0.31 -> 1.0.32Gary506132024-03-18
| | |
* | | Merge master into staging-nextgithub-actions[bot]2024-03-17
|\| |
| * | Merge pull request #296494 from r-ryantm/auto-update/bunYt2024-03-17
| |\ \ | | | | | | | | bun: 1.0.30 -> 1.0.31
| | * | bun: 1.0.30 -> 1.0.31R. Ryantm2024-03-16
| | | |
* | | | Merge master into staging-nextgithub-actions[bot]2024-03-17
|\| | |
| * | | Merge pull request #292644 from NickCao/koreNick Cao2024-03-16
| |\ \ \ | | |/ / | |/| | kore: unpin openssl_1_1
| | * | kore: unpin openssl_1_1Nick Cao2024-03-01
| | | |
* | | | Merge master into staging-nextgithub-actions[bot]2024-03-16
|\| | |
| * | | deno: 1.41.2 -> 1.41.3R. Ryantm2024-03-16
| | | |
* | | | Merge master into staging-nextgithub-actions[bot]2024-03-16
|\| | |
| * | | Merge pull request #295479 from r-ryantm/auto-update/publiiNick Cao2024-03-15
| |\ \ \ | | |_|/ | |/| | publii: 0.45.1 -> 0.45.2
| | * | publii: 0.45.1 -> 0.45.2R. Ryantm2024-03-13
| | | |
* | | | Merge master into staging-nextgithub-actions[bot]2024-03-14
|\| | |
| * | | flyctl: 0.2.6 → 0.2.17Maxine Aubrey2024-03-13
| |/ / | | | | | | | | | https://github.com/superfly/flyctl/compare/v0.2.6...v0.2.17
* | | Merge staging-next into staginggithub-actions[bot]2024-03-12
|\| |
| * | Merge pull request #293984 from kane50613/masterMario Rodas2024-03-12
| |\ \ | | | | | | | | bun: 1.0.29 -> 1.0.30
| | * | bun: 1.0.29 -> 1.0.30Kane Wang2024-03-07
| | | |
* | | | llvmPackages_{12,13,14,15,16,17,git}.{libcxx,libcxxabi}: merge libcxxabi ↵a-n-n-a-l-e-e2024-03-11
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | deno: update to 1.41.2Daniel Flanagan2024-03-09
| | |
* | | nodejs_21: 21.7.0 -> 21.7.1Mario Rodas2024-03-08
| | | | | | | | | | | | Changelog: https://github.com/nodejs/node/releases/tag/v21.7.1
* | | Merge pull request #293932 from NickCao/publiiNick Cao2024-03-07
|\ \ \ | | | | | | | | publii: 0.45.0 -> 0.45.1
| * | | publii: 0.45.0 -> 0.45.1Nick Cao2024-03-06
| |/ /
* | | Merge pull request #291288 from r-ryantm/auto-update/denoWeijia Wang2024-03-07
|\ \ \ | | | | | | | | deno: 1.40.5 -> 1.41.1
| * | | deno: 1.40.5 -> 1.41.1R. Ryantm2024-03-03
| | |/ | |/|
* | | Merge pull request #288286 from chewblacka/update-insomniaWeijia Wang2024-03-07
|\ \ \ | | | | | | | | insomnia: 2023.5.8 -> 8.6.1
| * | | insomnia: 2023.5.8 -> 8.6.1John Garcia2024-02-12
| | | |
* | | | nodejs_21: 21.6.2 -> 21.7.0Mario Rodas2024-03-07
| |_|/ |/| | | | | | | | Changelog: https://github.com/nodejs/node/releases/tag/v21.7.0
* | | publii: 0.44.4 -> 0.45.0R. Ryantm2024-03-06
| |/ |/|
* | Merge pull request #290307 from r-ryantm/auto-update/twitterBootstrapAtemu2024-03-01
|\ \ | | | | | | twitterBootstrap: 5.3.2 -> 5.3.3
| * | twitterBootstrap: 5.3.2 -> 5.3.3R. Ryantm2024-02-20
| | |
* | | bun: 1.0.28 -> 1.0.29R. Ryantm2024-02-25
| | |
* | | postman: 10.18.6 -> 10.23.5khaser2024-02-23
| | |
* | | bun: 1.0.27 -> 1.0.28R. Ryantm2024-02-21
|/ /
* | Merge pull request #286068 from r-ryantm/auto-update/denoOTABI Tomoya2024-02-19
|\ \ | | | | | | deno: 1.40.2 -> 1.40.5
| * | deno: 1.40.2 -> 1.40.5R. Ryantm2024-02-17
| | |
* | | bun: 1.0.26 -> 1.0.27R. Ryantm2024-02-18
| | |
* | | flyctl: 0.1.148 -> 0.2.6roger2024-02-15
|/ / | | | | | | Switched to buildGo122Module, flyctl now depends on go >= 1.21.7
* | nodejs_21: 21.6.1 -> 21.6.2Mario Rodas2024-02-14
| | | | | | | | Changelog: https://github.com/nodejs/node/releases/tag/v21.6.2
* | nodejs_20: 20.11.0 -> 20.11.1Mario Rodas2024-02-14
| | | | | | | | Changelog: https://github.com/nodejs/node/releases/tag/v20.11.1
* | nodejs_18: 18.19.0 -> 18.19.1Mario Rodas2024-02-14
|/ | | | Changelog: https://github.com/nodejs/node/releases/tag/v18.19.1