Skip to content

Commit

Permalink
bump ginkgo gomega
Browse files Browse the repository at this point in the history
Submodule src/github.com/onsi/ginkgo eea6ad008..d90e0dcda:
  > Add integration test
  > Fix coverage files combining
  > A new CLI option: -ginkgo.reportFile <file path> (#601)
  > v1.10.2
  > speed up table entry generateIt() (#609)
  > Fix. Write errors to stderr instead of stdout (#610)
  > v1.10.1
  > stack backtrace: fix skipping (#600)
  > v1.10.0
  > stack backtrace: fix alignment and skipping
  > fix typo in documentation
  > v1.9.0
  > Fixed typos in comments
  > gofmt code
  > Simplify code
  > Simplify concatenation, incrementation and function assignment
  > Avoid unnecessary conversions
  > JUnit: include more detailed information about panic
  > Option to print output into report, when tests have passed
  > Print help to stdout when the user asks for help
Submodule src/github.com/onsi/gomega 41673fd8f..bdebf9e0e:
  > v1.7.0
  > export format property variables (#347)
  > minor fix in the documentation of ExpectWithOffset (#358)
  > v1.6.0
  > Remove duplication in XML matcher tests
  > Remove unnecessary conversions (#357)
  > Fixed import order (#353)
  > Added missing error handling in test (#355)
  > Simplify code (#356)
  > Simplify code (#354)
  > Fixed typos (#352)
  > Add failure message tests to BeElementOf matcher
  > Update go-testcov untested sections
  > mark all uncovered files so go-testcov ./... works
  > display special chars on error
  > Reenable gotip in travis
  > Add BeElementOf matcher
  > Fix the typo of comment (#345)
  > Optimize contain_element_matcher
  > v1.5.0
  > add analogous tests to fields_test.go
  > added tests for error messages
  > remove redundant validity check
  > ensure error messages refer to the underlying interface, not the `reflect.Value`
  > Run CI on go 1.12 and not 1.9
  > Turn off gotip on travis
  > Mark session_test.go with build tag (#324)
  > more matcher tests
  > try to appease linters
  > MatchKeys
  > Clarify message for unexpected errors
  > make it easy to run everythin that travis would do
  > remove go 1.6, 1.7, 1.8 from the build matrix, and add tip
  > fix lint errors and use type aliases to remove stuttering
  > remove duplication of code and add docs to public function
  > v1.4.3
  > test yaml parser errors and better comment on why panics are there
  > add test for not matcher with errors
  > add test for or matcher with errors
  > add tests for positive failure messages of Panic
  > ensure file name and line numbers are correctly reported
  > Fail the build if gofmt detects any changes required
  > Make changes to satisfy gofmt
  > Move GO111MODULE into more suitable env key in Travis
  > Add coverage for BeZero and Succeed matchers (#307)
  > Fixed matcher for content-type (#305)
  > v1.4.2
  > Refactor goexec build test
  > Updates for Go v1.11 official release
  > Add go.mod and go.sum files to define the gomega go module
  > Work around go vet issue with Go v1.11 (#300)
  > Better output when using with go XUnit-style tests, fixes #255 (#297)
  > Fix MatchJSON fail to parse json.RawMessage (#298)
  > Move funcs shared by MatchJSON and MatchYAML to a dedicated support file
  > Added first failure path matching for YAML (#279)
  > show threshold in failure message of BeNumericallyMatcher (#293)
  > v1.4.1
  > Update documentation (#289)
  • Loading branch information
Nick Wei committed Oct 9, 2019
1 parent 15a12f3 commit 6e09356
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/github.com/onsi/gomega
Submodule gomega updated 79 files
+9 −5 .travis.yml
+70 −1 CHANGELOG.md
+6 −0 Makefile
+26 −11 format/format.go
+137 −1 format/format_test.go
+5 −4 gbytes/say_matcher.go
+5 −0 gbytes/say_matcher_test.go
+3 −1 gexec/build.go
+34 −9 gexec/build_test.go
+2 −0 gexec/exit_matcher.go
+3 −1 gexec/prefixed_writer.go
+3 −0 gexec/session.go
+2 −0 gexec/session_test.go
+12 −1 ghttp/handlers.go
+4 −1 ghttp/test_server.go
+37 −0 ghttp/test_server_test.go
+15 −0 go.mod
+24 −0 go.sum
+185 −152 gomega_dsl.go
+24 −8 gstruct/elements.go
+38 −14 gstruct/fields.go
+25 −0 gstruct/fields_test.go
+2 −0 gstruct/ignore.go
+126 −0 gstruct/keys.go
+101 −0 gstruct/keys_test.go
+2 −0 gstruct/pointer.go
+13 −6 internal/assertion/assertion.go
+20 −14 internal/assertion/assertion_test.go
+11 −4 internal/asyncassertion/async_assertion.go
+40 −34 internal/asyncassertion/async_assertion_test.go
+32 −12 internal/testingtsupport/testing_t_support.go
+69 −11 internal/testingtsupport/testing_t_support_test.go
+19 −3 matchers.go
+2 −0 matchers/assignable_to_type_of_matcher.go
+2 −0 matchers/be_a_directory.go
+2 −0 matchers/be_a_regular_file.go
+2 −0 matchers/be_an_existing_file.go
+4 −2 matchers/be_closed_matcher.go
+57 −0 matchers/be_element_of_matcher.go
+66 −0 matchers/be_element_of_matcher_test.go
+2 −0 matchers/be_empty_matcher.go
+2 −0 matchers/be_equivalent_to_matcher.go
+2 −0 matchers/be_false_matcher.go
+2 −0 matchers/be_identical_to.go
+2 −0 matchers/be_nil_matcher.go
+16 −2 matchers/be_numerically_matcher.go
+24 −0 matchers/be_numerically_matcher_test.go
+4 −2 matchers/be_sent_matcher.go
+2 −0 matchers/be_temporally_matcher.go
+2 −0 matchers/be_true_matcher.go
+11 −1 matchers/be_zero_matcher_test.go
+2 −0 matchers/consist_of.go
+2 −2 matchers/consist_of_test.go
+13 −9 matchers/contain_element_matcher.go
+2 −0 matchers/contain_substring_matcher.go
+2 −0 matchers/have_cap_matcher.go
+2 −0 matchers/have_key_matcher.go
+2 −0 matchers/have_key_with_value_matcher.go
+3 −1 matchers/have_occurred_matcher.go
+14 −0 matchers/have_prefix_matcher_test.go
+14 −0 matchers/have_suffix_matcher_test.go
+14 −0 matchers/match_error_matcher_test.go
+0 −70 matchers/match_json_matcher.go
+13 −0 matchers/match_json_matcher_test.go
+14 −0 matchers/match_regexp_matcher_test.go
+2 −2 matchers/match_xml_matcher.go
+15 −7 matchers/match_xml_matcher_test.go
+9 −7 matchers/match_yaml_matcher.go
+7 −0 matchers/match_yaml_matcher_test.go
+7 −0 matchers/not_test.go
+7 −0 matchers/or_test.go
+20 −13 matchers/panic_matcher_test.go
+4 −2 matchers/receive_matcher.go
+1 −1 matchers/receive_matcher_test.go
+94 −0 matchers/semi_structured_data_support.go
+11 −0 matchers/succeed_matcher_test.go
+3 −4 matchers/support/goraph/bipartitegraph/bipartitegraph.go
+9 −0 matchers/type_support.go
+9 −0 types/types.go

0 comments on commit 6e09356

Please sign in to comment.