File tree 5 files changed +4
-8
lines changed
5 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file based on the
5
5
## [ Unreleased] ( https://github.com/ruflin/Elastica/compare/6.0.0-beta1...master )
6
6
7
7
### Backward Compatibility Breaks
8
+ - Return the [ _ source of inner hit nested] ( https://github.com/elastic/elasticsearch/pull/26982 ) as is without wrapping it into its full path context [ #1382 ] ( https://github.com/ruflin/Elastica/pull/1382 )
8
9
9
10
### Bugfixes
10
11
Original file line number Diff line number Diff line change @@ -18,9 +18,6 @@ RUN docker-php-ext-install sockets xsl
18
18
19
19
RUN rm -r /var/lib/apt/lists/*
20
20
21
- # Xdebug for coverage report
22
- RUN pecl install xdebug-2.4.0
23
-
24
21
## PHP Configuration
25
22
26
23
RUN echo "memory_limit=1024M" >> /usr/local/etc/php/conf.d/memory-limit.ini
Original file line number Diff line number Diff line change @@ -18,9 +18,6 @@ RUN docker-php-ext-install sockets xsl
18
18
19
19
RUN rm -r /var/lib/apt/lists/*
20
20
21
- # Xdebug for coverage report
22
- RUN pecl install xdebug-2.4.0
23
-
24
21
## PHP Configuration
25
22
26
23
RUN echo "memory_limit=1024M" >> /usr/local/etc/php/conf.d/memory-limit.ini
Original file line number Diff line number Diff line change 1
- FROM docker.elastic.co/elasticsearch/elasticsearch:6.0.0-rc1
1
+ FROM docker.elastic.co/elasticsearch/elasticsearch:6.0.0-rc2
2
2
MAINTAINER Nicolas Ruflin <
[email protected] >
3
3
4
4
RUN /usr/share/elasticsearch/bin/elasticsearch-plugin install ingest-attachment
Original file line number Diff line number Diff line change @@ -343,7 +343,8 @@ public function testInnerHitsNested()
343
343
$ innerHitsResults = $ firstResult ->getInnerHits ();
344
344
345
345
$ this ->assertEquals ($ firstResult ->getId (), 4 );
346
- $ this ->assertEquals ($ innerHitsResults ['users ' ]['hits ' ]['hits ' ][0 ]['_source ' ]['users ' ]['name ' ], 'Newton ' );
346
+ $ this ->assertEquals ($ innerHitsResults ['users ' ]['hits ' ]['hits ' ][0 ]['_source ' ]['name ' ], 'Newton ' );
347
+
347
348
}
348
349
349
350
/**
You can’t perform that action at this time.
0 commit comments