| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 62cbddd commit 0bc4c17
10 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -161,6 +161,16 @@ jobs: | |||
| 161 | 161 | cat temp-output | |
| 162 | 162 | tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true | |
| 163 | 163 | rm temp-output | |
| 164 | + - id: ada | ||
| 165 | + subsystem: deps | ||
| 166 | + label: dependencies | ||
| 167 | + run: | | ||
| 168 | + NEW_VERSION=$(gh api repos/ada-url/ada/releases/latest -q '.tag_name|ltrimstr("v")') | ||
| 169 | + CURRENT_VERSION=$(grep "#define ADA_VERSION" ./deps/ada/ada.h | sed -n "s/^.*VERSION \(.*\)/\1/p") | ||
| 170 | + if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then | ||
| 171 | + echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV | ||
| 172 | + ./tools/dep_updaters/update-ada.sh "$NEW_VERSION" | ||
| 173 | + fi | ||
| 164 | 174 | steps: | |
| 165 | 175 | - uses: actions/checkout@v3 | |
| 166 | 176 | with: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1338,6 +1338,28 @@ The externally maintained libraries used by Node.js are: | |||
| 1338 | 1338 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
| 1339 | 1339 | """ | |
| 1340 | 1340 | ||
| 1341 | + - ada, located at deps/ada, is licensed as follows: | ||
| 1342 | + """ | ||
| 1343 | + Copyright 2023 Ada authors | ||
| 1344 | + | ||
| 1345 | + Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
| 1346 | + this software and associated documentation files (the "Software"), to deal in | ||
| 1347 | + the Software without restriction, including without limitation the rights to | ||
| 1348 | + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
| 1349 | + the Software, and to permit persons to whom the Software is furnished to do so, | ||
| 1350 | + subject to the following conditions: | ||
| 1351 | + | ||
| 1352 | + The above copyright notice and this permission notice shall be included in all | ||
| 1353 | + copies or substantial portions of the Software. | ||
| 1354 | + | ||
| 1355 | + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 1356 | + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
| 1357 | + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
| 1358 | + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
| 1359 | + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
| 1360 | + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
| 1361 | + """ | ||
| 1362 | + | ||
| 1341 | 1363 | - npm, located at deps/npm, is licensed as follows: | |
| 1342 | 1364 | """ | |
| 1343 | 1365 | The npm application | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -170,7 +170,7 @@ with-code-cache test-code-cache: | |||
| 170 | 170 | ||
| 171 | 171 | out/Makefile: config.gypi common.gypi node.gyp \ | |
| 172 | 172 | deps/uv/uv.gyp deps/llhttp/llhttp.gyp deps/zlib/zlib.gyp \ | |
| 173 | - deps/simdutf/simdutf.gyp \ | ||
| 173 | + deps/simdutf/simdutf.gyp deps/ada/ada.gyp \ | ||
| 174 | 174 | tools/v8_gypfiles/toolchain.gypi tools/v8_gypfiles/features.gypi \ | |
| 175 | 175 | tools/v8_gypfiles/inspector.gypi tools/v8_gypfiles/v8.gyp | |
| 176 | 176 | $(PYTHON) tools/gyp_node.py -f make | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,12 @@ | |||
| 1 | + # ada | ||
| 2 | + | ||
| 3 | + This project implements WHATWG URL specification in a performant way. | ||
| 4 | + | ||
| 5 | + The source is pulled from: https://github.com/ada-url/ada | ||
| 6 | + | ||
| 7 | + Active development occurs in the default branch (currently named `main`). | ||
| 8 | + | ||
| 9 | + ## Updating | ||
| 10 | + | ||
| 11 | + See [tools/dep_updaters/README.md#ada](../../tools/dep_updaters/README.md#ada) | ||
| 12 | + for instructions. | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments