Skip to content

Commit

Permalink
sycn
Browse files Browse the repository at this point in the history
  • Loading branch information
msciabarra committed Mar 11, 2024
1 parent 4d55388 commit 24a6b21
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion tests/bats
Submodule bats updated 78 files
+3 −0 .codespellrc
+3 −1 .devcontainer/Dockerfile
+8 −7 .github/ISSUE_TEMPLATE/bug_report.md
+47 −0 .github/dependabot.yml
+22 −0 .github/workflows/codespell.yml
+22 −0 .github/workflows/dependency-review.yml
+9 −4 .github/workflows/release.yml
+18 −6 .github/workflows/release_dockerhub.yml
+72 −0 .github/workflows/scorecard.yml
+100 −32 .github/workflows/tests.yml
+14 −0 .pre-commit-config.yaml
+6 −2 .readthedocs.yml
+2 −2 Dockerfile
+23 −15 README.md
+9 −0 SECURITY.md
+17 −1 bin/bats
+1 −1 contrib/rpm/bats.spec
+49 −0 docs/CHANGELOG.md
+34 −194 docs/CONTRIBUTING.md
+4 −0 docs/list-links.py
+24 −0 docs/source/assets/README.md
+55 −0 docs/source/assets/dark_mode_bat.svg
+98 −0 docs/source/assets/dark_mode_cube.svg
+75 −0 docs/source/assets/dark_mode_wordmark_lowercase.svg
+80 −0 docs/source/assets/dark_mode_wordmark_uppercase.svg
+99 −0 docs/source/assets/light_mode_bat.svg
+90 −0 docs/source/assets/light_mode_cube.svg
+79 −0 docs/source/assets/light_mode_wordmark_lowercase.svg
+48 −0 docs/source/assets/light_mode_wordmark_uppercase.svg
+4 −2 docs/source/conf.py
+18 −6 docs/source/docker-usage.md
+3 −1 docs/source/faq.rst
+1 −1 docs/source/installation.rst
+2 −2 docs/source/warnings/BW02.rst
+2 −2 docs/source/warnings/BW03.rst
+1 −1 docs/source/writing-tests.md
+9 −3 install.sh
+9 −0 lib/bats-core/common.bash
+11 −3 lib/bats-core/formatter.bash
+2 −1 lib/bats-core/preprocessing.bash
+162 −18 lib/bats-core/test_functions.bash
+53 −31 lib/bats-core/tracing.bash
+1 −1 lib/bats-core/warnings.bash
+17 −4 libexec/bats-core/bats
+16 −10 libexec/bats-core/bats-exec-file
+33 −191 libexec/bats-core/bats-exec-suite
+44 −18 libexec/bats-core/bats-exec-test
+1 −1 libexec/bats-core/bats-format-junit
+1 −1 libexec/bats-core/bats-format-pretty
+1 −1 libexec/bats-core/bats-format-tap
+1 −1 libexec/bats-core/bats-format-tap13
+310 −0 libexec/bats-core/bats-gather-tests
+15 −11 libexec/bats-core/bats-preprocess
+1 −1 man/bats.7
+73 −2 man/bats.7.ronn
+1 −1 package.json
+1 −1 shellcheck.sh
+90 −151 test/bats.bats
+1,410 −0 test/bats_pipe.bats
+70 −0 test/cat-formatter.bats
+136 −0 test/filter.bats
+3 −0 test/fixtures/bats/date
+28 −0 test/fixtures/bats/dynamic_test_registration.bats
+11 −0 test/fixtures/bats/override_date_on_path.bats
+8 −0 test/fixtures/bats/preserve_IFS/helper.bash
+11 −0 test/fixtures/bats/preserve_IFS/setup_suite.bash
+15 −0 test/fixtures/bats/preserve_IFS/test.bats
+3 −0 test/fixtures/bats/test_with_slash.bats
+40 −0 test/fixtures/formatter/echo-formatter
+8 −0 test/fixtures/formatter/retry.bats
+14 −1 test/formatter.bats
+12 −12 test/install.bats
+3 −10 test/parallel.bats
+7 −5 test/tagging.bats
+4 −1 test/test_helper.bash
+1 −0 test/timeout.bats
+2 −2 test/warnings.bats
+35 −11 uninstall.sh
2 changes: 1 addition & 1 deletion tests/test_helper/bats-assert
2 changes: 1 addition & 1 deletion tools/envsubst
2 changes: 1 addition & 1 deletion tools/go-replace
Submodule go-replace updated 6 files
+3 −3 filehandling.go
+4 −4 funcs.go
+1 −1 go.mod
+1 −12 log.go
+76 −53 main.go
+8 −8 template.go
2 changes: 1 addition & 1 deletion tools/goja
Submodule goja updated 84 files
+21 −19 README.md
+14 −2 array.go
+14 −2 array_sparse.go
+34 −17 ast/node.go
+135 −86 builtin_array.go
+16 −0 builtin_arrray_test.go
+32 −7 builtin_boolean.go
+121 −78 builtin_date.go
+105 −52 builtin_error.go
+93 −27 builtin_function.go
+102 −44 builtin_global.go
+24 −16 builtin_json.go
+13 −0 builtin_json_test.go
+30 −19 builtin_map.go
+75 −60 builtin_math.go
+147 −54 builtin_number.go
+120 −43 builtin_object.go
+49 −35 builtin_promise.go
+12 −7 builtin_proxy.go
+21 −15 builtin_reflect.go
+138 −122 builtin_regexp.go
+28 −15 builtin_set.go
+233 −120 builtin_string.go
+8 −8 builtin_string_test.go
+28 −16 builtin_symbol.go
+343 −162 builtin_typedarrays.go
+23 −21 builtin_weakmap.go
+21 −8 builtin_weakset.go
+8 −5 compiler.go
+6 −5 compiler_expr.go
+4 −4 compiler_stmt.go
+23 −0 compiler_test.go
+0 −4 date.go
+3 −14 destruct.go
+1 −1 ftoa/ftostr.go
+15 −11 func.go
+3 −4 go.mod
+19 −8 go.sum
+3 −3 goja/main.go
+17 −0 gojamain/go.mod
+79 −0 gojamain/go.sum
+138 −0 gojamain/main.go
+32 −31 ipow.go
+11 −30 object.go
+1 −1 object_args.go
+3 −15 object_dynamic.go
+10 −8 object_goarray_reflect.go
+1 −19 object_gomap.go
+1 −1 object_gomap_reflect.go
+9 −53 object_goreflect.go
+35 −1 object_goreflect_test.go
+14 −7 object_goslice.go
+1 −3 object_goslice_reflect.go
+25 −0 object_goslice_reflect_test.go
+25 −0 object_goslice_test.go
+0 −332 object_lazy.go
+470 −0 object_template.go
+19 −4 object_test.go
+2 −2 parser/error.go
+50 −45 parser/expression.go
+3 −3 parser/lexer.go
+3 −3 parser/lexer_test.go
+1 −1 parser/marshal_test.go
+5 −5 parser/parser.go
+97 −6 parser/parser_test.go
+2 −2 parser/scope.go
+14 −12 parser/statement.go
+64 −22 profiler.go
+48 −1 profiler_test.go
+3 −3 proxy.go
+27 −26 regexp.go
+140 −195 runtime.go
+74 −10 runtime_test.go
+89 −55 string.go
+54 −17 string_ascii.go
+55 −36 string_imported.go
+28 −0 string_test.go
+119 −60 string_unicode.go
+3 −1 tc39_test.go
+305 −88 typedarrays.go
+175 −1 typedarrays_test.go
+45 −49 value.go
+32 −32 vm.go
+4 −3 vm_test.go
2 changes: 1 addition & 1 deletion tools/goph
Submodule goph updated 4 files
+1 −1 examples/goph/main.go
+8 −2 go.mod
+0 −22 go.sum
+1 −1 goph_test.go

0 comments on commit 24a6b21

Please sign in to comment.